Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011-2014, Intel Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | */ |
| 13 | |
| 14 | #ifndef _NVME_H |
| 15 | #define _NVME_H |
| 16 | |
| 17 | #include <linux/nvme.h> |
| 18 | #include <linux/pci.h> |
| 19 | #include <linux/kref.h> |
| 20 | #include <linux/blk-mq.h> |
| 21 | |
| 22 | extern unsigned char nvme_io_timeout; |
| 23 | #define NVME_IO_TIMEOUT (nvme_io_timeout * HZ) |
| 24 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 25 | extern unsigned char admin_timeout; |
| 26 | #define ADMIN_TIMEOUT (admin_timeout * HZ) |
| 27 | |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 28 | enum { |
| 29 | NVME_NS_LBA = 0, |
| 30 | NVME_NS_LIGHTNVM = 1, |
| 31 | }; |
| 32 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 33 | struct nvme_ctrl { |
| 34 | const struct nvme_ctrl_ops *ops; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 35 | struct request_queue *admin_q; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 36 | struct device *dev; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 37 | int instance; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 38 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 39 | char name[12]; |
| 40 | char serial[20]; |
| 41 | char model[40]; |
| 42 | char firmware_rev[8]; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 43 | u16 oncs; |
| 44 | u16 abort_limit; |
| 45 | u8 event_limit; |
| 46 | u8 vwc; |
| 47 | }; |
| 48 | |
| 49 | /* |
| 50 | * An NVM Express namespace is equivalent to a SCSI LUN |
| 51 | */ |
| 52 | struct nvme_ns { |
| 53 | struct list_head list; |
| 54 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 55 | struct nvme_ctrl *ctrl; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 56 | struct request_queue *queue; |
| 57 | struct gendisk *disk; |
| 58 | struct kref kref; |
| 59 | |
| 60 | unsigned ns_id; |
| 61 | int lba_shift; |
| 62 | u16 ms; |
| 63 | bool ext; |
| 64 | u8 pi_type; |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 65 | int type; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 66 | u64 mode_select_num_blocks; |
| 67 | u32 mode_select_block_len; |
| 68 | }; |
| 69 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 70 | struct nvme_ctrl_ops { |
| 71 | int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val); |
| 72 | }; |
| 73 | |
| 74 | static inline bool nvme_ctrl_ready(struct nvme_ctrl *ctrl) |
| 75 | { |
| 76 | u32 val = 0; |
| 77 | |
| 78 | if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val)) |
| 79 | return false; |
| 80 | return val & NVME_CSTS_RDY; |
| 81 | } |
| 82 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 83 | static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector) |
| 84 | { |
| 85 | return (sector >> (ns->lba_shift - 9)); |
| 86 | } |
| 87 | |
Christoph Hellwig | 15a190f7 | 2015-10-16 07:58:39 +0200 | [diff] [blame^] | 88 | static inline int nvme_error_status(u16 status) |
| 89 | { |
| 90 | switch (status & 0x7ff) { |
| 91 | case NVME_SC_SUCCESS: |
| 92 | return 0; |
| 93 | case NVME_SC_CAP_EXCEEDED: |
| 94 | return -ENOSPC; |
| 95 | default: |
| 96 | return -EIO; |
| 97 | } |
| 98 | } |
| 99 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 100 | int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 101 | void *buf, unsigned bufflen); |
| 102 | int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 103 | void *buffer, void __user *ubuffer, unsigned bufflen, |
| 104 | u32 *result, unsigned timeout); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 105 | int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id); |
| 106 | int nvme_identify_ns(struct nvme_ctrl *dev, unsigned nsid, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 107 | struct nvme_id_ns **id); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 108 | int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log); |
| 109 | int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 110 | dma_addr_t dma_addr, u32 *result); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 111 | int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 112 | dma_addr_t dma_addr, u32 *result); |
| 113 | |
| 114 | struct sg_io_hdr; |
| 115 | |
| 116 | int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr); |
| 117 | int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg); |
| 118 | int nvme_sg_get_version_num(int __user *ip); |
| 119 | |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 120 | int nvme_nvm_ns_supported(struct nvme_ns *ns, struct nvme_id_ns *id); |
| 121 | int nvme_nvm_register(struct request_queue *q, char *disk_name); |
| 122 | void nvme_nvm_unregister(struct request_queue *q, char *disk_name); |
| 123 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 124 | #endif /* _NVME_H */ |