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 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 22 | struct nvme_passthru_cmd; |
| 23 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 24 | extern unsigned char nvme_io_timeout; |
| 25 | #define NVME_IO_TIMEOUT (nvme_io_timeout * HZ) |
| 26 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 27 | extern unsigned char admin_timeout; |
| 28 | #define ADMIN_TIMEOUT (admin_timeout * HZ) |
| 29 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame^] | 30 | extern unsigned char shutdown_timeout; |
| 31 | #define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ) |
| 32 | |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 33 | enum { |
| 34 | NVME_NS_LBA = 0, |
| 35 | NVME_NS_LIGHTNVM = 1, |
| 36 | }; |
| 37 | |
Christoph Hellwig | 106198e | 2015-11-26 10:07:41 +0100 | [diff] [blame] | 38 | /* |
| 39 | * List of workarounds for devices that required behavior not specified in |
| 40 | * the standard. |
| 41 | */ |
| 42 | enum nvme_quirks { |
| 43 | /* |
| 44 | * Prefers I/O aligned to a stripe size specified in a vendor |
| 45 | * specific Identify field. |
| 46 | */ |
| 47 | NVME_QUIRK_STRIPE_SIZE = (1 << 0), |
| 48 | }; |
| 49 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 50 | struct nvme_ctrl { |
| 51 | const struct nvme_ctrl_ops *ops; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 52 | struct request_queue *admin_q; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 53 | struct device *dev; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 54 | struct kref kref; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 55 | int instance; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 56 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 57 | char name[12]; |
| 58 | char serial[20]; |
| 59 | char model[40]; |
| 60 | char firmware_rev[8]; |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame^] | 61 | |
| 62 | u32 ctrl_config; |
| 63 | |
| 64 | u32 page_size; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 65 | u16 oncs; |
| 66 | u16 abort_limit; |
| 67 | u8 event_limit; |
| 68 | u8 vwc; |
Christoph Hellwig | 106198e | 2015-11-26 10:07:41 +0100 | [diff] [blame] | 69 | unsigned long quirks; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | /* |
| 73 | * An NVM Express namespace is equivalent to a SCSI LUN |
| 74 | */ |
| 75 | struct nvme_ns { |
| 76 | struct list_head list; |
| 77 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 78 | struct nvme_ctrl *ctrl; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 79 | struct request_queue *queue; |
| 80 | struct gendisk *disk; |
| 81 | struct kref kref; |
| 82 | |
| 83 | unsigned ns_id; |
| 84 | int lba_shift; |
| 85 | u16 ms; |
| 86 | bool ext; |
| 87 | u8 pi_type; |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 88 | int type; |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 89 | u64 mode_select_num_blocks; |
| 90 | u32 mode_select_block_len; |
| 91 | }; |
| 92 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 93 | struct nvme_ctrl_ops { |
| 94 | int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame^] | 95 | int (*reg_write32)(struct nvme_ctrl *ctrl, u32 off, u32 val); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 96 | void (*free_ctrl)(struct nvme_ctrl *ctrl); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | static inline bool nvme_ctrl_ready(struct nvme_ctrl *ctrl) |
| 100 | { |
| 101 | u32 val = 0; |
| 102 | |
| 103 | if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val)) |
| 104 | return false; |
| 105 | return val & NVME_CSTS_RDY; |
| 106 | } |
| 107 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 108 | static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector) |
| 109 | { |
| 110 | return (sector >> (ns->lba_shift - 9)); |
| 111 | } |
| 112 | |
Christoph Hellwig | 22944e9 | 2015-10-16 07:58:40 +0200 | [diff] [blame] | 113 | static inline void nvme_setup_flush(struct nvme_ns *ns, |
| 114 | struct nvme_command *cmnd) |
| 115 | { |
| 116 | memset(cmnd, 0, sizeof(*cmnd)); |
| 117 | cmnd->common.opcode = nvme_cmd_flush; |
| 118 | cmnd->common.nsid = cpu_to_le32(ns->ns_id); |
| 119 | } |
| 120 | |
| 121 | static inline void nvme_setup_rw(struct nvme_ns *ns, struct request *req, |
| 122 | struct nvme_command *cmnd) |
| 123 | { |
| 124 | u16 control = 0; |
| 125 | u32 dsmgmt = 0; |
| 126 | |
| 127 | if (req->cmd_flags & REQ_FUA) |
| 128 | control |= NVME_RW_FUA; |
| 129 | if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD)) |
| 130 | control |= NVME_RW_LR; |
| 131 | |
| 132 | if (req->cmd_flags & REQ_RAHEAD) |
| 133 | dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH; |
| 134 | |
| 135 | memset(cmnd, 0, sizeof(*cmnd)); |
| 136 | cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read); |
| 137 | cmnd->rw.command_id = req->tag; |
| 138 | cmnd->rw.nsid = cpu_to_le32(ns->ns_id); |
| 139 | cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req))); |
| 140 | cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1); |
| 141 | |
| 142 | if (ns->ms) { |
| 143 | switch (ns->pi_type) { |
| 144 | case NVME_NS_DPS_PI_TYPE3: |
| 145 | control |= NVME_RW_PRINFO_PRCHK_GUARD; |
| 146 | break; |
| 147 | case NVME_NS_DPS_PI_TYPE1: |
| 148 | case NVME_NS_DPS_PI_TYPE2: |
| 149 | control |= NVME_RW_PRINFO_PRCHK_GUARD | |
| 150 | NVME_RW_PRINFO_PRCHK_REF; |
| 151 | cmnd->rw.reftag = cpu_to_le32( |
| 152 | nvme_block_nr(ns, blk_rq_pos(req))); |
| 153 | break; |
| 154 | } |
| 155 | if (!blk_integrity_rq(req)) |
| 156 | control |= NVME_RW_PRINFO_PRACT; |
| 157 | } |
| 158 | |
| 159 | cmnd->rw.control = cpu_to_le16(control); |
| 160 | cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt); |
| 161 | } |
| 162 | |
| 163 | |
Christoph Hellwig | 15a190f7 | 2015-10-16 07:58:39 +0200 | [diff] [blame] | 164 | static inline int nvme_error_status(u16 status) |
| 165 | { |
| 166 | switch (status & 0x7ff) { |
| 167 | case NVME_SC_SUCCESS: |
| 168 | return 0; |
| 169 | case NVME_SC_CAP_EXCEEDED: |
| 170 | return -ENOSPC; |
| 171 | default: |
| 172 | return -EIO; |
| 173 | } |
| 174 | } |
| 175 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame^] | 176 | int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap); |
| 177 | int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap); |
| 178 | int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 179 | void nvme_put_ctrl(struct nvme_ctrl *ctrl); |
| 180 | void nvme_put_ns(struct nvme_ns *ns); |
| 181 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 182 | struct request *nvme_alloc_request(struct request_queue *q, |
| 183 | struct nvme_command *cmd, unsigned int flags); |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 184 | int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 185 | void *buf, unsigned bufflen); |
| 186 | int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 187 | void *buffer, unsigned bufflen, u32 *result, unsigned timeout); |
| 188 | int nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 189 | void __user *ubuffer, unsigned bufflen, u32 *result, |
| 190 | unsigned timeout); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 191 | int __nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 192 | void __user *ubuffer, unsigned bufflen, |
| 193 | void __user *meta_buffer, unsigned meta_len, u32 meta_seed, |
| 194 | u32 *result, unsigned timeout); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 195 | int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id); |
| 196 | int nvme_identify_ns(struct nvme_ctrl *dev, unsigned nsid, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 197 | struct nvme_id_ns **id); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 198 | int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log); |
| 199 | int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 200 | dma_addr_t dma_addr, u32 *result); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 201 | int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 202 | dma_addr_t dma_addr, u32 *result); |
| 203 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 204 | extern const struct block_device_operations nvme_fops; |
| 205 | extern spinlock_t dev_list_lock; |
| 206 | |
| 207 | int nvme_revalidate_disk(struct gendisk *disk); |
| 208 | int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns, |
| 209 | struct nvme_passthru_cmd __user *ucmd); |
| 210 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 211 | struct sg_io_hdr; |
| 212 | |
| 213 | int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr); |
| 214 | int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg); |
| 215 | int nvme_sg_get_version_num(int __user *ip); |
| 216 | |
Matias Bjørling | ca06408 | 2015-10-29 17:57:29 +0900 | [diff] [blame] | 217 | int nvme_nvm_ns_supported(struct nvme_ns *ns, struct nvme_id_ns *id); |
| 218 | int nvme_nvm_register(struct request_queue *q, char *disk_name); |
| 219 | void nvme_nvm_unregister(struct request_queue *q, char *disk_name); |
| 220 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 221 | #endif /* _NVME_H */ |