lightnvm: pblk: free full lines during recovery
[sfrench/cifs-2.6.git] / drivers / lightnvm / pblk.h
1 /*
2  * Copyright (C) 2015 IT University of Copenhagen (rrpc.h)
3  * Copyright (C) 2016 CNEX Labs
4  * Initial release: Matias Bjorling <matias@cnexlabs.com>
5  * Write buffering: Javier Gonzalez <javier@cnexlabs.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License version
9  * 2 as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * Implementation of a Physical Block-device target for Open-channel SSDs.
17  *
18  */
19
20 #ifndef PBLK_H_
21 #define PBLK_H_
22
23 #include <linux/blkdev.h>
24 #include <linux/blk-mq.h>
25 #include <linux/bio.h>
26 #include <linux/module.h>
27 #include <linux/kthread.h>
28 #include <linux/vmalloc.h>
29 #include <linux/crc32.h>
30 #include <linux/uuid.h>
31
32 #include <linux/lightnvm.h>
33
34 /* Run only GC if less than 1/X blocks are free */
35 #define GC_LIMIT_INVERSE 5
36 #define GC_TIME_MSECS 1000
37
38 #define PBLK_SECTOR (512)
39 #define PBLK_EXPOSED_PAGE_SIZE (4096)
40 #define PBLK_MAX_REQ_ADDRS (64)
41 #define PBLK_MAX_REQ_ADDRS_PW (6)
42
43 #define PBLK_NR_CLOSE_JOBS (4)
44
45 #define PBLK_CACHE_NAME_LEN (DISK_NAME_LEN + 16)
46
47 #define PBLK_COMMAND_TIMEOUT_MS 30000
48
49 /* Max 512 LUNs per device */
50 #define PBLK_MAX_LUNS_BITMAP (4)
51
52 #define NR_PHY_IN_LOG (PBLK_EXPOSED_PAGE_SIZE / PBLK_SECTOR)
53
54 #define pblk_for_each_lun(pblk, rlun, i) \
55                 for ((i) = 0, rlun = &(pblk)->luns[0]; \
56                         (i) < (pblk)->nr_luns; (i)++, rlun = &(pblk)->luns[(i)])
57
58 /* Static pool sizes */
59 #define PBLK_GEN_WS_POOL_SIZE (2)
60
61 enum {
62         PBLK_READ               = READ,
63         PBLK_WRITE              = WRITE,/* Write from write buffer */
64         PBLK_WRITE_INT,                 /* Internal write - no write buffer */
65         PBLK_ERASE,
66 };
67
68 enum {
69         /* IO Types */
70         PBLK_IOTYPE_USER        = 1 << 0,
71         PBLK_IOTYPE_GC          = 1 << 1,
72
73         /* Write buffer flags */
74         PBLK_FLUSH_ENTRY        = 1 << 2,
75         PBLK_WRITTEN_DATA       = 1 << 3,
76         PBLK_SUBMITTED_ENTRY    = 1 << 4,
77         PBLK_WRITABLE_ENTRY     = 1 << 5,
78 };
79
80 enum {
81         PBLK_BLK_ST_OPEN =      0x1,
82         PBLK_BLK_ST_CLOSED =    0x2,
83 };
84
85 struct pblk_sec_meta {
86         u64 reserved;
87         __le64 lba;
88 };
89
90 /* The number of GC lists and the rate-limiter states go together. This way the
91  * rate-limiter can dictate how much GC is needed based on resource utilization.
92  */
93 #define PBLK_GC_NR_LISTS 3
94
95 enum {
96         PBLK_RL_HIGH = 1,
97         PBLK_RL_MID = 2,
98         PBLK_RL_LOW = 3,
99 };
100
101 #define pblk_dma_meta_size (sizeof(struct pblk_sec_meta) * PBLK_MAX_REQ_ADDRS)
102 #define pblk_dma_ppa_size (sizeof(u64) * PBLK_MAX_REQ_ADDRS)
103
104 /* write buffer completion context */
105 struct pblk_c_ctx {
106         struct list_head list;          /* Head for out-of-order completion */
107
108         unsigned long *lun_bitmap;      /* Luns used on current request */
109         unsigned int sentry;
110         unsigned int nr_valid;
111         unsigned int nr_padded;
112 };
113
114 /* read context */
115 struct pblk_g_ctx {
116         void *private;
117         u64 lba;
118 };
119
120 /* Pad context */
121 struct pblk_pad_rq {
122         struct pblk *pblk;
123         struct completion wait;
124         struct kref ref;
125 };
126
127 /* Recovery context */
128 struct pblk_rec_ctx {
129         struct pblk *pblk;
130         struct nvm_rq *rqd;
131         struct list_head failed;
132         struct work_struct ws_rec;
133 };
134
135 /* Write context */
136 struct pblk_w_ctx {
137         struct bio_list bios;           /* Original bios - used for completion
138                                          * in REQ_FUA, REQ_FLUSH case
139                                          */
140         u64 lba;                        /* Logic addr. associated with entry */
141         struct ppa_addr ppa;            /* Physic addr. associated with entry */
142         int flags;                      /* Write context flags */
143 };
144
145 struct pblk_rb_entry {
146         struct ppa_addr cacheline;      /* Cacheline for this entry */
147         void *data;                     /* Pointer to data on this entry */
148         struct pblk_w_ctx w_ctx;        /* Context for this entry */
149         struct list_head index;         /* List head to enable indexes */
150 };
151
152 #define EMPTY_ENTRY (~0U)
153
154 struct pblk_rb_pages {
155         struct page *pages;
156         int order;
157         struct list_head list;
158 };
159
160 struct pblk_rb {
161         struct pblk_rb_entry *entries;  /* Ring buffer entries */
162         unsigned int mem;               /* Write offset - points to next
163                                          * writable entry in memory
164                                          */
165         unsigned int subm;              /* Read offset - points to last entry
166                                          * that has been submitted to the media
167                                          * to be persisted
168                                          */
169         unsigned int sync;              /* Synced - backpointer that signals
170                                          * the last submitted entry that has
171                                          * been successfully persisted to media
172                                          */
173         unsigned int sync_point;        /* Sync point - last entry that must be
174                                          * flushed to the media. Used with
175                                          * REQ_FLUSH and REQ_FUA
176                                          */
177         unsigned int l2p_update;        /* l2p update point - next entry for
178                                          * which l2p mapping will be updated to
179                                          * contain a device ppa address (instead
180                                          * of a cacheline
181                                          */
182         unsigned int nr_entries;        /* Number of entries in write buffer -
183                                          * must be a power of two
184                                          */
185         unsigned int seg_size;          /* Size of the data segments being
186                                          * stored on each entry. Typically this
187                                          * will be 4KB
188                                          */
189
190         struct list_head pages;         /* List of data pages */
191
192         spinlock_t w_lock;              /* Write lock */
193         spinlock_t s_lock;              /* Sync lock */
194
195 #ifdef CONFIG_NVM_DEBUG
196         atomic_t inflight_sync_point;   /* Not served REQ_FLUSH | REQ_FUA */
197 #endif
198 };
199
200 #define PBLK_RECOVERY_SECTORS 16
201
202 struct pblk_lun {
203         struct ppa_addr bppa;
204
205         u8 *bb_list;                    /* Bad block list for LUN. Only used on
206                                          * bring up. Bad blocks are managed
207                                          * within lines on run-time.
208                                          */
209
210         struct semaphore wr_sem;
211 };
212
213 struct pblk_gc_rq {
214         struct pblk_line *line;
215         void *data;
216         u64 paddr_list[PBLK_MAX_REQ_ADDRS];
217         u64 lba_list[PBLK_MAX_REQ_ADDRS];
218         int nr_secs;
219         int secs_to_gc;
220         struct list_head list;
221 };
222
223 struct pblk_gc {
224         /* These states are not protected by a lock since (i) they are in the
225          * fast path, and (ii) they are not critical.
226          */
227         int gc_active;
228         int gc_enabled;
229         int gc_forced;
230
231         struct task_struct *gc_ts;
232         struct task_struct *gc_writer_ts;
233         struct task_struct *gc_reader_ts;
234
235         struct workqueue_struct *gc_line_reader_wq;
236         struct workqueue_struct *gc_reader_wq;
237
238         struct timer_list gc_timer;
239
240         struct semaphore gc_sem;
241         atomic_t inflight_gc;
242         int w_entries;
243
244         struct list_head w_list;
245         struct list_head r_list;
246
247         spinlock_t lock;
248         spinlock_t w_lock;
249         spinlock_t r_lock;
250 };
251
252 struct pblk_rl {
253         unsigned int high;      /* Upper threshold for rate limiter (free run -
254                                  * user I/O rate limiter
255                                  */
256         unsigned int low;       /* Lower threshold for rate limiter (user I/O
257                                  * rate limiter - stall)
258                                  */
259         unsigned int high_pw;   /* High rounded up as a power of 2 */
260
261 #define PBLK_USER_HIGH_THRS 8   /* Begin write limit at 12% available blks */
262 #define PBLK_USER_LOW_THRS 10   /* Aggressive GC at 10% available blocks */
263
264         int rb_windows_pw;      /* Number of rate windows in the write buffer
265                                  * given as a power-of-2. This guarantees that
266                                  * when user I/O is being rate limited, there
267                                  * will be reserved enough space for the GC to
268                                  * place its payload. A window is of
269                                  * pblk->max_write_pgs size, which in NVMe is
270                                  * 64, i.e., 256kb.
271                                  */
272         int rb_budget;          /* Total number of entries available for I/O */
273         int rb_user_max;        /* Max buffer entries available for user I/O */
274         int rb_gc_max;          /* Max buffer entries available for GC I/O */
275         int rb_gc_rsv;          /* Reserved buffer entries for GC I/O */
276         int rb_state;           /* Rate-limiter current state */
277         int rb_max_io;          /* Maximum size for an I/O giving the config */
278
279         atomic_t rb_user_cnt;   /* User I/O buffer counter */
280         atomic_t rb_gc_cnt;     /* GC I/O buffer counter */
281         atomic_t rb_space;      /* Space limit in case of reaching capacity */
282
283         int rsv_blocks;         /* Reserved blocks for GC */
284
285         int rb_user_active;
286         int rb_gc_active;
287
288         struct timer_list u_timer;
289
290         unsigned long long nr_secs;
291         unsigned long total_blocks;
292         atomic_t free_blocks;
293 };
294
295 #define PBLK_LINE_EMPTY (~0U)
296
297 enum {
298         /* Line Types */
299         PBLK_LINETYPE_FREE = 0,
300         PBLK_LINETYPE_LOG = 1,
301         PBLK_LINETYPE_DATA = 2,
302
303         /* Line state */
304         PBLK_LINESTATE_FREE = 10,
305         PBLK_LINESTATE_OPEN = 11,
306         PBLK_LINESTATE_CLOSED = 12,
307         PBLK_LINESTATE_GC = 13,
308         PBLK_LINESTATE_BAD = 14,
309         PBLK_LINESTATE_CORRUPT = 15,
310
311         /* GC group */
312         PBLK_LINEGC_NONE = 20,
313         PBLK_LINEGC_EMPTY = 21,
314         PBLK_LINEGC_LOW = 22,
315         PBLK_LINEGC_MID = 23,
316         PBLK_LINEGC_HIGH = 24,
317         PBLK_LINEGC_FULL = 25,
318 };
319
320 #define PBLK_MAGIC 0x70626c6b /*pblk*/
321 #define SMETA_VERSION cpu_to_le16(1)
322
323 struct line_header {
324         __le32 crc;
325         __le32 identifier;      /* pblk identifier */
326         __u8 uuid[16];          /* instance uuid */
327         __le16 type;            /* line type */
328         __le16 version;         /* type version */
329         __le32 id;              /* line id for current line */
330 };
331
332 struct line_smeta {
333         struct line_header header;
334
335         __le32 crc;             /* Full structure including struct crc */
336         /* Previous line metadata */
337         __le32 prev_id;         /* Line id for previous line */
338
339         /* Current line metadata */
340         __le64 seq_nr;          /* Sequence number for current line */
341
342         /* Active writers */
343         __le32 window_wr_lun;   /* Number of parallel LUNs to write */
344
345         __le32 rsvd[2];
346
347         __le64 lun_bitmap[];
348 };
349
350 /*
351  * Metadata layout in media:
352  *      First sector:
353  *              1. struct line_emeta
354  *              2. bad block bitmap (u64 * window_wr_lun)
355  *      Mid sectors (start at lbas_sector):
356  *              3. nr_lbas (u64) forming lba list
357  *      Last sectors (start at vsc_sector):
358  *              4. u32 valid sector count (vsc) for all lines (~0U: free line)
359  */
360 struct line_emeta {
361         struct line_header header;
362
363         __le32 crc;             /* Full structure including struct crc */
364
365         /* Previous line metadata */
366         __le32 prev_id;         /* Line id for prev line */
367
368         /* Current line metadata */
369         __le64 seq_nr;          /* Sequence number for current line */
370
371         /* Active writers */
372         __le32 window_wr_lun;   /* Number of parallel LUNs to write */
373
374         /* Bookkeeping for recovery */
375         __le32 next_id;         /* Line id for next line */
376         __le64 nr_lbas;         /* Number of lbas mapped in line */
377         __le64 nr_valid_lbas;   /* Number of valid lbas mapped in line */
378         __le64 bb_bitmap[];     /* Updated bad block bitmap for line */
379 };
380
381 struct pblk_emeta {
382         struct line_emeta *buf;         /* emeta buffer in media format */
383         int mem;                        /* Write offset - points to next
384                                          * writable entry in memory
385                                          */
386         atomic_t sync;                  /* Synced - backpointer that signals the
387                                          * last entry that has been successfully
388                                          * persisted to media
389                                          */
390         unsigned int nr_entries;        /* Number of emeta entries */
391 };
392
393 struct pblk_smeta {
394         struct line_smeta *buf;         /* smeta buffer in persistent format */
395 };
396
397 struct pblk_line {
398         struct pblk *pblk;
399         unsigned int id;                /* Line number corresponds to the
400                                          * block line
401                                          */
402         unsigned int seq_nr;            /* Unique line sequence number */
403
404         int state;                      /* PBLK_LINESTATE_X */
405         int type;                       /* PBLK_LINETYPE_X */
406         int gc_group;                   /* PBLK_LINEGC_X */
407         struct list_head list;          /* Free, GC lists */
408
409         unsigned long *lun_bitmap;      /* Bitmap for LUNs mapped in line */
410
411         struct pblk_smeta *smeta;       /* Start metadata */
412         struct pblk_emeta *emeta;       /* End medatada */
413
414         int meta_line;                  /* Metadata line id */
415         int meta_distance;              /* Distance between data and metadata */
416
417         u64 smeta_ssec;                 /* Sector where smeta starts */
418         u64 emeta_ssec;                 /* Sector where emeta starts */
419
420         unsigned int sec_in_line;       /* Number of usable secs in line */
421
422         atomic_t blk_in_line;           /* Number of good blocks in line */
423         unsigned long *blk_bitmap;      /* Bitmap for valid/invalid blocks */
424         unsigned long *erase_bitmap;    /* Bitmap for erased blocks */
425
426         unsigned long *map_bitmap;      /* Bitmap for mapped sectors in line */
427         unsigned long *invalid_bitmap;  /* Bitmap for invalid sectors in line */
428
429         atomic_t left_eblks;            /* Blocks left for erasing */
430         atomic_t left_seblks;           /* Blocks left for sync erasing */
431
432         int left_msecs;                 /* Sectors left for mapping */
433         unsigned int cur_sec;           /* Sector map pointer */
434         unsigned int nr_valid_lbas;     /* Number of valid lbas in line */
435
436         __le32 *vsc;                    /* Valid sector count in line */
437
438         struct kref ref;                /* Write buffer L2P references */
439
440         spinlock_t lock;                /* Necessary for invalid_bitmap only */
441 };
442
443 #define PBLK_DATA_LINES 4
444
445 enum {
446         PBLK_KMALLOC_META = 1,
447         PBLK_VMALLOC_META = 2,
448 };
449
450 enum {
451         PBLK_EMETA_TYPE_HEADER = 1,     /* struct line_emeta first sector */
452         PBLK_EMETA_TYPE_LLBA = 2,       /* lba list - type: __le64 */
453         PBLK_EMETA_TYPE_VSC = 3,        /* vsc list - type: __le32 */
454 };
455
456 struct pblk_line_mgmt {
457         int nr_lines;                   /* Total number of full lines */
458         int nr_free_lines;              /* Number of full lines in free list */
459
460         /* Free lists - use free_lock */
461         struct list_head free_list;     /* Full lines ready to use */
462         struct list_head corrupt_list;  /* Full lines corrupted */
463         struct list_head bad_list;      /* Full lines bad */
464
465         /* GC lists - use gc_lock */
466         struct list_head *gc_lists[PBLK_GC_NR_LISTS];
467         struct list_head gc_high_list;  /* Full lines ready to GC, high isc */
468         struct list_head gc_mid_list;   /* Full lines ready to GC, mid isc */
469         struct list_head gc_low_list;   /* Full lines ready to GC, low isc */
470
471         struct list_head gc_full_list;  /* Full lines ready to GC, no valid */
472         struct list_head gc_empty_list; /* Full lines close, all valid */
473
474         struct pblk_line *log_line;     /* Current FTL log line */
475         struct pblk_line *data_line;    /* Current data line */
476         struct pblk_line *log_next;     /* Next FTL log line */
477         struct pblk_line *data_next;    /* Next data line */
478
479         struct list_head emeta_list;    /* Lines queued to schedule emeta */
480
481         __le32 *vsc_list;               /* Valid sector counts for all lines */
482
483         /* Metadata allocation type: VMALLOC | KMALLOC */
484         int emeta_alloc_type;
485
486         /* Pre-allocated metadata for data lines */
487         struct pblk_smeta *sline_meta[PBLK_DATA_LINES];
488         struct pblk_emeta *eline_meta[PBLK_DATA_LINES];
489         unsigned long meta_bitmap;
490
491         /* Helpers for fast bitmap calculations */
492         unsigned long *bb_template;
493         unsigned long *bb_aux;
494
495         unsigned long d_seq_nr;         /* Data line unique sequence number */
496         unsigned long l_seq_nr;         /* Log line unique sequence number */
497
498         spinlock_t free_lock;
499         spinlock_t close_lock;
500         spinlock_t gc_lock;
501 };
502
503 struct pblk_line_meta {
504         unsigned int smeta_len;         /* Total length for smeta */
505         unsigned int smeta_sec;         /* Sectors needed for smeta */
506
507         unsigned int emeta_len[4];      /* Lengths for emeta:
508                                          *  [0]: Total length
509                                          *  [1]: struct line_emeta length
510                                          *  [2]: L2P portion length
511                                          *  [3]: vsc list length
512                                          */
513         unsigned int emeta_sec[4];      /* Sectors needed for emeta. Same layout
514                                          * as emeta_len
515                                          */
516
517         unsigned int emeta_bb;          /* Boundary for bb that affects emeta */
518
519         unsigned int vsc_list_len;      /* Length for vsc list */
520         unsigned int sec_bitmap_len;    /* Length for sector bitmap in line */
521         unsigned int blk_bitmap_len;    /* Length for block bitmap in line */
522         unsigned int lun_bitmap_len;    /* Length for lun bitmap in line */
523
524         unsigned int blk_per_line;      /* Number of blocks in a full line */
525         unsigned int sec_per_line;      /* Number of sectors in a line */
526         unsigned int dsec_per_line;     /* Number of data sectors in a line */
527         unsigned int min_blk_line;      /* Min. number of good blocks in line */
528
529         unsigned int mid_thrs;          /* Threshold for GC mid list */
530         unsigned int high_thrs;         /* Threshold for GC high list */
531
532         unsigned int meta_distance;     /* Distance between data and metadata */
533 };
534
535 struct pblk_addr_format {
536         u64     ch_mask;
537         u64     lun_mask;
538         u64     pln_mask;
539         u64     blk_mask;
540         u64     pg_mask;
541         u64     sec_mask;
542         u8      ch_offset;
543         u8      lun_offset;
544         u8      pln_offset;
545         u8      blk_offset;
546         u8      pg_offset;
547         u8      sec_offset;
548 };
549
550 enum {
551         PBLK_STATE_RUNNING = 0,
552         PBLK_STATE_STOPPING = 1,
553         PBLK_STATE_RECOVERING = 2,
554         PBLK_STATE_STOPPED = 3,
555 };
556
557 struct pblk {
558         struct nvm_tgt_dev *dev;
559         struct gendisk *disk;
560
561         struct kobject kobj;
562
563         struct pblk_lun *luns;
564
565         struct pblk_line *lines;                /* Line array */
566         struct pblk_line_mgmt l_mg;             /* Line management */
567         struct pblk_line_meta lm;               /* Line metadata */
568
569         int ppaf_bitsize;
570         struct pblk_addr_format ppaf;
571
572         struct pblk_rb rwb;
573
574         int state;                      /* pblk line state */
575
576         int min_write_pgs; /* Minimum amount of pages required by controller */
577         int max_write_pgs; /* Maximum amount of pages supported by controller */
578         int pgs_in_buffer; /* Number of pages that need to be held in buffer to
579                             * guarantee successful reads.
580                             */
581
582         sector_t capacity; /* Device capacity when bad blocks are subtracted */
583         int over_pct;      /* Percentage of device used for over-provisioning */
584
585         /* pblk provisioning values. Used by rate limiter */
586         struct pblk_rl rl;
587
588         int sec_per_write;
589
590         unsigned char instance_uuid[16];
591 #ifdef CONFIG_NVM_DEBUG
592         /* All debug counters apply to 4kb sector I/Os */
593         atomic_long_t inflight_writes;  /* Inflight writes (user and gc) */
594         atomic_long_t padded_writes;    /* Sectors padded due to flush/fua */
595         atomic_long_t padded_wb;        /* Sectors padded in write buffer */
596         atomic_long_t nr_flush;         /* Number of flush/fua I/O */
597         atomic_long_t req_writes;       /* Sectors stored on write buffer */
598         atomic_long_t sub_writes;       /* Sectors submitted from buffer */
599         atomic_long_t sync_writes;      /* Sectors synced to media */
600         atomic_long_t inflight_reads;   /* Inflight sector read requests */
601         atomic_long_t cache_reads;      /* Read requests that hit the cache */
602         atomic_long_t sync_reads;       /* Completed sector read requests */
603         atomic_long_t recov_writes;     /* Sectors submitted from recovery */
604         atomic_long_t recov_gc_writes;  /* Sectors submitted from write GC */
605         atomic_long_t recov_gc_reads;   /* Sectors submitted from read GC */
606 #endif
607
608         spinlock_t lock;
609
610         atomic_long_t read_failed;
611         atomic_long_t read_empty;
612         atomic_long_t read_high_ecc;
613         atomic_long_t read_failed_gc;
614         atomic_long_t write_failed;
615         atomic_long_t erase_failed;
616
617         atomic_t inflight_io;           /* General inflight I/O counter */
618
619         struct task_struct *writer_ts;
620
621         /* Simple translation map of logical addresses to physical addresses.
622          * The logical addresses is known by the host system, while the physical
623          * addresses are used when writing to the disk block device.
624          */
625         unsigned char *trans_map;
626         spinlock_t trans_lock;
627
628         struct list_head compl_list;
629
630         mempool_t *page_bio_pool;
631         mempool_t *gen_ws_pool;
632         mempool_t *rec_pool;
633         mempool_t *r_rq_pool;
634         mempool_t *w_rq_pool;
635         mempool_t *e_rq_pool;
636
637         struct workqueue_struct *close_wq;
638         struct workqueue_struct *bb_wq;
639         struct workqueue_struct *r_end_wq;
640
641         struct timer_list wtimer;
642
643         struct pblk_gc gc;
644 };
645
646 struct pblk_line_ws {
647         struct pblk *pblk;
648         struct pblk_line *line;
649         void *priv;
650         struct work_struct ws;
651 };
652
653 #define pblk_g_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_g_ctx))
654 #define pblk_w_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_c_ctx))
655
656 /*
657  * pblk ring buffer operations
658  */
659 int pblk_rb_init(struct pblk_rb *rb, struct pblk_rb_entry *rb_entry_base,
660                  unsigned int power_size, unsigned int power_seg_sz);
661 unsigned int pblk_rb_calculate_size(unsigned int nr_entries);
662 void *pblk_rb_entries_ref(struct pblk_rb *rb);
663 int pblk_rb_may_write_user(struct pblk_rb *rb, struct bio *bio,
664                            unsigned int nr_entries, unsigned int *pos);
665 int pblk_rb_may_write_gc(struct pblk_rb *rb, unsigned int nr_entries,
666                          unsigned int *pos);
667 void pblk_rb_write_entry_user(struct pblk_rb *rb, void *data,
668                               struct pblk_w_ctx w_ctx, unsigned int pos);
669 void pblk_rb_write_entry_gc(struct pblk_rb *rb, void *data,
670                             struct pblk_w_ctx w_ctx, struct pblk_line *line,
671                             u64 paddr, unsigned int pos);
672 struct pblk_w_ctx *pblk_rb_w_ctx(struct pblk_rb *rb, unsigned int pos);
673 void pblk_rb_flush(struct pblk_rb *rb);
674
675 void pblk_rb_sync_l2p(struct pblk_rb *rb);
676 unsigned int pblk_rb_read_to_bio(struct pblk_rb *rb, struct nvm_rq *rqd,
677                                  unsigned int pos, unsigned int nr_entries,
678                                  unsigned int count);
679 unsigned int pblk_rb_read_to_bio_list(struct pblk_rb *rb, struct bio *bio,
680                                       struct list_head *list,
681                                       unsigned int max);
682 int pblk_rb_copy_to_bio(struct pblk_rb *rb, struct bio *bio, sector_t lba,
683                         struct ppa_addr ppa, int bio_iter, bool advanced_bio);
684 unsigned int pblk_rb_read_commit(struct pblk_rb *rb, unsigned int entries);
685
686 unsigned int pblk_rb_sync_init(struct pblk_rb *rb, unsigned long *flags);
687 unsigned int pblk_rb_sync_advance(struct pblk_rb *rb, unsigned int nr_entries);
688 struct pblk_rb_entry *pblk_rb_sync_scan_entry(struct pblk_rb *rb,
689                                               struct ppa_addr *ppa);
690 void pblk_rb_sync_end(struct pblk_rb *rb, unsigned long *flags);
691 unsigned int pblk_rb_sync_point_count(struct pblk_rb *rb);
692
693 unsigned int pblk_rb_read_count(struct pblk_rb *rb);
694 unsigned int pblk_rb_sync_count(struct pblk_rb *rb);
695 unsigned int pblk_rb_wrap_pos(struct pblk_rb *rb, unsigned int pos);
696
697 int pblk_rb_tear_down_check(struct pblk_rb *rb);
698 int pblk_rb_pos_oob(struct pblk_rb *rb, u64 pos);
699 void pblk_rb_data_free(struct pblk_rb *rb);
700 ssize_t pblk_rb_sysfs(struct pblk_rb *rb, char *buf);
701
702 /*
703  * pblk core
704  */
705 struct nvm_rq *pblk_alloc_rqd(struct pblk *pblk, int type);
706 void pblk_free_rqd(struct pblk *pblk, struct nvm_rq *rqd, int type);
707 void pblk_set_sec_per_write(struct pblk *pblk, int sec_per_write);
708 int pblk_setup_w_rec_rq(struct pblk *pblk, struct nvm_rq *rqd,
709                         struct pblk_c_ctx *c_ctx);
710 void pblk_wait_for_meta(struct pblk *pblk);
711 struct ppa_addr pblk_get_lba_map(struct pblk *pblk, sector_t lba);
712 void pblk_discard(struct pblk *pblk, struct bio *bio);
713 void pblk_log_write_err(struct pblk *pblk, struct nvm_rq *rqd);
714 void pblk_log_read_err(struct pblk *pblk, struct nvm_rq *rqd);
715 int pblk_submit_io(struct pblk *pblk, struct nvm_rq *rqd);
716 int pblk_submit_meta_io(struct pblk *pblk, struct pblk_line *meta_line);
717 struct bio *pblk_bio_map_addr(struct pblk *pblk, void *data,
718                               unsigned int nr_secs, unsigned int len,
719                               int alloc_type, gfp_t gfp_mask);
720 struct pblk_line *pblk_line_get(struct pblk *pblk);
721 struct pblk_line *pblk_line_get_first_data(struct pblk *pblk);
722 struct pblk_line *pblk_line_replace_data(struct pblk *pblk);
723 int pblk_line_recov_alloc(struct pblk *pblk, struct pblk_line *line);
724 void pblk_line_recov_close(struct pblk *pblk, struct pblk_line *line);
725 struct pblk_line *pblk_line_get_data(struct pblk *pblk);
726 struct pblk_line *pblk_line_get_erase(struct pblk *pblk);
727 int pblk_line_erase(struct pblk *pblk, struct pblk_line *line);
728 int pblk_line_is_full(struct pblk_line *line);
729 void pblk_line_free(struct pblk *pblk, struct pblk_line *line);
730 void pblk_line_close_meta(struct pblk *pblk, struct pblk_line *line);
731 void pblk_line_close(struct pblk *pblk, struct pblk_line *line);
732 void pblk_line_close_meta_sync(struct pblk *pblk);
733 void pblk_line_close_ws(struct work_struct *work);
734 void pblk_pipeline_stop(struct pblk *pblk);
735 void pblk_line_mark_bb(struct work_struct *work);
736 void pblk_gen_run_ws(struct pblk *pblk, struct pblk_line *line, void *priv,
737                      void (*work)(struct work_struct *), gfp_t gfp_mask,
738                      struct workqueue_struct *wq);
739 u64 pblk_line_smeta_start(struct pblk *pblk, struct pblk_line *line);
740 int pblk_line_read_smeta(struct pblk *pblk, struct pblk_line *line);
741 int pblk_line_read_emeta(struct pblk *pblk, struct pblk_line *line,
742                          void *emeta_buf);
743 int pblk_blk_erase_async(struct pblk *pblk, struct ppa_addr erase_ppa);
744 void pblk_line_put(struct kref *ref);
745 void pblk_line_put_wq(struct kref *ref);
746 struct list_head *pblk_line_gc_list(struct pblk *pblk, struct pblk_line *line);
747 u64 pblk_lookup_page(struct pblk *pblk, struct pblk_line *line);
748 void pblk_dealloc_page(struct pblk *pblk, struct pblk_line *line, int nr_secs);
749 u64 pblk_alloc_page(struct pblk *pblk, struct pblk_line *line, int nr_secs);
750 u64 __pblk_alloc_page(struct pblk *pblk, struct pblk_line *line, int nr_secs);
751 int pblk_calc_secs(struct pblk *pblk, unsigned long secs_avail,
752                    unsigned long secs_to_flush);
753 void pblk_up_page(struct pblk *pblk, struct ppa_addr *ppa_list, int nr_ppas);
754 void pblk_down_rq(struct pblk *pblk, struct ppa_addr *ppa_list, int nr_ppas,
755                   unsigned long *lun_bitmap);
756 void pblk_down_page(struct pblk *pblk, struct ppa_addr *ppa_list, int nr_ppas);
757 void pblk_up_rq(struct pblk *pblk, struct ppa_addr *ppa_list, int nr_ppas,
758                 unsigned long *lun_bitmap);
759 void pblk_end_bio_sync(struct bio *bio);
760 void pblk_end_io_sync(struct nvm_rq *rqd);
761 int pblk_bio_add_pages(struct pblk *pblk, struct bio *bio, gfp_t flags,
762                        int nr_pages);
763 void pblk_bio_free_pages(struct pblk *pblk, struct bio *bio, int off,
764                          int nr_pages);
765 void pblk_map_invalidate(struct pblk *pblk, struct ppa_addr ppa);
766 void __pblk_map_invalidate(struct pblk *pblk, struct pblk_line *line,
767                            u64 paddr);
768 void pblk_update_map(struct pblk *pblk, sector_t lba, struct ppa_addr ppa);
769 void pblk_update_map_cache(struct pblk *pblk, sector_t lba,
770                            struct ppa_addr ppa);
771 void pblk_update_map_dev(struct pblk *pblk, sector_t lba,
772                          struct ppa_addr ppa, struct ppa_addr entry_line);
773 int pblk_update_map_gc(struct pblk *pblk, sector_t lba, struct ppa_addr ppa,
774                        struct pblk_line *gc_line, u64 paddr);
775 void pblk_lookup_l2p_rand(struct pblk *pblk, struct ppa_addr *ppas,
776                           u64 *lba_list, int nr_secs);
777 void pblk_lookup_l2p_seq(struct pblk *pblk, struct ppa_addr *ppas,
778                          sector_t blba, int nr_secs);
779
780 /*
781  * pblk user I/O write path
782  */
783 int pblk_write_to_cache(struct pblk *pblk, struct bio *bio,
784                         unsigned long flags);
785 int pblk_write_gc_to_cache(struct pblk *pblk, struct pblk_gc_rq *gc_rq);
786
787 /*
788  * pblk map
789  */
790 void pblk_map_erase_rq(struct pblk *pblk, struct nvm_rq *rqd,
791                        unsigned int sentry, unsigned long *lun_bitmap,
792                        unsigned int valid_secs, struct ppa_addr *erase_ppa);
793 void pblk_map_rq(struct pblk *pblk, struct nvm_rq *rqd, unsigned int sentry,
794                  unsigned long *lun_bitmap, unsigned int valid_secs,
795                  unsigned int off);
796
797 /*
798  * pblk write thread
799  */
800 int pblk_write_ts(void *data);
801 void pblk_write_timer_fn(unsigned long data);
802 void pblk_write_should_kick(struct pblk *pblk);
803
804 /*
805  * pblk read path
806  */
807 extern struct bio_set *pblk_bio_set;
808 int pblk_submit_read(struct pblk *pblk, struct bio *bio);
809 int pblk_submit_read_gc(struct pblk *pblk, struct pblk_gc_rq *gc_rq);
810 /*
811  * pblk recovery
812  */
813 void pblk_submit_rec(struct work_struct *work);
814 struct pblk_line *pblk_recov_l2p(struct pblk *pblk);
815 int pblk_recov_pad(struct pblk *pblk);
816 __le64 *pblk_recov_get_lba_list(struct pblk *pblk, struct line_emeta *emeta);
817 int pblk_recov_setup_rq(struct pblk *pblk, struct pblk_c_ctx *c_ctx,
818                         struct pblk_rec_ctx *recovery, u64 *comp_bits,
819                         unsigned int comp);
820
821 /*
822  * pblk gc
823  */
824 #define PBLK_GC_MAX_READERS 8   /* Max number of outstanding GC reader jobs */
825 #define PBLK_GC_RQ_QD 128       /* Queue depth for inflight GC requests */
826 #define PBLK_GC_L_QD 4          /* Queue depth for inflight GC lines */
827 #define PBLK_GC_RSV_LINE 1      /* Reserved lines for GC */
828
829 int pblk_gc_init(struct pblk *pblk);
830 void pblk_gc_exit(struct pblk *pblk);
831 void pblk_gc_should_start(struct pblk *pblk);
832 void pblk_gc_should_stop(struct pblk *pblk);
833 void pblk_gc_kick(struct pblk *pblk);
834 void pblk_gc_free_full_lines(struct pblk *pblk);
835 void pblk_gc_sysfs_state_show(struct pblk *pblk, int *gc_enabled,
836                               int *gc_active);
837 int pblk_gc_sysfs_force(struct pblk *pblk, int force);
838
839 /*
840  * pblk rate limiter
841  */
842 void pblk_rl_init(struct pblk_rl *rl, int budget);
843 void pblk_rl_free(struct pblk_rl *rl);
844 int pblk_rl_high_thrs(struct pblk_rl *rl);
845 int pblk_rl_low_thrs(struct pblk_rl *rl);
846 unsigned long pblk_rl_nr_free_blks(struct pblk_rl *rl);
847 int pblk_rl_user_may_insert(struct pblk_rl *rl, int nr_entries);
848 void pblk_rl_inserted(struct pblk_rl *rl, int nr_entries);
849 void pblk_rl_user_in(struct pblk_rl *rl, int nr_entries);
850 int pblk_rl_gc_may_insert(struct pblk_rl *rl, int nr_entries);
851 void pblk_rl_gc_in(struct pblk_rl *rl, int nr_entries);
852 void pblk_rl_out(struct pblk_rl *rl, int nr_user, int nr_gc);
853 int pblk_rl_sysfs_rate_show(struct pblk_rl *rl);
854 int pblk_rl_max_io(struct pblk_rl *rl);
855 void pblk_rl_free_lines_inc(struct pblk_rl *rl, struct pblk_line *line);
856 void pblk_rl_free_lines_dec(struct pblk_rl *rl, struct pblk_line *line);
857 void pblk_rl_set_space_limit(struct pblk_rl *rl, int entries_left);
858 int pblk_rl_is_limit(struct pblk_rl *rl);
859
860 /*
861  * pblk sysfs
862  */
863 int pblk_sysfs_init(struct gendisk *tdisk);
864 void pblk_sysfs_exit(struct gendisk *tdisk);
865
866 static inline void *pblk_malloc(size_t size, int type, gfp_t flags)
867 {
868         if (type == PBLK_KMALLOC_META)
869                 return kmalloc(size, flags);
870         return vmalloc(size);
871 }
872
873 static inline void pblk_mfree(void *ptr, int type)
874 {
875         if (type == PBLK_KMALLOC_META)
876                 kfree(ptr);
877         else
878                 vfree(ptr);
879 }
880
881 static inline struct nvm_rq *nvm_rq_from_c_ctx(void *c_ctx)
882 {
883         return c_ctx - sizeof(struct nvm_rq);
884 }
885
886 static inline void *emeta_to_bb(struct line_emeta *emeta)
887 {
888         return emeta->bb_bitmap;
889 }
890
891 static inline void *emeta_to_lbas(struct pblk *pblk, struct line_emeta *emeta)
892 {
893         return ((void *)emeta + pblk->lm.emeta_len[1]);
894 }
895
896 static inline void *emeta_to_vsc(struct pblk *pblk, struct line_emeta *emeta)
897 {
898         return (emeta_to_lbas(pblk, emeta) + pblk->lm.emeta_len[2]);
899 }
900
901 static inline int pblk_line_vsc(struct pblk_line *line)
902 {
903         return le32_to_cpu(*line->vsc);
904 }
905
906 #define NVM_MEM_PAGE_WRITE (8)
907
908 static inline int pblk_pad_distance(struct pblk *pblk)
909 {
910         struct nvm_tgt_dev *dev = pblk->dev;
911         struct nvm_geo *geo = &dev->geo;
912
913         return NVM_MEM_PAGE_WRITE * geo->nr_luns * geo->sec_per_pl;
914 }
915
916 static inline int pblk_dev_ppa_to_line(struct ppa_addr p)
917 {
918         return p.g.blk;
919 }
920
921 static inline int pblk_tgt_ppa_to_line(struct ppa_addr p)
922 {
923         return p.g.blk;
924 }
925
926 static inline int pblk_ppa_to_pos(struct nvm_geo *geo, struct ppa_addr p)
927 {
928         return p.g.lun * geo->nr_chnls + p.g.ch;
929 }
930
931 /* A block within a line corresponds to the lun */
932 static inline int pblk_dev_ppa_to_pos(struct nvm_geo *geo, struct ppa_addr p)
933 {
934         return p.g.lun * geo->nr_chnls + p.g.ch;
935 }
936
937 static inline struct ppa_addr pblk_ppa32_to_ppa64(struct pblk *pblk, u32 ppa32)
938 {
939         struct ppa_addr ppa64;
940
941         ppa64.ppa = 0;
942
943         if (ppa32 == -1) {
944                 ppa64.ppa = ADDR_EMPTY;
945         } else if (ppa32 & (1U << 31)) {
946                 ppa64.c.line = ppa32 & ((~0U) >> 1);
947                 ppa64.c.is_cached = 1;
948         } else {
949                 ppa64.g.blk = (ppa32 & pblk->ppaf.blk_mask) >>
950                                                         pblk->ppaf.blk_offset;
951                 ppa64.g.pg = (ppa32 & pblk->ppaf.pg_mask) >>
952                                                         pblk->ppaf.pg_offset;
953                 ppa64.g.lun = (ppa32 & pblk->ppaf.lun_mask) >>
954                                                         pblk->ppaf.lun_offset;
955                 ppa64.g.ch = (ppa32 & pblk->ppaf.ch_mask) >>
956                                                         pblk->ppaf.ch_offset;
957                 ppa64.g.pl = (ppa32 & pblk->ppaf.pln_mask) >>
958                                                         pblk->ppaf.pln_offset;
959                 ppa64.g.sec = (ppa32 & pblk->ppaf.sec_mask) >>
960                                                         pblk->ppaf.sec_offset;
961         }
962
963         return ppa64;
964 }
965
966 static inline struct ppa_addr pblk_trans_map_get(struct pblk *pblk,
967                                                                 sector_t lba)
968 {
969         struct ppa_addr ppa;
970
971         if (pblk->ppaf_bitsize < 32) {
972                 u32 *map = (u32 *)pblk->trans_map;
973
974                 ppa = pblk_ppa32_to_ppa64(pblk, map[lba]);
975         } else {
976                 struct ppa_addr *map = (struct ppa_addr *)pblk->trans_map;
977
978                 ppa = map[lba];
979         }
980
981         return ppa;
982 }
983
984 static inline u32 pblk_ppa64_to_ppa32(struct pblk *pblk, struct ppa_addr ppa64)
985 {
986         u32 ppa32 = 0;
987
988         if (ppa64.ppa == ADDR_EMPTY) {
989                 ppa32 = ~0U;
990         } else if (ppa64.c.is_cached) {
991                 ppa32 |= ppa64.c.line;
992                 ppa32 |= 1U << 31;
993         } else {
994                 ppa32 |= ppa64.g.blk << pblk->ppaf.blk_offset;
995                 ppa32 |= ppa64.g.pg << pblk->ppaf.pg_offset;
996                 ppa32 |= ppa64.g.lun << pblk->ppaf.lun_offset;
997                 ppa32 |= ppa64.g.ch << pblk->ppaf.ch_offset;
998                 ppa32 |= ppa64.g.pl << pblk->ppaf.pln_offset;
999                 ppa32 |= ppa64.g.sec << pblk->ppaf.sec_offset;
1000         }
1001
1002         return ppa32;
1003 }
1004
1005 static inline void pblk_trans_map_set(struct pblk *pblk, sector_t lba,
1006                                                 struct ppa_addr ppa)
1007 {
1008         if (pblk->ppaf_bitsize < 32) {
1009                 u32 *map = (u32 *)pblk->trans_map;
1010
1011                 map[lba] = pblk_ppa64_to_ppa32(pblk, ppa);
1012         } else {
1013                 u64 *map = (u64 *)pblk->trans_map;
1014
1015                 map[lba] = ppa.ppa;
1016         }
1017 }
1018
1019 static inline u64 pblk_dev_ppa_to_line_addr(struct pblk *pblk,
1020                                                         struct ppa_addr p)
1021 {
1022         u64 paddr;
1023
1024         paddr = 0;
1025         paddr |= (u64)p.g.pg << pblk->ppaf.pg_offset;
1026         paddr |= (u64)p.g.lun << pblk->ppaf.lun_offset;
1027         paddr |= (u64)p.g.ch << pblk->ppaf.ch_offset;
1028         paddr |= (u64)p.g.pl << pblk->ppaf.pln_offset;
1029         paddr |= (u64)p.g.sec << pblk->ppaf.sec_offset;
1030
1031         return paddr;
1032 }
1033
1034 static inline int pblk_ppa_empty(struct ppa_addr ppa_addr)
1035 {
1036         return (ppa_addr.ppa == ADDR_EMPTY);
1037 }
1038
1039 static inline void pblk_ppa_set_empty(struct ppa_addr *ppa_addr)
1040 {
1041         ppa_addr->ppa = ADDR_EMPTY;
1042 }
1043
1044 static inline bool pblk_ppa_comp(struct ppa_addr lppa, struct ppa_addr rppa)
1045 {
1046         if (lppa.ppa == rppa.ppa)
1047                 return true;
1048
1049         return false;
1050 }
1051
1052 static inline int pblk_addr_in_cache(struct ppa_addr ppa)
1053 {
1054         return (ppa.ppa != ADDR_EMPTY && ppa.c.is_cached);
1055 }
1056
1057 static inline int pblk_addr_to_cacheline(struct ppa_addr ppa)
1058 {
1059         return ppa.c.line;
1060 }
1061
1062 static inline struct ppa_addr pblk_cacheline_to_addr(int addr)
1063 {
1064         struct ppa_addr p;
1065
1066         p.c.line = addr;
1067         p.c.is_cached = 1;
1068
1069         return p;
1070 }
1071
1072 static inline struct ppa_addr addr_to_gen_ppa(struct pblk *pblk, u64 paddr,
1073                                               u64 line_id)
1074 {
1075         struct ppa_addr ppa;
1076
1077         ppa.ppa = 0;
1078         ppa.g.blk = line_id;
1079         ppa.g.pg = (paddr & pblk->ppaf.pg_mask) >> pblk->ppaf.pg_offset;
1080         ppa.g.lun = (paddr & pblk->ppaf.lun_mask) >> pblk->ppaf.lun_offset;
1081         ppa.g.ch = (paddr & pblk->ppaf.ch_mask) >> pblk->ppaf.ch_offset;
1082         ppa.g.pl = (paddr & pblk->ppaf.pln_mask) >> pblk->ppaf.pln_offset;
1083         ppa.g.sec = (paddr & pblk->ppaf.sec_mask) >> pblk->ppaf.sec_offset;
1084
1085         return ppa;
1086 }
1087
1088 static inline struct ppa_addr addr_to_pblk_ppa(struct pblk *pblk, u64 paddr,
1089                                          u64 line_id)
1090 {
1091         struct ppa_addr ppa;
1092
1093         ppa = addr_to_gen_ppa(pblk, paddr, line_id);
1094
1095         return ppa;
1096 }
1097
1098 static inline u32 pblk_calc_meta_header_crc(struct pblk *pblk,
1099                                             struct line_header *header)
1100 {
1101         u32 crc = ~(u32)0;
1102
1103         crc = crc32_le(crc, (unsigned char *)header + sizeof(crc),
1104                                 sizeof(struct line_header) - sizeof(crc));
1105
1106         return crc;
1107 }
1108
1109 static inline u32 pblk_calc_smeta_crc(struct pblk *pblk,
1110                                       struct line_smeta *smeta)
1111 {
1112         struct pblk_line_meta *lm = &pblk->lm;
1113         u32 crc = ~(u32)0;
1114
1115         crc = crc32_le(crc, (unsigned char *)smeta +
1116                                 sizeof(struct line_header) + sizeof(crc),
1117                                 lm->smeta_len -
1118                                 sizeof(struct line_header) - sizeof(crc));
1119
1120         return crc;
1121 }
1122
1123 static inline u32 pblk_calc_emeta_crc(struct pblk *pblk,
1124                                       struct line_emeta *emeta)
1125 {
1126         struct pblk_line_meta *lm = &pblk->lm;
1127         u32 crc = ~(u32)0;
1128
1129         crc = crc32_le(crc, (unsigned char *)emeta +
1130                                 sizeof(struct line_header) + sizeof(crc),
1131                                 lm->emeta_len[0] -
1132                                 sizeof(struct line_header) - sizeof(crc));
1133
1134         return crc;
1135 }
1136
1137 static inline int pblk_set_progr_mode(struct pblk *pblk, int type)
1138 {
1139         struct nvm_tgt_dev *dev = pblk->dev;
1140         struct nvm_geo *geo = &dev->geo;
1141         int flags;
1142
1143         flags = geo->plane_mode >> 1;
1144
1145         if (type == PBLK_WRITE)
1146                 flags |= NVM_IO_SCRAMBLE_ENABLE;
1147
1148         return flags;
1149 }
1150
1151 enum {
1152         PBLK_READ_RANDOM        = 0,
1153         PBLK_READ_SEQUENTIAL    = 1,
1154 };
1155
1156 static inline int pblk_set_read_mode(struct pblk *pblk, int type)
1157 {
1158         struct nvm_tgt_dev *dev = pblk->dev;
1159         struct nvm_geo *geo = &dev->geo;
1160         int flags;
1161
1162         flags = NVM_IO_SUSPEND | NVM_IO_SCRAMBLE_ENABLE;
1163         if (type == PBLK_READ_SEQUENTIAL)
1164                 flags |= geo->plane_mode >> 1;
1165
1166         return flags;
1167 }
1168
1169 static inline int pblk_io_aligned(struct pblk *pblk, int nr_secs)
1170 {
1171         return !(nr_secs % pblk->min_write_pgs);
1172 }
1173
1174 #ifdef CONFIG_NVM_DEBUG
1175 static inline void print_ppa(struct ppa_addr *p, char *msg, int error)
1176 {
1177         if (p->c.is_cached) {
1178                 pr_err("ppa: (%s: %x) cache line: %llu\n",
1179                                 msg, error, (u64)p->c.line);
1180         } else {
1181                 pr_err("ppa: (%s: %x):ch:%d,lun:%d,blk:%d,pg:%d,pl:%d,sec:%d\n",
1182                         msg, error,
1183                         p->g.ch, p->g.lun, p->g.blk,
1184                         p->g.pg, p->g.pl, p->g.sec);
1185         }
1186 }
1187
1188 static inline void pblk_print_failed_rqd(struct pblk *pblk, struct nvm_rq *rqd,
1189                                          int error)
1190 {
1191         int bit = -1;
1192
1193         if (rqd->nr_ppas ==  1) {
1194                 print_ppa(&rqd->ppa_addr, "rqd", error);
1195                 return;
1196         }
1197
1198         while ((bit = find_next_bit((void *)&rqd->ppa_status, rqd->nr_ppas,
1199                                                 bit + 1)) < rqd->nr_ppas) {
1200                 print_ppa(&rqd->ppa_list[bit], "rqd", error);
1201         }
1202
1203         pr_err("error:%d, ppa_status:%llx\n", error, rqd->ppa_status);
1204 }
1205 #endif
1206
1207 static inline int pblk_boundary_ppa_checks(struct nvm_tgt_dev *tgt_dev,
1208                                        struct ppa_addr *ppas, int nr_ppas)
1209 {
1210         struct nvm_geo *geo = &tgt_dev->geo;
1211         struct ppa_addr *ppa;
1212         int i;
1213
1214         for (i = 0; i < nr_ppas; i++) {
1215                 ppa = &ppas[i];
1216
1217                 if (!ppa->c.is_cached &&
1218                                 ppa->g.ch < geo->nr_chnls &&
1219                                 ppa->g.lun < geo->luns_per_chnl &&
1220                                 ppa->g.pl < geo->nr_planes &&
1221                                 ppa->g.blk < geo->blks_per_lun &&
1222                                 ppa->g.pg < geo->pgs_per_blk &&
1223                                 ppa->g.sec < geo->sec_per_pg)
1224                         continue;
1225
1226 #ifdef CONFIG_NVM_DEBUG
1227                 print_ppa(ppa, "boundary", i);
1228 #endif
1229                 return 1;
1230         }
1231         return 0;
1232 }
1233
1234 static inline int pblk_boundary_paddr_checks(struct pblk *pblk, u64 paddr)
1235 {
1236         struct pblk_line_meta *lm = &pblk->lm;
1237
1238         if (paddr > lm->sec_per_line)
1239                 return 1;
1240
1241         return 0;
1242 }
1243
1244 static inline unsigned int pblk_get_bi_idx(struct bio *bio)
1245 {
1246         return bio->bi_iter.bi_idx;
1247 }
1248
1249 static inline sector_t pblk_get_lba(struct bio *bio)
1250 {
1251         return bio->bi_iter.bi_sector / NR_PHY_IN_LOG;
1252 }
1253
1254 static inline unsigned int pblk_get_secs(struct bio *bio)
1255 {
1256         return  bio->bi_iter.bi_size / PBLK_EXPOSED_PAGE_SIZE;
1257 }
1258
1259 static inline sector_t pblk_get_sector(sector_t lba)
1260 {
1261         return lba * NR_PHY_IN_LOG;
1262 }
1263
1264 static inline void pblk_setup_uuid(struct pblk *pblk)
1265 {
1266         uuid_le uuid;
1267
1268         uuid_le_gen(&uuid);
1269         memcpy(pblk->instance_uuid, uuid.b, 16);
1270 }
1271 #endif /* PBLK_H_ */