Linux Audio

Check our new training course

Loading...
v4.17
 
   1/*
   2 * Copyright (C) 2015 IT University of Copenhagen (rrpc.c)
   3 * Copyright (C) 2016 CNEX Labs
   4 * Initial release: Javier Gonzalez <javier@cnexlabs.com>
   5 *                  Matias Bjorling <matias@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 * pblk-init.c - pblk's initialization.
  19 */
  20
  21#include "pblk.h"
 
  22
  23static struct kmem_cache *pblk_ws_cache, *pblk_rec_cache, *pblk_g_rq_cache,
  24				*pblk_w_rq_cache;
  25static DECLARE_RWSEM(pblk_lock);
  26struct bio_set *pblk_bio_set;
  27
  28static int pblk_rw_io(struct request_queue *q, struct pblk *pblk,
  29			  struct bio *bio)
  30{
  31	int ret;
  32
  33	/* Read requests must be <= 256kb due to NVMe's 64 bit completion bitmap
  34	 * constraint. Writes can be of arbitrary size.
  35	 */
  36	if (bio_data_dir(bio) == READ) {
  37		blk_queue_split(q, &bio);
  38		ret = pblk_submit_read(pblk, bio);
  39		if (ret == NVM_IO_DONE && bio_flagged(bio, BIO_CLONED))
  40			bio_put(bio);
  41
  42		return ret;
  43	}
  44
  45	/* Prevent deadlock in the case of a modest LUN configuration and large
  46	 * user I/Os. Unless stalled, the rate limiter leaves at least 256KB
  47	 * available for user I/O.
  48	 */
  49	if (pblk_get_secs(bio) > pblk_rl_max_io(&pblk->rl))
  50		blk_queue_split(q, &bio);
  51
  52	return pblk_write_to_cache(pblk, bio, PBLK_IOTYPE_USER);
  53}
 
 
 
 
  54
  55static blk_qc_t pblk_make_rq(struct request_queue *q, struct bio *bio)
  56{
  57	struct pblk *pblk = q->queuedata;
  58
  59	if (bio_op(bio) == REQ_OP_DISCARD) {
  60		pblk_discard(pblk, bio);
  61		if (!(bio->bi_opf & REQ_PREFLUSH)) {
  62			bio_endio(bio);
  63			return BLK_QC_T_NONE;
  64		}
  65	}
  66
  67	switch (pblk_rw_io(q, pblk, bio)) {
  68	case NVM_IO_ERR:
  69		bio_io_error(bio);
  70		break;
  71	case NVM_IO_DONE:
  72		bio_endio(bio);
  73		break;
 
 
 
 
 
 
 
 
  74	}
  75
  76	return BLK_QC_T_NONE;
  77}
  78
  79static size_t pblk_trans_map_size(struct pblk *pblk)
  80{
  81	int entry_size = 8;
  82
  83	if (pblk->addrf_len < 32)
  84		entry_size = 4;
  85
  86	return entry_size * pblk->rl.nr_secs;
  87}
  88
  89#ifdef CONFIG_NVM_DEBUG
  90static u32 pblk_l2p_crc(struct pblk *pblk)
  91{
  92	size_t map_size;
  93	u32 crc = ~(u32)0;
  94
  95	map_size = pblk_trans_map_size(pblk);
  96	crc = crc32_le(crc, pblk->trans_map, map_size);
  97	return crc;
  98}
  99#endif
 100
 101static void pblk_l2p_free(struct pblk *pblk)
 102{
 103	vfree(pblk->trans_map);
 104}
 105
 106static int pblk_l2p_recover(struct pblk *pblk, bool factory_init)
 107{
 108	struct pblk_line *line = NULL;
 109
 110	if (factory_init) {
 111		pblk_setup_uuid(pblk);
 112	} else {
 113		line = pblk_recov_l2p(pblk);
 114		if (IS_ERR(line)) {
 115			pr_err("pblk: could not recover l2p table\n");
 116			return -EFAULT;
 117		}
 118	}
 119
 120#ifdef CONFIG_NVM_DEBUG
 121	pr_info("pblk init: L2P CRC: %x\n", pblk_l2p_crc(pblk));
 122#endif
 123
 124	/* Free full lines directly as GC has not been started yet */
 125	pblk_gc_free_full_lines(pblk);
 126
 127	if (!line) {
 128		/* Configure next line for user data */
 129		line = pblk_line_get_first_data(pblk);
 130		if (!line) {
 131			pr_err("pblk: line list corrupted\n");
 132			return -EFAULT;
 133		}
 134	}
 135
 136	return 0;
 137}
 138
 139static int pblk_l2p_init(struct pblk *pblk, bool factory_init)
 140{
 141	sector_t i;
 142	struct ppa_addr ppa;
 143	size_t map_size;
 
 144
 145	map_size = pblk_trans_map_size(pblk);
 146	pblk->trans_map = vmalloc(map_size);
 147	if (!pblk->trans_map)
 
 
 
 
 148		return -ENOMEM;
 
 149
 150	pblk_ppa_set_empty(&ppa);
 151
 152	for (i = 0; i < pblk->rl.nr_secs; i++)
 153		pblk_trans_map_set(pblk, i, ppa);
 154
 155	return pblk_l2p_recover(pblk, factory_init);
 
 
 
 
 156}
 157
 158static void pblk_rwb_free(struct pblk *pblk)
 159{
 160	if (pblk_rb_tear_down_check(&pblk->rwb))
 161		pr_err("pblk: write buffer error on tear down\n");
 162
 163	pblk_rb_data_free(&pblk->rwb);
 164	vfree(pblk_rb_entries_ref(&pblk->rwb));
 165}
 166
 167static int pblk_rwb_init(struct pblk *pblk)
 168{
 169	struct nvm_tgt_dev *dev = pblk->dev;
 170	struct nvm_geo *geo = &dev->geo;
 171	struct pblk_rb_entry *entries;
 172	unsigned long nr_entries;
 173	unsigned int power_size, power_seg_sz;
 174
 175	nr_entries = pblk_rb_calculate_size(pblk->pgs_in_buffer);
 
 
 176
 177	entries = vzalloc(nr_entries * sizeof(struct pblk_rb_entry));
 178	if (!entries)
 179		return -ENOMEM;
 180
 181	power_size = get_count_order(nr_entries);
 182	power_seg_sz = get_count_order(geo->csecs);
 183
 184	return pblk_rb_init(&pblk->rwb, entries, power_size, power_seg_sz);
 185}
 186
 187/* Minimum pages needed within a lun */
 188#define ADDR_POOL_SIZE 64
 189
 190static int pblk_set_addrf_12(struct nvm_geo *geo, struct nvm_addrf_12 *dst)
 191{
 192	struct nvm_addrf_12 *src = (struct nvm_addrf_12 *)&geo->addrf;
 193	int power_len;
 194
 195	/* Re-calculate channel and lun format to adapt to configuration */
 196	power_len = get_count_order(geo->num_ch);
 197	if (1 << power_len != geo->num_ch) {
 198		pr_err("pblk: supports only power-of-two channel config.\n");
 199		return -EINVAL;
 200	}
 201	dst->ch_len = power_len;
 202
 203	power_len = get_count_order(geo->num_lun);
 204	if (1 << power_len != geo->num_lun) {
 205		pr_err("pblk: supports only power-of-two LUN config.\n");
 206		return -EINVAL;
 207	}
 208	dst->lun_len = power_len;
 209
 210	dst->blk_len = src->blk_len;
 211	dst->pg_len = src->pg_len;
 212	dst->pln_len = src->pln_len;
 213	dst->sec_len = src->sec_len;
 214
 215	dst->sec_offset = 0;
 216	dst->pln_offset = dst->sec_len;
 217	dst->ch_offset = dst->pln_offset + dst->pln_len;
 218	dst->lun_offset = dst->ch_offset + dst->ch_len;
 219	dst->pg_offset = dst->lun_offset + dst->lun_len;
 220	dst->blk_offset = dst->pg_offset + dst->pg_len;
 221
 222	dst->sec_mask = ((1ULL << dst->sec_len) - 1) << dst->sec_offset;
 223	dst->pln_mask = ((1ULL << dst->pln_len) - 1) << dst->pln_offset;
 224	dst->ch_mask = ((1ULL << dst->ch_len) - 1) << dst->ch_offset;
 225	dst->lun_mask = ((1ULL << dst->lun_len) - 1) << dst->lun_offset;
 226	dst->pg_mask = ((1ULL << dst->pg_len) - 1) << dst->pg_offset;
 227	dst->blk_mask = ((1ULL << dst->blk_len) - 1) << dst->blk_offset;
 228
 229	return dst->blk_offset + src->blk_len;
 230}
 231
 232static int pblk_set_addrf_20(struct nvm_geo *geo, struct nvm_addrf *adst,
 233			     struct pblk_addrf *udst)
 234{
 235	struct nvm_addrf *src = &geo->addrf;
 236
 237	adst->ch_len = get_count_order(geo->num_ch);
 238	adst->lun_len = get_count_order(geo->num_lun);
 239	adst->chk_len = src->chk_len;
 240	adst->sec_len = src->sec_len;
 241
 242	adst->sec_offset = 0;
 243	adst->ch_offset = adst->sec_len;
 244	adst->lun_offset = adst->ch_offset + adst->ch_len;
 245	adst->chk_offset = adst->lun_offset + adst->lun_len;
 246
 247	adst->sec_mask = ((1ULL << adst->sec_len) - 1) << adst->sec_offset;
 248	adst->chk_mask = ((1ULL << adst->chk_len) - 1) << adst->chk_offset;
 249	adst->lun_mask = ((1ULL << adst->lun_len) - 1) << adst->lun_offset;
 250	adst->ch_mask = ((1ULL << adst->ch_len) - 1) << adst->ch_offset;
 251
 252	udst->sec_stripe = geo->ws_opt;
 253	udst->ch_stripe = geo->num_ch;
 254	udst->lun_stripe = geo->num_lun;
 255
 256	udst->sec_lun_stripe = udst->sec_stripe * udst->ch_stripe;
 257	udst->sec_ws_stripe = udst->sec_lun_stripe * udst->lun_stripe;
 258
 259	return adst->chk_offset + adst->chk_len;
 260}
 261
 262static int pblk_set_addrf(struct pblk *pblk)
 263{
 264	struct nvm_tgt_dev *dev = pblk->dev;
 265	struct nvm_geo *geo = &dev->geo;
 266	int mod;
 267
 268	switch (geo->version) {
 269	case NVM_OCSSD_SPEC_12:
 270		div_u64_rem(geo->clba, pblk->min_write_pgs, &mod);
 271		if (mod) {
 272			pr_err("pblk: bad configuration of sectors/pages\n");
 273			return -EINVAL;
 274		}
 275
 276		pblk->addrf_len = pblk_set_addrf_12(geo, (void *)&pblk->addrf);
 
 277		break;
 278	case NVM_OCSSD_SPEC_20:
 279		pblk->addrf_len = pblk_set_addrf_20(geo, (void *)&pblk->addrf,
 280								&pblk->uaddrf);
 281		break;
 282	default:
 283		pr_err("pblk: OCSSD revision not supported (%d)\n",
 284								geo->version);
 285		return -EINVAL;
 286	}
 287
 288	return 0;
 289}
 290
 291static int pblk_init_global_caches(struct pblk *pblk)
 292{
 293	down_write(&pblk_lock);
 294	pblk_ws_cache = kmem_cache_create("pblk_blk_ws",
 295				sizeof(struct pblk_line_ws), 0, 0, NULL);
 296	if (!pblk_ws_cache) {
 297		up_write(&pblk_lock);
 298		return -ENOMEM;
 299	}
 300
 301	pblk_rec_cache = kmem_cache_create("pblk_rec",
 302				sizeof(struct pblk_rec_ctx), 0, 0, NULL);
 303	if (!pblk_rec_cache) {
 304		kmem_cache_destroy(pblk_ws_cache);
 305		up_write(&pblk_lock);
 306		return -ENOMEM;
 307	}
 308
 309	pblk_g_rq_cache = kmem_cache_create("pblk_g_rq", pblk_g_rq_size,
 310				0, 0, NULL);
 311	if (!pblk_g_rq_cache) {
 312		kmem_cache_destroy(pblk_ws_cache);
 313		kmem_cache_destroy(pblk_rec_cache);
 314		up_write(&pblk_lock);
 315		return -ENOMEM;
 316	}
 317
 318	pblk_w_rq_cache = kmem_cache_create("pblk_w_rq", pblk_w_rq_size,
 319				0, 0, NULL);
 320	if (!pblk_w_rq_cache) {
 321		kmem_cache_destroy(pblk_ws_cache);
 322		kmem_cache_destroy(pblk_rec_cache);
 323		kmem_cache_destroy(pblk_g_rq_cache);
 324		up_write(&pblk_lock);
 325		return -ENOMEM;
 326	}
 327	up_write(&pblk_lock);
 328
 329	return 0;
 
 
 
 
 
 
 
 
 
 330}
 331
 332static void pblk_free_global_caches(struct pblk *pblk)
 333{
 334	kmem_cache_destroy(pblk_ws_cache);
 335	kmem_cache_destroy(pblk_rec_cache);
 336	kmem_cache_destroy(pblk_g_rq_cache);
 337	kmem_cache_destroy(pblk_w_rq_cache);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 338}
 339
 340static int pblk_core_init(struct pblk *pblk)
 341{
 342	struct nvm_tgt_dev *dev = pblk->dev;
 343	struct nvm_geo *geo = &dev->geo;
 344	int max_write_ppas;
 345
 346	atomic64_set(&pblk->user_wa, 0);
 347	atomic64_set(&pblk->pad_wa, 0);
 348	atomic64_set(&pblk->gc_wa, 0);
 349	pblk->user_rst_wa = 0;
 350	pblk->pad_rst_wa = 0;
 351	pblk->gc_rst_wa = 0;
 352
 353	atomic64_set(&pblk->nr_flush, 0);
 354	pblk->nr_flush_rst = 0;
 355
 356	pblk->pgs_in_buffer = geo->mw_cunits * geo->all_luns;
 357
 358	pblk->min_write_pgs = geo->ws_opt * (geo->csecs / PAGE_SIZE);
 359	max_write_ppas = pblk->min_write_pgs * geo->all_luns;
 360	pblk->max_write_pgs = min_t(int, max_write_ppas, NVM_MAX_VLBA);
 
 
 361	pblk_set_sec_per_write(pblk, pblk->min_write_pgs);
 362
 363	if (pblk->max_write_pgs > PBLK_MAX_REQ_ADDRS) {
 364		pr_err("pblk: vector list too big(%u > %u)\n",
 365				pblk->max_write_pgs, PBLK_MAX_REQ_ADDRS);
 366		return -EINVAL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 367	}
 368
 369	pblk->pad_dist = kzalloc((pblk->min_write_pgs - 1) * sizeof(atomic64_t),
 370								GFP_KERNEL);
 371	if (!pblk->pad_dist)
 372		return -ENOMEM;
 373
 374	if (pblk_init_global_caches(pblk))
 375		goto fail_free_pad_dist;
 376
 377	/* Internal bios can be at most the sectors signaled by the device. */
 378	pblk->page_bio_pool = mempool_create_page_pool(NVM_MAX_VLBA, 0);
 379	if (!pblk->page_bio_pool)
 380		goto free_global_caches;
 381
 382	pblk->gen_ws_pool = mempool_create_slab_pool(PBLK_GEN_WS_POOL_SIZE,
 383							pblk_ws_cache);
 384	if (!pblk->gen_ws_pool)
 385		goto free_page_bio_pool;
 386
 387	pblk->rec_pool = mempool_create_slab_pool(geo->all_luns,
 388							pblk_rec_cache);
 389	if (!pblk->rec_pool)
 390		goto free_gen_ws_pool;
 391
 392	pblk->r_rq_pool = mempool_create_slab_pool(geo->all_luns,
 393							pblk_g_rq_cache);
 394	if (!pblk->r_rq_pool)
 395		goto free_rec_pool;
 396
 397	pblk->e_rq_pool = mempool_create_slab_pool(geo->all_luns,
 398							pblk_g_rq_cache);
 399	if (!pblk->e_rq_pool)
 400		goto free_r_rq_pool;
 401
 402	pblk->w_rq_pool = mempool_create_slab_pool(geo->all_luns,
 403							pblk_w_rq_cache);
 404	if (!pblk->w_rq_pool)
 405		goto free_e_rq_pool;
 406
 407	pblk->close_wq = alloc_workqueue("pblk-close-wq",
 408			WQ_MEM_RECLAIM | WQ_UNBOUND, PBLK_NR_CLOSE_JOBS);
 409	if (!pblk->close_wq)
 410		goto free_w_rq_pool;
 411
 412	pblk->bb_wq = alloc_workqueue("pblk-bb-wq",
 413			WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
 414	if (!pblk->bb_wq)
 415		goto free_close_wq;
 416
 417	pblk->r_end_wq = alloc_workqueue("pblk-read-end-wq",
 418			WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
 419	if (!pblk->r_end_wq)
 420		goto free_bb_wq;
 421
 422	if (pblk_set_addrf(pblk))
 423		goto free_r_end_wq;
 424
 425	INIT_LIST_HEAD(&pblk->compl_list);
 
 426
 427	return 0;
 428
 429free_r_end_wq:
 430	destroy_workqueue(pblk->r_end_wq);
 431free_bb_wq:
 432	destroy_workqueue(pblk->bb_wq);
 433free_close_wq:
 434	destroy_workqueue(pblk->close_wq);
 435free_w_rq_pool:
 436	mempool_destroy(pblk->w_rq_pool);
 437free_e_rq_pool:
 438	mempool_destroy(pblk->e_rq_pool);
 439free_r_rq_pool:
 440	mempool_destroy(pblk->r_rq_pool);
 441free_rec_pool:
 442	mempool_destroy(pblk->rec_pool);
 443free_gen_ws_pool:
 444	mempool_destroy(pblk->gen_ws_pool);
 445free_page_bio_pool:
 446	mempool_destroy(pblk->page_bio_pool);
 447free_global_caches:
 448	pblk_free_global_caches(pblk);
 449fail_free_pad_dist:
 450	kfree(pblk->pad_dist);
 451	return -ENOMEM;
 452}
 453
 454static void pblk_core_free(struct pblk *pblk)
 455{
 456	if (pblk->close_wq)
 457		destroy_workqueue(pblk->close_wq);
 458
 459	if (pblk->r_end_wq)
 460		destroy_workqueue(pblk->r_end_wq);
 461
 462	if (pblk->bb_wq)
 463		destroy_workqueue(pblk->bb_wq);
 464
 465	mempool_destroy(pblk->page_bio_pool);
 466	mempool_destroy(pblk->gen_ws_pool);
 467	mempool_destroy(pblk->rec_pool);
 468	mempool_destroy(pblk->r_rq_pool);
 469	mempool_destroy(pblk->e_rq_pool);
 470	mempool_destroy(pblk->w_rq_pool);
 471
 472	pblk_free_global_caches(pblk);
 473	kfree(pblk->pad_dist);
 474}
 475
 476static void pblk_line_mg_free(struct pblk *pblk)
 477{
 478	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 479	int i;
 480
 481	kfree(l_mg->bb_template);
 482	kfree(l_mg->bb_aux);
 483	kfree(l_mg->vsc_list);
 484
 485	for (i = 0; i < PBLK_DATA_LINES; i++) {
 486		kfree(l_mg->sline_meta[i]);
 487		pblk_mfree(l_mg->eline_meta[i]->buf, l_mg->emeta_alloc_type);
 488		kfree(l_mg->eline_meta[i]);
 489	}
 
 
 
 490}
 491
 492static void pblk_line_meta_free(struct pblk_line *line)
 
 493{
 
 
 494	kfree(line->blk_bitmap);
 495	kfree(line->erase_bitmap);
 496	kfree(line->chks);
 
 
 
 497}
 498
 499static void pblk_lines_free(struct pblk *pblk)
 500{
 501	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 502	struct pblk_line *line;
 503	int i;
 504
 505	spin_lock(&l_mg->free_lock);
 506	for (i = 0; i < l_mg->nr_lines; i++) {
 507		line = &pblk->lines[i];
 508
 509		pblk_line_free(pblk, line);
 510		pblk_line_meta_free(line);
 511	}
 512	spin_unlock(&l_mg->free_lock);
 513
 514	pblk_line_mg_free(pblk);
 515
 516	kfree(pblk->luns);
 517	kfree(pblk->lines);
 518}
 519
 520static int pblk_bb_get_tbl(struct nvm_tgt_dev *dev, struct pblk_lun *rlun,
 521			   u8 *blks, int nr_blks)
 522{
 523	struct ppa_addr ppa;
 524	int ret;
 525
 526	ppa.ppa = 0;
 527	ppa.g.ch = rlun->bppa.g.ch;
 528	ppa.g.lun = rlun->bppa.g.lun;
 529
 530	ret = nvm_get_tgt_bb_tbl(dev, ppa, blks);
 531	if (ret)
 532		return ret;
 533
 534	nr_blks = nvm_bb_tbl_fold(dev->parent, blks, nr_blks);
 535	if (nr_blks < 0)
 536		return -EIO;
 537
 538	return 0;
 539}
 540
 541static void *pblk_bb_get_meta(struct pblk *pblk)
 542{
 543	struct nvm_tgt_dev *dev = pblk->dev;
 544	struct nvm_geo *geo = &dev->geo;
 545	u8 *meta;
 546	int i, nr_blks, blk_per_lun;
 547	int ret;
 548
 549	blk_per_lun = geo->num_chk * geo->pln_mode;
 550	nr_blks = blk_per_lun * geo->all_luns;
 551
 552	meta = kmalloc(nr_blks, GFP_KERNEL);
 553	if (!meta)
 554		return ERR_PTR(-ENOMEM);
 555
 556	for (i = 0; i < geo->all_luns; i++) {
 557		struct pblk_lun *rlun = &pblk->luns[i];
 558		u8 *meta_pos = meta + i * blk_per_lun;
 559
 560		ret = pblk_bb_get_tbl(dev, rlun, meta_pos, blk_per_lun);
 561		if (ret) {
 562			kfree(meta);
 563			return ERR_PTR(-EIO);
 564		}
 565	}
 566
 567	return meta;
 568}
 569
 570static void *pblk_chunk_get_meta(struct pblk *pblk)
 571{
 572	struct nvm_tgt_dev *dev = pblk->dev;
 573	struct nvm_geo *geo = &dev->geo;
 574
 575	if (geo->version == NVM_OCSSD_SPEC_12)
 576		return pblk_bb_get_meta(pblk);
 577	else
 578		return pblk_chunk_get_info(pblk);
 579}
 580
 581static int pblk_luns_init(struct pblk *pblk)
 582{
 583	struct nvm_tgt_dev *dev = pblk->dev;
 584	struct nvm_geo *geo = &dev->geo;
 585	struct pblk_lun *rlun;
 586	int i;
 587
 588	/* TODO: Implement unbalanced LUN support */
 589	if (geo->num_lun < 0) {
 590		pr_err("pblk: unbalanced LUN config.\n");
 591		return -EINVAL;
 592	}
 593
 594	pblk->luns = kcalloc(geo->all_luns, sizeof(struct pblk_lun),
 595								GFP_KERNEL);
 596	if (!pblk->luns)
 597		return -ENOMEM;
 598
 599	for (i = 0; i < geo->all_luns; i++) {
 600		/* Stripe across channels */
 601		int ch = i % geo->num_ch;
 602		int lun_raw = i / geo->num_ch;
 603		int lunid = lun_raw + ch * geo->num_lun;
 604
 605		rlun = &pblk->luns[i];
 606		rlun->bppa = dev->luns[lunid];
 607
 608		sema_init(&rlun->wr_sem, 1);
 609	}
 610
 611	return 0;
 612}
 613
 614/* See comment over struct line_emeta definition */
 615static unsigned int calc_emeta_len(struct pblk *pblk)
 616{
 617	struct pblk_line_meta *lm = &pblk->lm;
 618	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 619	struct nvm_tgt_dev *dev = pblk->dev;
 620	struct nvm_geo *geo = &dev->geo;
 621
 622	/* Round to sector size so that lba_list starts on its own sector */
 623	lm->emeta_sec[1] = DIV_ROUND_UP(
 624			sizeof(struct line_emeta) + lm->blk_bitmap_len +
 625			sizeof(struct wa_counters), geo->csecs);
 626	lm->emeta_len[1] = lm->emeta_sec[1] * geo->csecs;
 627
 628	/* Round to sector size so that vsc_list starts on its own sector */
 629	lm->dsec_per_line = lm->sec_per_line - lm->emeta_sec[0];
 630	lm->emeta_sec[2] = DIV_ROUND_UP(lm->dsec_per_line * sizeof(u64),
 631			geo->csecs);
 632	lm->emeta_len[2] = lm->emeta_sec[2] * geo->csecs;
 633
 634	lm->emeta_sec[3] = DIV_ROUND_UP(l_mg->nr_lines * sizeof(u32),
 635			geo->csecs);
 636	lm->emeta_len[3] = lm->emeta_sec[3] * geo->csecs;
 637
 638	lm->vsc_list_len = l_mg->nr_lines * sizeof(u32);
 639
 640	return (lm->emeta_len[1] + lm->emeta_len[2] + lm->emeta_len[3]);
 641}
 642
 643static void pblk_set_provision(struct pblk *pblk, long nr_free_blks)
 644{
 645	struct nvm_tgt_dev *dev = pblk->dev;
 646	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 647	struct pblk_line_meta *lm = &pblk->lm;
 648	struct nvm_geo *geo = &dev->geo;
 649	sector_t provisioned;
 650	int sec_meta, blk_meta;
 
 651
 652	if (geo->op == NVM_TARGET_DEFAULT_OP)
 653		pblk->op = PBLK_DEFAULT_OP;
 654	else
 655		pblk->op = geo->op;
 656
 657	provisioned = nr_free_blks;
 
 658	provisioned *= (100 - pblk->op);
 659	sector_div(provisioned, 100);
 660
 661	pblk->op_blks = nr_free_blks - provisioned;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 662
 663	/* Internally pblk manages all free blocks, but all calculations based
 664	 * on user capacity consider only provisioned blocks
 665	 */
 666	pblk->rl.total_blocks = nr_free_blks;
 667	pblk->rl.nr_secs = nr_free_blks * geo->clba;
 668
 669	/* Consider sectors used for metadata */
 670	sec_meta = (lm->smeta_sec + lm->emeta_sec[0]) * l_mg->nr_free_lines;
 671	blk_meta = DIV_ROUND_UP(sec_meta, geo->clba);
 672
 673	pblk->capacity = (provisioned - blk_meta) * geo->clba;
 674
 675	atomic_set(&pblk->rl.free_blocks, nr_free_blks);
 676	atomic_set(&pblk->rl.free_user_blocks, nr_free_blks);
 677}
 678
 679static int pblk_setup_line_meta_12(struct pblk *pblk, struct pblk_line *line,
 680				   void *chunk_meta)
 681{
 682	struct nvm_tgt_dev *dev = pblk->dev;
 683	struct nvm_geo *geo = &dev->geo;
 684	struct pblk_line_meta *lm = &pblk->lm;
 685	int i, chk_per_lun, nr_bad_chks = 0;
 686
 687	chk_per_lun = geo->num_chk * geo->pln_mode;
 688
 689	for (i = 0; i < lm->blk_per_line; i++) {
 690		struct pblk_lun *rlun = &pblk->luns[i];
 691		struct nvm_chk_meta *chunk;
 692		int pos = pblk_ppa_to_pos(geo, rlun->bppa);
 693		u8 *lun_bb_meta = chunk_meta + pos * chk_per_lun;
 694
 695		chunk = &line->chks[pos];
 696
 697		/*
 698		 * In 1.2 spec. chunk state is not persisted by the device. Thus
 699		 * some of the values are reset each time pblk is instantiated.
 700		 */
 701		if (lun_bb_meta[line->id] == NVM_BLK_T_FREE)
 702			chunk->state =  NVM_CHK_ST_FREE;
 703		else
 704			chunk->state = NVM_CHK_ST_OFFLINE;
 705
 706		chunk->type = NVM_CHK_TP_W_SEQ;
 707		chunk->wi = 0;
 708		chunk->slba = -1;
 709		chunk->cnlb = geo->clba;
 710		chunk->wp = 0;
 711
 712		if (!(chunk->state & NVM_CHK_ST_OFFLINE))
 713			continue;
 714
 715		set_bit(pos, line->blk_bitmap);
 716		nr_bad_chks++;
 717	}
 718
 719	return nr_bad_chks;
 720}
 721
 722static int pblk_setup_line_meta_20(struct pblk *pblk, struct pblk_line *line,
 723				   struct nvm_chk_meta *meta)
 724{
 725	struct nvm_tgt_dev *dev = pblk->dev;
 726	struct nvm_geo *geo = &dev->geo;
 727	struct pblk_line_meta *lm = &pblk->lm;
 728	int i, nr_bad_chks = 0;
 729
 730	for (i = 0; i < lm->blk_per_line; i++) {
 731		struct pblk_lun *rlun = &pblk->luns[i];
 732		struct nvm_chk_meta *chunk;
 733		struct nvm_chk_meta *chunk_meta;
 734		struct ppa_addr ppa;
 735		int pos;
 736
 737		ppa = rlun->bppa;
 738		pos = pblk_ppa_to_pos(geo, ppa);
 739		chunk = &line->chks[pos];
 740
 741		ppa.m.chk = line->id;
 742		chunk_meta = pblk_chunk_get_off(pblk, meta, ppa);
 743
 744		chunk->state = chunk_meta->state;
 745		chunk->type = chunk_meta->type;
 746		chunk->wi = chunk_meta->wi;
 747		chunk->slba = chunk_meta->slba;
 748		chunk->cnlb = chunk_meta->cnlb;
 749		chunk->wp = chunk_meta->wp;
 750
 751		if (!(chunk->state & NVM_CHK_ST_OFFLINE))
 752			continue;
 753
 754		if (chunk->type & NVM_CHK_TP_SZ_SPEC) {
 755			WARN_ONCE(1, "pblk: custom-sized chunks unsupported\n");
 756			continue;
 757		}
 758
 
 
 
 759		set_bit(pos, line->blk_bitmap);
 760		nr_bad_chks++;
 761	}
 762
 763	return nr_bad_chks;
 764}
 765
 766static long pblk_setup_line_meta(struct pblk *pblk, struct pblk_line *line,
 767				 void *chunk_meta, int line_id)
 768{
 769	struct nvm_tgt_dev *dev = pblk->dev;
 770	struct nvm_geo *geo = &dev->geo;
 771	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 772	struct pblk_line_meta *lm = &pblk->lm;
 773	long nr_bad_chks, chk_in_line;
 774
 775	line->pblk = pblk;
 776	line->id = line_id;
 777	line->type = PBLK_LINETYPE_FREE;
 778	line->state = PBLK_LINESTATE_NEW;
 779	line->gc_group = PBLK_LINEGC_NONE;
 780	line->vsc = &l_mg->vsc_list[line_id];
 781	spin_lock_init(&line->lock);
 782
 783	if (geo->version == NVM_OCSSD_SPEC_12)
 784		nr_bad_chks = pblk_setup_line_meta_12(pblk, line, chunk_meta);
 785	else
 786		nr_bad_chks = pblk_setup_line_meta_20(pblk, line, chunk_meta);
 787
 788	chk_in_line = lm->blk_per_line - nr_bad_chks;
 789	if (nr_bad_chks < 0 || nr_bad_chks > lm->blk_per_line ||
 790					chk_in_line < lm->min_blk_line) {
 791		line->state = PBLK_LINESTATE_BAD;
 792		list_add_tail(&line->list, &l_mg->bad_list);
 793		return 0;
 794	}
 795
 796	atomic_set(&line->blk_in_line, chk_in_line);
 797	list_add_tail(&line->list, &l_mg->free_list);
 798	l_mg->nr_free_lines++;
 799
 800	return chk_in_line;
 801}
 802
 803static int pblk_alloc_line_meta(struct pblk *pblk, struct pblk_line *line)
 804{
 805	struct pblk_line_meta *lm = &pblk->lm;
 806
 807	line->blk_bitmap = kzalloc(lm->blk_bitmap_len, GFP_KERNEL);
 808	if (!line->blk_bitmap)
 809		return -ENOMEM;
 810
 811	line->erase_bitmap = kzalloc(lm->blk_bitmap_len, GFP_KERNEL);
 812	if (!line->erase_bitmap) {
 813		kfree(line->blk_bitmap);
 814		return -ENOMEM;
 815	}
 816
 817	line->chks = kmalloc(lm->blk_per_line * sizeof(struct nvm_chk_meta),
 818								GFP_KERNEL);
 819	if (!line->chks) {
 820		kfree(line->erase_bitmap);
 821		kfree(line->blk_bitmap);
 822		return -ENOMEM;
 823	}
 
 
 824
 825	return 0;
 
 
 
 
 
 
 
 
 826}
 827
 828static int pblk_line_mg_init(struct pblk *pblk)
 829{
 830	struct nvm_tgt_dev *dev = pblk->dev;
 831	struct nvm_geo *geo = &dev->geo;
 832	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 833	struct pblk_line_meta *lm = &pblk->lm;
 834	int i, bb_distance;
 835
 836	l_mg->nr_lines = geo->num_chk;
 837	l_mg->log_line = l_mg->data_line = NULL;
 838	l_mg->l_seq_nr = l_mg->d_seq_nr = 0;
 839	l_mg->nr_free_lines = 0;
 840	bitmap_zero(&l_mg->meta_bitmap, PBLK_DATA_LINES);
 841
 842	INIT_LIST_HEAD(&l_mg->free_list);
 843	INIT_LIST_HEAD(&l_mg->corrupt_list);
 844	INIT_LIST_HEAD(&l_mg->bad_list);
 845	INIT_LIST_HEAD(&l_mg->gc_full_list);
 846	INIT_LIST_HEAD(&l_mg->gc_high_list);
 847	INIT_LIST_HEAD(&l_mg->gc_mid_list);
 848	INIT_LIST_HEAD(&l_mg->gc_low_list);
 849	INIT_LIST_HEAD(&l_mg->gc_empty_list);
 
 850
 851	INIT_LIST_HEAD(&l_mg->emeta_list);
 852
 853	l_mg->gc_lists[0] = &l_mg->gc_high_list;
 854	l_mg->gc_lists[1] = &l_mg->gc_mid_list;
 855	l_mg->gc_lists[2] = &l_mg->gc_low_list;
 
 856
 857	spin_lock_init(&l_mg->free_lock);
 858	spin_lock_init(&l_mg->close_lock);
 859	spin_lock_init(&l_mg->gc_lock);
 860
 861	l_mg->vsc_list = kcalloc(l_mg->nr_lines, sizeof(__le32), GFP_KERNEL);
 862	if (!l_mg->vsc_list)
 863		goto fail;
 864
 865	l_mg->bb_template = kzalloc(lm->sec_bitmap_len, GFP_KERNEL);
 866	if (!l_mg->bb_template)
 867		goto fail_free_vsc_list;
 868
 869	l_mg->bb_aux = kzalloc(lm->sec_bitmap_len, GFP_KERNEL);
 870	if (!l_mg->bb_aux)
 871		goto fail_free_bb_template;
 872
 873	/* smeta is always small enough to fit on a kmalloc memory allocation,
 874	 * emeta depends on the number of LUNs allocated to the pblk instance
 875	 */
 876	for (i = 0; i < PBLK_DATA_LINES; i++) {
 877		l_mg->sline_meta[i] = kmalloc(lm->smeta_len, GFP_KERNEL);
 878		if (!l_mg->sline_meta[i])
 879			goto fail_free_smeta;
 880	}
 881
 
 
 
 
 
 
 
 
 
 
 
 882	/* emeta allocates three different buffers for managing metadata with
 883	 * in-memory and in-media layouts
 884	 */
 885	for (i = 0; i < PBLK_DATA_LINES; i++) {
 886		struct pblk_emeta *emeta;
 887
 888		emeta = kmalloc(sizeof(struct pblk_emeta), GFP_KERNEL);
 889		if (!emeta)
 890			goto fail_free_emeta;
 891
 892		if (lm->emeta_len[0] > KMALLOC_MAX_CACHE_SIZE) {
 893			l_mg->emeta_alloc_type = PBLK_VMALLOC_META;
 894
 895			emeta->buf = vmalloc(lm->emeta_len[0]);
 896			if (!emeta->buf) {
 897				kfree(emeta);
 898				goto fail_free_emeta;
 899			}
 900
 901			emeta->nr_entries = lm->emeta_sec[0];
 902			l_mg->eline_meta[i] = emeta;
 903		} else {
 904			l_mg->emeta_alloc_type = PBLK_KMALLOC_META;
 905
 906			emeta->buf = kmalloc(lm->emeta_len[0], GFP_KERNEL);
 907			if (!emeta->buf) {
 908				kfree(emeta);
 909				goto fail_free_emeta;
 910			}
 911
 912			emeta->nr_entries = lm->emeta_sec[0];
 913			l_mg->eline_meta[i] = emeta;
 914		}
 
 
 
 915	}
 916
 917	for (i = 0; i < l_mg->nr_lines; i++)
 918		l_mg->vsc_list[i] = cpu_to_le32(EMPTY_ENTRY);
 919
 920	bb_distance = (geo->all_luns) * geo->ws_opt;
 921	for (i = 0; i < lm->sec_per_line; i += bb_distance)
 922		bitmap_set(l_mg->bb_template, i, geo->ws_opt);
 923
 924	return 0;
 925
 926fail_free_emeta:
 927	while (--i >= 0) {
 928		if (l_mg->emeta_alloc_type == PBLK_VMALLOC_META)
 929			vfree(l_mg->eline_meta[i]->buf);
 930		else
 931			kfree(l_mg->eline_meta[i]->buf);
 932		kfree(l_mg->eline_meta[i]);
 933	}
 
 
 
 
 934fail_free_smeta:
 935	for (i = 0; i < PBLK_DATA_LINES; i++)
 936		kfree(l_mg->sline_meta[i]);
 937	kfree(l_mg->bb_aux);
 938fail_free_bb_template:
 939	kfree(l_mg->bb_template);
 940fail_free_vsc_list:
 941	kfree(l_mg->vsc_list);
 942fail:
 943	return -ENOMEM;
 944}
 945
 946static int pblk_line_meta_init(struct pblk *pblk)
 947{
 948	struct nvm_tgt_dev *dev = pblk->dev;
 949	struct nvm_geo *geo = &dev->geo;
 950	struct pblk_line_meta *lm = &pblk->lm;
 951	unsigned int smeta_len, emeta_len;
 952	int i;
 953
 954	lm->sec_per_line = geo->clba * geo->all_luns;
 955	lm->blk_per_line = geo->all_luns;
 956	lm->blk_bitmap_len = BITS_TO_LONGS(geo->all_luns) * sizeof(long);
 957	lm->sec_bitmap_len = BITS_TO_LONGS(lm->sec_per_line) * sizeof(long);
 958	lm->lun_bitmap_len = BITS_TO_LONGS(geo->all_luns) * sizeof(long);
 959	lm->mid_thrs = lm->sec_per_line / 2;
 960	lm->high_thrs = lm->sec_per_line / 4;
 961	lm->meta_distance = (geo->all_luns / 2) * pblk->min_write_pgs;
 962
 963	/* Calculate necessary pages for smeta. See comment over struct
 964	 * line_smeta definition
 965	 */
 966	i = 1;
 967add_smeta_page:
 968	lm->smeta_sec = i * geo->ws_opt;
 969	lm->smeta_len = lm->smeta_sec * geo->csecs;
 970
 971	smeta_len = sizeof(struct line_smeta) + lm->lun_bitmap_len;
 972	if (smeta_len > lm->smeta_len) {
 973		i++;
 974		goto add_smeta_page;
 975	}
 976
 977	/* Calculate necessary pages for emeta. See comment over struct
 978	 * line_emeta definition
 979	 */
 980	i = 1;
 981add_emeta_page:
 982	lm->emeta_sec[0] = i * geo->ws_opt;
 983	lm->emeta_len[0] = lm->emeta_sec[0] * geo->csecs;
 984
 985	emeta_len = calc_emeta_len(pblk);
 986	if (emeta_len > lm->emeta_len[0]) {
 987		i++;
 988		goto add_emeta_page;
 989	}
 990
 991	lm->emeta_bb = geo->all_luns > i ? geo->all_luns - i : 0;
 992
 993	lm->min_blk_line = 1;
 994	if (geo->all_luns > 1)
 995		lm->min_blk_line += DIV_ROUND_UP(lm->smeta_sec +
 996					lm->emeta_sec[0], geo->clba);
 997
 998	if (lm->min_blk_line > lm->blk_per_line) {
 999		pr_err("pblk: config. not supported. Min. LUN in line:%d\n",
1000							lm->blk_per_line);
1001		return -EINVAL;
1002	}
1003
1004	return 0;
1005}
1006
1007static int pblk_lines_init(struct pblk *pblk)
1008{
1009	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
1010	struct pblk_line *line;
1011	void *chunk_meta;
1012	long nr_free_chks = 0;
1013	int i, ret;
1014
1015	ret = pblk_line_meta_init(pblk);
1016	if (ret)
1017		return ret;
1018
1019	ret = pblk_line_mg_init(pblk);
1020	if (ret)
1021		return ret;
1022
1023	ret = pblk_luns_init(pblk);
1024	if (ret)
1025		goto fail_free_meta;
1026
1027	chunk_meta = pblk_chunk_get_meta(pblk);
1028	if (IS_ERR(chunk_meta)) {
1029		ret = PTR_ERR(chunk_meta);
1030		goto fail_free_luns;
1031	}
1032
1033	pblk->lines = kcalloc(l_mg->nr_lines, sizeof(struct pblk_line),
1034								GFP_KERNEL);
1035	if (!pblk->lines) {
1036		ret = -ENOMEM;
1037		goto fail_free_chunk_meta;
1038	}
1039
1040	for (i = 0; i < l_mg->nr_lines; i++) {
1041		line = &pblk->lines[i];
1042
1043		ret = pblk_alloc_line_meta(pblk, line);
1044		if (ret)
1045			goto fail_free_lines;
1046
1047		nr_free_chks += pblk_setup_line_meta(pblk, line, chunk_meta, i);
 
 
 
1048	}
1049
1050	pblk_set_provision(pblk, nr_free_chks);
 
 
 
 
1051
1052	kfree(chunk_meta);
 
 
 
 
1053	return 0;
1054
1055fail_free_lines:
1056	while (--i >= 0)
1057		pblk_line_meta_free(&pblk->lines[i]);
1058	kfree(pblk->lines);
1059fail_free_chunk_meta:
1060	kfree(chunk_meta);
1061fail_free_luns:
1062	kfree(pblk->luns);
1063fail_free_meta:
1064	pblk_line_mg_free(pblk);
1065
1066	return ret;
1067}
1068
1069static int pblk_writer_init(struct pblk *pblk)
1070{
1071	pblk->writer_ts = kthread_create(pblk_write_ts, pblk, "pblk-writer-t");
1072	if (IS_ERR(pblk->writer_ts)) {
1073		int err = PTR_ERR(pblk->writer_ts);
1074
1075		if (err != -EINTR)
1076			pr_err("pblk: could not allocate writer kthread (%d)\n",
1077					err);
1078		return err;
1079	}
1080
1081	timer_setup(&pblk->wtimer, pblk_write_timer_fn, 0);
1082	mod_timer(&pblk->wtimer, jiffies + msecs_to_jiffies(100));
1083
1084	return 0;
1085}
1086
1087static void pblk_writer_stop(struct pblk *pblk)
1088{
1089	/* The pipeline must be stopped and the write buffer emptied before the
1090	 * write thread is stopped
1091	 */
1092	WARN(pblk_rb_read_count(&pblk->rwb),
1093			"Stopping not fully persisted write buffer\n");
1094
1095	WARN(pblk_rb_sync_count(&pblk->rwb),
1096			"Stopping not fully synced write buffer\n");
1097
1098	del_timer_sync(&pblk->wtimer);
1099	if (pblk->writer_ts)
1100		kthread_stop(pblk->writer_ts);
1101}
1102
1103static void pblk_free(struct pblk *pblk)
1104{
1105	pblk_lines_free(pblk);
1106	pblk_l2p_free(pblk);
1107	pblk_rwb_free(pblk);
1108	pblk_core_free(pblk);
1109
1110	kfree(pblk);
1111}
1112
1113static void pblk_tear_down(struct pblk *pblk)
1114{
1115	pblk_pipeline_stop(pblk);
 
 
1116	pblk_writer_stop(pblk);
1117	pblk_rb_sync_l2p(&pblk->rwb);
1118	pblk_rl_free(&pblk->rl);
1119
1120	pr_debug("pblk: consistent tear down\n");
1121}
1122
1123static void pblk_exit(void *private)
1124{
1125	struct pblk *pblk = private;
1126
1127	down_write(&pblk_lock);
1128	pblk_gc_exit(pblk);
1129	pblk_tear_down(pblk);
1130
1131#ifdef CONFIG_NVM_DEBUG
1132	pr_info("pblk exit: L2P CRC: %x\n", pblk_l2p_crc(pblk));
1133#endif
1134
1135	pblk_free(pblk);
1136	up_write(&pblk_lock);
1137}
1138
1139static sector_t pblk_capacity(void *private)
1140{
1141	struct pblk *pblk = private;
1142
1143	return pblk->capacity * NR_PHY_IN_LOG;
1144}
1145
1146static void *pblk_init(struct nvm_tgt_dev *dev, struct gendisk *tdisk,
1147		       int flags)
1148{
1149	struct nvm_geo *geo = &dev->geo;
1150	struct request_queue *bqueue = dev->q;
1151	struct request_queue *tqueue = tdisk->queue;
1152	struct pblk *pblk;
1153	int ret;
1154
1155	/* pblk supports 1.2 and 2.0 versions */
1156	if (!(geo->version == NVM_OCSSD_SPEC_12 ||
1157					geo->version == NVM_OCSSD_SPEC_20)) {
1158		pr_err("pblk: OCSSD version not supported (%u)\n",
1159							geo->version);
1160		return ERR_PTR(-EINVAL);
1161	}
1162
1163	if (geo->version == NVM_OCSSD_SPEC_12 && geo->dom & NVM_RSP_L2P) {
1164		pr_err("pblk: host-side L2P table not supported. (%x)\n",
1165							geo->dom);
1166		return ERR_PTR(-EINVAL);
1167	}
1168
1169	pblk = kzalloc(sizeof(struct pblk), GFP_KERNEL);
1170	if (!pblk)
1171		return ERR_PTR(-ENOMEM);
1172
1173	pblk->dev = dev;
1174	pblk->disk = tdisk;
1175	pblk->state = PBLK_STATE_RUNNING;
 
1176	pblk->gc.gc_enabled = 0;
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178	spin_lock_init(&pblk->trans_lock);
1179	spin_lock_init(&pblk->lock);
1180
1181#ifdef CONFIG_NVM_DEBUG
1182	atomic_long_set(&pblk->inflight_writes, 0);
1183	atomic_long_set(&pblk->padded_writes, 0);
1184	atomic_long_set(&pblk->padded_wb, 0);
1185	atomic_long_set(&pblk->req_writes, 0);
1186	atomic_long_set(&pblk->sub_writes, 0);
1187	atomic_long_set(&pblk->sync_writes, 0);
1188	atomic_long_set(&pblk->inflight_reads, 0);
1189	atomic_long_set(&pblk->cache_reads, 0);
1190	atomic_long_set(&pblk->sync_reads, 0);
1191	atomic_long_set(&pblk->recov_writes, 0);
1192	atomic_long_set(&pblk->recov_writes, 0);
1193	atomic_long_set(&pblk->recov_gc_writes, 0);
1194	atomic_long_set(&pblk->recov_gc_reads, 0);
1195#endif
1196
1197	atomic_long_set(&pblk->read_failed, 0);
1198	atomic_long_set(&pblk->read_empty, 0);
1199	atomic_long_set(&pblk->read_high_ecc, 0);
1200	atomic_long_set(&pblk->read_failed_gc, 0);
1201	atomic_long_set(&pblk->write_failed, 0);
1202	atomic_long_set(&pblk->erase_failed, 0);
1203
1204	ret = pblk_core_init(pblk);
1205	if (ret) {
1206		pr_err("pblk: could not initialize core\n");
1207		goto fail;
1208	}
1209
1210	ret = pblk_lines_init(pblk);
1211	if (ret) {
1212		pr_err("pblk: could not initialize lines\n");
1213		goto fail_free_core;
1214	}
1215
1216	ret = pblk_rwb_init(pblk);
1217	if (ret) {
1218		pr_err("pblk: could not initialize write buffer\n");
1219		goto fail_free_lines;
1220	}
1221
1222	ret = pblk_l2p_init(pblk, flags & NVM_TARGET_FACTORY);
1223	if (ret) {
1224		pr_err("pblk: could not initialize maps\n");
1225		goto fail_free_rwb;
1226	}
1227
1228	ret = pblk_writer_init(pblk);
1229	if (ret) {
1230		if (ret != -EINTR)
1231			pr_err("pblk: could not initialize write thread\n");
1232		goto fail_free_l2p;
1233	}
1234
1235	ret = pblk_gc_init(pblk);
1236	if (ret) {
1237		pr_err("pblk: could not initialize gc\n");
1238		goto fail_stop_writer;
1239	}
1240
1241	/* inherit the size from the underlying device */
1242	blk_queue_logical_block_size(tqueue, queue_physical_block_size(bqueue));
1243	blk_queue_max_hw_sectors(tqueue, queue_max_hw_sectors(bqueue));
1244
1245	blk_queue_write_cache(tqueue, true, false);
1246
1247	tqueue->limits.discard_granularity = geo->clba * geo->csecs;
1248	tqueue->limits.discard_alignment = 0;
1249	blk_queue_max_discard_sectors(tqueue, UINT_MAX >> 9);
1250	blk_queue_flag_set(QUEUE_FLAG_DISCARD, tqueue);
1251
1252	pr_info("pblk(%s): luns:%u, lines:%d, secs:%llu, buf entries:%u\n",
1253			tdisk->disk_name,
1254			geo->all_luns, pblk->l_mg.nr_lines,
1255			(unsigned long long)pblk->rl.nr_secs,
1256			pblk->rwb.nr_entries);
1257
1258	wake_up_process(pblk->writer_ts);
1259
1260	/* Check if we need to start GC */
1261	pblk_gc_should_kick(pblk);
1262
1263	return pblk;
1264
1265fail_stop_writer:
1266	pblk_writer_stop(pblk);
1267fail_free_l2p:
1268	pblk_l2p_free(pblk);
1269fail_free_rwb:
1270	pblk_rwb_free(pblk);
1271fail_free_lines:
1272	pblk_lines_free(pblk);
1273fail_free_core:
1274	pblk_core_free(pblk);
1275fail:
1276	kfree(pblk);
1277	return ERR_PTR(ret);
1278}
1279
1280/* physical block device target */
1281static struct nvm_tgt_type tt_pblk = {
1282	.name		= "pblk",
1283	.version	= {1, 0, 0},
1284
1285	.make_rq	= pblk_make_rq,
1286	.capacity	= pblk_capacity,
1287
1288	.init		= pblk_init,
1289	.exit		= pblk_exit,
1290
1291	.sysfs_init	= pblk_sysfs_init,
1292	.sysfs_exit	= pblk_sysfs_exit,
1293	.owner		= THIS_MODULE,
1294};
1295
1296static int __init pblk_module_init(void)
1297{
1298	int ret;
1299
1300	pblk_bio_set = bioset_create(BIO_POOL_SIZE, 0, 0);
1301	if (!pblk_bio_set)
1302		return -ENOMEM;
1303	ret = nvm_register_tgt_type(&tt_pblk);
1304	if (ret)
1305		bioset_free(pblk_bio_set);
1306	return ret;
1307}
1308
1309static void pblk_module_exit(void)
1310{
1311	bioset_free(pblk_bio_set);
1312	nvm_unregister_tgt_type(&tt_pblk);
1313}
1314
1315module_init(pblk_module_init);
1316module_exit(pblk_module_exit);
1317MODULE_AUTHOR("Javier Gonzalez <javier@cnexlabs.com>");
1318MODULE_AUTHOR("Matias Bjorling <matias@cnexlabs.com>");
1319MODULE_LICENSE("GPL v2");
1320MODULE_DESCRIPTION("Physical Block-Device for Open-Channel SSDs");
v5.4
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (C) 2015 IT University of Copenhagen (rrpc.c)
   4 * Copyright (C) 2016 CNEX Labs
   5 * Initial release: Javier Gonzalez <javier@cnexlabs.com>
   6 *                  Matias Bjorling <matias@cnexlabs.com>
   7 *
   8 * This program is free software; you can redistribute it and/or
   9 * modify it under the terms of the GNU General Public License version
  10 * 2 as published by the Free Software Foundation.
  11 *
  12 * This program is distributed in the hope that it will be useful, but
  13 * WITHOUT ANY WARRANTY; without even the implied warranty of
  14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15 * General Public License for more details.
  16 *
  17 * Implementation of a physical block-device target for Open-channel SSDs.
  18 *
  19 * pblk-init.c - pblk's initialization.
  20 */
  21
  22#include "pblk.h"
  23#include "pblk-trace.h"
  24
  25static unsigned int write_buffer_size;
 
 
 
  26
  27module_param(write_buffer_size, uint, 0644);
  28MODULE_PARM_DESC(write_buffer_size, "number of entries in a write buffer");
 
 
  29
  30struct pblk_global_caches {
  31	struct kmem_cache	*ws;
  32	struct kmem_cache	*rec;
  33	struct kmem_cache	*g_rq;
  34	struct kmem_cache	*w_rq;
 
 
 
  35
  36	struct kref		kref;
 
  37
  38	struct mutex		mutex; /* Ensures consistency between
  39					* caches and kref
  40					*/
  41};
 
 
  42
  43static struct pblk_global_caches pblk_caches = {
  44	.mutex = __MUTEX_INITIALIZER(pblk_caches.mutex),
  45	.kref = KREF_INIT(0),
  46};
  47
  48struct bio_set pblk_bio_set;
  49
  50static blk_qc_t pblk_make_rq(struct request_queue *q, struct bio *bio)
  51{
  52	struct pblk *pblk = q->queuedata;
  53
  54	if (bio_op(bio) == REQ_OP_DISCARD) {
  55		pblk_discard(pblk, bio);
  56		if (!(bio->bi_opf & REQ_PREFLUSH)) {
  57			bio_endio(bio);
  58			return BLK_QC_T_NONE;
  59		}
  60	}
  61
  62	/* Read requests must be <= 256kb due to NVMe's 64 bit completion bitmap
  63	 * constraint. Writes can be of arbitrary size.
  64	 */
  65	if (bio_data_dir(bio) == READ) {
  66		blk_queue_split(q, &bio);
  67		pblk_submit_read(pblk, bio);
  68	} else {
  69		/* Prevent deadlock in the case of a modest LUN configuration
  70		 * and large user I/Os. Unless stalled, the rate limiter
  71		 * leaves at least 256KB available for user I/O.
  72		 */
  73		if (pblk_get_secs(bio) > pblk_rl_max_io(&pblk->rl))
  74			blk_queue_split(q, &bio);
  75
  76		pblk_write_to_cache(pblk, bio, PBLK_IOTYPE_USER);
  77	}
  78
  79	return BLK_QC_T_NONE;
  80}
  81
  82static size_t pblk_trans_map_size(struct pblk *pblk)
  83{
  84	int entry_size = 8;
  85
  86	if (pblk->addrf_len < 32)
  87		entry_size = 4;
  88
  89	return entry_size * pblk->capacity;
  90}
  91
  92#ifdef CONFIG_NVM_PBLK_DEBUG
  93static u32 pblk_l2p_crc(struct pblk *pblk)
  94{
  95	size_t map_size;
  96	u32 crc = ~(u32)0;
  97
  98	map_size = pblk_trans_map_size(pblk);
  99	crc = crc32_le(crc, pblk->trans_map, map_size);
 100	return crc;
 101}
 102#endif
 103
 104static void pblk_l2p_free(struct pblk *pblk)
 105{
 106	vfree(pblk->trans_map);
 107}
 108
 109static int pblk_l2p_recover(struct pblk *pblk, bool factory_init)
 110{
 111	struct pblk_line *line = NULL;
 112
 113	if (factory_init) {
 114		guid_gen(&pblk->instance_uuid);
 115	} else {
 116		line = pblk_recov_l2p(pblk);
 117		if (IS_ERR(line)) {
 118			pblk_err(pblk, "could not recover l2p table\n");
 119			return -EFAULT;
 120		}
 121	}
 122
 123#ifdef CONFIG_NVM_PBLK_DEBUG
 124	pblk_info(pblk, "init: L2P CRC: %x\n", pblk_l2p_crc(pblk));
 125#endif
 126
 127	/* Free full lines directly as GC has not been started yet */
 128	pblk_gc_free_full_lines(pblk);
 129
 130	if (!line) {
 131		/* Configure next line for user data */
 132		line = pblk_line_get_first_data(pblk);
 133		if (!line)
 
 134			return -EFAULT;
 
 135	}
 136
 137	return 0;
 138}
 139
 140static int pblk_l2p_init(struct pblk *pblk, bool factory_init)
 141{
 142	sector_t i;
 143	struct ppa_addr ppa;
 144	size_t map_size;
 145	int ret = 0;
 146
 147	map_size = pblk_trans_map_size(pblk);
 148	pblk->trans_map = __vmalloc(map_size, GFP_KERNEL | __GFP_NOWARN
 149					| __GFP_RETRY_MAYFAIL | __GFP_HIGHMEM,
 150					PAGE_KERNEL);
 151	if (!pblk->trans_map) {
 152		pblk_err(pblk, "failed to allocate L2P (need %zu of memory)\n",
 153				map_size);
 154		return -ENOMEM;
 155	}
 156
 157	pblk_ppa_set_empty(&ppa);
 158
 159	for (i = 0; i < pblk->capacity; i++)
 160		pblk_trans_map_set(pblk, i, ppa);
 161
 162	ret = pblk_l2p_recover(pblk, factory_init);
 163	if (ret)
 164		vfree(pblk->trans_map);
 165
 166	return ret;
 167}
 168
 169static void pblk_rwb_free(struct pblk *pblk)
 170{
 171	if (pblk_rb_tear_down_check(&pblk->rwb))
 172		pblk_err(pblk, "write buffer error on tear down\n");
 173
 174	pblk_rb_free(&pblk->rwb);
 
 175}
 176
 177static int pblk_rwb_init(struct pblk *pblk)
 178{
 179	struct nvm_tgt_dev *dev = pblk->dev;
 180	struct nvm_geo *geo = &dev->geo;
 181	unsigned long buffer_size;
 182	int pgs_in_buffer, threshold;
 
 183
 184	threshold = geo->mw_cunits * geo->all_luns;
 185	pgs_in_buffer = (max(geo->mw_cunits, geo->ws_opt) + geo->ws_opt)
 186								* geo->all_luns;
 187
 188	if (write_buffer_size && (write_buffer_size > pgs_in_buffer))
 189		buffer_size = write_buffer_size;
 190	else
 191		buffer_size = pgs_in_buffer;
 
 
 192
 193	return pblk_rb_init(&pblk->rwb, buffer_size, threshold, geo->csecs);
 194}
 195
 196static int pblk_set_addrf_12(struct pblk *pblk, struct nvm_geo *geo,
 197			     struct nvm_addrf_12 *dst)
 
 
 198{
 199	struct nvm_addrf_12 *src = (struct nvm_addrf_12 *)&geo->addrf;
 200	int power_len;
 201
 202	/* Re-calculate channel and lun format to adapt to configuration */
 203	power_len = get_count_order(geo->num_ch);
 204	if (1 << power_len != geo->num_ch) {
 205		pblk_err(pblk, "supports only power-of-two channel config.\n");
 206		return -EINVAL;
 207	}
 208	dst->ch_len = power_len;
 209
 210	power_len = get_count_order(geo->num_lun);
 211	if (1 << power_len != geo->num_lun) {
 212		pblk_err(pblk, "supports only power-of-two LUN config.\n");
 213		return -EINVAL;
 214	}
 215	dst->lun_len = power_len;
 216
 217	dst->blk_len = src->blk_len;
 218	dst->pg_len = src->pg_len;
 219	dst->pln_len = src->pln_len;
 220	dst->sec_len = src->sec_len;
 221
 222	dst->sec_offset = 0;
 223	dst->pln_offset = dst->sec_len;
 224	dst->ch_offset = dst->pln_offset + dst->pln_len;
 225	dst->lun_offset = dst->ch_offset + dst->ch_len;
 226	dst->pg_offset = dst->lun_offset + dst->lun_len;
 227	dst->blk_offset = dst->pg_offset + dst->pg_len;
 228
 229	dst->sec_mask = ((1ULL << dst->sec_len) - 1) << dst->sec_offset;
 230	dst->pln_mask = ((1ULL << dst->pln_len) - 1) << dst->pln_offset;
 231	dst->ch_mask = ((1ULL << dst->ch_len) - 1) << dst->ch_offset;
 232	dst->lun_mask = ((1ULL << dst->lun_len) - 1) << dst->lun_offset;
 233	dst->pg_mask = ((1ULL << dst->pg_len) - 1) << dst->pg_offset;
 234	dst->blk_mask = ((1ULL << dst->blk_len) - 1) << dst->blk_offset;
 235
 236	return dst->blk_offset + src->blk_len;
 237}
 238
 239static int pblk_set_addrf_20(struct nvm_geo *geo, struct nvm_addrf *adst,
 240			     struct pblk_addrf *udst)
 241{
 242	struct nvm_addrf *src = &geo->addrf;
 243
 244	adst->ch_len = get_count_order(geo->num_ch);
 245	adst->lun_len = get_count_order(geo->num_lun);
 246	adst->chk_len = src->chk_len;
 247	adst->sec_len = src->sec_len;
 248
 249	adst->sec_offset = 0;
 250	adst->ch_offset = adst->sec_len;
 251	adst->lun_offset = adst->ch_offset + adst->ch_len;
 252	adst->chk_offset = adst->lun_offset + adst->lun_len;
 253
 254	adst->sec_mask = ((1ULL << adst->sec_len) - 1) << adst->sec_offset;
 255	adst->chk_mask = ((1ULL << adst->chk_len) - 1) << adst->chk_offset;
 256	adst->lun_mask = ((1ULL << adst->lun_len) - 1) << adst->lun_offset;
 257	adst->ch_mask = ((1ULL << adst->ch_len) - 1) << adst->ch_offset;
 258
 259	udst->sec_stripe = geo->ws_opt;
 260	udst->ch_stripe = geo->num_ch;
 261	udst->lun_stripe = geo->num_lun;
 262
 263	udst->sec_lun_stripe = udst->sec_stripe * udst->ch_stripe;
 264	udst->sec_ws_stripe = udst->sec_lun_stripe * udst->lun_stripe;
 265
 266	return adst->chk_offset + adst->chk_len;
 267}
 268
 269static int pblk_set_addrf(struct pblk *pblk)
 270{
 271	struct nvm_tgt_dev *dev = pblk->dev;
 272	struct nvm_geo *geo = &dev->geo;
 273	int mod;
 274
 275	switch (geo->version) {
 276	case NVM_OCSSD_SPEC_12:
 277		div_u64_rem(geo->clba, pblk->min_write_pgs, &mod);
 278		if (mod) {
 279			pblk_err(pblk, "bad configuration of sectors/pages\n");
 280			return -EINVAL;
 281		}
 282
 283		pblk->addrf_len = pblk_set_addrf_12(pblk, geo,
 284							(void *)&pblk->addrf);
 285		break;
 286	case NVM_OCSSD_SPEC_20:
 287		pblk->addrf_len = pblk_set_addrf_20(geo, (void *)&pblk->addrf,
 288							&pblk->uaddrf);
 289		break;
 290	default:
 291		pblk_err(pblk, "OCSSD revision not supported (%d)\n",
 292								geo->version);
 293		return -EINVAL;
 294	}
 295
 296	return 0;
 297}
 298
 299static int pblk_create_global_caches(void)
 300{
 301
 302	pblk_caches.ws = kmem_cache_create("pblk_blk_ws",
 303				sizeof(struct pblk_line_ws), 0, 0, NULL);
 304	if (!pblk_caches.ws)
 
 305		return -ENOMEM;
 
 306
 307	pblk_caches.rec = kmem_cache_create("pblk_rec",
 308				sizeof(struct pblk_rec_ctx), 0, 0, NULL);
 309	if (!pblk_caches.rec)
 310		goto fail_destroy_ws;
 
 
 
 311
 312	pblk_caches.g_rq = kmem_cache_create("pblk_g_rq", pblk_g_rq_size,
 313				0, 0, NULL);
 314	if (!pblk_caches.g_rq)
 315		goto fail_destroy_rec;
 
 
 
 
 316
 317	pblk_caches.w_rq = kmem_cache_create("pblk_w_rq", pblk_w_rq_size,
 318				0, 0, NULL);
 319	if (!pblk_caches.w_rq)
 320		goto fail_destroy_g_rq;
 
 
 
 
 
 
 321
 322	return 0;
 323
 324fail_destroy_g_rq:
 325	kmem_cache_destroy(pblk_caches.g_rq);
 326fail_destroy_rec:
 327	kmem_cache_destroy(pblk_caches.rec);
 328fail_destroy_ws:
 329	kmem_cache_destroy(pblk_caches.ws);
 330
 331	return -ENOMEM;
 332}
 333
 334static int pblk_get_global_caches(void)
 335{
 336	int ret = 0;
 337
 338	mutex_lock(&pblk_caches.mutex);
 339
 340	if (kref_get_unless_zero(&pblk_caches.kref))
 341		goto out;
 342
 343	ret = pblk_create_global_caches();
 344	if (!ret)
 345		kref_init(&pblk_caches.kref);
 346
 347out:
 348	mutex_unlock(&pblk_caches.mutex);
 349	return ret;
 350}
 351
 352static void pblk_destroy_global_caches(struct kref *ref)
 353{
 354	struct pblk_global_caches *c;
 355
 356	c = container_of(ref, struct pblk_global_caches, kref);
 357
 358	kmem_cache_destroy(c->ws);
 359	kmem_cache_destroy(c->rec);
 360	kmem_cache_destroy(c->g_rq);
 361	kmem_cache_destroy(c->w_rq);
 362}
 363
 364static void pblk_put_global_caches(void)
 365{
 366	mutex_lock(&pblk_caches.mutex);
 367	kref_put(&pblk_caches.kref, pblk_destroy_global_caches);
 368	mutex_unlock(&pblk_caches.mutex);
 369}
 370
 371static int pblk_core_init(struct pblk *pblk)
 372{
 373	struct nvm_tgt_dev *dev = pblk->dev;
 374	struct nvm_geo *geo = &dev->geo;
 375	int ret, max_write_ppas;
 376
 377	atomic64_set(&pblk->user_wa, 0);
 378	atomic64_set(&pblk->pad_wa, 0);
 379	atomic64_set(&pblk->gc_wa, 0);
 380	pblk->user_rst_wa = 0;
 381	pblk->pad_rst_wa = 0;
 382	pblk->gc_rst_wa = 0;
 383
 384	atomic64_set(&pblk->nr_flush, 0);
 385	pblk->nr_flush_rst = 0;
 386
 387	pblk->min_write_pgs = geo->ws_opt;
 388	pblk->min_write_pgs_data = pblk->min_write_pgs;
 
 389	max_write_ppas = pblk->min_write_pgs * geo->all_luns;
 390	pblk->max_write_pgs = min_t(int, max_write_ppas, NVM_MAX_VLBA);
 391	pblk->max_write_pgs = min_t(int, pblk->max_write_pgs,
 392		queue_max_hw_sectors(dev->q) / (geo->csecs >> SECTOR_SHIFT));
 393	pblk_set_sec_per_write(pblk, pblk->min_write_pgs);
 394
 395	pblk->oob_meta_size = geo->sos;
 396	if (!pblk_is_oob_meta_supported(pblk)) {
 397		/* For drives which does not have OOB metadata feature
 398		 * in order to support recovery feature we need to use
 399		 * so called packed metadata. Packed metada will store
 400		 * the same information as OOB metadata (l2p table mapping,
 401		 * but in the form of the single page at the end of
 402		 * every write request.
 403		 */
 404		if (pblk->min_write_pgs
 405			* sizeof(struct pblk_sec_meta) > PAGE_SIZE) {
 406			/* We want to keep all the packed metadata on single
 407			 * page per write requests. So we need to ensure that
 408			 * it will fit.
 409			 *
 410			 * This is more like sanity check, since there is
 411			 * no device with such a big minimal write size
 412			 * (above 1 metabytes).
 413			 */
 414			pblk_err(pblk, "Not supported min write size\n");
 415			return -EINVAL;
 416		}
 417		/* For packed meta approach we do some simplification.
 418		 * On read path we always issue requests which size
 419		 * equal to max_write_pgs, with all pages filled with
 420		 * user payload except of last one page which will be
 421		 * filled with packed metadata.
 422		 */
 423		pblk->max_write_pgs = pblk->min_write_pgs;
 424		pblk->min_write_pgs_data = pblk->min_write_pgs - 1;
 425	}
 426
 427	pblk->pad_dist = kcalloc(pblk->min_write_pgs - 1, sizeof(atomic64_t),
 428								GFP_KERNEL);
 429	if (!pblk->pad_dist)
 430		return -ENOMEM;
 431
 432	if (pblk_get_global_caches())
 433		goto fail_free_pad_dist;
 434
 435	/* Internal bios can be at most the sectors signaled by the device. */
 436	ret = mempool_init_page_pool(&pblk->page_bio_pool, NVM_MAX_VLBA, 0);
 437	if (ret)
 438		goto free_global_caches;
 439
 440	ret = mempool_init_slab_pool(&pblk->gen_ws_pool, PBLK_GEN_WS_POOL_SIZE,
 441				     pblk_caches.ws);
 442	if (ret)
 443		goto free_page_bio_pool;
 444
 445	ret = mempool_init_slab_pool(&pblk->rec_pool, geo->all_luns,
 446				     pblk_caches.rec);
 447	if (ret)
 448		goto free_gen_ws_pool;
 449
 450	ret = mempool_init_slab_pool(&pblk->r_rq_pool, geo->all_luns,
 451				     pblk_caches.g_rq);
 452	if (ret)
 453		goto free_rec_pool;
 454
 455	ret = mempool_init_slab_pool(&pblk->e_rq_pool, geo->all_luns,
 456				     pblk_caches.g_rq);
 457	if (ret)
 458		goto free_r_rq_pool;
 459
 460	ret = mempool_init_slab_pool(&pblk->w_rq_pool, geo->all_luns,
 461				     pblk_caches.w_rq);
 462	if (ret)
 463		goto free_e_rq_pool;
 464
 465	pblk->close_wq = alloc_workqueue("pblk-close-wq",
 466			WQ_MEM_RECLAIM | WQ_UNBOUND, PBLK_NR_CLOSE_JOBS);
 467	if (!pblk->close_wq)
 468		goto free_w_rq_pool;
 469
 470	pblk->bb_wq = alloc_workqueue("pblk-bb-wq",
 471			WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
 472	if (!pblk->bb_wq)
 473		goto free_close_wq;
 474
 475	pblk->r_end_wq = alloc_workqueue("pblk-read-end-wq",
 476			WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
 477	if (!pblk->r_end_wq)
 478		goto free_bb_wq;
 479
 480	if (pblk_set_addrf(pblk))
 481		goto free_r_end_wq;
 482
 483	INIT_LIST_HEAD(&pblk->compl_list);
 484	INIT_LIST_HEAD(&pblk->resubmit_list);
 485
 486	return 0;
 487
 488free_r_end_wq:
 489	destroy_workqueue(pblk->r_end_wq);
 490free_bb_wq:
 491	destroy_workqueue(pblk->bb_wq);
 492free_close_wq:
 493	destroy_workqueue(pblk->close_wq);
 494free_w_rq_pool:
 495	mempool_exit(&pblk->w_rq_pool);
 496free_e_rq_pool:
 497	mempool_exit(&pblk->e_rq_pool);
 498free_r_rq_pool:
 499	mempool_exit(&pblk->r_rq_pool);
 500free_rec_pool:
 501	mempool_exit(&pblk->rec_pool);
 502free_gen_ws_pool:
 503	mempool_exit(&pblk->gen_ws_pool);
 504free_page_bio_pool:
 505	mempool_exit(&pblk->page_bio_pool);
 506free_global_caches:
 507	pblk_put_global_caches();
 508fail_free_pad_dist:
 509	kfree(pblk->pad_dist);
 510	return -ENOMEM;
 511}
 512
 513static void pblk_core_free(struct pblk *pblk)
 514{
 515	if (pblk->close_wq)
 516		destroy_workqueue(pblk->close_wq);
 517
 518	if (pblk->r_end_wq)
 519		destroy_workqueue(pblk->r_end_wq);
 520
 521	if (pblk->bb_wq)
 522		destroy_workqueue(pblk->bb_wq);
 523
 524	mempool_exit(&pblk->page_bio_pool);
 525	mempool_exit(&pblk->gen_ws_pool);
 526	mempool_exit(&pblk->rec_pool);
 527	mempool_exit(&pblk->r_rq_pool);
 528	mempool_exit(&pblk->e_rq_pool);
 529	mempool_exit(&pblk->w_rq_pool);
 530
 531	pblk_put_global_caches();
 532	kfree(pblk->pad_dist);
 533}
 534
 535static void pblk_line_mg_free(struct pblk *pblk)
 536{
 537	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 538	int i;
 539
 540	kfree(l_mg->bb_template);
 541	kfree(l_mg->bb_aux);
 542	kfree(l_mg->vsc_list);
 543
 544	for (i = 0; i < PBLK_DATA_LINES; i++) {
 545		kfree(l_mg->sline_meta[i]);
 546		kvfree(l_mg->eline_meta[i]->buf);
 547		kfree(l_mg->eline_meta[i]);
 548	}
 549
 550	mempool_destroy(l_mg->bitmap_pool);
 551	kmem_cache_destroy(l_mg->bitmap_cache);
 552}
 553
 554static void pblk_line_meta_free(struct pblk_line_mgmt *l_mg,
 555				struct pblk_line *line)
 556{
 557	struct pblk_w_err_gc *w_err_gc = line->w_err_gc;
 558
 559	kfree(line->blk_bitmap);
 560	kfree(line->erase_bitmap);
 561	kfree(line->chks);
 562
 563	kvfree(w_err_gc->lba_list);
 564	kfree(w_err_gc);
 565}
 566
 567static void pblk_lines_free(struct pblk *pblk)
 568{
 569	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 570	struct pblk_line *line;
 571	int i;
 572
 
 573	for (i = 0; i < l_mg->nr_lines; i++) {
 574		line = &pblk->lines[i];
 575
 576		pblk_line_free(line);
 577		pblk_line_meta_free(l_mg, line);
 578	}
 
 579
 580	pblk_line_mg_free(pblk);
 581
 582	kfree(pblk->luns);
 583	kfree(pblk->lines);
 584}
 585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 586static int pblk_luns_init(struct pblk *pblk)
 587{
 588	struct nvm_tgt_dev *dev = pblk->dev;
 589	struct nvm_geo *geo = &dev->geo;
 590	struct pblk_lun *rlun;
 591	int i;
 592
 593	/* TODO: Implement unbalanced LUN support */
 594	if (geo->num_lun < 0) {
 595		pblk_err(pblk, "unbalanced LUN config.\n");
 596		return -EINVAL;
 597	}
 598
 599	pblk->luns = kcalloc(geo->all_luns, sizeof(struct pblk_lun),
 600								GFP_KERNEL);
 601	if (!pblk->luns)
 602		return -ENOMEM;
 603
 604	for (i = 0; i < geo->all_luns; i++) {
 605		/* Stripe across channels */
 606		int ch = i % geo->num_ch;
 607		int lun_raw = i / geo->num_ch;
 608		int lunid = lun_raw + ch * geo->num_lun;
 609
 610		rlun = &pblk->luns[i];
 611		rlun->bppa = dev->luns[lunid];
 612
 613		sema_init(&rlun->wr_sem, 1);
 614	}
 615
 616	return 0;
 617}
 618
 619/* See comment over struct line_emeta definition */
 620static unsigned int calc_emeta_len(struct pblk *pblk)
 621{
 622	struct pblk_line_meta *lm = &pblk->lm;
 623	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 624	struct nvm_tgt_dev *dev = pblk->dev;
 625	struct nvm_geo *geo = &dev->geo;
 626
 627	/* Round to sector size so that lba_list starts on its own sector */
 628	lm->emeta_sec[1] = DIV_ROUND_UP(
 629			sizeof(struct line_emeta) + lm->blk_bitmap_len +
 630			sizeof(struct wa_counters), geo->csecs);
 631	lm->emeta_len[1] = lm->emeta_sec[1] * geo->csecs;
 632
 633	/* Round to sector size so that vsc_list starts on its own sector */
 634	lm->dsec_per_line = lm->sec_per_line - lm->emeta_sec[0];
 635	lm->emeta_sec[2] = DIV_ROUND_UP(lm->dsec_per_line * sizeof(u64),
 636			geo->csecs);
 637	lm->emeta_len[2] = lm->emeta_sec[2] * geo->csecs;
 638
 639	lm->emeta_sec[3] = DIV_ROUND_UP(l_mg->nr_lines * sizeof(u32),
 640			geo->csecs);
 641	lm->emeta_len[3] = lm->emeta_sec[3] * geo->csecs;
 642
 643	lm->vsc_list_len = l_mg->nr_lines * sizeof(u32);
 644
 645	return (lm->emeta_len[1] + lm->emeta_len[2] + lm->emeta_len[3]);
 646}
 647
 648static int pblk_set_provision(struct pblk *pblk, int nr_free_chks)
 649{
 650	struct nvm_tgt_dev *dev = pblk->dev;
 651	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 652	struct pblk_line_meta *lm = &pblk->lm;
 653	struct nvm_geo *geo = &dev->geo;
 654	sector_t provisioned;
 655	int sec_meta, blk_meta, clba;
 656	int minimum;
 657
 658	if (geo->op == NVM_TARGET_DEFAULT_OP)
 659		pblk->op = PBLK_DEFAULT_OP;
 660	else
 661		pblk->op = geo->op;
 662
 663	minimum = pblk_get_min_chks(pblk);
 664	provisioned = nr_free_chks;
 665	provisioned *= (100 - pblk->op);
 666	sector_div(provisioned, 100);
 667
 668	if ((nr_free_chks - provisioned) < minimum) {
 669		if (geo->op != NVM_TARGET_DEFAULT_OP) {
 670			pblk_err(pblk, "OP too small to create a sane instance\n");
 671			return -EINTR;
 672		}
 673
 674		/* If the user did not specify an OP value, and PBLK_DEFAULT_OP
 675		 * is not enough, calculate and set sane value
 676		 */
 677
 678		provisioned = nr_free_chks - minimum;
 679		pblk->op =  (100 * minimum) / nr_free_chks;
 680		pblk_info(pblk, "Default OP insufficient, adjusting OP to %d\n",
 681				pblk->op);
 682	}
 683
 684	pblk->op_blks = nr_free_chks - provisioned;
 685
 686	/* Internally pblk manages all free blocks, but all calculations based
 687	 * on user capacity consider only provisioned blocks
 688	 */
 689	pblk->rl.total_blocks = nr_free_chks;
 
 690
 691	/* Consider sectors used for metadata */
 692	sec_meta = (lm->smeta_sec + lm->emeta_sec[0]) * l_mg->nr_free_lines;
 693	blk_meta = DIV_ROUND_UP(sec_meta, geo->clba);
 694
 695	clba = (geo->clba / pblk->min_write_pgs) * pblk->min_write_pgs_data;
 696	pblk->capacity = (provisioned - blk_meta) * clba;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 697
 698	atomic_set(&pblk->rl.free_blocks, nr_free_chks);
 699	atomic_set(&pblk->rl.free_user_blocks, nr_free_chks);
 
 700
 701	return 0;
 702}
 703
 704static int pblk_setup_line_meta_chk(struct pblk *pblk, struct pblk_line *line,
 705				   struct nvm_chk_meta *meta)
 706{
 707	struct nvm_tgt_dev *dev = pblk->dev;
 708	struct nvm_geo *geo = &dev->geo;
 709	struct pblk_line_meta *lm = &pblk->lm;
 710	int i, nr_bad_chks = 0;
 711
 712	for (i = 0; i < lm->blk_per_line; i++) {
 713		struct pblk_lun *rlun = &pblk->luns[i];
 714		struct nvm_chk_meta *chunk;
 715		struct nvm_chk_meta *chunk_meta;
 716		struct ppa_addr ppa;
 717		int pos;
 718
 719		ppa = rlun->bppa;
 720		pos = pblk_ppa_to_pos(geo, ppa);
 721		chunk = &line->chks[pos];
 722
 723		ppa.m.chk = line->id;
 724		chunk_meta = pblk_chunk_get_off(pblk, meta, ppa);
 725
 726		chunk->state = chunk_meta->state;
 727		chunk->type = chunk_meta->type;
 728		chunk->wi = chunk_meta->wi;
 729		chunk->slba = chunk_meta->slba;
 730		chunk->cnlb = chunk_meta->cnlb;
 731		chunk->wp = chunk_meta->wp;
 732
 733		trace_pblk_chunk_state(pblk_disk_name(pblk), &ppa,
 734					chunk->state);
 735
 736		if (chunk->type & NVM_CHK_TP_SZ_SPEC) {
 737			WARN_ONCE(1, "pblk: custom-sized chunks unsupported\n");
 738			continue;
 739		}
 740
 741		if (!(chunk->state & NVM_CHK_ST_OFFLINE))
 742			continue;
 743
 744		set_bit(pos, line->blk_bitmap);
 745		nr_bad_chks++;
 746	}
 747
 748	return nr_bad_chks;
 749}
 750
 751static long pblk_setup_line_meta(struct pblk *pblk, struct pblk_line *line,
 752				 void *chunk_meta, int line_id)
 753{
 
 
 754	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 755	struct pblk_line_meta *lm = &pblk->lm;
 756	long nr_bad_chks, chk_in_line;
 757
 758	line->pblk = pblk;
 759	line->id = line_id;
 760	line->type = PBLK_LINETYPE_FREE;
 761	line->state = PBLK_LINESTATE_NEW;
 762	line->gc_group = PBLK_LINEGC_NONE;
 763	line->vsc = &l_mg->vsc_list[line_id];
 764	spin_lock_init(&line->lock);
 765
 766	nr_bad_chks = pblk_setup_line_meta_chk(pblk, line, chunk_meta);
 
 
 
 767
 768	chk_in_line = lm->blk_per_line - nr_bad_chks;
 769	if (nr_bad_chks < 0 || nr_bad_chks > lm->blk_per_line ||
 770					chk_in_line < lm->min_blk_line) {
 771		line->state = PBLK_LINESTATE_BAD;
 772		list_add_tail(&line->list, &l_mg->bad_list);
 773		return 0;
 774	}
 775
 776	atomic_set(&line->blk_in_line, chk_in_line);
 777	list_add_tail(&line->list, &l_mg->free_list);
 778	l_mg->nr_free_lines++;
 779
 780	return chk_in_line;
 781}
 782
 783static int pblk_alloc_line_meta(struct pblk *pblk, struct pblk_line *line)
 784{
 785	struct pblk_line_meta *lm = &pblk->lm;
 786
 787	line->blk_bitmap = kzalloc(lm->blk_bitmap_len, GFP_KERNEL);
 788	if (!line->blk_bitmap)
 789		return -ENOMEM;
 790
 791	line->erase_bitmap = kzalloc(lm->blk_bitmap_len, GFP_KERNEL);
 792	if (!line->erase_bitmap)
 793		goto free_blk_bitmap;
 
 
 794
 795
 796	line->chks = kmalloc_array(lm->blk_per_line,
 797				   sizeof(struct nvm_chk_meta), GFP_KERNEL);
 798	if (!line->chks)
 799		goto free_erase_bitmap;
 800
 801	line->w_err_gc = kzalloc(sizeof(struct pblk_w_err_gc), GFP_KERNEL);
 802	if (!line->w_err_gc)
 803		goto free_chks;
 804
 805	return 0;
 806
 807free_chks:
 808	kfree(line->chks);
 809free_erase_bitmap:
 810	kfree(line->erase_bitmap);
 811free_blk_bitmap:
 812	kfree(line->blk_bitmap);
 813	return -ENOMEM;
 814}
 815
 816static int pblk_line_mg_init(struct pblk *pblk)
 817{
 818	struct nvm_tgt_dev *dev = pblk->dev;
 819	struct nvm_geo *geo = &dev->geo;
 820	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 821	struct pblk_line_meta *lm = &pblk->lm;
 822	int i, bb_distance;
 823
 824	l_mg->nr_lines = geo->num_chk;
 825	l_mg->log_line = l_mg->data_line = NULL;
 826	l_mg->l_seq_nr = l_mg->d_seq_nr = 0;
 827	l_mg->nr_free_lines = 0;
 828	bitmap_zero(&l_mg->meta_bitmap, PBLK_DATA_LINES);
 829
 830	INIT_LIST_HEAD(&l_mg->free_list);
 831	INIT_LIST_HEAD(&l_mg->corrupt_list);
 832	INIT_LIST_HEAD(&l_mg->bad_list);
 833	INIT_LIST_HEAD(&l_mg->gc_full_list);
 834	INIT_LIST_HEAD(&l_mg->gc_high_list);
 835	INIT_LIST_HEAD(&l_mg->gc_mid_list);
 836	INIT_LIST_HEAD(&l_mg->gc_low_list);
 837	INIT_LIST_HEAD(&l_mg->gc_empty_list);
 838	INIT_LIST_HEAD(&l_mg->gc_werr_list);
 839
 840	INIT_LIST_HEAD(&l_mg->emeta_list);
 841
 842	l_mg->gc_lists[0] = &l_mg->gc_werr_list;
 843	l_mg->gc_lists[1] = &l_mg->gc_high_list;
 844	l_mg->gc_lists[2] = &l_mg->gc_mid_list;
 845	l_mg->gc_lists[3] = &l_mg->gc_low_list;
 846
 847	spin_lock_init(&l_mg->free_lock);
 848	spin_lock_init(&l_mg->close_lock);
 849	spin_lock_init(&l_mg->gc_lock);
 850
 851	l_mg->vsc_list = kcalloc(l_mg->nr_lines, sizeof(__le32), GFP_KERNEL);
 852	if (!l_mg->vsc_list)
 853		goto fail;
 854
 855	l_mg->bb_template = kzalloc(lm->sec_bitmap_len, GFP_KERNEL);
 856	if (!l_mg->bb_template)
 857		goto fail_free_vsc_list;
 858
 859	l_mg->bb_aux = kzalloc(lm->sec_bitmap_len, GFP_KERNEL);
 860	if (!l_mg->bb_aux)
 861		goto fail_free_bb_template;
 862
 863	/* smeta is always small enough to fit on a kmalloc memory allocation,
 864	 * emeta depends on the number of LUNs allocated to the pblk instance
 865	 */
 866	for (i = 0; i < PBLK_DATA_LINES; i++) {
 867		l_mg->sline_meta[i] = kmalloc(lm->smeta_len, GFP_KERNEL);
 868		if (!l_mg->sline_meta[i])
 869			goto fail_free_smeta;
 870	}
 871
 872	l_mg->bitmap_cache = kmem_cache_create("pblk_lm_bitmap",
 873			lm->sec_bitmap_len, 0, 0, NULL);
 874	if (!l_mg->bitmap_cache)
 875		goto fail_free_smeta;
 876
 877	/* the bitmap pool is used for both valid and map bitmaps */
 878	l_mg->bitmap_pool = mempool_create_slab_pool(PBLK_DATA_LINES * 2,
 879				l_mg->bitmap_cache);
 880	if (!l_mg->bitmap_pool)
 881		goto fail_destroy_bitmap_cache;
 882
 883	/* emeta allocates three different buffers for managing metadata with
 884	 * in-memory and in-media layouts
 885	 */
 886	for (i = 0; i < PBLK_DATA_LINES; i++) {
 887		struct pblk_emeta *emeta;
 888
 889		emeta = kmalloc(sizeof(struct pblk_emeta), GFP_KERNEL);
 890		if (!emeta)
 891			goto fail_free_emeta;
 892
 893		emeta->buf = kvmalloc(lm->emeta_len[0], GFP_KERNEL);
 894		if (!emeta->buf) {
 895			kfree(emeta);
 896			goto fail_free_emeta;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 897		}
 898
 899		emeta->nr_entries = lm->emeta_sec[0];
 900		l_mg->eline_meta[i] = emeta;
 901	}
 902
 903	for (i = 0; i < l_mg->nr_lines; i++)
 904		l_mg->vsc_list[i] = cpu_to_le32(EMPTY_ENTRY);
 905
 906	bb_distance = (geo->all_luns) * geo->ws_opt;
 907	for (i = 0; i < lm->sec_per_line; i += bb_distance)
 908		bitmap_set(l_mg->bb_template, i, geo->ws_opt);
 909
 910	return 0;
 911
 912fail_free_emeta:
 913	while (--i >= 0) {
 914		kvfree(l_mg->eline_meta[i]->buf);
 
 
 
 915		kfree(l_mg->eline_meta[i]);
 916	}
 917
 918	mempool_destroy(l_mg->bitmap_pool);
 919fail_destroy_bitmap_cache:
 920	kmem_cache_destroy(l_mg->bitmap_cache);
 921fail_free_smeta:
 922	for (i = 0; i < PBLK_DATA_LINES; i++)
 923		kfree(l_mg->sline_meta[i]);
 924	kfree(l_mg->bb_aux);
 925fail_free_bb_template:
 926	kfree(l_mg->bb_template);
 927fail_free_vsc_list:
 928	kfree(l_mg->vsc_list);
 929fail:
 930	return -ENOMEM;
 931}
 932
 933static int pblk_line_meta_init(struct pblk *pblk)
 934{
 935	struct nvm_tgt_dev *dev = pblk->dev;
 936	struct nvm_geo *geo = &dev->geo;
 937	struct pblk_line_meta *lm = &pblk->lm;
 938	unsigned int smeta_len, emeta_len;
 939	int i;
 940
 941	lm->sec_per_line = geo->clba * geo->all_luns;
 942	lm->blk_per_line = geo->all_luns;
 943	lm->blk_bitmap_len = BITS_TO_LONGS(geo->all_luns) * sizeof(long);
 944	lm->sec_bitmap_len = BITS_TO_LONGS(lm->sec_per_line) * sizeof(long);
 945	lm->lun_bitmap_len = BITS_TO_LONGS(geo->all_luns) * sizeof(long);
 946	lm->mid_thrs = lm->sec_per_line / 2;
 947	lm->high_thrs = lm->sec_per_line / 4;
 948	lm->meta_distance = (geo->all_luns / 2) * pblk->min_write_pgs;
 949
 950	/* Calculate necessary pages for smeta. See comment over struct
 951	 * line_smeta definition
 952	 */
 953	i = 1;
 954add_smeta_page:
 955	lm->smeta_sec = i * geo->ws_opt;
 956	lm->smeta_len = lm->smeta_sec * geo->csecs;
 957
 958	smeta_len = sizeof(struct line_smeta) + lm->lun_bitmap_len;
 959	if (smeta_len > lm->smeta_len) {
 960		i++;
 961		goto add_smeta_page;
 962	}
 963
 964	/* Calculate necessary pages for emeta. See comment over struct
 965	 * line_emeta definition
 966	 */
 967	i = 1;
 968add_emeta_page:
 969	lm->emeta_sec[0] = i * geo->ws_opt;
 970	lm->emeta_len[0] = lm->emeta_sec[0] * geo->csecs;
 971
 972	emeta_len = calc_emeta_len(pblk);
 973	if (emeta_len > lm->emeta_len[0]) {
 974		i++;
 975		goto add_emeta_page;
 976	}
 977
 978	lm->emeta_bb = geo->all_luns > i ? geo->all_luns - i : 0;
 979
 980	lm->min_blk_line = 1;
 981	if (geo->all_luns > 1)
 982		lm->min_blk_line += DIV_ROUND_UP(lm->smeta_sec +
 983					lm->emeta_sec[0], geo->clba);
 984
 985	if (lm->min_blk_line > lm->blk_per_line) {
 986		pblk_err(pblk, "config. not supported. Min. LUN in line:%d\n",
 987							lm->blk_per_line);
 988		return -EINVAL;
 989	}
 990
 991	return 0;
 992}
 993
 994static int pblk_lines_init(struct pblk *pblk)
 995{
 996	struct pblk_line_mgmt *l_mg = &pblk->l_mg;
 997	struct pblk_line *line;
 998	void *chunk_meta;
 999	int nr_free_chks = 0;
1000	int i, ret;
1001
1002	ret = pblk_line_meta_init(pblk);
1003	if (ret)
1004		return ret;
1005
1006	ret = pblk_line_mg_init(pblk);
1007	if (ret)
1008		return ret;
1009
1010	ret = pblk_luns_init(pblk);
1011	if (ret)
1012		goto fail_free_meta;
1013
1014	chunk_meta = pblk_get_chunk_meta(pblk);
1015	if (IS_ERR(chunk_meta)) {
1016		ret = PTR_ERR(chunk_meta);
1017		goto fail_free_luns;
1018	}
1019
1020	pblk->lines = kcalloc(l_mg->nr_lines, sizeof(struct pblk_line),
1021								GFP_KERNEL);
1022	if (!pblk->lines) {
1023		ret = -ENOMEM;
1024		goto fail_free_chunk_meta;
1025	}
1026
1027	for (i = 0; i < l_mg->nr_lines; i++) {
1028		line = &pblk->lines[i];
1029
1030		ret = pblk_alloc_line_meta(pblk, line);
1031		if (ret)
1032			goto fail_free_lines;
1033
1034		nr_free_chks += pblk_setup_line_meta(pblk, line, chunk_meta, i);
1035
1036		trace_pblk_line_state(pblk_disk_name(pblk), line->id,
1037								line->state);
1038	}
1039
1040	if (!nr_free_chks) {
1041		pblk_err(pblk, "too many bad blocks prevent for sane instance\n");
1042		ret = -EINTR;
1043		goto fail_free_lines;
1044	}
1045
1046	ret = pblk_set_provision(pblk, nr_free_chks);
1047	if (ret)
1048		goto fail_free_lines;
1049
1050	vfree(chunk_meta);
1051	return 0;
1052
1053fail_free_lines:
1054	while (--i >= 0)
1055		pblk_line_meta_free(l_mg, &pblk->lines[i]);
1056	kfree(pblk->lines);
1057fail_free_chunk_meta:
1058	vfree(chunk_meta);
1059fail_free_luns:
1060	kfree(pblk->luns);
1061fail_free_meta:
1062	pblk_line_mg_free(pblk);
1063
1064	return ret;
1065}
1066
1067static int pblk_writer_init(struct pblk *pblk)
1068{
1069	pblk->writer_ts = kthread_create(pblk_write_ts, pblk, "pblk-writer-t");
1070	if (IS_ERR(pblk->writer_ts)) {
1071		int err = PTR_ERR(pblk->writer_ts);
1072
1073		if (err != -EINTR)
1074			pblk_err(pblk, "could not allocate writer kthread (%d)\n",
1075					err);
1076		return err;
1077	}
1078
1079	timer_setup(&pblk->wtimer, pblk_write_timer_fn, 0);
1080	mod_timer(&pblk->wtimer, jiffies + msecs_to_jiffies(100));
1081
1082	return 0;
1083}
1084
1085static void pblk_writer_stop(struct pblk *pblk)
1086{
1087	/* The pipeline must be stopped and the write buffer emptied before the
1088	 * write thread is stopped
1089	 */
1090	WARN(pblk_rb_read_count(&pblk->rwb),
1091			"Stopping not fully persisted write buffer\n");
1092
1093	WARN(pblk_rb_sync_count(&pblk->rwb),
1094			"Stopping not fully synced write buffer\n");
1095
1096	del_timer_sync(&pblk->wtimer);
1097	if (pblk->writer_ts)
1098		kthread_stop(pblk->writer_ts);
1099}
1100
1101static void pblk_free(struct pblk *pblk)
1102{
1103	pblk_lines_free(pblk);
1104	pblk_l2p_free(pblk);
1105	pblk_rwb_free(pblk);
1106	pblk_core_free(pblk);
1107
1108	kfree(pblk);
1109}
1110
1111static void pblk_tear_down(struct pblk *pblk, bool graceful)
1112{
1113	if (graceful)
1114		__pblk_pipeline_flush(pblk);
1115	__pblk_pipeline_stop(pblk);
1116	pblk_writer_stop(pblk);
1117	pblk_rb_sync_l2p(&pblk->rwb);
1118	pblk_rl_free(&pblk->rl);
1119
1120	pblk_debug(pblk, "consistent tear down (graceful:%d)\n", graceful);
1121}
1122
1123static void pblk_exit(void *private, bool graceful)
1124{
1125	struct pblk *pblk = private;
1126
1127	pblk_gc_exit(pblk, graceful);
1128	pblk_tear_down(pblk, graceful);
 
1129
1130#ifdef CONFIG_NVM_PBLK_DEBUG
1131	pblk_info(pblk, "exit: L2P CRC: %x\n", pblk_l2p_crc(pblk));
1132#endif
1133
1134	pblk_free(pblk);
 
1135}
1136
1137static sector_t pblk_capacity(void *private)
1138{
1139	struct pblk *pblk = private;
1140
1141	return pblk->capacity * NR_PHY_IN_LOG;
1142}
1143
1144static void *pblk_init(struct nvm_tgt_dev *dev, struct gendisk *tdisk,
1145		       int flags)
1146{
1147	struct nvm_geo *geo = &dev->geo;
1148	struct request_queue *bqueue = dev->q;
1149	struct request_queue *tqueue = tdisk->queue;
1150	struct pblk *pblk;
1151	int ret;
1152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1153	pblk = kzalloc(sizeof(struct pblk), GFP_KERNEL);
1154	if (!pblk)
1155		return ERR_PTR(-ENOMEM);
1156
1157	pblk->dev = dev;
1158	pblk->disk = tdisk;
1159	pblk->state = PBLK_STATE_RUNNING;
1160	trace_pblk_state(pblk_disk_name(pblk), pblk->state);
1161	pblk->gc.gc_enabled = 0;
1162
1163	if (!(geo->version == NVM_OCSSD_SPEC_12 ||
1164					geo->version == NVM_OCSSD_SPEC_20)) {
1165		pblk_err(pblk, "OCSSD version not supported (%u)\n",
1166							geo->version);
1167		kfree(pblk);
1168		return ERR_PTR(-EINVAL);
1169	}
1170
1171	if (geo->ext) {
1172		pblk_err(pblk, "extended metadata not supported\n");
1173		kfree(pblk);
1174		return ERR_PTR(-EINVAL);
1175	}
1176
1177	spin_lock_init(&pblk->resubmit_lock);
1178	spin_lock_init(&pblk->trans_lock);
1179	spin_lock_init(&pblk->lock);
1180
1181#ifdef CONFIG_NVM_PBLK_DEBUG
1182	atomic_long_set(&pblk->inflight_writes, 0);
1183	atomic_long_set(&pblk->padded_writes, 0);
1184	atomic_long_set(&pblk->padded_wb, 0);
1185	atomic_long_set(&pblk->req_writes, 0);
1186	atomic_long_set(&pblk->sub_writes, 0);
1187	atomic_long_set(&pblk->sync_writes, 0);
1188	atomic_long_set(&pblk->inflight_reads, 0);
1189	atomic_long_set(&pblk->cache_reads, 0);
1190	atomic_long_set(&pblk->sync_reads, 0);
1191	atomic_long_set(&pblk->recov_writes, 0);
1192	atomic_long_set(&pblk->recov_writes, 0);
1193	atomic_long_set(&pblk->recov_gc_writes, 0);
1194	atomic_long_set(&pblk->recov_gc_reads, 0);
1195#endif
1196
1197	atomic_long_set(&pblk->read_failed, 0);
1198	atomic_long_set(&pblk->read_empty, 0);
1199	atomic_long_set(&pblk->read_high_ecc, 0);
1200	atomic_long_set(&pblk->read_failed_gc, 0);
1201	atomic_long_set(&pblk->write_failed, 0);
1202	atomic_long_set(&pblk->erase_failed, 0);
1203
1204	ret = pblk_core_init(pblk);
1205	if (ret) {
1206		pblk_err(pblk, "could not initialize core\n");
1207		goto fail;
1208	}
1209
1210	ret = pblk_lines_init(pblk);
1211	if (ret) {
1212		pblk_err(pblk, "could not initialize lines\n");
1213		goto fail_free_core;
1214	}
1215
1216	ret = pblk_rwb_init(pblk);
1217	if (ret) {
1218		pblk_err(pblk, "could not initialize write buffer\n");
1219		goto fail_free_lines;
1220	}
1221
1222	ret = pblk_l2p_init(pblk, flags & NVM_TARGET_FACTORY);
1223	if (ret) {
1224		pblk_err(pblk, "could not initialize maps\n");
1225		goto fail_free_rwb;
1226	}
1227
1228	ret = pblk_writer_init(pblk);
1229	if (ret) {
1230		if (ret != -EINTR)
1231			pblk_err(pblk, "could not initialize write thread\n");
1232		goto fail_free_l2p;
1233	}
1234
1235	ret = pblk_gc_init(pblk);
1236	if (ret) {
1237		pblk_err(pblk, "could not initialize gc\n");
1238		goto fail_stop_writer;
1239	}
1240
1241	/* inherit the size from the underlying device */
1242	blk_queue_logical_block_size(tqueue, queue_physical_block_size(bqueue));
1243	blk_queue_max_hw_sectors(tqueue, queue_max_hw_sectors(bqueue));
1244
1245	blk_queue_write_cache(tqueue, true, false);
1246
1247	tqueue->limits.discard_granularity = geo->clba * geo->csecs;
1248	tqueue->limits.discard_alignment = 0;
1249	blk_queue_max_discard_sectors(tqueue, UINT_MAX >> 9);
1250	blk_queue_flag_set(QUEUE_FLAG_DISCARD, tqueue);
1251
1252	pblk_info(pblk, "luns:%u, lines:%d, secs:%llu, buf entries:%u\n",
 
1253			geo->all_luns, pblk->l_mg.nr_lines,
1254			(unsigned long long)pblk->capacity,
1255			pblk->rwb.nr_entries);
1256
1257	wake_up_process(pblk->writer_ts);
1258
1259	/* Check if we need to start GC */
1260	pblk_gc_should_kick(pblk);
1261
1262	return pblk;
1263
1264fail_stop_writer:
1265	pblk_writer_stop(pblk);
1266fail_free_l2p:
1267	pblk_l2p_free(pblk);
1268fail_free_rwb:
1269	pblk_rwb_free(pblk);
1270fail_free_lines:
1271	pblk_lines_free(pblk);
1272fail_free_core:
1273	pblk_core_free(pblk);
1274fail:
1275	kfree(pblk);
1276	return ERR_PTR(ret);
1277}
1278
1279/* physical block device target */
1280static struct nvm_tgt_type tt_pblk = {
1281	.name		= "pblk",
1282	.version	= {1, 0, 0},
1283
1284	.make_rq	= pblk_make_rq,
1285	.capacity	= pblk_capacity,
1286
1287	.init		= pblk_init,
1288	.exit		= pblk_exit,
1289
1290	.sysfs_init	= pblk_sysfs_init,
1291	.sysfs_exit	= pblk_sysfs_exit,
1292	.owner		= THIS_MODULE,
1293};
1294
1295static int __init pblk_module_init(void)
1296{
1297	int ret;
1298
1299	ret = bioset_init(&pblk_bio_set, BIO_POOL_SIZE, 0, 0);
1300	if (ret)
1301		return ret;
1302	ret = nvm_register_tgt_type(&tt_pblk);
1303	if (ret)
1304		bioset_exit(&pblk_bio_set);
1305	return ret;
1306}
1307
1308static void pblk_module_exit(void)
1309{
1310	bioset_exit(&pblk_bio_set);
1311	nvm_unregister_tgt_type(&tt_pblk);
1312}
1313
1314module_init(pblk_module_init);
1315module_exit(pblk_module_exit);
1316MODULE_AUTHOR("Javier Gonzalez <javier@cnexlabs.com>");
1317MODULE_AUTHOR("Matias Bjorling <matias@cnexlabs.com>");
1318MODULE_LICENSE("GPL v2");
1319MODULE_DESCRIPTION("Physical Block-Device for Open-Channel SSDs");