blob: a53977cc9fc213de114a1af9f8ce829d904fa4ca [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
Matias Bjørlingca064082015-10-29 17:57:29 +090028enum {
29 NVME_NS_LBA = 0,
30 NVME_NS_LIGHTNVM = 1,
31};
32
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020033/*
34 * Represents an NVM Express device. Each nvme_dev is a PCI function.
35 */
36struct nvme_dev {
37 struct list_head node;
38 struct nvme_queue **queues;
39 struct request_queue *admin_q;
40 struct blk_mq_tag_set tagset;
41 struct blk_mq_tag_set admin_tagset;
42 u32 __iomem *dbs;
43 struct device *dev;
44 struct dma_pool *prp_page_pool;
45 struct dma_pool *prp_small_pool;
46 int instance;
47 unsigned queue_count;
48 unsigned online_queues;
49 unsigned max_qid;
50 int q_depth;
51 u32 db_stride;
52 u32 ctrl_config;
53 struct msix_entry *entry;
54 struct nvme_bar __iomem *bar;
55 struct list_head namespaces;
56 struct kref kref;
57 struct device *device;
58 struct work_struct reset_work;
59 struct work_struct probe_work;
60 struct work_struct scan_work;
61 char name[12];
62 char serial[20];
63 char model[40];
64 char firmware_rev[8];
65 bool subsystem;
66 u32 max_hw_sectors;
67 u32 stripe_size;
68 u32 page_size;
69 void __iomem *cmb;
70 dma_addr_t cmb_dma_addr;
71 u64 cmb_size;
72 u32 cmbsz;
73 u16 oncs;
74 u16 abort_limit;
75 u8 event_limit;
76 u8 vwc;
77};
78
79/*
80 * An NVM Express namespace is equivalent to a SCSI LUN
81 */
82struct nvme_ns {
83 struct list_head list;
84
85 struct nvme_dev *dev;
86 struct request_queue *queue;
87 struct gendisk *disk;
88 struct kref kref;
89
90 unsigned ns_id;
91 int lba_shift;
92 u16 ms;
93 bool ext;
94 u8 pi_type;
Matias Bjørlingca064082015-10-29 17:57:29 +090095 int type;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020096 u64 mode_select_num_blocks;
97 u32 mode_select_block_len;
98};
99
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200100static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
101{
102 return (sector >> (ns->lba_shift - 9));
103}
104
105int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
106 void *buf, unsigned bufflen);
107int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
108 void *buffer, void __user *ubuffer, unsigned bufflen,
109 u32 *result, unsigned timeout);
110int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id);
111int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
112 struct nvme_id_ns **id);
113int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log);
114int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
115 dma_addr_t dma_addr, u32 *result);
116int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
117 dma_addr_t dma_addr, u32 *result);
118
119struct sg_io_hdr;
120
121int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr);
122int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg);
123int nvme_sg_get_version_num(int __user *ip);
124
Matias Bjørlingca064082015-10-29 17:57:29 +0900125int nvme_nvm_ns_supported(struct nvme_ns *ns, struct nvme_id_ns *id);
126int nvme_nvm_register(struct request_queue *q, char *disk_name);
127void nvme_nvm_unregister(struct request_queue *q, char *disk_name);
128
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200129#endif /* _NVME_H */