xref: /openbmc/linux/drivers/nvme/host/nvme.h (revision 8ae4e447)
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>
1857dacad5SJay Sternberg #include <linux/pci.h>
1957dacad5SJay Sternberg #include <linux/kref.h>
2057dacad5SJay Sternberg #include <linux/blk-mq.h>
21b0b4e09cSMatias Bjørling #include <linux/lightnvm.h>
22a98e58e5SScott Bauer #include <linux/sed-opal.h>
2357dacad5SJay Sternberg 
248ae4e447SMarc Olson extern unsigned int nvme_io_timeout;
2557dacad5SJay Sternberg #define NVME_IO_TIMEOUT	(nvme_io_timeout * HZ)
2657dacad5SJay Sternberg 
278ae4e447SMarc Olson extern unsigned int admin_timeout;
2821d34711SChristoph Hellwig #define ADMIN_TIMEOUT	(admin_timeout * HZ)
2921d34711SChristoph Hellwig 
30038bd4cbSSagi Grimberg #define NVME_DEFAULT_KATO	5
31038bd4cbSSagi Grimberg #define NVME_KATO_GRACE		10
32038bd4cbSSagi Grimberg 
339a6327d2SSagi Grimberg extern struct workqueue_struct *nvme_wq;
349a6327d2SSagi Grimberg 
35ca064085SMatias Bjørling enum {
36ca064085SMatias Bjørling 	NVME_NS_LBA		= 0,
37ca064085SMatias Bjørling 	NVME_NS_LIGHTNVM	= 1,
38ca064085SMatias Bjørling };
39ca064085SMatias Bjørling 
4057dacad5SJay Sternberg /*
41106198edSChristoph Hellwig  * List of workarounds for devices that required behavior not specified in
42106198edSChristoph Hellwig  * the standard.
4357dacad5SJay Sternberg  */
44106198edSChristoph Hellwig enum nvme_quirks {
45106198edSChristoph Hellwig 	/*
46106198edSChristoph Hellwig 	 * Prefers I/O aligned to a stripe size specified in a vendor
47106198edSChristoph Hellwig 	 * specific Identify field.
48106198edSChristoph Hellwig 	 */
49106198edSChristoph Hellwig 	NVME_QUIRK_STRIPE_SIZE			= (1 << 0),
50540c801cSKeith Busch 
51540c801cSKeith Busch 	/*
52540c801cSKeith Busch 	 * The controller doesn't handle Identify value others than 0 or 1
53540c801cSKeith Busch 	 * correctly.
54540c801cSKeith Busch 	 */
55540c801cSKeith Busch 	NVME_QUIRK_IDENTIFY_CNS			= (1 << 1),
5608095e70SKeith Busch 
5708095e70SKeith Busch 	/*
58e850fd16SChristoph Hellwig 	 * The controller deterministically returns O's on reads to
59e850fd16SChristoph Hellwig 	 * logical blocks that deallocate was called on.
6008095e70SKeith Busch 	 */
61e850fd16SChristoph Hellwig 	NVME_QUIRK_DEALLOCATE_ZEROES		= (1 << 2),
6254adc010SGuilherme G. Piccoli 
6354adc010SGuilherme G. Piccoli 	/*
6454adc010SGuilherme G. Piccoli 	 * The controller needs a delay before starts checking the device
6554adc010SGuilherme G. Piccoli 	 * readiness, which is done by reading the NVME_CSTS_RDY bit.
6654adc010SGuilherme G. Piccoli 	 */
6754adc010SGuilherme G. Piccoli 	NVME_QUIRK_DELAY_BEFORE_CHK_RDY		= (1 << 3),
68c5552fdeSAndy Lutomirski 
69c5552fdeSAndy Lutomirski 	/*
70c5552fdeSAndy Lutomirski 	 * APST should not be used.
71c5552fdeSAndy Lutomirski 	 */
72c5552fdeSAndy Lutomirski 	NVME_QUIRK_NO_APST			= (1 << 4),
73ff5350a8SAndy Lutomirski 
74ff5350a8SAndy Lutomirski 	/*
75ff5350a8SAndy Lutomirski 	 * The deepest sleep state should not be used.
76ff5350a8SAndy Lutomirski 	 */
77ff5350a8SAndy Lutomirski 	NVME_QUIRK_NO_DEEPEST_PS		= (1 << 5),
78608cc4b1SChristoph Hellwig 
79608cc4b1SChristoph Hellwig 	/*
80608cc4b1SChristoph Hellwig 	 * Supports the LighNVM command set if indicated in vs[1].
81608cc4b1SChristoph Hellwig 	 */
82608cc4b1SChristoph Hellwig 	NVME_QUIRK_LIGHTNVM			= (1 << 6),
83106198edSChristoph Hellwig };
84106198edSChristoph Hellwig 
85d49187e9SChristoph Hellwig /*
86d49187e9SChristoph Hellwig  * Common request structure for NVMe passthrough.  All drivers must have
87d49187e9SChristoph Hellwig  * this structure as the first member of their request-private data.
88d49187e9SChristoph Hellwig  */
89d49187e9SChristoph Hellwig struct nvme_request {
90d49187e9SChristoph Hellwig 	struct nvme_command	*cmd;
91d49187e9SChristoph Hellwig 	union nvme_result	result;
9244e44b29SChristoph Hellwig 	u8			retries;
9327fa9bc5SChristoph Hellwig 	u8			flags;
9427fa9bc5SChristoph Hellwig 	u16			status;
9527fa9bc5SChristoph Hellwig };
9627fa9bc5SChristoph Hellwig 
9727fa9bc5SChristoph Hellwig enum {
9827fa9bc5SChristoph Hellwig 	NVME_REQ_CANCELLED		= (1 << 0),
99d49187e9SChristoph Hellwig };
100d49187e9SChristoph Hellwig 
101d49187e9SChristoph Hellwig static inline struct nvme_request *nvme_req(struct request *req)
102d49187e9SChristoph Hellwig {
103d49187e9SChristoph Hellwig 	return blk_mq_rq_to_pdu(req);
104d49187e9SChristoph Hellwig }
105d49187e9SChristoph Hellwig 
10654adc010SGuilherme G. Piccoli /* The below value is the specific amount of delay needed before checking
10754adc010SGuilherme G. Piccoli  * readiness in case of the PCI_DEVICE(0x1c58, 0x0003), which needs the
10854adc010SGuilherme G. Piccoli  * NVME_QUIRK_DELAY_BEFORE_CHK_RDY quirk enabled. The value (in ms) was
10954adc010SGuilherme G. Piccoli  * found empirically.
11054adc010SGuilherme G. Piccoli  */
11154adc010SGuilherme G. Piccoli #define NVME_QUIRK_DELAY_AMOUNT		2000
11254adc010SGuilherme G. Piccoli 
113bb8d261eSChristoph Hellwig enum nvme_ctrl_state {
114bb8d261eSChristoph Hellwig 	NVME_CTRL_NEW,
115bb8d261eSChristoph Hellwig 	NVME_CTRL_LIVE,
116bb8d261eSChristoph Hellwig 	NVME_CTRL_RESETTING,
117def61ecaSChristoph Hellwig 	NVME_CTRL_RECONNECTING,
118bb8d261eSChristoph Hellwig 	NVME_CTRL_DELETING,
1190ff9d4e1SKeith Busch 	NVME_CTRL_DEAD,
120bb8d261eSChristoph Hellwig };
121bb8d261eSChristoph Hellwig 
1221c63dc66SChristoph Hellwig struct nvme_ctrl {
123bb8d261eSChristoph Hellwig 	enum nvme_ctrl_state state;
124bd4da3abSAndy Lutomirski 	bool identified;
125bb8d261eSChristoph Hellwig 	spinlock_t lock;
1261c63dc66SChristoph Hellwig 	const struct nvme_ctrl_ops *ops;
12757dacad5SJay Sternberg 	struct request_queue *admin_q;
12807bfcd09SChristoph Hellwig 	struct request_queue *connect_q;
12957dacad5SJay Sternberg 	struct device *dev;
13057dacad5SJay Sternberg 	struct kref kref;
13157dacad5SJay Sternberg 	int instance;
1325bae7f73SChristoph Hellwig 	struct blk_mq_tag_set *tagset;
13334b6c231SSagi Grimberg 	struct blk_mq_tag_set *admin_tagset;
1345bae7f73SChristoph Hellwig 	struct list_head namespaces;
13569d3b8acSChristoph Hellwig 	struct mutex namespaces_mutex;
1365bae7f73SChristoph Hellwig 	struct device *device;	/* char device */
137f3ca80fcSChristoph Hellwig 	struct list_head node;
138075790ebSKeith Busch 	struct ida ns_ida;
139d86c4d8eSChristoph Hellwig 	struct work_struct reset_work;
1401c63dc66SChristoph Hellwig 
1414f1244c8SChristoph Hellwig 	struct opal_dev *opal_dev;
142a98e58e5SScott Bauer 
14357dacad5SJay Sternberg 	char name[12];
14457dacad5SJay Sternberg 	char serial[20];
14557dacad5SJay Sternberg 	char model[40];
14657dacad5SJay Sternberg 	char firmware_rev[8];
147180de007SChristoph Hellwig 	char subnqn[NVMF_NQN_SIZE];
14876e3914aSChristoph Hellwig 	u16 cntlid;
1495fd4ce1bSChristoph Hellwig 
1505fd4ce1bSChristoph Hellwig 	u32 ctrl_config;
151b6dccf7fSArnav Dawn 	u16 mtfa;
152d858e5f0SSagi Grimberg 	u32 queue_count;
1535fd4ce1bSChristoph Hellwig 
15420d0dfe6SSagi Grimberg 	u64 cap;
1555fd4ce1bSChristoph Hellwig 	u32 page_size;
15657dacad5SJay Sternberg 	u32 max_hw_sectors;
15757dacad5SJay Sternberg 	u16 oncs;
158118472abSKeith Busch 	u16 vid;
1598a9ae523SScott Bauer 	u16 oacs;
160f5d11840SJens Axboe 	u16 nssa;
161f5d11840SJens Axboe 	u16 nr_streams;
1626bf25d16SChristoph Hellwig 	atomic_t abort_limit;
16357dacad5SJay Sternberg 	u8 event_limit;
16457dacad5SJay Sternberg 	u8 vwc;
165f3ca80fcSChristoph Hellwig 	u32 vs;
16607bfcd09SChristoph Hellwig 	u32 sgls;
167038bd4cbSSagi Grimberg 	u16 kas;
168c5552fdeSAndy Lutomirski 	u8 npss;
169c5552fdeSAndy Lutomirski 	u8 apsta;
17007fbd32aSMartin K. Petersen 	unsigned int shutdown_timeout;
171038bd4cbSSagi Grimberg 	unsigned int kato;
172f3ca80fcSChristoph Hellwig 	bool subsystem;
173106198edSChristoph Hellwig 	unsigned long quirks;
174c5552fdeSAndy Lutomirski 	struct nvme_id_power_state psd[32];
1755955be21SChristoph Hellwig 	struct work_struct scan_work;
176f866fc42SChristoph Hellwig 	struct work_struct async_event_work;
177038bd4cbSSagi Grimberg 	struct delayed_work ka_work;
178b6dccf7fSArnav Dawn 	struct work_struct fw_act_work;
17907bfcd09SChristoph Hellwig 
180c5552fdeSAndy Lutomirski 	/* Power saving configuration */
181c5552fdeSAndy Lutomirski 	u64 ps_max_latency_us;
18276a5af84SKai-Heng Feng 	bool apst_enabled;
183c5552fdeSAndy Lutomirski 
184044a9df1SChristoph Hellwig 	/* PCIe only: */
185fe6d53c9SChristoph Hellwig 	u32 hmpre;
186fe6d53c9SChristoph Hellwig 	u32 hmmin;
187044a9df1SChristoph Hellwig 	u32 hmminds;
188044a9df1SChristoph Hellwig 	u16 hmmaxd;
189fe6d53c9SChristoph Hellwig 
19007bfcd09SChristoph Hellwig 	/* Fabrics only */
19107bfcd09SChristoph Hellwig 	u16 sqsize;
19207bfcd09SChristoph Hellwig 	u32 ioccsz;
19307bfcd09SChristoph Hellwig 	u32 iorcsz;
19407bfcd09SChristoph Hellwig 	u16 icdoff;
19507bfcd09SChristoph Hellwig 	u16 maxcmd;
196fdf9dfa8SSagi Grimberg 	int nr_reconnects;
19707bfcd09SChristoph Hellwig 	struct nvmf_ctrl_options *opts;
19857dacad5SJay Sternberg };
19957dacad5SJay Sternberg 
20057dacad5SJay Sternberg struct nvme_ns {
20157dacad5SJay Sternberg 	struct list_head list;
20257dacad5SJay Sternberg 
2031c63dc66SChristoph Hellwig 	struct nvme_ctrl *ctrl;
20457dacad5SJay Sternberg 	struct request_queue *queue;
20557dacad5SJay Sternberg 	struct gendisk *disk;
206b0b4e09cSMatias Bjørling 	struct nvm_dev *ndev;
20757dacad5SJay Sternberg 	struct kref kref;
208075790ebSKeith Busch 	int instance;
20957dacad5SJay Sternberg 
2102b9b6e86SKeith Busch 	u8 eui[8];
21190985b84SJohannes Thumshirn 	u8 nguid[16];
2123b22ba26SJohannes Thumshirn 	uuid_t uuid;
2132b9b6e86SKeith Busch 
21457dacad5SJay Sternberg 	unsigned ns_id;
21557dacad5SJay Sternberg 	int lba_shift;
21657dacad5SJay Sternberg 	u16 ms;
217f5d11840SJens Axboe 	u16 sgs;
218f5d11840SJens Axboe 	u32 sws;
21957dacad5SJay Sternberg 	bool ext;
22057dacad5SJay Sternberg 	u8 pi_type;
221646017a6SKeith Busch 	unsigned long flags;
222646017a6SKeith Busch #define NVME_NS_REMOVING 0
22369d9a99cSKeith Busch #define NVME_NS_DEAD     1
22457eeaf8eSChristoph Hellwig 	u16 noiob;
22557dacad5SJay Sternberg };
22657dacad5SJay Sternberg 
2271c63dc66SChristoph Hellwig struct nvme_ctrl_ops {
2281a353d85SMing Lin 	const char *name;
229e439bb12SSagi Grimberg 	struct module *module;
230d3d5b87dSChristoph Hellwig 	unsigned int flags;
231d3d5b87dSChristoph Hellwig #define NVME_F_FABRICS			(1 << 0)
232c81bfba9SChristoph Hellwig #define NVME_F_METADATA_SUPPORTED	(1 << 1)
2331c63dc66SChristoph Hellwig 	int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val);
2345fd4ce1bSChristoph Hellwig 	int (*reg_write32)(struct nvme_ctrl *ctrl, u32 off, u32 val);
2357fd8930fSChristoph Hellwig 	int (*reg_read64)(struct nvme_ctrl *ctrl, u32 off, u64 *val);
2361673f1f0SChristoph Hellwig 	void (*free_ctrl)(struct nvme_ctrl *ctrl);
237f866fc42SChristoph Hellwig 	void (*submit_async_event)(struct nvme_ctrl *ctrl, int aer_idx);
2381a353d85SMing Lin 	int (*delete_ctrl)(struct nvme_ctrl *ctrl);
2391a353d85SMing Lin 	int (*get_address)(struct nvme_ctrl *ctrl, char *buf, int size);
24057dacad5SJay Sternberg };
24157dacad5SJay Sternberg 
2421c63dc66SChristoph Hellwig static inline bool nvme_ctrl_ready(struct nvme_ctrl *ctrl)
2431c63dc66SChristoph Hellwig {
2441c63dc66SChristoph Hellwig 	u32 val = 0;
2451c63dc66SChristoph Hellwig 
2461c63dc66SChristoph Hellwig 	if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val))
2471c63dc66SChristoph Hellwig 		return false;
2481c63dc66SChristoph Hellwig 	return val & NVME_CSTS_RDY;
2491c63dc66SChristoph Hellwig }
2501c63dc66SChristoph Hellwig 
251f3ca80fcSChristoph Hellwig static inline int nvme_reset_subsystem(struct nvme_ctrl *ctrl)
252f3ca80fcSChristoph Hellwig {
253f3ca80fcSChristoph Hellwig 	if (!ctrl->subsystem)
254f3ca80fcSChristoph Hellwig 		return -ENOTTY;
255f3ca80fcSChristoph Hellwig 	return ctrl->ops->reg_write32(ctrl, NVME_REG_NSSR, 0x4E564D65);
256f3ca80fcSChristoph Hellwig }
257f3ca80fcSChristoph Hellwig 
25857dacad5SJay Sternberg static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
25957dacad5SJay Sternberg {
26057dacad5SJay Sternberg 	return (sector >> (ns->lba_shift - 9));
26157dacad5SJay Sternberg }
26257dacad5SJay Sternberg 
2636904242dSMing Lin static inline void nvme_cleanup_cmd(struct request *req)
2646904242dSMing Lin {
265f9d03f96SChristoph Hellwig 	if (req->rq_flags & RQF_SPECIAL_PAYLOAD) {
266f9d03f96SChristoph Hellwig 		kfree(page_address(req->special_vec.bv_page) +
267f9d03f96SChristoph Hellwig 		      req->special_vec.bv_offset);
268f9d03f96SChristoph Hellwig 	}
2696904242dSMing Lin }
2706904242dSMing Lin 
27127fa9bc5SChristoph Hellwig static inline void nvme_end_request(struct request *req, __le16 status,
27227fa9bc5SChristoph Hellwig 		union nvme_result result)
27315a190f7SChristoph Hellwig {
27427fa9bc5SChristoph Hellwig 	struct nvme_request *rq = nvme_req(req);
27527fa9bc5SChristoph Hellwig 
27627fa9bc5SChristoph Hellwig 	rq->status = le16_to_cpu(status) >> 1;
27727fa9bc5SChristoph Hellwig 	rq->result = result;
27808e0029aSChristoph Hellwig 	blk_mq_complete_request(req);
27915a190f7SChristoph Hellwig }
28015a190f7SChristoph Hellwig 
28177f02a7aSChristoph Hellwig void nvme_complete_rq(struct request *req);
282c55a2fd4SMing Lin void nvme_cancel_request(struct request *req, void *data, bool reserved);
283bb8d261eSChristoph Hellwig bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
284bb8d261eSChristoph Hellwig 		enum nvme_ctrl_state new_state);
2855fd4ce1bSChristoph Hellwig int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
2865fd4ce1bSChristoph Hellwig int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap);
2875fd4ce1bSChristoph Hellwig int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl);
288f3ca80fcSChristoph Hellwig int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
289f3ca80fcSChristoph Hellwig 		const struct nvme_ctrl_ops *ops, unsigned long quirks);
29053029b04SKeith Busch void nvme_uninit_ctrl(struct nvme_ctrl *ctrl);
291d09f2b45SSagi Grimberg void nvme_start_ctrl(struct nvme_ctrl *ctrl);
292d09f2b45SSagi Grimberg void nvme_stop_ctrl(struct nvme_ctrl *ctrl);
2931673f1f0SChristoph Hellwig void nvme_put_ctrl(struct nvme_ctrl *ctrl);
2947fd8930fSChristoph Hellwig int nvme_init_identify(struct nvme_ctrl *ctrl);
2955bae7f73SChristoph Hellwig 
2965955be21SChristoph Hellwig void nvme_queue_scan(struct nvme_ctrl *ctrl);
2975bae7f73SChristoph Hellwig void nvme_remove_namespaces(struct nvme_ctrl *ctrl);
2981673f1f0SChristoph Hellwig 
2994f1244c8SChristoph Hellwig int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
3004f1244c8SChristoph Hellwig 		bool send);
301a98e58e5SScott Bauer 
302f866fc42SChristoph Hellwig #define NVME_NR_AERS	1
3037bf58533SChristoph Hellwig void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
3047bf58533SChristoph Hellwig 		union nvme_result *res);
305f866fc42SChristoph Hellwig void nvme_queue_async_events(struct nvme_ctrl *ctrl);
306f866fc42SChristoph Hellwig 
30725646264SKeith Busch void nvme_stop_queues(struct nvme_ctrl *ctrl);
30825646264SKeith Busch void nvme_start_queues(struct nvme_ctrl *ctrl);
30969d9a99cSKeith Busch void nvme_kill_queues(struct nvme_ctrl *ctrl);
310302ad8ccSKeith Busch void nvme_unfreeze(struct nvme_ctrl *ctrl);
311302ad8ccSKeith Busch void nvme_wait_freeze(struct nvme_ctrl *ctrl);
312302ad8ccSKeith Busch void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout);
313302ad8ccSKeith Busch void nvme_start_freeze(struct nvme_ctrl *ctrl);
314363c9aacSSagi Grimberg 
315eb71f435SChristoph Hellwig #define NVME_QID_ANY -1
3164160982eSChristoph Hellwig struct request *nvme_alloc_request(struct request_queue *q,
317eb71f435SChristoph Hellwig 		struct nvme_command *cmd, unsigned int flags, int qid);
318fc17b653SChristoph Hellwig blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
3198093f7caSMing Lin 		struct nvme_command *cmd);
32057dacad5SJay Sternberg int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
32157dacad5SJay Sternberg 		void *buf, unsigned bufflen);
32257dacad5SJay Sternberg int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
323d49187e9SChristoph Hellwig 		union nvme_result *result, void *buffer, unsigned bufflen,
324eb71f435SChristoph Hellwig 		unsigned timeout, int qid, int at_head, int flags);
3259a0be7abSChristoph Hellwig int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count);
326038bd4cbSSagi Grimberg void nvme_start_keep_alive(struct nvme_ctrl *ctrl);
327038bd4cbSSagi Grimberg void nvme_stop_keep_alive(struct nvme_ctrl *ctrl);
328d86c4d8eSChristoph Hellwig int nvme_reset_ctrl(struct nvme_ctrl *ctrl);
32957dacad5SJay Sternberg 
330c4699e70SKeith Busch #ifdef CONFIG_NVM
3313dc87dd0SMatias Bjørling int nvme_nvm_register(struct nvme_ns *ns, char *disk_name, int node);
332b0b4e09cSMatias Bjørling void nvme_nvm_unregister(struct nvme_ns *ns);
3333dc87dd0SMatias Bjørling int nvme_nvm_register_sysfs(struct nvme_ns *ns);
3343dc87dd0SMatias Bjørling void nvme_nvm_unregister_sysfs(struct nvme_ns *ns);
33584d4add7SMatias Bjørling int nvme_nvm_ioctl(struct nvme_ns *ns, unsigned int cmd, unsigned long arg);
336c4699e70SKeith Busch #else
337b0b4e09cSMatias Bjørling static inline int nvme_nvm_register(struct nvme_ns *ns, char *disk_name,
3383dc87dd0SMatias Bjørling 				    int node)
339c4699e70SKeith Busch {
340c4699e70SKeith Busch 	return 0;
341c4699e70SKeith Busch }
342c4699e70SKeith Busch 
343b0b4e09cSMatias Bjørling static inline void nvme_nvm_unregister(struct nvme_ns *ns) {};
3443dc87dd0SMatias Bjørling static inline int nvme_nvm_register_sysfs(struct nvme_ns *ns)
3453dc87dd0SMatias Bjørling {
3463dc87dd0SMatias Bjørling 	return 0;
3473dc87dd0SMatias Bjørling }
3483dc87dd0SMatias Bjørling static inline void nvme_nvm_unregister_sysfs(struct nvme_ns *ns) {};
34984d4add7SMatias Bjørling static inline int nvme_nvm_ioctl(struct nvme_ns *ns, unsigned int cmd,
35084d4add7SMatias Bjørling 							unsigned long arg)
35184d4add7SMatias Bjørling {
35284d4add7SMatias Bjørling 	return -ENOTTY;
35384d4add7SMatias Bjørling }
3543dc87dd0SMatias Bjørling #endif /* CONFIG_NVM */
3553dc87dd0SMatias Bjørling 
35640267efdSSimon A. F. Lund static inline struct nvme_ns *nvme_get_ns_from_dev(struct device *dev)
35740267efdSSimon A. F. Lund {
35840267efdSSimon A. F. Lund 	return dev_to_disk(dev)->private_data;
35940267efdSSimon A. F. Lund }
360ca064085SMatias Bjørling 
3615bae7f73SChristoph Hellwig int __init nvme_core_init(void);
3625bae7f73SChristoph Hellwig void nvme_core_exit(void);
3635bae7f73SChristoph Hellwig 
36457dacad5SJay Sternberg #endif /* _NVME_H */
365