blob: 18291c238930224546983559890c738fd07fc01c [file] [log] [blame]
Javier Gonzáleza4bd2172017-04-15 20:55:50 +02001/*
2 * Copyright (C) 2016 CNEX Labs
3 * Initial release: Javier Gonzalez <javier@cnexlabs.com>
4 * Matias Bjorling <matias@cnexlabs.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * pblk-map.c - pblk's lba-ppa mapping strategy
16 *
17 */
18
19#include "pblk.h"
20
21static void pblk_map_page_data(struct pblk *pblk, unsigned int sentry,
22 struct ppa_addr *ppa_list,
23 unsigned long *lun_bitmap,
24 struct pblk_sec_meta *meta_list,
25 unsigned int valid_secs)
26{
27 struct pblk_line *line = pblk_line_get_data(pblk);
28 struct line_emeta *emeta = line->emeta;
29 struct pblk_w_ctx *w_ctx;
30 __le64 *lba_list = pblk_line_emeta_to_lbas(emeta);
31 u64 paddr;
32 int nr_secs = pblk->min_write_pgs;
33 int i;
34
35 paddr = pblk_alloc_page(pblk, line, nr_secs);
36
37 for (i = 0; i < nr_secs; i++, paddr++) {
38 /* ppa to be sent to the device */
39 ppa_list[i] = addr_to_gen_ppa(pblk, paddr, line->id);
40
41 /* Write context for target bio completion on write buffer. Note
42 * that the write buffer is protected by the sync backpointer,
43 * and a single writer thread have access to each specific entry
44 * at a time. Thus, it is safe to modify the context for the
45 * entry we are setting up for submission without taking any
46 * lock or memory barrier.
47 */
48 if (i < valid_secs) {
49 kref_get(&line->ref);
50 w_ctx = pblk_rb_w_ctx(&pblk->rwb, sentry + i);
51 w_ctx->ppa = ppa_list[i];
52 meta_list[i].lba = cpu_to_le64(w_ctx->lba);
53 lba_list[paddr] = cpu_to_le64(w_ctx->lba);
54 le64_add_cpu(&line->emeta->nr_valid_lbas, 1);
55 } else {
Javier Gonzálezcaa69fa2017-06-26 11:57:12 +020056 u64 addr_empty = cpu_to_le64(ADDR_EMPTY);
57
58 lba_list[paddr] = meta_list[i].lba = addr_empty;
Javier Gonzáleza4bd2172017-04-15 20:55:50 +020059 pblk_map_pad_invalidate(pblk, line, paddr);
60 }
61 }
62
63 if (pblk_line_is_full(line)) {
64 line = pblk_line_replace_data(pblk);
65 if (!line)
66 return;
67 }
68
69 pblk_down_rq(pblk, ppa_list, nr_secs, lun_bitmap);
70}
71
72void pblk_map_rq(struct pblk *pblk, struct nvm_rq *rqd, unsigned int sentry,
73 unsigned long *lun_bitmap, unsigned int valid_secs,
74 unsigned int off)
75{
76 struct pblk_sec_meta *meta_list = rqd->meta_list;
77 unsigned int map_secs;
78 int min = pblk->min_write_pgs;
79 int i;
80
81 for (i = off; i < rqd->nr_ppas; i += min) {
82 map_secs = (i + min > valid_secs) ? (valid_secs % min) : min;
83 pblk_map_page_data(pblk, sentry + i, &rqd->ppa_list[i],
84 lun_bitmap, &meta_list[i], map_secs);
85 }
86}
87
88/* only if erase_ppa is set, acquire erase semaphore */
89void pblk_map_erase_rq(struct pblk *pblk, struct nvm_rq *rqd,
90 unsigned int sentry, unsigned long *lun_bitmap,
91 unsigned int valid_secs, struct ppa_addr *erase_ppa)
92{
93 struct nvm_tgt_dev *dev = pblk->dev;
94 struct nvm_geo *geo = &dev->geo;
95 struct pblk_line *e_line = pblk_line_get_data_next(pblk);
96 struct pblk_sec_meta *meta_list = rqd->meta_list;
97 unsigned int map_secs;
98 int min = pblk->min_write_pgs;
99 int i, erase_lun;
100
101 for (i = 0; i < rqd->nr_ppas; i += min) {
102 map_secs = (i + min > valid_secs) ? (valid_secs % min) : min;
103 pblk_map_page_data(pblk, sentry + i, &rqd->ppa_list[i],
104 lun_bitmap, &meta_list[i], map_secs);
105
106 erase_lun = rqd->ppa_list[i].g.lun * geo->nr_chnls +
107 rqd->ppa_list[i].g.ch;
108
109 if (!test_bit(erase_lun, e_line->erase_bitmap)) {
110 if (down_trylock(&pblk->erase_sem))
111 continue;
112
113 set_bit(erase_lun, e_line->erase_bitmap);
Javier Gonzáleza44f53f2017-04-22 01:32:49 +0200114 atomic_dec(&e_line->left_eblks);
Javier Gonzáleza4bd2172017-04-15 20:55:50 +0200115 *erase_ppa = rqd->ppa_list[i];
116 erase_ppa->g.blk = e_line->id;
117
118 /* Avoid evaluating e_line->left_eblks */
119 return pblk_map_rq(pblk, rqd, sentry, lun_bitmap,
120 valid_secs, i + min);
121 }
122 }
123
124 /* Erase blocks that are bad in this line but might not be in next */
125 if (unlikely(ppa_empty(*erase_ppa))) {
126 struct pblk_line_meta *lm = &pblk->lm;
127
128 i = find_first_zero_bit(e_line->erase_bitmap, lm->blk_per_line);
129 if (i == lm->blk_per_line)
130 return;
131
132 set_bit(i, e_line->erase_bitmap);
Javier Gonzáleza44f53f2017-04-22 01:32:49 +0200133 atomic_dec(&e_line->left_eblks);
Javier Gonzáleza4bd2172017-04-15 20:55:50 +0200134 *erase_ppa = pblk->luns[i].bppa; /* set ch and lun */
135 erase_ppa->g.blk = e_line->id;
136 }
137}