blob: e55b10573c99903fe7f04575b2cc9117567bd069 [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
Jens Axboea7fd9a42016-01-13 13:04:11 -070053typedef int (nvm_id_fn)(struct nvm_dev *, struct nvm_id *);
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
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200155struct nvm_addr_format {
156 u8 ch_offset;
157 u8 ch_len;
158 u8 lun_offset;
159 u8 lun_len;
160 u8 pln_offset;
161 u8 pln_len;
162 u8 blk_offset;
163 u8 blk_len;
164 u8 pg_offset;
165 u8 pg_len;
166 u8 sect_offset;
167 u8 sect_len;
168};
169
170struct nvm_id {
171 u8 ver_id;
172 u8 vmnt;
173 u32 cap;
174 u32 dom;
175
176 struct nvm_addr_format ppaf;
177
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100178 u8 num_ch;
179 u8 num_lun;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100180 u16 num_chk;
181 u16 clba;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100182 u16 csecs;
183 u16 sos;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100184
Matias Bjørling62771fe02018-03-30 00:05:02 +0200185 u32 ws_min;
186 u32 ws_opt;
187 u32 mw_cunits;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100188
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100189 u32 trdt;
190 u32 trdm;
191 u32 tprt;
192 u32 tprm;
193 u32 tbet;
194 u32 tbem;
195 u32 mpos;
Matias Bjørling12be5ed2015-11-16 15:34:39 +0100196 u32 mccap;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100197 u16 cpar;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100198
Matias Bjørling62771fe02018-03-30 00:05:02 +0200199 /* calculated values */
200 u16 ws_seq;
201 u16 ws_per_chk;
202
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100203 /* 1.2 compatibility */
Matias Bjørlingc6ac3f32018-03-30 00:05:01 +0200204 u8 mtype;
205 u8 fmtype;
206
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100207 u8 num_pln;
208 u16 num_pg;
209 u16 fpg_sz;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100210} __packed;
211
212struct nvm_target {
213 struct list_head list;
Javier González8e79b5c2016-11-28 22:39:06 +0100214 struct nvm_tgt_dev *dev;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100215 struct nvm_tgt_type *type;
216 struct gendisk *disk;
217};
218
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100219#define ADDR_EMPTY (~0ULL)
220
Javier Gonzáleze5392732018-01-05 14:16:14 +0100221#define NVM_TARGET_DEFAULT_OP (101)
222#define NVM_TARGET_MIN_OP (3)
223#define NVM_TARGET_MAX_OP (80)
224
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100225#define NVM_VERSION_MAJOR 1
226#define NVM_VERSION_MINOR 0
227#define NVM_VERSION_PATCH 0
228
Matias Bjørling89a09c52018-03-30 00:05:04 +0200229#define NVM_MAX_VLBA (64) /* max logical blocks in a vector command */
230
Matias Bjørling912761622016-01-12 07:49:21 +0100231struct nvm_rq;
Matias Bjørling72d256e2016-01-12 07:49:29 +0100232typedef void (nvm_end_io_fn)(struct nvm_rq *);
Matias Bjørling912761622016-01-12 07:49:21 +0100233
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100234struct nvm_rq {
Javier González8e536242016-11-28 22:39:10 +0100235 struct nvm_tgt_dev *dev;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100236
237 struct bio *bio;
238
239 union {
240 struct ppa_addr ppa_addr;
241 dma_addr_t dma_ppa_list;
242 };
243
244 struct ppa_addr *ppa_list;
245
Javier González003fad32016-05-06 20:03:12 +0200246 void *meta_list;
247 dma_addr_t dma_meta_list;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100248
Matias Bjørling912761622016-01-12 07:49:21 +0100249 nvm_end_io_fn *end_io;
250
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100251 uint8_t opcode;
Javier González6d5be952016-05-06 20:03:20 +0200252 uint16_t nr_ppas;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100253 uint16_t flags;
Matias Bjørling72d256e2016-01-12 07:49:29 +0100254
Matias Bjorling9f867262016-03-03 15:06:39 +0100255 u64 ppa_status; /* ppa media status */
Matias Bjørling72d256e2016-01-12 07:49:29 +0100256 int error;
Matias Bjørling06894ef2017-01-31 13:17:17 +0100257
258 void *private;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100259};
260
261static inline struct nvm_rq *nvm_rq_from_pdu(void *pdu)
262{
263 return pdu - sizeof(struct nvm_rq);
264}
265
266static inline void *nvm_rq_to_pdu(struct nvm_rq *rqdata)
267{
268 return rqdata + 1;
269}
270
Javier Gonzálezff0e4982016-01-12 07:49:33 +0100271enum {
272 NVM_BLK_ST_FREE = 0x1, /* Free block */
Matias Bjørling077d2382016-07-07 09:54:14 +0200273 NVM_BLK_ST_TGT = 0x2, /* Block in use by target */
Javier Gonzálezff0e4982016-01-12 07:49:33 +0100274 NVM_BLK_ST_BAD = 0x8, /* Bad block */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100275};
276
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100277
Javier González8e79b5c2016-11-28 22:39:06 +0100278/* Device generic information */
279struct nvm_geo {
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100280 /* generic geometry */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100281 int nr_chnls;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100282 int all_luns; /* across channels */
283 int nr_luns; /* per channel */
284 int nr_chks; /* per lun */
285
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100286 int sec_size;
287 int oob_size;
Matias Bjørlingf9a99952016-01-12 07:49:34 +0100288 int mccap;
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100289
290 int sec_per_chk;
291 int sec_per_lun;
292
293 int ws_min;
294 int ws_opt;
295 int ws_seq;
296 int ws_per_chk;
297
Javier Gonzáleze5392732018-01-05 14:16:14 +0100298 int op;
299
Matias Bjørling7386af22015-11-16 15:34:44 +0100300 struct nvm_addr_format ppaf;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100301
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100302 /* Legacy 1.2 specific geometry */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100303 int plane_mode; /* drive device in single, double or quad mode */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100304 int nr_planes;
305 int sec_per_pg; /* only sectors for a single page */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100306 int sec_per_pl; /* all sectors across planes */
Javier González8e79b5c2016-11-28 22:39:06 +0100307};
308
Matias Bjørlingade69e22017-01-31 13:17:09 +0100309/* sub-device structure */
Javier González8e79b5c2016-11-28 22:39:06 +0100310struct nvm_tgt_dev {
311 /* Device information */
312 struct nvm_geo geo;
313
Javier González8e536242016-11-28 22:39:10 +0100314 /* Base ppas for target LUNs */
315 struct ppa_addr *luns;
316
Javier González8e79b5c2016-11-28 22:39:06 +0100317 sector_t total_secs;
318
319 struct nvm_id identity;
320 struct request_queue *q;
321
Javier González959e9112016-11-28 22:39:11 +0100322 struct nvm_dev *parent;
Javier González8e536242016-11-28 22:39:10 +0100323 void *map;
Javier González8e79b5c2016-11-28 22:39:06 +0100324};
325
326struct nvm_dev {
327 struct nvm_dev_ops *ops;
328
329 struct list_head devices;
330
Javier González8e79b5c2016-11-28 22:39:06 +0100331 /* Device information */
332 struct nvm_geo geo;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100333
Matias Bjørling4ece44a2016-02-20 08:52:41 +0100334 unsigned long total_secs;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100335
Wenwei Taoda1e2842016-03-03 15:06:38 +0100336 unsigned long *lun_map;
Javier González75b85642016-05-06 20:03:13 +0200337 void *dma_pool;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100338
339 struct nvm_id identity;
340
341 /* Backend device */
342 struct request_queue *q;
343 char name[DISK_NAME_LEN];
Simon A. F. Lund40267ef2016-09-16 14:25:08 +0200344 void *private_data;
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100345
Javier González8e536242016-11-28 22:39:10 +0100346 void *rmap;
347
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100348 struct mutex mlock;
Wenwei Tao4c9dacb2016-03-03 15:06:37 +0100349 spinlock_t lock;
Matias Bjørlingade69e22017-01-31 13:17:09 +0100350
351 /* target management */
352 struct list_head area_list;
353 struct list_head targets;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100354};
355
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100356static inline struct ppa_addr generic_to_dev_addr(struct nvm_tgt_dev *tgt_dev,
357 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100358{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100359 struct nvm_geo *geo = &tgt_dev->geo;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100360 struct ppa_addr l;
361
Javier González8e79b5c2016-11-28 22:39:06 +0100362 l.ppa = ((u64)r.g.blk) << geo->ppaf.blk_offset;
363 l.ppa |= ((u64)r.g.pg) << geo->ppaf.pg_offset;
364 l.ppa |= ((u64)r.g.sec) << geo->ppaf.sect_offset;
365 l.ppa |= ((u64)r.g.pl) << geo->ppaf.pln_offset;
366 l.ppa |= ((u64)r.g.lun) << geo->ppaf.lun_offset;
367 l.ppa |= ((u64)r.g.ch) << geo->ppaf.ch_offset;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100368
369 return l;
370}
371
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100372static inline struct ppa_addr dev_to_generic_addr(struct nvm_tgt_dev *tgt_dev,
373 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100374{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100375 struct nvm_geo *geo = &tgt_dev->geo;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100376 struct ppa_addr l;
377
Javier González5389a1d2016-07-07 09:54:09 +0200378 l.ppa = 0;
Matias Bjørling7386af22015-11-16 15:34:44 +0100379 /*
380 * (r.ppa << X offset) & X len bitmask. X eq. blk, pg, etc.
381 */
Javier González8e79b5c2016-11-28 22:39:06 +0100382 l.g.blk = (r.ppa >> geo->ppaf.blk_offset) &
383 (((1 << geo->ppaf.blk_len) - 1));
384 l.g.pg |= (r.ppa >> geo->ppaf.pg_offset) &
385 (((1 << geo->ppaf.pg_len) - 1));
386 l.g.sec |= (r.ppa >> geo->ppaf.sect_offset) &
387 (((1 << geo->ppaf.sect_len) - 1));
388 l.g.pl |= (r.ppa >> geo->ppaf.pln_offset) &
389 (((1 << geo->ppaf.pln_len) - 1));
390 l.g.lun |= (r.ppa >> geo->ppaf.lun_offset) &
391 (((1 << geo->ppaf.lun_len) - 1));
392 l.g.ch |= (r.ppa >> geo->ppaf.ch_offset) &
393 (((1 << geo->ppaf.ch_len) - 1));
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100394
395 return l;
396}
397
Jens Axboedece1632015-11-05 10:41:16 -0700398typedef blk_qc_t (nvm_tgt_make_rq_fn)(struct request_queue *, struct bio *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100399typedef sector_t (nvm_tgt_capacity_fn)(void *);
Javier González4af3f752017-04-15 20:55:45 +0200400typedef void *(nvm_tgt_init_fn)(struct nvm_tgt_dev *, struct gendisk *,
401 int flags);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100402typedef void (nvm_tgt_exit_fn)(void *);
Javier González9a69b0e2017-01-31 13:17:20 +0100403typedef int (nvm_tgt_sysfs_init_fn)(struct gendisk *);
404typedef void (nvm_tgt_sysfs_exit_fn)(struct gendisk *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100405
406struct nvm_tgt_type {
407 const char *name;
408 unsigned int version[3];
409
410 /* target entry points */
411 nvm_tgt_make_rq_fn *make_rq;
412 nvm_tgt_capacity_fn *capacity;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100413
414 /* module-specific init/teardown */
415 nvm_tgt_init_fn *init;
416 nvm_tgt_exit_fn *exit;
417
Javier González9a69b0e2017-01-31 13:17:20 +0100418 /* sysfs */
419 nvm_tgt_sysfs_init_fn *sysfs_init;
420 nvm_tgt_sysfs_exit_fn *sysfs_exit;
421
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100422 /* For internal use */
423 struct list_head list;
Rakesh Pandit90014822017-10-13 14:45:50 +0200424 struct module *owner;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100425};
426
Simon A. F. Lund6063fe32016-05-06 20:03:02 +0200427extern int nvm_register_tgt_type(struct nvm_tgt_type *);
428extern void nvm_unregister_tgt_type(struct nvm_tgt_type *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100429
430extern void *nvm_dev_dma_alloc(struct nvm_dev *, gfp_t, dma_addr_t *);
431extern void nvm_dev_dma_free(struct nvm_dev *, void *, dma_addr_t);
432
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200433extern struct nvm_dev *nvm_alloc_dev(int);
434extern int nvm_register(struct nvm_dev *);
435extern void nvm_unregister(struct nvm_dev *);
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100436
Javier González333ba052016-11-28 22:39:14 +0100437extern int nvm_set_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr *,
438 int, int);
Javier González8e536242016-11-28 22:39:10 +0100439extern int nvm_submit_io(struct nvm_tgt_dev *, struct nvm_rq *);
Javier González1a94b2d2017-10-13 14:46:47 +0200440extern int nvm_submit_io_sync(struct nvm_tgt_dev *, struct nvm_rq *);
Matias Bjørling06894ef2017-01-31 13:17:17 +0100441extern void nvm_end_io(struct nvm_rq *);
Matias Bjørling22e8c972016-05-06 20:02:58 +0200442extern int nvm_bb_tbl_fold(struct nvm_dev *, u8 *, int);
Javier González333ba052016-11-28 22:39:14 +0100443extern int nvm_get_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr, u8 *);
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100444
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100445#else /* CONFIG_NVM */
446struct nvm_dev_ops;
447
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200448static inline struct nvm_dev *nvm_alloc_dev(int node)
449{
450 return ERR_PTR(-EINVAL);
451}
452static inline int nvm_register(struct nvm_dev *dev)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100453{
454 return -EINVAL;
455}
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200456static inline void nvm_unregister(struct nvm_dev *dev) {}
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100457#endif /* CONFIG_NVM */
458#endif /* LIGHTNVM.H */