blob: 7ed8b92d674497da35f0306847e9ad1f6f351d8d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01002#ifndef NVM_H
3#define NVM_H
4
Matias Bjørlingb76eb20b2016-07-07 09:54:16 +02005#include <linux/blkdev.h>
Jens Axboea7fd9a42016-01-13 13:04:11 -07006#include <linux/types.h>
Matias Bjørlingb76eb20b2016-07-07 09:54:16 +02007#include <uapi/linux/lightnvm.h>
Jens Axboea7fd9a42016-01-13 13:04:11 -07008
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01009enum {
10 NVM_IO_OK = 0,
11 NVM_IO_REQUEUE = 1,
12 NVM_IO_DONE = 2,
13 NVM_IO_ERR = 3,
14
15 NVM_IOTYPE_NONE = 0,
16 NVM_IOTYPE_GC = 1,
17};
18
Jens Axboea7fd9a42016-01-13 13:04:11 -070019#define NVM_BLK_BITS (16)
20#define NVM_PG_BITS (16)
21#define NVM_SEC_BITS (8)
22#define NVM_PL_BITS (8)
23#define NVM_LUN_BITS (8)
Matias Bjørlingdf414b32016-05-06 20:03:19 +020024#define NVM_CH_BITS (7)
Jens Axboea7fd9a42016-01-13 13:04:11 -070025
26struct ppa_addr {
27 /* Generic structure for all addresses */
28 union {
29 struct {
30 u64 blk : NVM_BLK_BITS;
31 u64 pg : NVM_PG_BITS;
32 u64 sec : NVM_SEC_BITS;
33 u64 pl : NVM_PL_BITS;
34 u64 lun : NVM_LUN_BITS;
35 u64 ch : NVM_CH_BITS;
Matias Bjørlingdf414b32016-05-06 20:03:19 +020036 u64 reserved : 1;
Jens Axboea7fd9a42016-01-13 13:04:11 -070037 } g;
38
Matias Bjørlingdf414b32016-05-06 20:03:19 +020039 struct {
40 u64 line : 63;
41 u64 is_cached : 1;
42 } c;
43
Jens Axboea7fd9a42016-01-13 13:04:11 -070044 u64 ppa;
45 };
46};
47
48struct nvm_rq;
49struct nvm_id;
50struct nvm_dev;
Javier González8e536242016-11-28 22:39:10 +010051struct nvm_tgt_dev;
Jens Axboea7fd9a42016-01-13 13:04:11 -070052
Javier Gonzáleze46f4e42018-03-30 00:05:10 +020053typedef int (nvm_id_fn)(struct nvm_dev *);
Matias Bjørlinge11903f2016-05-06 20:03:05 +020054typedef int (nvm_op_bb_tbl_fn)(struct nvm_dev *, struct ppa_addr, u8 *);
Matias Bjørling00ee6cc2016-05-06 20:03:09 +020055typedef int (nvm_op_set_bb_fn)(struct nvm_dev *, struct ppa_addr *, int, int);
Jens Axboea7fd9a42016-01-13 13:04:11 -070056typedef int (nvm_submit_io_fn)(struct nvm_dev *, struct nvm_rq *);
Javier González1a94b2d2017-10-13 14:46:47 +020057typedef int (nvm_submit_io_sync_fn)(struct nvm_dev *, struct nvm_rq *);
Jens Axboea7fd9a42016-01-13 13:04:11 -070058typedef void *(nvm_create_dma_pool_fn)(struct nvm_dev *, char *);
59typedef void (nvm_destroy_dma_pool_fn)(void *);
60typedef void *(nvm_dev_dma_alloc_fn)(struct nvm_dev *, void *, gfp_t,
61 dma_addr_t *);
62typedef void (nvm_dev_dma_free_fn)(void *, void*, dma_addr_t);
63
64struct nvm_dev_ops {
65 nvm_id_fn *identity;
Jens Axboea7fd9a42016-01-13 13:04:11 -070066 nvm_op_bb_tbl_fn *get_bb_tbl;
67 nvm_op_set_bb_fn *set_bb_tbl;
68
69 nvm_submit_io_fn *submit_io;
Javier González1a94b2d2017-10-13 14:46:47 +020070 nvm_submit_io_sync_fn *submit_io_sync;
Jens Axboea7fd9a42016-01-13 13:04:11 -070071
72 nvm_create_dma_pool_fn *create_dma_pool;
73 nvm_destroy_dma_pool_fn *destroy_dma_pool;
74 nvm_dev_dma_alloc_fn *dev_dma_alloc;
75 nvm_dev_dma_free_fn *dev_dma_free;
Jens Axboea7fd9a42016-01-13 13:04:11 -070076};
77
Matias Bjørlingcd9e9802015-10-28 19:54:55 +010078#ifdef CONFIG_NVM
79
80#include <linux/blkdev.h>
Matias Bjørlingcd9e9802015-10-28 19:54:55 +010081#include <linux/file.h>
82#include <linux/dmapool.h>
Matias Bjørlinge3eb3792016-01-12 07:49:36 +010083#include <uapi/linux/lightnvm.h>
Matias Bjørlingcd9e9802015-10-28 19:54:55 +010084
85enum {
86 /* HW Responsibilities */
87 NVM_RSP_L2P = 1 << 0,
88 NVM_RSP_ECC = 1 << 1,
89
90 /* Physical Adressing Mode */
91 NVM_ADDRMODE_LINEAR = 0,
92 NVM_ADDRMODE_CHANNEL = 1,
93
94 /* Plane programming mode for LUN */
Matias Bjørlingd5bdec82016-02-19 13:56:58 +010095 NVM_PLANE_SINGLE = 1,
96 NVM_PLANE_DOUBLE = 2,
97 NVM_PLANE_QUAD = 4,
Matias Bjørlingcd9e9802015-10-28 19:54:55 +010098
99 /* Status codes */
100 NVM_RSP_SUCCESS = 0x0,
101 NVM_RSP_NOT_CHANGEABLE = 0x1,
102 NVM_RSP_ERR_FAILWRITE = 0x40ff,
103 NVM_RSP_ERR_EMPTYPAGE = 0x42ff,
Javier González402ab9a2016-11-28 22:38:57 +0100104 NVM_RSP_ERR_FAILECC = 0x4281,
Javier González38ea2f72017-01-31 13:17:18 +0100105 NVM_RSP_ERR_FAILCRC = 0x4004,
Javier González402ab9a2016-11-28 22:38:57 +0100106 NVM_RSP_WARN_HIGHECC = 0x4700,
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100107
108 /* Device opcodes */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100109 NVM_OP_PWRITE = 0x91,
110 NVM_OP_PREAD = 0x92,
111 NVM_OP_ERASE = 0x90,
112
113 /* PPA Command Flags */
114 NVM_IO_SNGL_ACCESS = 0x0,
115 NVM_IO_DUAL_ACCESS = 0x1,
116 NVM_IO_QUAD_ACCESS = 0x2,
117
Matias Bjørling57b4bd02015-12-06 11:25:47 +0100118 /* NAND Access Modes */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100119 NVM_IO_SUSPEND = 0x80,
120 NVM_IO_SLC_MODE = 0x100,
Javier Gonzáleza7737f32017-04-15 20:55:38 +0200121 NVM_IO_SCRAMBLE_ENABLE = 0x200,
Matias Bjørling57b4bd02015-12-06 11:25:47 +0100122
123 /* Block Types */
124 NVM_BLK_T_FREE = 0x0,
125 NVM_BLK_T_BAD = 0x1,
Matias Bjørlingb5d4acd2016-01-12 07:49:32 +0100126 NVM_BLK_T_GRWN_BAD = 0x2,
127 NVM_BLK_T_DEV = 0x4,
128 NVM_BLK_T_HOST = 0x8,
Matias Bjørlingf9a99952016-01-12 07:49:34 +0100129
130 /* Memory capabilities */
131 NVM_ID_CAP_SLC = 0x1,
132 NVM_ID_CAP_CMD_SUSPEND = 0x2,
133 NVM_ID_CAP_SCRAMBLE = 0x4,
134 NVM_ID_CAP_ENCRYPT = 0x8,
Matias Bjørlingca5927e2016-01-12 07:49:35 +0100135
136 /* Memory types */
137 NVM_ID_FMTYPE_SLC = 0,
138 NVM_ID_FMTYPE_MLC = 1,
Matias Bjørlingbf643182016-02-04 15:13:27 +0100139
140 /* Device capabilities */
141 NVM_ID_DCAP_BBLKMGMT = 0x1,
142 NVM_UD_DCAP_ECC = 0x2,
Matias Bjørlingca5927e2016-01-12 07:49:35 +0100143};
144
145struct nvm_id_lp_mlc {
146 u16 num_pairs;
147 u8 pairs[886];
148};
149
150struct nvm_id_lp_tbl {
151 __u8 id[8];
152 struct nvm_id_lp_mlc mlc;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100153};
154
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200155struct nvm_addrf_12 {
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200156 u8 ch_len;
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200157 u8 lun_len;
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200158 u8 blk_len;
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200159 u8 pg_len;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200160 u8 pln_len;
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200161 u8 sect_len;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200162
163 u8 ch_offset;
164 u8 lun_offset;
165 u8 blk_offset;
166 u8 pg_offset;
167 u8 pln_offset;
168 u8 sect_offset;
169
170 u64 ch_mask;
171 u64 lun_mask;
172 u64 blk_mask;
173 u64 pg_mask;
174 u64 pln_mask;
175 u64 sec_mask;
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200176};
177
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200178struct nvm_addrf {
179 u8 ch_len;
180 u8 lun_len;
181 u8 chk_len;
182 u8 sec_len;
183 u8 rsv_len[2];
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200184
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200185 u8 ch_offset;
186 u8 lun_offset;
187 u8 chk_offset;
188 u8 sec_offset;
189 u8 rsv_off[2];
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200190
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200191 u64 ch_mask;
192 u64 lun_mask;
193 u64 chk_mask;
194 u64 sec_mask;
195 u64 rsv_mask[2];
196};
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100197
198struct nvm_target {
199 struct list_head list;
Javier González8e79b5c2016-11-28 22:39:06 +0100200 struct nvm_tgt_dev *dev;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100201 struct nvm_tgt_type *type;
202 struct gendisk *disk;
203};
204
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100205#define ADDR_EMPTY (~0ULL)
206
Javier Gonzáleze5392732018-01-05 14:16:14 +0100207#define NVM_TARGET_DEFAULT_OP (101)
208#define NVM_TARGET_MIN_OP (3)
209#define NVM_TARGET_MAX_OP (80)
210
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100211#define NVM_VERSION_MAJOR 1
212#define NVM_VERSION_MINOR 0
213#define NVM_VERSION_PATCH 0
214
Matias Bjørling89a09c52018-03-30 00:05:04 +0200215#define NVM_MAX_VLBA (64) /* max logical blocks in a vector command */
216
Matias Bjørling912761622016-01-12 07:49:21 +0100217struct nvm_rq;
Matias Bjørling72d256e2016-01-12 07:49:29 +0100218typedef void (nvm_end_io_fn)(struct nvm_rq *);
Matias Bjørling912761622016-01-12 07:49:21 +0100219
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100220struct nvm_rq {
Javier González8e536242016-11-28 22:39:10 +0100221 struct nvm_tgt_dev *dev;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100222
223 struct bio *bio;
224
225 union {
226 struct ppa_addr ppa_addr;
227 dma_addr_t dma_ppa_list;
228 };
229
230 struct ppa_addr *ppa_list;
231
Javier González003fad32016-05-06 20:03:12 +0200232 void *meta_list;
233 dma_addr_t dma_meta_list;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100234
Matias Bjørling912761622016-01-12 07:49:21 +0100235 nvm_end_io_fn *end_io;
236
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100237 uint8_t opcode;
Javier González6d5be952016-05-06 20:03:20 +0200238 uint16_t nr_ppas;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100239 uint16_t flags;
Matias Bjørling72d256e2016-01-12 07:49:29 +0100240
Matias Bjorling9f867262016-03-03 15:06:39 +0100241 u64 ppa_status; /* ppa media status */
Matias Bjørling72d256e2016-01-12 07:49:29 +0100242 int error;
Matias Bjørling06894ef2017-01-31 13:17:17 +0100243
244 void *private;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100245};
246
247static inline struct nvm_rq *nvm_rq_from_pdu(void *pdu)
248{
249 return pdu - sizeof(struct nvm_rq);
250}
251
252static inline void *nvm_rq_to_pdu(struct nvm_rq *rqdata)
253{
254 return rqdata + 1;
255}
256
Javier Gonzálezff0e4982016-01-12 07:49:33 +0100257enum {
258 NVM_BLK_ST_FREE = 0x1, /* Free block */
Matias Bjørling077d2382016-07-07 09:54:14 +0200259 NVM_BLK_ST_TGT = 0x2, /* Block in use by target */
Javier Gonzálezff0e4982016-01-12 07:49:33 +0100260 NVM_BLK_ST_BAD = 0x8, /* Bad block */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100261};
262
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200263/* Instance geometry */
Javier González8e79b5c2016-11-28 22:39:06 +0100264struct nvm_geo {
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200265 /* device reported version */
Javier González3cb98f82018-03-30 00:05:11 +0200266 u8 major_ver_id;
267 u8 minor_ver_id;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200268
269 /* instance specific geometry */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100270 int nr_chnls;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200271 int nr_luns; /* per channel */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100272
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200273 /* calculated values */
274 int all_luns; /* across channels */
275 int all_chunks; /* across channels */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100276
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200277 int op; /* over-provision in instance */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100278
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200279 sector_t total_secs; /* across channels */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100280
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200281 /* chunk geometry */
282 u32 nr_chks; /* chunks per lun */
283 u32 clba; /* sectors per chunk */
284 u16 csecs; /* sector size */
285 u16 sos; /* out-of-band area size */
Javier Gonzáleze5392732018-01-05 14:16:14 +0100286
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200287 /* device write constrains */
288 u32 ws_min; /* minimum write size */
289 u32 ws_opt; /* optimal write size */
290 u32 mw_cunits; /* distance required for successful read */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100291
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200292 /* device capabilities */
293 u32 mccap;
294
295 /* device timings */
296 u32 trdt; /* Avg. Tread (ns) */
297 u32 trdm; /* Max Tread (ns) */
298 u32 tprt; /* Avg. Tprog (ns) */
299 u32 tprm; /* Max Tprog (ns) */
300 u32 tbet; /* Avg. Terase (ns) */
301 u32 tbem; /* Max Terase (ns) */
302
303 /* generic address format */
304 struct nvm_addrf addrf;
305
306 /* 1.2 compatibility */
307 u8 vmnt;
308 u32 cap;
309 u32 dom;
310
311 u8 mtype;
312 u8 fmtype;
313
314 u16 cpar;
315 u32 mpos;
316
317 u8 num_pln;
318 u8 plane_mode;
319 u16 num_pg;
320 u16 fpg_sz;
Javier González8e79b5c2016-11-28 22:39:06 +0100321};
322
Matias Bjørlingade69e22017-01-31 13:17:09 +0100323/* sub-device structure */
Javier González8e79b5c2016-11-28 22:39:06 +0100324struct nvm_tgt_dev {
325 /* Device information */
326 struct nvm_geo geo;
327
Javier González8e536242016-11-28 22:39:10 +0100328 /* Base ppas for target LUNs */
329 struct ppa_addr *luns;
330
Javier González8e79b5c2016-11-28 22:39:06 +0100331 struct request_queue *q;
332
Javier González959e9112016-11-28 22:39:11 +0100333 struct nvm_dev *parent;
Javier González8e536242016-11-28 22:39:10 +0100334 void *map;
Javier González8e79b5c2016-11-28 22:39:06 +0100335};
336
337struct nvm_dev {
338 struct nvm_dev_ops *ops;
339
340 struct list_head devices;
341
Javier González8e79b5c2016-11-28 22:39:06 +0100342 /* Device information */
343 struct nvm_geo geo;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100344
Wenwei Taoda1e2842016-03-03 15:06:38 +0100345 unsigned long *lun_map;
Javier González75b85642016-05-06 20:03:13 +0200346 void *dma_pool;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100347
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100348 /* Backend device */
349 struct request_queue *q;
350 char name[DISK_NAME_LEN];
Simon A. F. Lund40267ef2016-09-16 14:25:08 +0200351 void *private_data;
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100352
Javier González8e536242016-11-28 22:39:10 +0100353 void *rmap;
354
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100355 struct mutex mlock;
Wenwei Tao4c9dacb2016-03-03 15:06:37 +0100356 spinlock_t lock;
Matias Bjørlingade69e22017-01-31 13:17:09 +0100357
358 /* target management */
359 struct list_head area_list;
360 struct list_head targets;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100361};
362
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100363static inline struct ppa_addr generic_to_dev_addr(struct nvm_tgt_dev *tgt_dev,
364 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100365{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100366 struct nvm_geo *geo = &tgt_dev->geo;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200367 struct nvm_addrf_12 *ppaf = (struct nvm_addrf_12 *)&geo->addrf;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100368 struct ppa_addr l;
369
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200370 l.ppa = ((u64)r.g.ch) << ppaf->ch_offset;
371 l.ppa |= ((u64)r.g.lun) << ppaf->lun_offset;
372 l.ppa |= ((u64)r.g.blk) << ppaf->blk_offset;
373 l.ppa |= ((u64)r.g.pg) << ppaf->pg_offset;
374 l.ppa |= ((u64)r.g.pl) << ppaf->pln_offset;
375 l.ppa |= ((u64)r.g.sec) << ppaf->sect_offset;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100376
377 return l;
378}
379
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100380static inline struct ppa_addr dev_to_generic_addr(struct nvm_tgt_dev *tgt_dev,
381 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100382{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100383 struct nvm_geo *geo = &tgt_dev->geo;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200384 struct nvm_addrf_12 *ppaf = (struct nvm_addrf_12 *)&geo->addrf;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100385 struct ppa_addr l;
386
Javier González5389a1d2016-07-07 09:54:09 +0200387 l.ppa = 0;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200388
389 l.g.ch = (r.ppa & ppaf->ch_mask) >> ppaf->ch_offset;
390 l.g.lun = (r.ppa & ppaf->lun_mask) >> ppaf->lun_offset;
391 l.g.blk = (r.ppa & ppaf->blk_mask) >> ppaf->blk_offset;
392 l.g.pg = (r.ppa & ppaf->pg_mask) >> ppaf->pg_offset;
393 l.g.pl = (r.ppa & ppaf->pln_mask) >> ppaf->pln_offset;
394 l.g.sec = (r.ppa & ppaf->sec_mask) >> ppaf->sect_offset;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100395
396 return l;
397}
398
Jens Axboedece1632015-11-05 10:41:16 -0700399typedef blk_qc_t (nvm_tgt_make_rq_fn)(struct request_queue *, struct bio *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100400typedef sector_t (nvm_tgt_capacity_fn)(void *);
Javier González4af3f752017-04-15 20:55:45 +0200401typedef void *(nvm_tgt_init_fn)(struct nvm_tgt_dev *, struct gendisk *,
402 int flags);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100403typedef void (nvm_tgt_exit_fn)(void *);
Javier González9a69b0e2017-01-31 13:17:20 +0100404typedef int (nvm_tgt_sysfs_init_fn)(struct gendisk *);
405typedef void (nvm_tgt_sysfs_exit_fn)(struct gendisk *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100406
407struct nvm_tgt_type {
408 const char *name;
409 unsigned int version[3];
410
411 /* target entry points */
412 nvm_tgt_make_rq_fn *make_rq;
413 nvm_tgt_capacity_fn *capacity;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100414
415 /* module-specific init/teardown */
416 nvm_tgt_init_fn *init;
417 nvm_tgt_exit_fn *exit;
418
Javier González9a69b0e2017-01-31 13:17:20 +0100419 /* sysfs */
420 nvm_tgt_sysfs_init_fn *sysfs_init;
421 nvm_tgt_sysfs_exit_fn *sysfs_exit;
422
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100423 /* For internal use */
424 struct list_head list;
Rakesh Pandit90014822017-10-13 14:45:50 +0200425 struct module *owner;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100426};
427
Simon A. F. Lund6063fe32016-05-06 20:03:02 +0200428extern int nvm_register_tgt_type(struct nvm_tgt_type *);
429extern void nvm_unregister_tgt_type(struct nvm_tgt_type *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100430
431extern void *nvm_dev_dma_alloc(struct nvm_dev *, gfp_t, dma_addr_t *);
432extern void nvm_dev_dma_free(struct nvm_dev *, void *, dma_addr_t);
433
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200434extern struct nvm_dev *nvm_alloc_dev(int);
435extern int nvm_register(struct nvm_dev *);
436extern void nvm_unregister(struct nvm_dev *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100437
Javier González333ba052016-11-28 22:39:14 +0100438extern int nvm_set_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr *,
439 int, int);
Javier González8e536242016-11-28 22:39:10 +0100440extern int nvm_submit_io(struct nvm_tgt_dev *, struct nvm_rq *);
Javier González1a94b2d2017-10-13 14:46:47 +0200441extern int nvm_submit_io_sync(struct nvm_tgt_dev *, struct nvm_rq *);
Matias Bjørling06894ef2017-01-31 13:17:17 +0100442extern void nvm_end_io(struct nvm_rq *);
Matias Bjørling22e8c972016-05-06 20:02:58 +0200443extern int nvm_bb_tbl_fold(struct nvm_dev *, u8 *, int);
Javier González333ba052016-11-28 22:39:14 +0100444extern int nvm_get_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr, u8 *);
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100445
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100446#else /* CONFIG_NVM */
447struct nvm_dev_ops;
448
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200449static inline struct nvm_dev *nvm_alloc_dev(int node)
450{
451 return ERR_PTR(-EINVAL);
452}
453static inline int nvm_register(struct nvm_dev *dev)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100454{
455 return -EINVAL;
456}
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200457static inline void nvm_unregister(struct nvm_dev *dev) {}
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100458#endif /* CONFIG_NVM */
459#endif /* LIGHTNVM.H */