blob: 9f771265487b29237c7e0ee03646cafbe9ae632e [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 Hellwig1c63dc62015-11-26 10:06:56 +010033struct nvme_ctrl {
34 const struct nvme_ctrl_ops *ops;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020035 struct request_queue *admin_q;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020036 struct device *dev;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020037 int instance;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010038
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020039 char name[12];
40 char serial[20];
41 char model[40];
42 char firmware_rev[8];
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020043 u16 oncs;
44 u16 abort_limit;
45 u8 event_limit;
46 u8 vwc;
47};
48
49/*
50 * An NVM Express namespace is equivalent to a SCSI LUN
51 */
52struct nvme_ns {
53 struct list_head list;
54
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010055 struct nvme_ctrl *ctrl;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020056 struct request_queue *queue;
57 struct gendisk *disk;
58 struct kref kref;
59
60 unsigned ns_id;
61 int lba_shift;
62 u16 ms;
63 bool ext;
64 u8 pi_type;
Matias Bjørlingca064082015-10-29 17:57:29 +090065 int type;
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020066 u64 mode_select_num_blocks;
67 u32 mode_select_block_len;
68};
69
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010070struct nvme_ctrl_ops {
71 int (*reg_read32)(struct nvme_ctrl *ctrl, u32 off, u32 *val);
72};
73
74static inline bool nvme_ctrl_ready(struct nvme_ctrl *ctrl)
75{
76 u32 val = 0;
77
78 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &val))
79 return false;
80 return val & NVME_CSTS_RDY;
81}
82
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020083static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
84{
85 return (sector >> (ns->lba_shift - 9));
86}
87
Christoph Hellwig15a190f72015-10-16 07:58:39 +020088static inline int nvme_error_status(u16 status)
89{
90 switch (status & 0x7ff) {
91 case NVME_SC_SUCCESS:
92 return 0;
93 case NVME_SC_CAP_EXCEEDED:
94 return -ENOSPC;
95 default:
96 return -EIO;
97 }
98}
99
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200100int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
101 void *buf, unsigned bufflen);
102int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
103 void *buffer, void __user *ubuffer, unsigned bufflen,
104 u32 *result, unsigned timeout);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100105int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id);
106int nvme_identify_ns(struct nvme_ctrl *dev, unsigned nsid,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200107 struct nvme_id_ns **id);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100108int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log);
109int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200110 dma_addr_t dma_addr, u32 *result);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100111int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200112 dma_addr_t dma_addr, u32 *result);
113
114struct sg_io_hdr;
115
116int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr);
117int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg);
118int nvme_sg_get_version_num(int __user *ip);
119
Matias Bjørlingca064082015-10-29 17:57:29 +0900120int nvme_nvm_ns_supported(struct nvme_ns *ns, struct nvme_id_ns *id);
121int nvme_nvm_register(struct request_queue *q, char *disk_name);
122void nvme_nvm_unregister(struct request_queue *q, char *disk_name);
123
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +0200124#endif /* _NVME_H */