xref: /openbmc/linux/drivers/nvme/host/nvme.h (revision 75c10e73)
157dacad5SJay Sternberg /*
257dacad5SJay Sternberg  * Copyright (c) 2011-2014, Intel Corporation.
357dacad5SJay Sternberg  *
457dacad5SJay Sternberg  * This program is free software; you can redistribute it and/or modify it
557dacad5SJay Sternberg  * under the terms and conditions of the GNU General Public License,
657dacad5SJay Sternberg  * version 2, as published by the Free Software Foundation.
757dacad5SJay Sternberg  *
857dacad5SJay Sternberg  * This program is distributed in the hope it will be useful, but WITHOUT
957dacad5SJay Sternberg  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1057dacad5SJay Sternberg  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
1157dacad5SJay Sternberg  * more details.
1257dacad5SJay Sternberg  */
1357dacad5SJay Sternberg 
1457dacad5SJay Sternberg #ifndef _NVME_H
1557dacad5SJay Sternberg #define _NVME_H
1657dacad5SJay Sternberg 
1757dacad5SJay Sternberg #include <linux/nvme.h>
18a6a5149bSChristoph Hellwig #include <linux/cdev.h>
1957dacad5SJay Sternberg #include <linux/pci.h>
2057dacad5SJay Sternberg #include <linux/kref.h>
2157dacad5SJay Sternberg #include <linux/blk-mq.h>
22b0b4e09cSMatias Bjørling #include <linux/lightnvm.h>
23a98e58e5SScott Bauer #include <linux/sed-opal.h>
24b9e03857SThomas Tai #include <linux/fault-inject.h>
25978628ecSJohannes Thumshirn #include <linux/rcupdate.h>
2657dacad5SJay Sternberg 
278ae4e447SMarc Olson extern unsigned int nvme_io_timeout;
2857dacad5SJay Sternberg #define NVME_IO_TIMEOUT	(nvme_io_timeout * HZ)
2957dacad5SJay Sternberg 
308ae4e447SMarc Olson extern unsigned int admin_timeout;
3121d34711SChristoph Hellwig #define ADMIN_TIMEOUT	(admin_timeout * HZ)
3221d34711SChristoph Hellwig 
33038bd4cbSSagi Grimberg #define NVME_DEFAULT_KATO	5
34038bd4cbSSagi Grimberg #define NVME_KATO_GRACE		10
35038bd4cbSSagi Grimberg 
369a6327d2SSagi Grimberg extern struct workqueue_struct *nvme_wq;
37b227c59bSRoy Shterman extern struct workqueue_struct *nvme_reset_wq;
38b227c59bSRoy Shterman extern struct workqueue_struct *nvme_delete_wq;
399a6327d2SSagi Grimberg 
40ca064085SMatias Bjørling enum {
41ca064085SMatias Bjørling 	NVME_NS_LBA		= 0,
42ca064085SMatias Bjørling 	NVME_NS_LIGHTNVM	= 1,
43ca064085SMatias Bjørling };
44ca064085SMatias Bjørling 
4557dacad5SJay Sternberg /*
46106198edSChristoph Hellwig  * List of workarounds for devices that required behavior not specified in
47106198edSChristoph Hellwig  * the standard.
4857dacad5SJay Sternberg  */
49106198edSChristoph Hellwig enum nvme_quirks {
50106198edSChristoph Hellwig 	/*
51106198edSChristoph Hellwig 	 * Prefers I/O aligned to a stripe size specified in a vendor
52106198edSChristoph Hellwig 	 * specific Identify field.
53106198edSChristoph Hellwig 	 */
54106198edSChristoph Hellwig 	NVME_QUIRK_STRIPE_SIZE			= (1 << 0),
55540c801cSKeith Busch 
56540c801cSKeith Busch 	/*
57540c801cSKeith Busch 	 * The controller doesn't handle Identify value others than 0 or 1
58540c801cSKeith Busch 	 * correctly.
59540c801cSKeith Busch 	 */
60540c801cSKeith Busch 	NVME_QUIRK_IDENTIFY_CNS			= (1 << 1),
6108095e70SKeith Busch 
6208095e70SKeith Busch 	/*
63e850fd16SChristoph Hellwig 	 * The controller deterministically returns O's on reads to
64e850fd16SChristoph Hellwig 	 * logical blocks that deallocate was called on.
6508095e70SKeith Busch 	 */
66e850fd16SChristoph Hellwig 	NVME_QUIRK_DEALLOCATE_ZEROES		= (1 << 2),
6754adc010SGuilherme G. Piccoli 
6854adc010SGuilherme G. Piccoli 	/*
6954adc010SGuilherme G. Piccoli 	 * The controller needs a delay before starts checking the device
7054adc010SGuilherme G. Piccoli 	 * readiness, which is done by reading the NVME_CSTS_RDY bit.
7154adc010SGuilherme G. Piccoli 	 */
7254adc010SGuilherme G. Piccoli 	NVME_QUIRK_DELAY_BEFORE_CHK_RDY		= (1 << 3),
73c5552fdeSAndy Lutomirski 
74c5552fdeSAndy Lutomirski 	/*
75c5552fdeSAndy Lutomirski 	 * APST should not be used.
76c5552fdeSAndy Lutomirski 	 */
77c5552fdeSAndy Lutomirski 	NVME_QUIRK_NO_APST			= (1 << 4),
78ff5350a8SAndy Lutomirski 
79ff5350a8SAndy Lutomirski 	/*
80ff5350a8SAndy Lutomirski 	 * The deepest sleep state should not be used.
81ff5350a8SAndy Lutomirski 	 */
82ff5350a8SAndy Lutomirski 	NVME_QUIRK_NO_DEEPEST_PS		= (1 << 5),
83608cc4b1SChristoph Hellwig 
84608cc4b1SChristoph Hellwig 	/*
85608cc4b1SChristoph Hellwig 	 * Supports the LighNVM command set if indicated in vs[1].
86608cc4b1SChristoph Hellwig 	 */
87608cc4b1SChristoph Hellwig 	NVME_QUIRK_LIGHTNVM			= (1 << 6),
889abd68efSJens Axboe 
899abd68efSJens Axboe 	/*
909abd68efSJens Axboe 	 * Set MEDIUM priority on SQ creation
919abd68efSJens Axboe 	 */
929abd68efSJens Axboe 	NVME_QUIRK_MEDIUM_PRIO_SQ		= (1 << 7),
936299358dSJames Dingwall 
946299358dSJames Dingwall 	/*
956299358dSJames Dingwall 	 * Ignore device provided subnqn.
966299358dSJames Dingwall 	 */
976299358dSJames Dingwall 	NVME_QUIRK_IGNORE_DEV_SUBNQN		= (1 << 8),
98106198edSChristoph Hellwig };
99106198edSChristoph Hellwig 
100d49187e9SChristoph Hellwig /*
101d49187e9SChristoph Hellwig  * Common request structure for NVMe passthrough.  All drivers must have
102d49187e9SChristoph Hellwig  * this structure as the first member of their request-private data.
103d49187e9SChristoph Hellwig  */
104d49187e9SChristoph Hellwig struct nvme_request {
105d49187e9SChristoph Hellwig 	struct nvme_command	*cmd;
106d49187e9SChristoph Hellwig 	union nvme_result	result;
10744e44b29SChristoph Hellwig 	u8			retries;
10827fa9bc5SChristoph Hellwig 	u8			flags;
10927fa9bc5SChristoph Hellwig 	u16			status;
11059e29ce6SSagi Grimberg 	struct nvme_ctrl	*ctrl;
11127fa9bc5SChristoph Hellwig };
11227fa9bc5SChristoph Hellwig 
11332acab31SChristoph Hellwig /*
11432acab31SChristoph Hellwig  * Mark a bio as coming in through the mpath node.
11532acab31SChristoph Hellwig  */
11632acab31SChristoph Hellwig #define REQ_NVME_MPATH		REQ_DRV
11732acab31SChristoph Hellwig 
11827fa9bc5SChristoph Hellwig enum {
11927fa9bc5SChristoph Hellwig 	NVME_REQ_CANCELLED		= (1 << 0),
120bb06ec31SJames Smart 	NVME_REQ_USERCMD		= (1 << 1),
121d49187e9SChristoph Hellwig };
122d49187e9SChristoph Hellwig 
123d49187e9SChristoph Hellwig static inline struct nvme_request *nvme_req(struct request *req)
124d49187e9SChristoph Hellwig {
125d49187e9SChristoph Hellwig 	return blk_mq_rq_to_pdu(req);
126d49187e9SChristoph Hellwig }
127d49187e9SChristoph Hellwig 
1285d87eb94SKeith Busch static inline u16 nvme_req_qid(struct request *req)
1295d87eb94SKeith Busch {
1305d87eb94SKeith Busch 	if (!req->rq_disk)
1315d87eb94SKeith Busch 		return 0;
1325d87eb94SKeith Busch 	return blk_mq_unique_tag_to_hwq(blk_mq_unique_tag(req)) + 1;
1335d87eb94SKeith Busch }
1345d87eb94SKeith Busch 
13554adc010SGuilherme G. Piccoli /* The below value is the specific amount of delay needed before checking
13654adc010SGuilherme G. Piccoli  * readiness in case of the PCI_DEVICE(0x1c58, 0x0003), which needs the
13754adc010SGuilherme G. Piccoli  * NVME_QUIRK_DELAY_BEFORE_CHK_RDY quirk enabled. The value (in ms) was
13854adc010SGuilherme G. Piccoli  * found empirically.
13954adc010SGuilherme G. Piccoli  */
1408c97eeccSJeff Lien #define NVME_QUIRK_DELAY_AMOUNT		2300
14154adc010SGuilherme G. Piccoli 
142bb8d261eSChristoph Hellwig enum nvme_ctrl_state {
143bb8d261eSChristoph Hellwig 	NVME_CTRL_NEW,
144bb8d261eSChristoph Hellwig 	NVME_CTRL_LIVE,
1452b1b7e78SJianchao Wang 	NVME_CTRL_ADMIN_ONLY,    /* Only admin queue live */
146bb8d261eSChristoph Hellwig 	NVME_CTRL_RESETTING,
147ad6a0a52SMax Gurtovoy 	NVME_CTRL_CONNECTING,
148bb8d261eSChristoph Hellwig 	NVME_CTRL_DELETING,
1490ff9d4e1SKeith Busch 	NVME_CTRL_DEAD,
150bb8d261eSChristoph Hellwig };
151bb8d261eSChristoph Hellwig 
1521c63dc66SChristoph Hellwig struct nvme_ctrl {
1536e3ca03eSSagi Grimberg 	bool comp_seen;
154bb8d261eSChristoph Hellwig 	enum nvme_ctrl_state state;
155bd4da3abSAndy Lutomirski 	bool identified;
156bb8d261eSChristoph Hellwig 	spinlock_t lock;
157e7ad43c3SKeith Busch 	struct mutex scan_lock;
1581c63dc66SChristoph Hellwig 	const struct nvme_ctrl_ops *ops;
15957dacad5SJay Sternberg 	struct request_queue *admin_q;
16007bfcd09SChristoph Hellwig 	struct request_queue *connect_q;
16157dacad5SJay Sternberg 	struct device *dev;
16257dacad5SJay Sternberg 	int instance;
163103e515eSHannes Reinecke 	int numa_node;
1645bae7f73SChristoph Hellwig 	struct blk_mq_tag_set *tagset;
16534b6c231SSagi Grimberg 	struct blk_mq_tag_set *admin_tagset;
1665bae7f73SChristoph Hellwig 	struct list_head namespaces;
167765cc031SJianchao Wang 	struct rw_semaphore namespaces_rwsem;
168d22524a4SChristoph Hellwig 	struct device ctrl_device;
1695bae7f73SChristoph Hellwig 	struct device *device;	/* char device */
170a6a5149bSChristoph Hellwig 	struct cdev cdev;
171d86c4d8eSChristoph Hellwig 	struct work_struct reset_work;
172c5017e85SChristoph Hellwig 	struct work_struct delete_work;
1731c63dc66SChristoph Hellwig 
174ab9e00ccSChristoph Hellwig 	struct nvme_subsystem *subsys;
175ab9e00ccSChristoph Hellwig 	struct list_head subsys_entry;
176ab9e00ccSChristoph Hellwig 
1774f1244c8SChristoph Hellwig 	struct opal_dev *opal_dev;
178a98e58e5SScott Bauer 
17957dacad5SJay Sternberg 	char name[12];
18076e3914aSChristoph Hellwig 	u16 cntlid;
1815fd4ce1bSChristoph Hellwig 
1825fd4ce1bSChristoph Hellwig 	u32 ctrl_config;
183b6dccf7fSArnav Dawn 	u16 mtfa;
184d858e5f0SSagi Grimberg 	u32 queue_count;
1855fd4ce1bSChristoph Hellwig 
18620d0dfe6SSagi Grimberg 	u64 cap;
1875fd4ce1bSChristoph Hellwig 	u32 page_size;
18857dacad5SJay Sternberg 	u32 max_hw_sectors;
189943e942eSJens Axboe 	u32 max_segments;
19049cd84b6SKeith Busch 	u16 crdt[3];
19157dacad5SJay Sternberg 	u16 oncs;
1928a9ae523SScott Bauer 	u16 oacs;
193f5d11840SJens Axboe 	u16 nssa;
194f5d11840SJens Axboe 	u16 nr_streams;
1950d0b660fSChristoph Hellwig 	u32 max_namespaces;
1966bf25d16SChristoph Hellwig 	atomic_t abort_limit;
19757dacad5SJay Sternberg 	u8 vwc;
198f3ca80fcSChristoph Hellwig 	u32 vs;
19907bfcd09SChristoph Hellwig 	u32 sgls;
200038bd4cbSSagi Grimberg 	u16 kas;
201c5552fdeSAndy Lutomirski 	u8 npss;
202c5552fdeSAndy Lutomirski 	u8 apsta;
203c0561f82SHannes Reinecke 	u32 oaes;
204e3d7874dSKeith Busch 	u32 aen_result;
2053e53ba38SSagi Grimberg 	u32 ctratt;
20607fbd32aSMartin K. Petersen 	unsigned int shutdown_timeout;
207038bd4cbSSagi Grimberg 	unsigned int kato;
208f3ca80fcSChristoph Hellwig 	bool subsystem;
209106198edSChristoph Hellwig 	unsigned long quirks;
210c5552fdeSAndy Lutomirski 	struct nvme_id_power_state psd[32];
21184fef62dSKeith Busch 	struct nvme_effects_log *effects;
2125955be21SChristoph Hellwig 	struct work_struct scan_work;
213f866fc42SChristoph Hellwig 	struct work_struct async_event_work;
214038bd4cbSSagi Grimberg 	struct delayed_work ka_work;
2150a34e466SRoland Dreier 	struct nvme_command ka_cmd;
216b6dccf7fSArnav Dawn 	struct work_struct fw_act_work;
21730d90964SChristoph Hellwig 	unsigned long events;
21807bfcd09SChristoph Hellwig 
2190d0b660fSChristoph Hellwig #ifdef CONFIG_NVME_MULTIPATH
2200d0b660fSChristoph Hellwig 	/* asymmetric namespace access: */
2210d0b660fSChristoph Hellwig 	u8 anacap;
2220d0b660fSChristoph Hellwig 	u8 anatt;
2230d0b660fSChristoph Hellwig 	u32 anagrpmax;
2240d0b660fSChristoph Hellwig 	u32 nanagrpid;
2250d0b660fSChristoph Hellwig 	struct mutex ana_lock;
2260d0b660fSChristoph Hellwig 	struct nvme_ana_rsp_hdr *ana_log_buf;
2270d0b660fSChristoph Hellwig 	size_t ana_log_size;
2280d0b660fSChristoph Hellwig 	struct timer_list anatt_timer;
2290d0b660fSChristoph Hellwig 	struct work_struct ana_work;
2300d0b660fSChristoph Hellwig #endif
2310d0b660fSChristoph Hellwig 
232c5552fdeSAndy Lutomirski 	/* Power saving configuration */
233c5552fdeSAndy Lutomirski 	u64 ps_max_latency_us;
23476a5af84SKai-Heng Feng 	bool apst_enabled;
235c5552fdeSAndy Lutomirski 
236044a9df1SChristoph Hellwig 	/* PCIe only: */
237fe6d53c9SChristoph Hellwig 	u32 hmpre;
238fe6d53c9SChristoph Hellwig 	u32 hmmin;
239044a9df1SChristoph Hellwig 	u32 hmminds;
240044a9df1SChristoph Hellwig 	u16 hmmaxd;
241fe6d53c9SChristoph Hellwig 
24207bfcd09SChristoph Hellwig 	/* Fabrics only */
24307bfcd09SChristoph Hellwig 	u16 sqsize;
24407bfcd09SChristoph Hellwig 	u32 ioccsz;
24507bfcd09SChristoph Hellwig 	u32 iorcsz;
24607bfcd09SChristoph Hellwig 	u16 icdoff;
24707bfcd09SChristoph Hellwig 	u16 maxcmd;
248fdf9dfa8SSagi Grimberg 	int nr_reconnects;
24907bfcd09SChristoph Hellwig 	struct nvmf_ctrl_options *opts;
250cb5b7262SJens Axboe 
251cb5b7262SJens Axboe 	struct page *discard_page;
252cb5b7262SJens Axboe 	unsigned long discard_page_busy;
25357dacad5SJay Sternberg };
25457dacad5SJay Sternberg 
25575c10e73SHannes Reinecke enum nvme_iopolicy {
25675c10e73SHannes Reinecke 	NVME_IOPOLICY_NUMA,
25775c10e73SHannes Reinecke 	NVME_IOPOLICY_RR,
25875c10e73SHannes Reinecke };
25975c10e73SHannes Reinecke 
260ab9e00ccSChristoph Hellwig struct nvme_subsystem {
261ab9e00ccSChristoph Hellwig 	int			instance;
262ab9e00ccSChristoph Hellwig 	struct device		dev;
263ab9e00ccSChristoph Hellwig 	/*
264ab9e00ccSChristoph Hellwig 	 * Because we unregister the device on the last put we need
265ab9e00ccSChristoph Hellwig 	 * a separate refcount.
266ab9e00ccSChristoph Hellwig 	 */
267ab9e00ccSChristoph Hellwig 	struct kref		ref;
268ab9e00ccSChristoph Hellwig 	struct list_head	entry;
269ab9e00ccSChristoph Hellwig 	struct mutex		lock;
270ab9e00ccSChristoph Hellwig 	struct list_head	ctrls;
271ed754e5dSChristoph Hellwig 	struct list_head	nsheads;
272ab9e00ccSChristoph Hellwig 	char			subnqn[NVMF_NQN_SIZE];
273ab9e00ccSChristoph Hellwig 	char			serial[20];
274ab9e00ccSChristoph Hellwig 	char			model[40];
275ab9e00ccSChristoph Hellwig 	char			firmware_rev[8];
276ab9e00ccSChristoph Hellwig 	u8			cmic;
277ab9e00ccSChristoph Hellwig 	u16			vendor_id;
278ed754e5dSChristoph Hellwig 	struct ida		ns_ida;
27975c10e73SHannes Reinecke #ifdef CONFIG_NVME_MULTIPATH
28075c10e73SHannes Reinecke 	enum nvme_iopolicy	iopolicy;
28175c10e73SHannes Reinecke #endif
282ab9e00ccSChristoph Hellwig };
283ab9e00ccSChristoph Hellwig 
284002fab04SChristoph Hellwig /*
285002fab04SChristoph Hellwig  * Container structure for uniqueue namespace identifiers.
286002fab04SChristoph Hellwig  */
287002fab04SChristoph Hellwig struct nvme_ns_ids {
288002fab04SChristoph Hellwig 	u8	eui64[8];
289002fab04SChristoph Hellwig 	u8	nguid[16];
290002fab04SChristoph Hellwig 	uuid_t	uuid;
291002fab04SChristoph Hellwig };
292002fab04SChristoph Hellwig 
293ed754e5dSChristoph Hellwig /*
294ed754e5dSChristoph Hellwig  * Anchor structure for namespaces.  There is one for each namespace in a
295ed754e5dSChristoph Hellwig  * NVMe subsystem that any of our controllers can see, and the namespace
296ed754e5dSChristoph Hellwig  * structure for each controller is chained of it.  For private namespaces
297ed754e5dSChristoph Hellwig  * there is a 1:1 relation to our namespace structures, that is ->list
298ed754e5dSChristoph Hellwig  * only ever has a single entry for private namespaces.
299ed754e5dSChristoph Hellwig  */
300ed754e5dSChristoph Hellwig struct nvme_ns_head {
301ed754e5dSChristoph Hellwig 	struct list_head	list;
302ed754e5dSChristoph Hellwig 	struct srcu_struct      srcu;
303ed754e5dSChristoph Hellwig 	struct nvme_subsystem	*subsys;
304ed754e5dSChristoph Hellwig 	unsigned		ns_id;
305ed754e5dSChristoph Hellwig 	struct nvme_ns_ids	ids;
306ed754e5dSChristoph Hellwig 	struct list_head	entry;
307ed754e5dSChristoph Hellwig 	struct kref		ref;
308ed754e5dSChristoph Hellwig 	int			instance;
309f3334447SChristoph Hellwig #ifdef CONFIG_NVME_MULTIPATH
310f3334447SChristoph Hellwig 	struct gendisk		*disk;
311f3334447SChristoph Hellwig 	struct bio_list		requeue_list;
312f3334447SChristoph Hellwig 	spinlock_t		requeue_lock;
313f3334447SChristoph Hellwig 	struct work_struct	requeue_work;
314f3334447SChristoph Hellwig 	struct mutex		lock;
315f3334447SChristoph Hellwig 	struct nvme_ns __rcu	*current_path[];
316f3334447SChristoph Hellwig #endif
317ed754e5dSChristoph Hellwig };
318ed754e5dSChristoph Hellwig 
319b9e03857SThomas Tai #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
320b9e03857SThomas Tai struct nvme_fault_inject {
321b9e03857SThomas Tai 	struct fault_attr attr;
322b9e03857SThomas Tai 	struct dentry *parent;
323b9e03857SThomas Tai 	bool dont_retry;	/* DNR, do not retry */
324b9e03857SThomas Tai 	u16 status;		/* status code */
325b9e03857SThomas Tai };
326b9e03857SThomas Tai #endif
327b9e03857SThomas Tai 
32857dacad5SJay Sternberg struct nvme_ns {
32957dacad5SJay Sternberg 	struct list_head list;
33057dacad5SJay Sternberg 
3311c63dc66SChristoph Hellwig 	struct nvme_ctrl *ctrl;
33257dacad5SJay Sternberg 	struct request_queue *queue;
33357dacad5SJay Sternberg 	struct gendisk *disk;
3340d0b660fSChristoph Hellwig #ifdef CONFIG_NVME_MULTIPATH
3350d0b660fSChristoph Hellwig 	enum nvme_ana_state ana_state;
3360d0b660fSChristoph Hellwig 	u32 ana_grpid;
3370d0b660fSChristoph Hellwig #endif
338ed754e5dSChristoph Hellwig 	struct list_head siblings;
339b0b4e09cSMatias Bjørling 	struct nvm_dev *ndev;
34057dacad5SJay Sternberg 	struct kref kref;
341ed754e5dSChristoph Hellwig 	struct nvme_ns_head *head;
34257dacad5SJay Sternberg 
34357dacad5SJay Sternberg 	int lba_shift;
34457dacad5SJay Sternberg 	u16 ms;
345f5d11840SJens Axboe 	u16 sgs;
346f5d11840SJens Axboe 	u32 sws;
34757dacad5SJay Sternberg 	bool ext;
34857dacad5SJay Sternberg 	u8 pi_type;
349646017a6SKeith Busch 	unsigned long flags;
350646017a6SKeith Busch #define NVME_NS_REMOVING	0
35169d9a99cSKeith Busch #define NVME_NS_DEAD     	1
3520d0b660fSChristoph Hellwig #define NVME_NS_ANA_PENDING	2
35357eeaf8eSChristoph Hellwig 	u16 noiob;
354b9e03857SThomas Tai 
355b9e03857SThomas Tai #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
356b9e03857SThomas Tai 	struct nvme_fault_inject fault_inject;
357b9e03857SThomas Tai #endif
358b9e03857SThomas Tai 
35957dacad5SJay Sternberg };
36057dacad5SJay Sternberg 
3611c63dc66SChristoph Hellwig struct nvme_ctrl_ops {
3621a353d85SMing Lin 	const char *name;
363e439bb12SSagi Grimberg 	struct module *module;
364d3d5b87dSChristoph Hellwig 	unsigned int flags;
365d3d5b87dSChristoph Hellwig #define NVME_F_FABRICS			(1 << 0)
366c81bfba9SChristoph Hellwig #define NVME_F_METADATA_SUPPORTED	(1 << 1)
367e0596ab2SLogan Gunthorpe #define NVME_F_PCI_P2PDMA		(1 << 2)
3681c63dc66SChristoph Hellwig 	int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val);
3695fd4ce1bSChristoph Hellwig 	int (*reg_write32)(struct nvme_ctrl *ctrl, u32 off, u32 val);
3707fd8930fSChristoph Hellwig 	int (*reg_read64)(struct nvme_ctrl *ctrl, u32 off, u64 *val);
3711673f1f0SChristoph Hellwig 	void (*free_ctrl)(struct nvme_ctrl *ctrl);
372ad22c355SKeith Busch 	void (*submit_async_event)(struct nvme_ctrl *ctrl);
373c5017e85SChristoph Hellwig 	void (*delete_ctrl)(struct nvme_ctrl *ctrl);
3741a353d85SMing Lin 	int (*get_address)(struct nvme_ctrl *ctrl, char *buf, int size);
37557dacad5SJay Sternberg };
37657dacad5SJay Sternberg 
377b9e03857SThomas Tai #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
378b9e03857SThomas Tai void nvme_fault_inject_init(struct nvme_ns *ns);
379b9e03857SThomas Tai void nvme_fault_inject_fini(struct nvme_ns *ns);
380b9e03857SThomas Tai void nvme_should_fail(struct request *req);
381b9e03857SThomas Tai #else
382b9e03857SThomas Tai static inline void nvme_fault_inject_init(struct nvme_ns *ns) {}
383b9e03857SThomas Tai static inline void nvme_fault_inject_fini(struct nvme_ns *ns) {}
384b9e03857SThomas Tai static inline void nvme_should_fail(struct request *req) {}
385b9e03857SThomas Tai #endif
386b9e03857SThomas Tai 
387f3ca80fcSChristoph Hellwig static inline int nvme_reset_subsystem(struct nvme_ctrl *ctrl)
388f3ca80fcSChristoph Hellwig {
389f3ca80fcSChristoph Hellwig 	if (!ctrl->subsystem)
390f3ca80fcSChristoph Hellwig 		return -ENOTTY;
391f3ca80fcSChristoph Hellwig 	return ctrl->ops->reg_write32(ctrl, NVME_REG_NSSR, 0x4E564D65);
392f3ca80fcSChristoph Hellwig }
393f3ca80fcSChristoph Hellwig 
39457dacad5SJay Sternberg static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
39557dacad5SJay Sternberg {
39657dacad5SJay Sternberg 	return (sector >> (ns->lba_shift - 9));
39757dacad5SJay Sternberg }
39857dacad5SJay Sternberg 
39927fa9bc5SChristoph Hellwig static inline void nvme_end_request(struct request *req, __le16 status,
40027fa9bc5SChristoph Hellwig 		union nvme_result result)
40115a190f7SChristoph Hellwig {
40227fa9bc5SChristoph Hellwig 	struct nvme_request *rq = nvme_req(req);
40327fa9bc5SChristoph Hellwig 
40427fa9bc5SChristoph Hellwig 	rq->status = le16_to_cpu(status) >> 1;
40527fa9bc5SChristoph Hellwig 	rq->result = result;
406b9e03857SThomas Tai 	/* inject error when permitted by fault injection framework */
407b9e03857SThomas Tai 	nvme_should_fail(req);
40808e0029aSChristoph Hellwig 	blk_mq_complete_request(req);
40915a190f7SChristoph Hellwig }
41015a190f7SChristoph Hellwig 
411d22524a4SChristoph Hellwig static inline void nvme_get_ctrl(struct nvme_ctrl *ctrl)
412d22524a4SChristoph Hellwig {
413d22524a4SChristoph Hellwig 	get_device(ctrl->device);
414d22524a4SChristoph Hellwig }
415d22524a4SChristoph Hellwig 
416d22524a4SChristoph Hellwig static inline void nvme_put_ctrl(struct nvme_ctrl *ctrl)
417d22524a4SChristoph Hellwig {
418d22524a4SChristoph Hellwig 	put_device(ctrl->device);
419d22524a4SChristoph Hellwig }
420d22524a4SChristoph Hellwig 
42177f02a7aSChristoph Hellwig void nvme_complete_rq(struct request *req);
4227baa8572SJens Axboe bool nvme_cancel_request(struct request *req, void *data, bool reserved);
423bb8d261eSChristoph Hellwig bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
424bb8d261eSChristoph Hellwig 		enum nvme_ctrl_state new_state);
4255fd4ce1bSChristoph Hellwig int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
4265fd4ce1bSChristoph Hellwig int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
4275fd4ce1bSChristoph Hellwig int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl);
428f3ca80fcSChristoph Hellwig int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
429f3ca80fcSChristoph Hellwig 		const struct nvme_ctrl_ops *ops, unsigned long quirks);
43053029b04SKeith Busch void nvme_uninit_ctrl(struct nvme_ctrl *ctrl);
431d09f2b45SSagi Grimberg void nvme_start_ctrl(struct nvme_ctrl *ctrl);
432d09f2b45SSagi Grimberg void nvme_stop_ctrl(struct nvme_ctrl *ctrl);
4331673f1f0SChristoph Hellwig void nvme_put_ctrl(struct nvme_ctrl *ctrl);
4347fd8930fSChristoph Hellwig int nvme_init_identify(struct nvme_ctrl *ctrl);
4355bae7f73SChristoph Hellwig 
4365bae7f73SChristoph Hellwig void nvme_remove_namespaces(struct nvme_ctrl *ctrl);
4371673f1f0SChristoph Hellwig 
4384f1244c8SChristoph Hellwig int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
4394f1244c8SChristoph Hellwig 		bool send);
440a98e58e5SScott Bauer 
4417bf58533SChristoph Hellwig void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
442287a63ebSChristoph Hellwig 		volatile union nvme_result *res);
443f866fc42SChristoph Hellwig 
44425646264SKeith Busch void nvme_stop_queues(struct nvme_ctrl *ctrl);
44525646264SKeith Busch void nvme_start_queues(struct nvme_ctrl *ctrl);
44669d9a99cSKeith Busch void nvme_kill_queues(struct nvme_ctrl *ctrl);
447302ad8ccSKeith Busch void nvme_unfreeze(struct nvme_ctrl *ctrl);
448302ad8ccSKeith Busch void nvme_wait_freeze(struct nvme_ctrl *ctrl);
449302ad8ccSKeith Busch void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout);
450302ad8ccSKeith Busch void nvme_start_freeze(struct nvme_ctrl *ctrl);
451363c9aacSSagi Grimberg 
452eb71f435SChristoph Hellwig #define NVME_QID_ANY -1
4534160982eSChristoph Hellwig struct request *nvme_alloc_request(struct request_queue *q,
4549a95e4efSBart Van Assche 		struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid);
455f7f1fc36SMax Gurtovoy void nvme_cleanup_cmd(struct request *req);
456fc17b653SChristoph Hellwig blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
4578093f7caSMing Lin 		struct nvme_command *cmd);
45857dacad5SJay Sternberg int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
45957dacad5SJay Sternberg 		void *buf, unsigned bufflen);
46057dacad5SJay Sternberg int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
461d49187e9SChristoph Hellwig 		union nvme_result *result, void *buffer, unsigned bufflen,
4629a95e4efSBart Van Assche 		unsigned timeout, int qid, int at_head,
4636287b51cSSagi Grimberg 		blk_mq_req_flags_t flags, bool poll);
4649a0be7abSChristoph Hellwig int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count);
465038bd4cbSSagi Grimberg void nvme_stop_keep_alive(struct nvme_ctrl *ctrl);
466d86c4d8eSChristoph Hellwig int nvme_reset_ctrl(struct nvme_ctrl *ctrl);
46779c48ccfSSagi Grimberg int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl);
468c5017e85SChristoph Hellwig int nvme_delete_ctrl(struct nvme_ctrl *ctrl);
469c5017e85SChristoph Hellwig int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl);
47057dacad5SJay Sternberg 
4710e98719bSChristoph Hellwig int nvme_get_log(struct nvme_ctrl *ctrl, u32 nsid, u8 log_page, u8 lsp,
4720e98719bSChristoph Hellwig 		void *log, size_t size, u64 offset);
473d558fb51SMatias Bjørling 
47433b14f67SHannes Reinecke extern const struct attribute_group *nvme_ns_id_attr_groups[];
47532acab31SChristoph Hellwig extern const struct block_device_operations nvme_ns_head_ops;
47632acab31SChristoph Hellwig 
47732acab31SChristoph Hellwig #ifdef CONFIG_NVME_MULTIPATH
4780d0b660fSChristoph Hellwig bool nvme_ctrl_use_ana(struct nvme_ctrl *ctrl);
479a785dbccSKeith Busch void nvme_set_disk_name(char *disk_name, struct nvme_ns *ns,
480a785dbccSKeith Busch 			struct nvme_ctrl *ctrl, int *flags);
48132acab31SChristoph Hellwig void nvme_failover_req(struct request *req);
48232acab31SChristoph Hellwig void nvme_kick_requeue_lists(struct nvme_ctrl *ctrl);
48332acab31SChristoph Hellwig int nvme_mpath_alloc_disk(struct nvme_ctrl *ctrl,struct nvme_ns_head *head);
4840d0b660fSChristoph Hellwig void nvme_mpath_add_disk(struct nvme_ns *ns, struct nvme_id_ns *id);
48532acab31SChristoph Hellwig void nvme_mpath_remove_disk(struct nvme_ns_head *head);
4860d0b660fSChristoph Hellwig int nvme_mpath_init(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id);
4870d0b660fSChristoph Hellwig void nvme_mpath_uninit(struct nvme_ctrl *ctrl);
4880d0b660fSChristoph Hellwig void nvme_mpath_stop(struct nvme_ctrl *ctrl);
489f3334447SChristoph Hellwig void nvme_mpath_clear_current_path(struct nvme_ns *ns);
49032acab31SChristoph Hellwig struct nvme_ns *nvme_find_path(struct nvme_ns_head *head);
491479a322fSSagi Grimberg 
492479a322fSSagi Grimberg static inline void nvme_mpath_check_last_path(struct nvme_ns *ns)
493479a322fSSagi Grimberg {
494479a322fSSagi Grimberg 	struct nvme_ns_head *head = ns->head;
495479a322fSSagi Grimberg 
496479a322fSSagi Grimberg 	if (head->disk && list_empty(&head->list))
497479a322fSSagi Grimberg 		kblockd_schedule_work(&head->requeue_work);
498479a322fSSagi Grimberg }
499479a322fSSagi Grimberg 
5000d0b660fSChristoph Hellwig extern struct device_attribute dev_attr_ana_grpid;
5010d0b660fSChristoph Hellwig extern struct device_attribute dev_attr_ana_state;
50275c10e73SHannes Reinecke extern struct device_attribute subsys_attr_iopolicy;
5030d0b660fSChristoph Hellwig 
50432acab31SChristoph Hellwig #else
5050d0b660fSChristoph Hellwig static inline bool nvme_ctrl_use_ana(struct nvme_ctrl *ctrl)
5060d0b660fSChristoph Hellwig {
5070d0b660fSChristoph Hellwig 	return false;
5080d0b660fSChristoph Hellwig }
509a785dbccSKeith Busch /*
510a785dbccSKeith Busch  * Without the multipath code enabled, multiple controller per subsystems are
511a785dbccSKeith Busch  * visible as devices and thus we cannot use the subsystem instance.
512a785dbccSKeith Busch  */
513a785dbccSKeith Busch static inline void nvme_set_disk_name(char *disk_name, struct nvme_ns *ns,
514a785dbccSKeith Busch 				      struct nvme_ctrl *ctrl, int *flags)
515a785dbccSKeith Busch {
516a785dbccSKeith Busch 	sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->head->instance);
517a785dbccSKeith Busch }
518a785dbccSKeith Busch 
51932acab31SChristoph Hellwig static inline void nvme_failover_req(struct request *req)
52032acab31SChristoph Hellwig {
52132acab31SChristoph Hellwig }
52232acab31SChristoph Hellwig static inline void nvme_kick_requeue_lists(struct nvme_ctrl *ctrl)
52332acab31SChristoph Hellwig {
52432acab31SChristoph Hellwig }
52532acab31SChristoph Hellwig static inline int nvme_mpath_alloc_disk(struct nvme_ctrl *ctrl,
52632acab31SChristoph Hellwig 		struct nvme_ns_head *head)
52732acab31SChristoph Hellwig {
52832acab31SChristoph Hellwig 	return 0;
52932acab31SChristoph Hellwig }
5300d0b660fSChristoph Hellwig static inline void nvme_mpath_add_disk(struct nvme_ns *ns,
5310d0b660fSChristoph Hellwig 		struct nvme_id_ns *id)
53232acab31SChristoph Hellwig {
53332acab31SChristoph Hellwig }
53432acab31SChristoph Hellwig static inline void nvme_mpath_remove_disk(struct nvme_ns_head *head)
53532acab31SChristoph Hellwig {
53632acab31SChristoph Hellwig }
53732acab31SChristoph Hellwig static inline void nvme_mpath_clear_current_path(struct nvme_ns *ns)
53832acab31SChristoph Hellwig {
53932acab31SChristoph Hellwig }
540479a322fSSagi Grimberg static inline void nvme_mpath_check_last_path(struct nvme_ns *ns)
541479a322fSSagi Grimberg {
542479a322fSSagi Grimberg }
5430d0b660fSChristoph Hellwig static inline int nvme_mpath_init(struct nvme_ctrl *ctrl,
5440d0b660fSChristoph Hellwig 		struct nvme_id_ctrl *id)
5450d0b660fSChristoph Hellwig {
54614a1336eSChristoph Hellwig 	if (ctrl->subsys->cmic & (1 << 3))
54714a1336eSChristoph Hellwig 		dev_warn(ctrl->device,
54814a1336eSChristoph Hellwig "Please enable CONFIG_NVME_MULTIPATH for full support of multi-port devices.\n");
5490d0b660fSChristoph Hellwig 	return 0;
5500d0b660fSChristoph Hellwig }
5510d0b660fSChristoph Hellwig static inline void nvme_mpath_uninit(struct nvme_ctrl *ctrl)
5520d0b660fSChristoph Hellwig {
5530d0b660fSChristoph Hellwig }
5540d0b660fSChristoph Hellwig static inline void nvme_mpath_stop(struct nvme_ctrl *ctrl)
5550d0b660fSChristoph Hellwig {
5560d0b660fSChristoph Hellwig }
55732acab31SChristoph Hellwig #endif /* CONFIG_NVME_MULTIPATH */
55832acab31SChristoph Hellwig 
559c4699e70SKeith Busch #ifdef CONFIG_NVM
5603dc87dd0SMatias Bjørling int nvme_nvm_register(struct nvme_ns *ns, char *disk_name, int node);
561b0b4e09cSMatias Bjørling void nvme_nvm_unregister(struct nvme_ns *ns);
56233b14f67SHannes Reinecke extern const struct attribute_group nvme_nvm_attr_group;
56384d4add7SMatias Bjørling int nvme_nvm_ioctl(struct nvme_ns *ns, unsigned int cmd, unsigned long arg);
564c4699e70SKeith Busch #else
565b0b4e09cSMatias Bjørling static inline int nvme_nvm_register(struct nvme_ns *ns, char *disk_name,
5663dc87dd0SMatias Bjørling 				    int node)
567c4699e70SKeith Busch {
568c4699e70SKeith Busch 	return 0;
569c4699e70SKeith Busch }
570c4699e70SKeith Busch 
571b0b4e09cSMatias Bjørling static inline void nvme_nvm_unregister(struct nvme_ns *ns) {};
57284d4add7SMatias Bjørling static inline int nvme_nvm_ioctl(struct nvme_ns *ns, unsigned int cmd,
57384d4add7SMatias Bjørling 							unsigned long arg)
57484d4add7SMatias Bjørling {
57584d4add7SMatias Bjørling 	return -ENOTTY;
57684d4add7SMatias Bjørling }
5773dc87dd0SMatias Bjørling #endif /* CONFIG_NVM */
5783dc87dd0SMatias Bjørling 
57940267efdSSimon A. F. Lund static inline struct nvme_ns *nvme_get_ns_from_dev(struct device *dev)
58040267efdSSimon A. F. Lund {
58140267efdSSimon A. F. Lund 	return dev_to_disk(dev)->private_data;
58240267efdSSimon A. F. Lund }
583ca064085SMatias Bjørling 
5845bae7f73SChristoph Hellwig int __init nvme_core_init(void);
5858eb5d89fSChengguang Xu void __exit nvme_core_exit(void);
5865bae7f73SChristoph Hellwig 
58757dacad5SJay Sternberg #endif /* _NVME_H */
588