blob: 6e650563b3791271f3ce51d1fcb14ee083f9aa29 [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 */
266 u8 ver_id;
267
268 /* instance specific geometry */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100269 int nr_chnls;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200270 int nr_luns; /* per channel */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100271
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200272 /* calculated values */
273 int all_luns; /* across channels */
274 int all_chunks; /* across channels */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100275
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200276 int op; /* over-provision in instance */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100277
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200278 sector_t total_secs; /* across channels */
Matias Bjørlingfae7fae2018-01-05 14:16:03 +0100279
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200280 /* chunk geometry */
281 u32 nr_chks; /* chunks per lun */
282 u32 clba; /* sectors per chunk */
283 u16 csecs; /* sector size */
284 u16 sos; /* out-of-band area size */
Javier Gonzáleze5392732018-01-05 14:16:14 +0100285
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200286 /* device write constrains */
287 u32 ws_min; /* minimum write size */
288 u32 ws_opt; /* optimal write size */
289 u32 mw_cunits; /* distance required for successful read */
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100290
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200291 /* device capabilities */
292 u32 mccap;
293
294 /* device timings */
295 u32 trdt; /* Avg. Tread (ns) */
296 u32 trdm; /* Max Tread (ns) */
297 u32 tprt; /* Avg. Tprog (ns) */
298 u32 tprm; /* Max Tprog (ns) */
299 u32 tbet; /* Avg. Terase (ns) */
300 u32 tbem; /* Max Terase (ns) */
301
302 /* generic address format */
303 struct nvm_addrf addrf;
304
305 /* 1.2 compatibility */
306 u8 vmnt;
307 u32 cap;
308 u32 dom;
309
310 u8 mtype;
311 u8 fmtype;
312
313 u16 cpar;
314 u32 mpos;
315
316 u8 num_pln;
317 u8 plane_mode;
318 u16 num_pg;
319 u16 fpg_sz;
Javier González8e79b5c2016-11-28 22:39:06 +0100320};
321
Matias Bjørlingade69e22017-01-31 13:17:09 +0100322/* sub-device structure */
Javier González8e79b5c2016-11-28 22:39:06 +0100323struct nvm_tgt_dev {
324 /* Device information */
325 struct nvm_geo geo;
326
Javier González8e536242016-11-28 22:39:10 +0100327 /* Base ppas for target LUNs */
328 struct ppa_addr *luns;
329
Javier González8e79b5c2016-11-28 22:39:06 +0100330 struct request_queue *q;
331
Javier González959e9112016-11-28 22:39:11 +0100332 struct nvm_dev *parent;
Javier González8e536242016-11-28 22:39:10 +0100333 void *map;
Javier González8e79b5c2016-11-28 22:39:06 +0100334};
335
336struct nvm_dev {
337 struct nvm_dev_ops *ops;
338
339 struct list_head devices;
340
Javier González8e79b5c2016-11-28 22:39:06 +0100341 /* Device information */
342 struct nvm_geo geo;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100343
Wenwei Taoda1e2842016-03-03 15:06:38 +0100344 unsigned long *lun_map;
Javier González75b85642016-05-06 20:03:13 +0200345 void *dma_pool;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100346
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100347 /* Backend device */
348 struct request_queue *q;
349 char name[DISK_NAME_LEN];
Simon A. F. Lund40267ef2016-09-16 14:25:08 +0200350 void *private_data;
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100351
Javier González8e536242016-11-28 22:39:10 +0100352 void *rmap;
353
Matias Bjørlinge3eb3792016-01-12 07:49:36 +0100354 struct mutex mlock;
Wenwei Tao4c9dacb2016-03-03 15:06:37 +0100355 spinlock_t lock;
Matias Bjørlingade69e22017-01-31 13:17:09 +0100356
357 /* target management */
358 struct list_head area_list;
359 struct list_head targets;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100360};
361
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100362static inline struct ppa_addr generic_to_dev_addr(struct nvm_tgt_dev *tgt_dev,
363 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100364{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100365 struct nvm_geo *geo = &tgt_dev->geo;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200366 struct nvm_addrf_12 *ppaf = (struct nvm_addrf_12 *)&geo->addrf;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100367 struct ppa_addr l;
368
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200369 l.ppa = ((u64)r.g.ch) << ppaf->ch_offset;
370 l.ppa |= ((u64)r.g.lun) << ppaf->lun_offset;
371 l.ppa |= ((u64)r.g.blk) << ppaf->blk_offset;
372 l.ppa |= ((u64)r.g.pg) << ppaf->pg_offset;
373 l.ppa |= ((u64)r.g.pl) << ppaf->pln_offset;
374 l.ppa |= ((u64)r.g.sec) << ppaf->sect_offset;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100375
376 return l;
377}
378
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100379static inline struct ppa_addr dev_to_generic_addr(struct nvm_tgt_dev *tgt_dev,
380 struct ppa_addr r)
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100381{
Matias Bjørlingdab8ee92017-01-31 13:17:14 +0100382 struct nvm_geo *geo = &tgt_dev->geo;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200383 struct nvm_addrf_12 *ppaf = (struct nvm_addrf_12 *)&geo->addrf;
Matias Bjørlingcd9e9802015-10-28 19:54:55 +0100384 struct ppa_addr l;
385
Javier González5389a1d2016-07-07 09:54:09 +0200386 l.ppa = 0;
Javier Gonzáleze46f4e42018-03-30 00:05:10 +0200387
388 l.g.ch = (r.ppa & ppaf->ch_mask) >> ppaf->ch_offset;
389 l.g.lun = (r.ppa & ppaf->lun_mask) >> ppaf->lun_offset;
390 l.g.blk = (r.ppa & ppaf->blk_mask) >> ppaf->blk_offset;
391 l.g.pg = (r.ppa & ppaf->pg_mask) >> ppaf->pg_offset;
392 l.g.pl = (r.ppa & ppaf->pln_mask) >> ppaf->pln_offset;
393 l.g.sec = (r.ppa & ppaf->sec_mask) >> ppaf->sect_offset;
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 */