blob: 93378be874e1b9ed947ab8f8a5cabfef82303ab0 [file] [log] [blame]
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +02001/*
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
22extern unsigned char nvme_io_timeout;
23#define NVME_IO_TIMEOUT (nvme_io_timeout * HZ)
24
Christoph Hellwig21d34712015-11-26 09:08:36 +010025extern unsigned char admin_timeout;
26#define ADMIN_TIMEOUT (admin_timeout * HZ)
27
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +010028extern unsigned char shutdown_timeout;
29#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
30
Matias Bjørlingca064082015-10-29 17:57:29 +090031enum {
32 NVME_NS_LBA = 0,
33 NVME_NS_LIGHTNVM = 1,
34};
35
Christoph Hellwig106198e2015-11-26 10:07:41 +010036/*
37 * List of workarounds for devices that required behavior not specified in
38 * the standard.
39 */
40enum nvme_quirks {
41 /*
42 * Prefers I/O aligned to a stripe size specified in a vendor
43 * specific Identify field.
44 */
45 NVME_QUIRK_STRIPE_SIZE = (1 << 0),
46};
47
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010048struct nvme_ctrl {
49 const struct nvme_ctrl_ops *ops;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020050 struct request_queue *admin_q;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020051 struct device *dev;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010052 struct kref kref;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020053 int instance;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +010054 struct blk_mq_tag_set *tagset;
55 struct list_head namespaces;
56 struct device *device; /* char device */
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010057 struct list_head node;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010058
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020059 char name[12];
60 char serial[20];
61 char model[40];
62 char firmware_rev[8];
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +010063
64 u32 ctrl_config;
65
66 u32 page_size;
Christoph Hellwig7fd89302015-11-28 15:37:52 +010067 u32 max_hw_sectors;
68 u32 stripe_size;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020069 u16 oncs;
70 u16 abort_limit;
71 u8 event_limit;
72 u8 vwc;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010073 u32 vs;
74 bool subsystem;
Christoph Hellwig106198e2015-11-26 10:07:41 +010075 unsigned long quirks;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020076};
77
78/*
79 * An NVM Express namespace is equivalent to a SCSI LUN
80 */
81struct nvme_ns {
82 struct list_head list;
83
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010084 struct nvme_ctrl *ctrl;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020085 struct request_queue *queue;
86 struct gendisk *disk;
87 struct kref kref;
88
89 unsigned ns_id;
90 int lba_shift;
91 u16 ms;
92 bool ext;
93 u8 pi_type;
Matias Bjørlingca064082015-10-29 17:57:29 +090094 int type;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020095 u64 mode_select_num_blocks;
96 u32 mode_select_block_len;
97};
98
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010099struct nvme_ctrl_ops {
100 int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100101 int (*reg_write32)(struct nvme_ctrl *ctrl, u32 off, u32 val);
Christoph Hellwig7fd89302015-11-28 15:37:52 +0100102 int (*reg_read64)(struct nvme_ctrl *ctrl, u32 off, u64 *val);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100103 bool (*io_incapable)(struct nvme_ctrl *ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +0100104 int (*reset_ctrl)(struct nvme_ctrl *ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100105 void (*free_ctrl)(struct nvme_ctrl *ctrl);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100106};
107
108static inline bool nvme_ctrl_ready(struct nvme_ctrl *ctrl)
109{
110 u32 val = 0;
111
112 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val))
113 return false;
114 return val & NVME_CSTS_RDY;
115}
116
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100117static inline bool nvme_io_incapable(struct nvme_ctrl *ctrl)
118{
119 u32 val = 0;
120
121 if (ctrl->ops->io_incapable(ctrl))
122 return false;
123 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val))
124 return false;
125 return val & NVME_CSTS_CFS;
126}
127
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +0100128static inline int nvme_reset_subsystem(struct nvme_ctrl *ctrl)
129{
130 if (!ctrl->subsystem)
131 return -ENOTTY;
132 return ctrl->ops->reg_write32(ctrl, NVME_REG_NSSR, 0x4E564D65);
133}
134
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200135static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
136{
137 return (sector >> (ns->lba_shift - 9));
138}
139
Christoph Hellwig22944e92015-10-16 07:58:40 +0200140static inline void nvme_setup_flush(struct nvme_ns *ns,
141 struct nvme_command *cmnd)
142{
143 memset(cmnd, 0, sizeof(*cmnd));
144 cmnd->common.opcode = nvme_cmd_flush;
145 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
146}
147
148static inline void nvme_setup_rw(struct nvme_ns *ns, struct request *req,
149 struct nvme_command *cmnd)
150{
151 u16 control = 0;
152 u32 dsmgmt = 0;
153
154 if (req->cmd_flags & REQ_FUA)
155 control |= NVME_RW_FUA;
156 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
157 control |= NVME_RW_LR;
158
159 if (req->cmd_flags & REQ_RAHEAD)
160 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
161
162 memset(cmnd, 0, sizeof(*cmnd));
163 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
164 cmnd->rw.command_id = req->tag;
165 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
166 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
167 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
168
169 if (ns->ms) {
170 switch (ns->pi_type) {
171 case NVME_NS_DPS_PI_TYPE3:
172 control |= NVME_RW_PRINFO_PRCHK_GUARD;
173 break;
174 case NVME_NS_DPS_PI_TYPE1:
175 case NVME_NS_DPS_PI_TYPE2:
176 control |= NVME_RW_PRINFO_PRCHK_GUARD |
177 NVME_RW_PRINFO_PRCHK_REF;
178 cmnd->rw.reftag = cpu_to_le32(
179 nvme_block_nr(ns, blk_rq_pos(req)));
180 break;
181 }
182 if (!blk_integrity_rq(req))
183 control |= NVME_RW_PRINFO_PRACT;
184 }
185
186 cmnd->rw.control = cpu_to_le16(control);
187 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
188}
189
190
Christoph Hellwig15a190f72015-10-16 07:58:39 +0200191static inline int nvme_error_status(u16 status)
192{
193 switch (status & 0x7ff) {
194 case NVME_SC_SUCCESS:
195 return 0;
196 case NVME_SC_CAP_EXCEEDED:
197 return -ENOSPC;
198 default:
199 return -EIO;
200 }
201}
202
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100203int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
204int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
205int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +0100206int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
207 const struct nvme_ctrl_ops *ops, unsigned long quirks);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100208void nvme_put_ctrl(struct nvme_ctrl *ctrl);
Christoph Hellwig7fd89302015-11-28 15:37:52 +0100209int nvme_init_identify(struct nvme_ctrl *ctrl);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100210
211void nvme_scan_namespaces(struct nvme_ctrl *ctrl);
212void nvme_remove_namespaces(struct nvme_ctrl *ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100213
Christoph Hellwig41609822015-11-20 09:00:02 +0100214struct request *nvme_alloc_request(struct request_queue *q,
215 struct nvme_command *cmd, unsigned int flags);
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200216int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
217 void *buf, unsigned bufflen);
218int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
Christoph Hellwig41609822015-11-20 09:00:02 +0100219 void *buffer, unsigned bufflen, u32 *result, unsigned timeout);
220int nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd,
221 void __user *ubuffer, unsigned bufflen, u32 *result,
222 unsigned timeout);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600223int __nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd,
224 void __user *ubuffer, unsigned bufflen,
225 void __user *meta_buffer, unsigned meta_len, u32 meta_seed,
226 u32 *result, unsigned timeout);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100227int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id);
228int nvme_identify_ns(struct nvme_ctrl *dev, unsigned nsid,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200229 struct nvme_id_ns **id);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100230int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log);
231int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200232 dma_addr_t dma_addr, u32 *result);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100233int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200234 dma_addr_t dma_addr, u32 *result);
235
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100236extern spinlock_t dev_list_lock;
237
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200238struct sg_io_hdr;
239
240int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr);
241int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg);
242int nvme_sg_get_version_num(int __user *ip);
243
Matias Bjørlingca064082015-10-29 17:57:29 +0900244int nvme_nvm_ns_supported(struct nvme_ns *ns, struct nvme_id_ns *id);
245int nvme_nvm_register(struct request_queue *q, char *disk_name);
246void nvme_nvm_unregister(struct request_queue *q, char *disk_name);
247
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100248int __init nvme_core_init(void);
249void nvme_core_exit(void);
250
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200251#endif /* _NVME_H */