lightnvm.h 9.4 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef NVM_H
#define NVM_H

5
#include <linux/blkdev.h>
6
#include <linux/types.h>
7
#include <uapi/linux/lightnvm.h>
8

9 10 11 12 13 14 15 16 17 18
enum {
	NVM_IO_OK = 0,
	NVM_IO_REQUEUE = 1,
	NVM_IO_DONE = 2,
	NVM_IO_ERR = 3,

	NVM_IOTYPE_NONE = 0,
	NVM_IOTYPE_GC = 1,
};

19 20 21 22 23
#define NVM_BLK_BITS (16)
#define NVM_PG_BITS  (16)
#define NVM_SEC_BITS (8)
#define NVM_PL_BITS  (8)
#define NVM_LUN_BITS (8)
24
#define NVM_CH_BITS  (7)
25 26 27 28 29 30 31 32 33 34 35

struct ppa_addr {
	/* Generic structure for all addresses */
	union {
		struct {
			u64 blk		: NVM_BLK_BITS;
			u64 pg		: NVM_PG_BITS;
			u64 sec		: NVM_SEC_BITS;
			u64 pl		: NVM_PL_BITS;
			u64 lun		: NVM_LUN_BITS;
			u64 ch		: NVM_CH_BITS;
36
			u64 reserved	: 1;
37 38
		} g;

39 40 41 42 43
		struct {
			u64 line	: 63;
			u64 is_cached	: 1;
		} c;

44 45 46 47 48 49 50
		u64 ppa;
	};
};

struct nvm_rq;
struct nvm_id;
struct nvm_dev;
51
struct nvm_tgt_dev;
52 53

typedef int (nvm_id_fn)(struct nvm_dev *, struct nvm_id *);
54
typedef int (nvm_op_bb_tbl_fn)(struct nvm_dev *, struct ppa_addr, u8 *);
55
typedef int (nvm_op_set_bb_fn)(struct nvm_dev *, struct ppa_addr *, int, int);
56
typedef int (nvm_submit_io_fn)(struct nvm_dev *, struct nvm_rq *);
57
typedef int (nvm_submit_io_sync_fn)(struct nvm_dev *, struct nvm_rq *);
58 59 60 61 62 63 64 65 66 67 68 69
typedef void *(nvm_create_dma_pool_fn)(struct nvm_dev *, char *);
typedef void (nvm_destroy_dma_pool_fn)(void *);
typedef void *(nvm_dev_dma_alloc_fn)(struct nvm_dev *, void *, gfp_t,
								dma_addr_t *);
typedef void (nvm_dev_dma_free_fn)(void *, void*, dma_addr_t);

struct nvm_dev_ops {
	nvm_id_fn		*identity;
	nvm_op_bb_tbl_fn	*get_bb_tbl;
	nvm_op_set_bb_fn	*set_bb_tbl;

	nvm_submit_io_fn	*submit_io;
70
	nvm_submit_io_sync_fn	*submit_io_sync;
71 72 73 74 75 76 77 78 79

	nvm_create_dma_pool_fn	*create_dma_pool;
	nvm_destroy_dma_pool_fn	*destroy_dma_pool;
	nvm_dev_dma_alloc_fn	*dev_dma_alloc;
	nvm_dev_dma_free_fn	*dev_dma_free;

	unsigned int		max_phys_sect;
};

80 81 82 83 84
#ifdef CONFIG_NVM

#include <linux/blkdev.h>
#include <linux/file.h>
#include <linux/dmapool.h>
85
#include <uapi/linux/lightnvm.h>
86 87 88 89 90 91 92 93 94 95 96

enum {
	/* HW Responsibilities */
	NVM_RSP_L2P	= 1 << 0,
	NVM_RSP_ECC	= 1 << 1,

	/* Physical Adressing Mode */
	NVM_ADDRMODE_LINEAR	= 0,
	NVM_ADDRMODE_CHANNEL	= 1,

	/* Plane programming mode for LUN */
97 98 99
	NVM_PLANE_SINGLE	= 1,
	NVM_PLANE_DOUBLE	= 2,
	NVM_PLANE_QUAD		= 4,
100 101 102 103 104 105

	/* Status codes */
	NVM_RSP_SUCCESS		= 0x0,
	NVM_RSP_NOT_CHANGEABLE	= 0x1,
	NVM_RSP_ERR_FAILWRITE	= 0x40ff,
	NVM_RSP_ERR_EMPTYPAGE	= 0x42ff,
J
Javier González 已提交
106
	NVM_RSP_ERR_FAILECC	= 0x4281,
J
Javier González 已提交
107
	NVM_RSP_ERR_FAILCRC	= 0x4004,
J
Javier González 已提交
108
	NVM_RSP_WARN_HIGHECC	= 0x4700,
109 110 111 112 113 114 115 116 117 118 119

	/* Device opcodes */
	NVM_OP_PWRITE		= 0x91,
	NVM_OP_PREAD		= 0x92,
	NVM_OP_ERASE		= 0x90,

	/* PPA Command Flags */
	NVM_IO_SNGL_ACCESS	= 0x0,
	NVM_IO_DUAL_ACCESS	= 0x1,
	NVM_IO_QUAD_ACCESS	= 0x2,

M
Matias Bjørling 已提交
120
	/* NAND Access Modes */
121 122
	NVM_IO_SUSPEND		= 0x80,
	NVM_IO_SLC_MODE		= 0x100,
123
	NVM_IO_SCRAMBLE_ENABLE	= 0x200,
M
Matias Bjørling 已提交
124 125 126 127

	/* Block Types */
	NVM_BLK_T_FREE		= 0x0,
	NVM_BLK_T_BAD		= 0x1,
128 129 130
	NVM_BLK_T_GRWN_BAD	= 0x2,
	NVM_BLK_T_DEV		= 0x4,
	NVM_BLK_T_HOST		= 0x8,
M
Matias Bjørling 已提交
131 132 133 134 135 136

	/* Memory capabilities */
	NVM_ID_CAP_SLC		= 0x1,
	NVM_ID_CAP_CMD_SUSPEND	= 0x2,
	NVM_ID_CAP_SCRAMBLE	= 0x4,
	NVM_ID_CAP_ENCRYPT	= 0x8,
137 138 139 140

	/* Memory types */
	NVM_ID_FMTYPE_SLC	= 0,
	NVM_ID_FMTYPE_MLC	= 1,
141 142 143 144

	/* Device capabilities */
	NVM_ID_DCAP_BBLKMGMT	= 0x1,
	NVM_UD_DCAP_ECC		= 0x2,
145 146 147 148 149 150 151 152 153 154
};

struct nvm_id_lp_mlc {
	u16	num_pairs;
	u8	pairs[886];
};

struct nvm_id_lp_tbl {
	__u8	id[8];
	struct nvm_id_lp_mlc mlc;
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
};

struct nvm_id_group {
	u8	mtype;
	u8	fmtype;
	u8	num_ch;
	u8	num_lun;
	u8	num_pln;
	u16	num_blk;
	u16	num_pg;
	u16	fpg_sz;
	u16	csecs;
	u16	sos;
	u32	trdt;
	u32	trdm;
	u32	tprt;
	u32	tprm;
	u32	tbet;
	u32	tbem;
	u32	mpos;
175
	u32	mccap;
176
	u16	cpar;
177 178

	struct nvm_id_lp_tbl lptbl;
179
};
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201

struct nvm_addr_format {
	u8	ch_offset;
	u8	ch_len;
	u8	lun_offset;
	u8	lun_len;
	u8	pln_offset;
	u8	pln_len;
	u8	blk_offset;
	u8	blk_len;
	u8	pg_offset;
	u8	pg_len;
	u8	sect_offset;
	u8	sect_len;
};

struct nvm_id {
	u8	ver_id;
	u8	vmnt;
	u32	cap;
	u32	dom;
	struct nvm_addr_format ppaf;
202
	struct nvm_id_group grp;
203 204 205 206
} __packed;

struct nvm_target {
	struct list_head list;
207
	struct nvm_tgt_dev *dev;
208 209 210 211 212 213 214 215 216 217
	struct nvm_tgt_type *type;
	struct gendisk *disk;
};

#define ADDR_EMPTY (~0ULL)

#define NVM_VERSION_MAJOR 1
#define NVM_VERSION_MINOR 0
#define NVM_VERSION_PATCH 0

218
struct nvm_rq;
219
typedef void (nvm_end_io_fn)(struct nvm_rq *);
220

221
struct nvm_rq {
222
	struct nvm_tgt_dev *dev;
223 224 225 226 227 228 229 230 231 232

	struct bio *bio;

	union {
		struct ppa_addr ppa_addr;
		dma_addr_t dma_ppa_list;
	};

	struct ppa_addr *ppa_list;

233 234
	void *meta_list;
	dma_addr_t dma_meta_list;
235

236 237 238
	struct completion *wait;
	nvm_end_io_fn *end_io;

239
	uint8_t opcode;
240
	uint16_t nr_ppas;
241
	uint16_t flags;
242

243
	u64 ppa_status; /* ppa media status */
244
	int error;
245 246

	void *private;
247 248 249 250 251 252 253 254 255 256 257 258
};

static inline struct nvm_rq *nvm_rq_from_pdu(void *pdu)
{
	return pdu - sizeof(struct nvm_rq);
}

static inline void *nvm_rq_to_pdu(struct nvm_rq *rqdata)
{
	return rqdata + 1;
}

259 260
enum {
	NVM_BLK_ST_FREE =	0x1,	/* Free block */
261
	NVM_BLK_ST_TGT =	0x2,	/* Block in use by target */
262
	NVM_BLK_ST_BAD =	0x8,	/* Bad block */
263 264
};

265 266
/* Device generic information */
struct nvm_geo {
267
	int nr_chnls;
268 269
	int nr_luns;
	int luns_per_chnl; /* -1 if channels are not symmetric */
270 271 272 273
	int nr_planes;
	int sec_per_pg; /* only sectors for a single page */
	int pgs_per_blk;
	int blks_per_lun;
274 275
	int fpg_size;
	int pfpg_size; /* size of buffer if all pages are to be read */
276 277
	int sec_size;
	int oob_size;
M
Matias Bjørling 已提交
278
	int mccap;
279
	struct nvm_addr_format ppaf;
280 281 282 283 284 285 286 287 288 289

	/* Calculated/Cached values. These do not reflect the actual usable
	 * blocks at run-time.
	 */
	int max_rq_size;
	int plane_mode; /* drive device in single, double or quad mode */

	int sec_per_pl; /* all sectors across planes */
	int sec_per_blk;
	int sec_per_lun;
290 291
};

292
/* sub-device structure */
293 294 295 296
struct nvm_tgt_dev {
	/* Device information */
	struct nvm_geo geo;

297 298 299
	/* Base ppas for target LUNs */
	struct ppa_addr *luns;

300 301 302 303 304
	sector_t total_secs;

	struct nvm_id identity;
	struct request_queue *q;

305
	struct nvm_dev *parent;
306
	void *map;
307 308 309 310 311 312 313 314 315
};

struct nvm_dev {
	struct nvm_dev_ops *ops;

	struct list_head devices;

	/* Device information */
	struct nvm_geo geo;
316

317
	  /* lower page table */
318 319 320
	int lps_per_blk;
	int *lptbl;

321
	unsigned long total_secs;
322

W
Wenwei Tao 已提交
323
	unsigned long *lun_map;
324
	void *dma_pool;
325 326 327 328 329 330

	struct nvm_id identity;

	/* Backend device */
	struct request_queue *q;
	char name[DISK_NAME_LEN];
331
	void *private_data;
332

333 334
	void *rmap;

335
	struct mutex mlock;
336
	spinlock_t lock;
337 338 339 340

	/* target management */
	struct list_head area_list;
	struct list_head targets;
341 342
};

343 344
static inline struct ppa_addr generic_to_dev_addr(struct nvm_tgt_dev *tgt_dev,
						  struct ppa_addr r)
345
{
346
	struct nvm_geo *geo = &tgt_dev->geo;
347 348
	struct ppa_addr l;

349 350 351 352 353 354
	l.ppa = ((u64)r.g.blk) << geo->ppaf.blk_offset;
	l.ppa |= ((u64)r.g.pg) << geo->ppaf.pg_offset;
	l.ppa |= ((u64)r.g.sec) << geo->ppaf.sect_offset;
	l.ppa |= ((u64)r.g.pl) << geo->ppaf.pln_offset;
	l.ppa |= ((u64)r.g.lun) << geo->ppaf.lun_offset;
	l.ppa |= ((u64)r.g.ch) << geo->ppaf.ch_offset;
355 356 357 358

	return l;
}

359 360
static inline struct ppa_addr dev_to_generic_addr(struct nvm_tgt_dev *tgt_dev,
						  struct ppa_addr r)
361
{
362
	struct nvm_geo *geo = &tgt_dev->geo;
363 364
	struct ppa_addr l;

365
	l.ppa = 0;
366 367 368
	/*
	 * (r.ppa << X offset) & X len bitmask. X eq. blk, pg, etc.
	 */
369 370 371 372 373 374 375 376 377 378 379 380
	l.g.blk = (r.ppa >> geo->ppaf.blk_offset) &
					(((1 << geo->ppaf.blk_len) - 1));
	l.g.pg |= (r.ppa >> geo->ppaf.pg_offset) &
					(((1 << geo->ppaf.pg_len) - 1));
	l.g.sec |= (r.ppa >> geo->ppaf.sect_offset) &
					(((1 << geo->ppaf.sect_len) - 1));
	l.g.pl |= (r.ppa >> geo->ppaf.pln_offset) &
					(((1 << geo->ppaf.pln_len) - 1));
	l.g.lun |= (r.ppa >> geo->ppaf.lun_offset) &
					(((1 << geo->ppaf.lun_len) - 1));
	l.g.ch |= (r.ppa >> geo->ppaf.ch_offset) &
					(((1 << geo->ppaf.ch_len) - 1));
381 382 383 384

	return l;
}

385
typedef blk_qc_t (nvm_tgt_make_rq_fn)(struct request_queue *, struct bio *);
386
typedef sector_t (nvm_tgt_capacity_fn)(void *);
387 388
typedef void *(nvm_tgt_init_fn)(struct nvm_tgt_dev *, struct gendisk *,
				int flags);
389
typedef void (nvm_tgt_exit_fn)(void *);
390 391
typedef int (nvm_tgt_sysfs_init_fn)(struct gendisk *);
typedef void (nvm_tgt_sysfs_exit_fn)(struct gendisk *);
392 393 394 395 396 397 398 399 400 401 402 403 404

struct nvm_tgt_type {
	const char *name;
	unsigned int version[3];

	/* target entry points */
	nvm_tgt_make_rq_fn *make_rq;
	nvm_tgt_capacity_fn *capacity;

	/* module-specific init/teardown */
	nvm_tgt_init_fn *init;
	nvm_tgt_exit_fn *exit;

405 406 407 408
	/* sysfs */
	nvm_tgt_sysfs_init_fn *sysfs_init;
	nvm_tgt_sysfs_exit_fn *sysfs_exit;

409 410
	/* For internal use */
	struct list_head list;
411
	struct module *owner;
412 413
};

414 415
extern int nvm_register_tgt_type(struct nvm_tgt_type *);
extern void nvm_unregister_tgt_type(struct nvm_tgt_type *);
416 417 418 419

extern void *nvm_dev_dma_alloc(struct nvm_dev *, gfp_t, dma_addr_t *);
extern void nvm_dev_dma_free(struct nvm_dev *, void *, dma_addr_t);

420 421 422
extern struct nvm_dev *nvm_alloc_dev(int);
extern int nvm_register(struct nvm_dev *);
extern void nvm_unregister(struct nvm_dev *);
423

424 425
extern int nvm_set_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr *,
			      int, int);
426
extern int nvm_max_phys_sects(struct nvm_tgt_dev *);
427
extern int nvm_submit_io(struct nvm_tgt_dev *, struct nvm_rq *);
428
extern int nvm_submit_io_sync(struct nvm_tgt_dev *, struct nvm_rq *);
429
extern void nvm_end_io(struct nvm_rq *);
430
extern int nvm_bb_tbl_fold(struct nvm_dev *, u8 *, int);
431
extern int nvm_get_tgt_bb_tbl(struct nvm_tgt_dev *, struct ppa_addr, u8 *);
432

433 434 435
#else /* CONFIG_NVM */
struct nvm_dev_ops;

436 437 438 439 440
static inline struct nvm_dev *nvm_alloc_dev(int node)
{
	return ERR_PTR(-EINVAL);
}
static inline int nvm_register(struct nvm_dev *dev)
441 442 443
{
	return -EINVAL;
}
444
static inline void nvm_unregister(struct nvm_dev *dev) {}
445 446
#endif /* CONFIG_NVM */
#endif /* LIGHTNVM.H */