core.c 26.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (C) 2015 IT University of Copenhagen. All rights reserved.
 * Initial release: Matias Bjorling <m@bjorling.me>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
 * USA.
 *
 */

#include <linux/list.h>
#include <linux/types.h>
#include <linux/sem.h>
#include <linux/bitmap.h>
25
#include <linux/module.h>
26
#include <linux/moduleparam.h>
27 28
#include <linux/miscdevice.h>
#include <linux/lightnvm.h>
29
#include <linux/sched/sysctl.h>
30

31
static LIST_HEAD(nvm_tgt_types);
32
static DECLARE_RWSEM(nvm_tgtt_lock);
33 34 35
static LIST_HEAD(nvm_devices);
static DECLARE_RWSEM(nvm_lock);

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/* Map between virtual and physical channel and lun */
struct nvm_ch_map {
	int ch_off;
	int nr_luns;
	int *lun_offs;
};

struct nvm_dev_map {
	struct nvm_ch_map *chnls;
	int nr_chnls;
};

static struct nvm_target *nvm_find_target(struct nvm_dev *dev, const char *name)
{
	struct nvm_target *tgt;

	list_for_each_entry(tgt, &dev->targets, list)
		if (!strcmp(name, tgt->disk->disk_name))
			return tgt;

	return NULL;
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
static bool nvm_target_exists(const char *name)
{
	struct nvm_dev *dev;
	struct nvm_target *tgt;
	bool ret = false;

	down_write(&nvm_lock);
	list_for_each_entry(dev, &nvm_devices, devices) {
		mutex_lock(&dev->mlock);
		list_for_each_entry(tgt, &dev->targets, list) {
			if (!strcmp(name, tgt->disk->disk_name)) {
				ret = true;
				mutex_unlock(&dev->mlock);
				goto out;
			}
		}
		mutex_unlock(&dev->mlock);
	}

out:
	up_write(&nvm_lock);
	return ret;
}

83 84 85 86 87 88 89 90 91 92 93 94 95
static int nvm_reserve_luns(struct nvm_dev *dev, int lun_begin, int lun_end)
{
	int i;

	for (i = lun_begin; i <= lun_end; i++) {
		if (test_and_set_bit(i, dev->lun_map)) {
			pr_err("nvm: lun %d already allocated\n", i);
			goto err;
		}
	}

	return 0;
err:
96
	while (--i >= lun_begin)
97 98 99 100 101 102 103 104 105 106 107 108 109 110
		clear_bit(i, dev->lun_map);

	return -EBUSY;
}

static void nvm_release_luns_err(struct nvm_dev *dev, int lun_begin,
				 int lun_end)
{
	int i;

	for (i = lun_begin; i <= lun_end; i++)
		WARN_ON(!test_and_clear_bit(i, dev->lun_map));
}

111
static void nvm_remove_tgt_dev(struct nvm_tgt_dev *tgt_dev, int clear)
112 113 114 115 116 117 118 119 120 121
{
	struct nvm_dev *dev = tgt_dev->parent;
	struct nvm_dev_map *dev_map = tgt_dev->map;
	int i, j;

	for (i = 0; i < dev_map->nr_chnls; i++) {
		struct nvm_ch_map *ch_map = &dev_map->chnls[i];
		int *lun_offs = ch_map->lun_offs;
		int ch = i + ch_map->ch_off;

122 123 124
		if (clear) {
			for (j = 0; j < ch_map->nr_luns; j++) {
				int lun = j + lun_offs[j];
125
				int lunid = (ch * dev->geo.nr_luns) + lun;
126

127 128 129
				WARN_ON(!test_and_clear_bit(lunid,
							dev->lun_map));
			}
130 131 132 133 134 135 136 137 138 139 140 141 142
		}

		kfree(ch_map->lun_offs);
	}

	kfree(dev_map->chnls);
	kfree(dev_map);

	kfree(tgt_dev->luns);
	kfree(tgt_dev);
}

static struct nvm_tgt_dev *nvm_create_tgt_dev(struct nvm_dev *dev,
143 144
					      u16 lun_begin, u16 lun_end,
					      u16 op)
145 146 147 148 149 150 151
{
	struct nvm_tgt_dev *tgt_dev = NULL;
	struct nvm_dev_map *dev_rmap = dev->rmap;
	struct nvm_dev_map *dev_map;
	struct ppa_addr *luns;
	int nr_luns = lun_end - lun_begin + 1;
	int luns_left = nr_luns;
152 153 154 155
	int nr_chnls = nr_luns / dev->geo.nr_luns;
	int nr_chnls_mod = nr_luns % dev->geo.nr_luns;
	int bch = lun_begin / dev->geo.nr_luns;
	int blun = lun_begin % dev->geo.nr_luns;
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	int lunid = 0;
	int lun_balanced = 1;
	int prev_nr_luns;
	int i, j;

	nr_chnls = (nr_chnls_mod == 0) ? nr_chnls : nr_chnls + 1;

	dev_map = kmalloc(sizeof(struct nvm_dev_map), GFP_KERNEL);
	if (!dev_map)
		goto err_dev;

	dev_map->chnls = kcalloc(nr_chnls, sizeof(struct nvm_ch_map),
								GFP_KERNEL);
	if (!dev_map->chnls)
		goto err_chnls;

	luns = kcalloc(nr_luns, sizeof(struct ppa_addr), GFP_KERNEL);
	if (!luns)
		goto err_luns;

176 177
	prev_nr_luns = (luns_left > dev->geo.nr_luns) ?
					dev->geo.nr_luns : luns_left;
178 179 180 181 182
	for (i = 0; i < nr_chnls; i++) {
		struct nvm_ch_map *ch_rmap = &dev_rmap->chnls[i + bch];
		int *lun_roffs = ch_rmap->lun_offs;
		struct nvm_ch_map *ch_map = &dev_map->chnls[i];
		int *lun_offs;
183 184
		int luns_in_chnl = (luns_left > dev->geo.nr_luns) ?
					dev->geo.nr_luns : luns_left;
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

		if (lun_balanced && prev_nr_luns != luns_in_chnl)
			lun_balanced = 0;

		ch_map->ch_off = ch_rmap->ch_off = bch;
		ch_map->nr_luns = luns_in_chnl;

		lun_offs = kcalloc(luns_in_chnl, sizeof(int), GFP_KERNEL);
		if (!lun_offs)
			goto err_ch;

		for (j = 0; j < luns_in_chnl; j++) {
			luns[lunid].ppa = 0;
			luns[lunid].g.ch = i;
			luns[lunid++].g.lun = j;

			lun_offs[j] = blun;
			lun_roffs[j + blun] = blun;
		}

		ch_map->lun_offs = lun_offs;

		/* when starting a new channel, lun offset is reset */
		blun = 0;
		luns_left -= luns_in_chnl;
	}

	dev_map->nr_chnls = nr_chnls;

	tgt_dev = kmalloc(sizeof(struct nvm_tgt_dev), GFP_KERNEL);
	if (!tgt_dev)
		goto err_ch;

	memcpy(&tgt_dev->geo, &dev->geo, sizeof(struct nvm_geo));
	/* Target device only owns a portion of the physical device */
	tgt_dev->geo.nr_chnls = nr_chnls;
221 222
	tgt_dev->geo.all_luns = nr_luns;
	tgt_dev->geo.nr_luns = (lun_balanced) ? prev_nr_luns : -1;
223
	tgt_dev->geo.op = op;
224 225 226 227 228 229 230 231 232 233
	tgt_dev->total_secs = nr_luns * tgt_dev->geo.sec_per_lun;
	tgt_dev->q = dev->q;
	tgt_dev->map = dev_map;
	tgt_dev->luns = luns;
	memcpy(&tgt_dev->identity, &dev->identity, sizeof(struct nvm_id));

	tgt_dev->parent = dev;

	return tgt_dev;
err_ch:
234
	while (--i >= 0)
235 236 237 238 239 240 241 242 243 244 245 246 247 248
		kfree(dev_map->chnls[i].lun_offs);
	kfree(luns);
err_luns:
	kfree(dev_map->chnls);
err_chnls:
	kfree(dev_map);
err_dev:
	return tgt_dev;
}

static const struct block_device_operations nvm_fops = {
	.owner		= THIS_MODULE,
};

249
static struct nvm_tgt_type *__nvm_find_target_type(const char *name)
250
{
251
	struct nvm_tgt_type *tt;
252

253 254 255
	list_for_each_entry(tt, &nvm_tgt_types, list)
		if (!strcmp(name, tt->name))
			return tt;
256

257 258 259 260 261 262 263 264 265 266
	return NULL;
}

static struct nvm_tgt_type *nvm_find_target_type(const char *name)
{
	struct nvm_tgt_type *tt;

	down_write(&nvm_tgtt_lock);
	tt = __nvm_find_target_type(name);
	up_write(&nvm_tgtt_lock);
267 268 269 270

	return tt;
}

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
static int nvm_config_check_luns(struct nvm_geo *geo, int lun_begin,
				 int lun_end)
{
	if (lun_begin > lun_end || lun_end >= geo->all_luns) {
		pr_err("nvm: lun out of bound (%u:%u > %u)\n",
			lun_begin, lun_end, geo->all_luns - 1);
		return -EINVAL;
	}

	return 0;
}

static int __nvm_config_simple(struct nvm_dev *dev,
			       struct nvm_ioctl_create_simple *s)
{
	struct nvm_geo *geo = &dev->geo;

	if (s->lun_begin == -1 && s->lun_end == -1) {
		s->lun_begin = 0;
		s->lun_end = geo->all_luns - 1;
	}

	return nvm_config_check_luns(geo, s->lun_begin, s->lun_end);
}

static int __nvm_config_extended(struct nvm_dev *dev,
				 struct nvm_ioctl_create_extended *e)
{
	struct nvm_geo *geo = &dev->geo;

	if (e->lun_begin == 0xFFFF && e->lun_end == 0xFFFF) {
		e->lun_begin = 0;
		e->lun_end = dev->geo.all_luns - 1;
	}

	/* op not set falls into target's default */
307
	if (e->op == 0xFFFF) {
308
		e->op = NVM_TARGET_DEFAULT_OP;
309
	} else if (e->op < NVM_TARGET_MIN_OP || e->op > NVM_TARGET_MAX_OP) {
310 311 312 313 314 315 316
		pr_err("nvm: invalid over provisioning value\n");
		return -EINVAL;
	}

	return nvm_config_check_luns(geo, e->lun_begin, e->lun_end);
}

317 318
static int nvm_create_tgt(struct nvm_dev *dev, struct nvm_ioctl_create *create)
{
319
	struct nvm_ioctl_create_extended e;
320 321 322 323 324 325
	struct request_queue *tqueue;
	struct gendisk *tdisk;
	struct nvm_tgt_type *tt;
	struct nvm_target *t;
	struct nvm_tgt_dev *tgt_dev;
	void *targetdata;
326
	int ret;
327

328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	switch (create->conf.type) {
	case NVM_CONFIG_TYPE_SIMPLE:
		ret = __nvm_config_simple(dev, &create->conf.s);
		if (ret)
			return ret;

		e.lun_begin = create->conf.s.lun_begin;
		e.lun_end = create->conf.s.lun_end;
		e.op = NVM_TARGET_DEFAULT_OP;
		break;
	case NVM_CONFIG_TYPE_EXTENDED:
		ret = __nvm_config_extended(dev, &create->conf.e);
		if (ret)
			return ret;

		e = create->conf.e;
		break;
	default:
		pr_err("nvm: config type not valid\n");
		return -EINVAL;
	}

350
	tt = nvm_find_target_type(create->tgttype);
351 352 353 354 355
	if (!tt) {
		pr_err("nvm: target type %s not found\n", create->tgttype);
		return -EINVAL;
	}

356 357 358
	if (nvm_target_exists(create->tgtname)) {
		pr_err("nvm: target name already exists (%s)\n",
							create->tgtname);
359 360 361
		return -EINVAL;
	}

362
	ret = nvm_reserve_luns(dev, e.lun_begin, e.lun_end);
363 364
	if (ret)
		return ret;
365 366

	t = kmalloc(sizeof(struct nvm_target), GFP_KERNEL);
367 368
	if (!t) {
		ret = -ENOMEM;
369
		goto err_reserve;
370
	}
371

372
	tgt_dev = nvm_create_tgt_dev(dev, e.lun_begin, e.lun_end, e.op);
373 374
	if (!tgt_dev) {
		pr_err("nvm: could not create target device\n");
375
		ret = -ENOMEM;
376 377 378
		goto err_t;
	}

379
	tdisk = alloc_disk(0);
380 381
	if (!tdisk) {
		ret = -ENOMEM;
382
		goto err_dev;
383
	}
384

385
	tqueue = blk_alloc_queue_node(GFP_KERNEL, dev->q->node, NULL);
386 387
	if (!tqueue) {
		ret = -ENOMEM;
388
		goto err_disk;
389
	}
390 391
	blk_queue_make_request(tqueue, tt->make_rq);

392
	strlcpy(tdisk->disk_name, create->tgtname, sizeof(tdisk->disk_name));
393 394 395 396 397 398
	tdisk->flags = GENHD_FL_EXT_DEVT;
	tdisk->major = 0;
	tdisk->first_minor = 0;
	tdisk->fops = &nvm_fops;
	tdisk->queue = tqueue;

399
	targetdata = tt->init(tgt_dev, tdisk, create->flags);
400 401
	if (IS_ERR(targetdata)) {
		ret = PTR_ERR(targetdata);
402
		goto err_init;
403
	}
404 405 406 407

	tdisk->private_data = targetdata;
	tqueue->queuedata = targetdata;

408 409
	blk_queue_max_hw_sectors(tqueue,
			(dev->geo.sec_size >> 9) * NVM_MAX_VLBA);
410 411 412 413

	set_capacity(tdisk, tt->capacity(targetdata));
	add_disk(tdisk);

414 415
	if (tt->sysfs_init && tt->sysfs_init(tdisk)) {
		ret = -ENOMEM;
416
		goto err_sysfs;
417
	}
418

419 420 421 422 423 424 425 426
	t->type = tt;
	t->disk = tdisk;
	t->dev = tgt_dev;

	mutex_lock(&dev->mlock);
	list_add_tail(&t->list, &dev->targets);
	mutex_unlock(&dev->mlock);

427 428
	__module_get(tt->owner);

429
	return 0;
430 431 432
err_sysfs:
	if (tt->exit)
		tt->exit(targetdata);
433 434
err_init:
	blk_cleanup_queue(tqueue);
435
	tdisk->queue = NULL;
436 437
err_disk:
	put_disk(tdisk);
438
err_dev:
439
	nvm_remove_tgt_dev(tgt_dev, 0);
440 441 442
err_t:
	kfree(t);
err_reserve:
443
	nvm_release_luns_err(dev, e.lun_begin, e.lun_end);
444
	return ret;
445 446 447 448 449 450 451 452 453 454 455
}

static void __nvm_remove_target(struct nvm_target *t)
{
	struct nvm_tgt_type *tt = t->type;
	struct gendisk *tdisk = t->disk;
	struct request_queue *q = tdisk->queue;

	del_gendisk(tdisk);
	blk_cleanup_queue(q);

456 457 458
	if (tt->sysfs_exit)
		tt->sysfs_exit(tdisk);

459 460 461
	if (tt->exit)
		tt->exit(tdisk->private_data);

462
	nvm_remove_tgt_dev(t->dev, 1);
463
	put_disk(tdisk);
464
	module_put(t->type->owner);
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512

	list_del(&t->list);
	kfree(t);
}

/**
 * nvm_remove_tgt - Removes a target from the media manager
 * @dev:	device
 * @remove:	ioctl structure with target name to remove.
 *
 * Returns:
 * 0: on success
 * 1: on not found
 * <0: on error
 */
static int nvm_remove_tgt(struct nvm_dev *dev, struct nvm_ioctl_remove *remove)
{
	struct nvm_target *t;

	mutex_lock(&dev->mlock);
	t = nvm_find_target(dev, remove->tgtname);
	if (!t) {
		mutex_unlock(&dev->mlock);
		return 1;
	}
	__nvm_remove_target(t);
	mutex_unlock(&dev->mlock);

	return 0;
}

static int nvm_register_map(struct nvm_dev *dev)
{
	struct nvm_dev_map *rmap;
	int i, j;

	rmap = kmalloc(sizeof(struct nvm_dev_map), GFP_KERNEL);
	if (!rmap)
		goto err_rmap;

	rmap->chnls = kcalloc(dev->geo.nr_chnls, sizeof(struct nvm_ch_map),
								GFP_KERNEL);
	if (!rmap->chnls)
		goto err_chnls;

	for (i = 0; i < dev->geo.nr_chnls; i++) {
		struct nvm_ch_map *ch_rmap;
		int *lun_roffs;
513
		int luns_in_chnl = dev->geo.nr_luns;
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541

		ch_rmap = &rmap->chnls[i];

		ch_rmap->ch_off = -1;
		ch_rmap->nr_luns = luns_in_chnl;

		lun_roffs = kcalloc(luns_in_chnl, sizeof(int), GFP_KERNEL);
		if (!lun_roffs)
			goto err_ch;

		for (j = 0; j < luns_in_chnl; j++)
			lun_roffs[j] = -1;

		ch_rmap->lun_offs = lun_roffs;
	}

	dev->rmap = rmap;

	return 0;
err_ch:
	while (--i >= 0)
		kfree(rmap->chnls[i].lun_offs);
err_chnls:
	kfree(rmap);
err_rmap:
	return -ENOMEM;
}

542 543 544 545 546 547 548 549 550 551 552 553
static void nvm_unregister_map(struct nvm_dev *dev)
{
	struct nvm_dev_map *rmap = dev->rmap;
	int i;

	for (i = 0; i < dev->geo.nr_chnls; i++)
		kfree(rmap->chnls[i].lun_offs);

	kfree(rmap->chnls);
	kfree(rmap);
}

554
static void nvm_map_to_dev(struct nvm_tgt_dev *tgt_dev, struct ppa_addr *p)
555 556 557 558 559 560 561 562 563
{
	struct nvm_dev_map *dev_map = tgt_dev->map;
	struct nvm_ch_map *ch_map = &dev_map->chnls[p->g.ch];
	int lun_off = ch_map->lun_offs[p->g.lun];

	p->g.ch += ch_map->ch_off;
	p->g.lun += lun_off;
}

564
static void nvm_map_to_tgt(struct nvm_tgt_dev *tgt_dev, struct ppa_addr *p)
565 566 567 568 569 570 571 572 573 574
{
	struct nvm_dev *dev = tgt_dev->parent;
	struct nvm_dev_map *dev_rmap = dev->rmap;
	struct nvm_ch_map *ch_rmap = &dev_rmap->chnls[p->g.ch];
	int lun_roff = ch_rmap->lun_offs[p->g.lun];

	p->g.ch -= ch_rmap->ch_off;
	p->g.lun -= lun_roff;
}

575 576
static void nvm_ppa_tgt_to_dev(struct nvm_tgt_dev *tgt_dev,
				struct ppa_addr *ppa_list, int nr_ppas)
577 578 579
{
	int i;

580 581 582
	for (i = 0; i < nr_ppas; i++) {
		nvm_map_to_dev(tgt_dev, &ppa_list[i]);
		ppa_list[i] = generic_to_dev_addr(tgt_dev, ppa_list[i]);
583
	}
584
}
585

586 587 588 589 590 591 592 593
static void nvm_ppa_dev_to_tgt(struct nvm_tgt_dev *tgt_dev,
				struct ppa_addr *ppa_list, int nr_ppas)
{
	int i;

	for (i = 0; i < nr_ppas; i++) {
		ppa_list[i] = dev_to_generic_addr(tgt_dev, ppa_list[i]);
		nvm_map_to_tgt(tgt_dev, &ppa_list[i]);
594 595 596
	}
}

597
static void nvm_rq_tgt_to_dev(struct nvm_tgt_dev *tgt_dev, struct nvm_rq *rqd)
598
{
599 600 601 602
	if (rqd->nr_ppas == 1) {
		nvm_ppa_tgt_to_dev(tgt_dev, &rqd->ppa_addr, 1);
		return;
	}
603

604 605 606 607 608 609 610 611 612
	nvm_ppa_tgt_to_dev(tgt_dev, rqd->ppa_list, rqd->nr_ppas);
}

static void nvm_rq_dev_to_tgt(struct nvm_tgt_dev *tgt_dev, struct nvm_rq *rqd)
{
	if (rqd->nr_ppas == 1) {
		nvm_ppa_dev_to_tgt(tgt_dev, &rqd->ppa_addr, 1);
		return;
	}
613

614
	nvm_ppa_dev_to_tgt(tgt_dev, rqd->ppa_list, rqd->nr_ppas);
615 616
}

617
int nvm_register_tgt_type(struct nvm_tgt_type *tt)
618 619 620
{
	int ret = 0;

621
	down_write(&nvm_tgtt_lock);
622
	if (__nvm_find_target_type(tt->name))
623 624
		ret = -EEXIST;
	else
625
		list_add(&tt->list, &nvm_tgt_types);
626
	up_write(&nvm_tgtt_lock);
627 628 629

	return ret;
}
630
EXPORT_SYMBOL(nvm_register_tgt_type);
631

632
void nvm_unregister_tgt_type(struct nvm_tgt_type *tt)
633 634 635 636
{
	if (!tt)
		return;

637
	down_write(&nvm_tgtt_lock);
638
	list_del(&tt->list);
639
	up_write(&nvm_tgtt_lock);
640
}
641
EXPORT_SYMBOL(nvm_unregister_tgt_type);
642 643 644 645

void *nvm_dev_dma_alloc(struct nvm_dev *dev, gfp_t mem_flags,
							dma_addr_t *dma_handler)
{
646
	return dev->ops->dev_dma_alloc(dev, dev->dma_pool, mem_flags,
647 648 649 650
								dma_handler);
}
EXPORT_SYMBOL(nvm_dev_dma_alloc);

651
void nvm_dev_dma_free(struct nvm_dev *dev, void *addr, dma_addr_t dma_handler)
652
{
653
	dev->ops->dev_dma_free(dev->dma_pool, addr, dma_handler);
654 655 656 657 658 659 660 661 662 663 664 665 666 667
}
EXPORT_SYMBOL(nvm_dev_dma_free);

static struct nvm_dev *nvm_find_nvm_dev(const char *name)
{
	struct nvm_dev *dev;

	list_for_each_entry(dev, &nvm_devices, devices)
		if (!strcmp(name, dev->name))
			return dev;

	return NULL;
}

668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
static int nvm_set_rqd_ppalist(struct nvm_tgt_dev *tgt_dev, struct nvm_rq *rqd,
			const struct ppa_addr *ppas, int nr_ppas)
{
	struct nvm_dev *dev = tgt_dev->parent;
	struct nvm_geo *geo = &tgt_dev->geo;
	int i, plane_cnt, pl_idx;
	struct ppa_addr ppa;

	if (geo->plane_mode == NVM_PLANE_SINGLE && nr_ppas == 1) {
		rqd->nr_ppas = nr_ppas;
		rqd->ppa_addr = ppas[0];

		return 0;
	}

	rqd->nr_ppas = nr_ppas;
	rqd->ppa_list = nvm_dev_dma_alloc(dev, GFP_KERNEL, &rqd->dma_ppa_list);
	if (!rqd->ppa_list) {
		pr_err("nvm: failed to allocate dma memory\n");
		return -ENOMEM;
	}

	plane_cnt = geo->plane_mode;
	rqd->nr_ppas *= plane_cnt;

	for (i = 0; i < nr_ppas; i++) {
		for (pl_idx = 0; pl_idx < plane_cnt; pl_idx++) {
			ppa = ppas[i];
			ppa.g.pl = pl_idx;
			rqd->ppa_list[(pl_idx * nr_ppas) + i] = ppa;
		}
	}

	return 0;
}

static void nvm_free_rqd_ppalist(struct nvm_tgt_dev *tgt_dev,
			struct nvm_rq *rqd)
{
	if (!rqd->ppa_list)
		return;

	nvm_dev_dma_free(tgt_dev->parent, rqd->ppa_list, rqd->dma_ppa_list);
}


714 715 716 717 718 719 720
int nvm_set_tgt_bb_tbl(struct nvm_tgt_dev *tgt_dev, struct ppa_addr *ppas,
		       int nr_ppas, int type)
{
	struct nvm_dev *dev = tgt_dev->parent;
	struct nvm_rq rqd;
	int ret;

721
	if (nr_ppas > NVM_MAX_VLBA) {
722 723 724 725 726 727
		pr_err("nvm: unable to update all blocks atomically\n");
		return -EINVAL;
	}

	memset(&rqd, 0, sizeof(struct nvm_rq));

728
	nvm_set_rqd_ppalist(tgt_dev, &rqd, ppas, nr_ppas);
729
	nvm_rq_tgt_to_dev(tgt_dev, &rqd);
730 731

	ret = dev->ops->set_bb_tbl(dev, &rqd.ppa_addr, rqd.nr_ppas, type);
732
	nvm_free_rqd_ppalist(tgt_dev, &rqd);
733
	if (ret) {
734
		pr_err("nvm: failed bb mark\n");
735 736 737 738 739 740 741
		return -EINVAL;
	}

	return 0;
}
EXPORT_SYMBOL(nvm_set_tgt_bb_tbl);

742
int nvm_submit_io(struct nvm_tgt_dev *tgt_dev, struct nvm_rq *rqd)
743
{
744
	struct nvm_dev *dev = tgt_dev->parent;
745
	int ret;
746

747 748 749
	if (!dev->ops->submit_io)
		return -ENODEV;

750
	nvm_rq_tgt_to_dev(tgt_dev, rqd);
751 752

	rqd->dev = tgt_dev;
753 754 755 756 757 758

	/* In case of error, fail with right address format */
	ret = dev->ops->submit_io(dev, rqd);
	if (ret)
		nvm_rq_dev_to_tgt(tgt_dev, rqd);
	return ret;
759 760 761
}
EXPORT_SYMBOL(nvm_submit_io);

762
int nvm_submit_io_sync(struct nvm_tgt_dev *tgt_dev, struct nvm_rq *rqd)
763
{
764 765 766 767 768 769 770
	struct nvm_dev *dev = tgt_dev->parent;
	int ret;

	if (!dev->ops->submit_io_sync)
		return -ENODEV;

	nvm_rq_tgt_to_dev(tgt_dev, rqd);
771

772 773 774 775 776 777 778
	rqd->dev = tgt_dev;

	/* In case of error, fail with right address format */
	ret = dev->ops->submit_io_sync(dev, rqd);
	nvm_rq_dev_to_tgt(tgt_dev, rqd);

	return ret;
779
}
780
EXPORT_SYMBOL(nvm_submit_io_sync);
781

782
void nvm_end_io(struct nvm_rq *rqd)
783
{
784 785 786 787
	struct nvm_tgt_dev *tgt_dev = rqd->dev;

	/* Convert address space */
	if (tgt_dev)
788
		nvm_rq_dev_to_tgt(tgt_dev, rqd);
789

790 791
	if (rqd->end_io)
		rqd->end_io(rqd);
792 793 794
}
EXPORT_SYMBOL(nvm_end_io);

795 796 797 798 799 800 801 802 803 804
/*
 * folds a bad block list from its plane representation to its virtual
 * block representation. The fold is done in place and reduced size is
 * returned.
 *
 * If any of the planes status are bad or grown bad block, the virtual block
 * is marked bad. If not bad, the first plane state acts as the block state.
 */
int nvm_bb_tbl_fold(struct nvm_dev *dev, u8 *blks, int nr_blks)
{
805
	struct nvm_geo *geo = &dev->geo;
806 807
	int blk, offset, pl, blktype;

808
	if (nr_blks != geo->nr_chks * geo->plane_mode)
809 810
		return -EINVAL;

811
	for (blk = 0; blk < geo->nr_chks; blk++) {
812
		offset = blk * geo->plane_mode;
813 814 815
		blktype = blks[offset];

		/* Bad blocks on any planes take precedence over other types */
816
		for (pl = 0; pl < geo->plane_mode; pl++) {
817 818 819 820 821 822 823 824 825 826
			if (blks[offset + pl] &
					(NVM_BLK_T_BAD|NVM_BLK_T_GRWN_BAD)) {
				blktype = blks[offset + pl];
				break;
			}
		}

		blks[blk] = blktype;
	}

827
	return geo->nr_chks;
828 829 830
}
EXPORT_SYMBOL(nvm_bb_tbl_fold);

831 832 833
int nvm_get_tgt_bb_tbl(struct nvm_tgt_dev *tgt_dev, struct ppa_addr ppa,
		       u8 *blks)
{
834 835
	struct nvm_dev *dev = tgt_dev->parent;

836
	nvm_ppa_tgt_to_dev(tgt_dev, &ppa, 1);
837

838
	return dev->ops->get_bb_tbl(dev, ppa, blks);
839 840 841
}
EXPORT_SYMBOL(nvm_get_tgt_bb_tbl);

842 843 844
static int nvm_core_init(struct nvm_dev *dev)
{
	struct nvm_id *id = &dev->identity;
845
	struct nvm_geo *geo = &dev->geo;
846
	int ret;
847

848 849
	memcpy(&geo->ppaf, &id->ppaf, sizeof(struct nvm_addr_format));

850
	if (id->mtype != 0) {
851 852 853 854
		pr_err("nvm: memory type not supported\n");
		return -EINVAL;
	}

855
	/* Whole device values */
856 857
	geo->nr_chnls = id->num_ch;
	geo->nr_luns = id->num_lun;
858 859

	/* Generic device geometry values */
860 861 862 863 864 865
	geo->ws_min = id->ws_min;
	geo->ws_opt = id->ws_opt;
	geo->ws_seq = id->ws_seq;
	geo->ws_per_chk = id->ws_per_chk;
	geo->nr_chks = id->num_chk;
	geo->mccap = id->mccap;
866

867
	geo->sec_per_chk = id->clba;
868 869
	geo->sec_per_lun = geo->sec_per_chk * geo->nr_chks;
	geo->all_luns = geo->nr_luns * geo->nr_chnls;
870

871 872 873 874
	/* 1.2 spec device geometry values */
	geo->plane_mode = 1 << geo->ws_seq;
	geo->nr_planes = geo->ws_opt / geo->ws_min;
	geo->sec_per_pg = geo->ws_min;
875
	geo->sec_per_pl = geo->sec_per_pg * geo->nr_planes;
876

877 878
	dev->total_secs = geo->all_luns * geo->sec_per_lun;
	dev->lun_map = kcalloc(BITS_TO_LONGS(geo->all_luns),
W
Wenwei Tao 已提交
879 880 881
					sizeof(unsigned long), GFP_KERNEL);
	if (!dev->lun_map)
		return -ENOMEM;
882

883 884
	INIT_LIST_HEAD(&dev->area_list);
	INIT_LIST_HEAD(&dev->targets);
885
	mutex_init(&dev->mlock);
886
	spin_lock_init(&dev->lock);
887

888 889 890
	ret = nvm_register_map(dev);
	if (ret)
		goto err_fmtype;
891

892
	return 0;
893 894 895
err_fmtype:
	kfree(dev->lun_map);
	return ret;
896 897
}

898
static void nvm_free(struct nvm_dev *dev)
899 900 901 902
{
	if (!dev)
		return;

903 904 905
	if (dev->dma_pool)
		dev->ops->destroy_dma_pool(dev->dma_pool);

906
	nvm_unregister_map(dev);
907
	kfree(dev->lun_map);
908
	kfree(dev);
909 910 911 912
}

static int nvm_init(struct nvm_dev *dev)
{
913
	struct nvm_geo *geo = &dev->geo;
914
	int ret = -EINVAL;
915

916
	if (dev->ops->identity(dev, &dev->identity)) {
917 918 919 920
		pr_err("nvm: device could not be identified\n");
		goto err;
	}

921 922 923
	if (dev->identity.ver_id != 1 && dev->identity.ver_id != 2) {
		pr_err("nvm: device ver_id %d not supported by kernel.\n",
				dev->identity.ver_id);
924 925 926 927 928 929 930 931 932 933
		goto err;
	}

	ret = nvm_core_init(dev);
	if (ret) {
		pr_err("nvm: could not initialize core structures.\n");
		goto err;
	}

	pr_info("nvm: registered %s [%u/%u/%u/%u/%u/%u]\n",
934
			dev->name, geo->sec_per_pg, geo->nr_planes,
935 936
			geo->ws_per_chk, geo->nr_chks,
			geo->all_luns, geo->nr_chnls);
937 938 939 940 941 942
	return 0;
err:
	pr_err("nvm: failed to initialize nvm\n");
	return ret;
}

943
struct nvm_dev *nvm_alloc_dev(int node)
944
{
945
	return kzalloc_node(sizeof(struct nvm_dev), GFP_KERNEL, node);
946
}
947
EXPORT_SYMBOL(nvm_alloc_dev);
948

949
int nvm_register(struct nvm_dev *dev)
950 951 952
{
	int ret;

953 954
	if (!dev->q || !dev->ops)
		return -EINVAL;
955

956 957 958 959
	dev->dma_pool = dev->ops->create_dma_pool(dev, "ppalist");
	if (!dev->dma_pool) {
		pr_err("nvm: could not create dma pool\n");
		return -ENOMEM;
960 961
	}

962 963 964
	ret = nvm_init(dev);
	if (ret)
		goto err_init;
965

966
	/* register device with a supported media manager */
967 968 969 970
	down_write(&nvm_lock);
	list_add(&dev->devices, &nvm_devices);
	up_write(&nvm_lock);

971 972
	return 0;
err_init:
973
	dev->ops->destroy_dma_pool(dev->dma_pool);
974 975 976 977
	return ret;
}
EXPORT_SYMBOL(nvm_register);

978
void nvm_unregister(struct nvm_dev *dev)
979
{
980 981 982 983 984 985 986 987 988 989
	struct nvm_target *t, *tmp;

	mutex_lock(&dev->mlock);
	list_for_each_entry_safe(t, tmp, &dev->targets, list) {
		if (t->dev->parent != dev)
			continue;
		__nvm_remove_target(t);
	}
	mutex_unlock(&dev->mlock);

W
Wenwei Tao 已提交
990
	down_write(&nvm_lock);
991 992
	list_del(&dev->devices);
	up_write(&nvm_lock);
993

994
	nvm_free(dev);
995 996 997 998 999 1000 1001
}
EXPORT_SYMBOL(nvm_unregister);

static int __nvm_configure_create(struct nvm_ioctl_create *create)
{
	struct nvm_dev *dev;

W
Wenwei Tao 已提交
1002
	down_write(&nvm_lock);
1003
	dev = nvm_find_nvm_dev(create->dev);
W
Wenwei Tao 已提交
1004
	up_write(&nvm_lock);
1005

1006 1007 1008 1009 1010
	if (!dev) {
		pr_err("nvm: device not found\n");
		return -EINVAL;
	}

1011
	return nvm_create_tgt(dev, create);
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
}

static long nvm_ioctl_info(struct file *file, void __user *arg)
{
	struct nvm_ioctl_info *info;
	struct nvm_tgt_type *tt;
	int tgt_iter = 0;

	info = memdup_user(arg, sizeof(struct nvm_ioctl_info));
	if (IS_ERR(info))
		return -EFAULT;

	info->version[0] = NVM_VERSION_MAJOR;
	info->version[1] = NVM_VERSION_MINOR;
	info->version[2] = NVM_VERSION_PATCH;

1028
	down_write(&nvm_tgtt_lock);
1029
	list_for_each_entry(tt, &nvm_tgt_types, list) {
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
		struct nvm_ioctl_info_tgt *tgt = &info->tgts[tgt_iter];

		tgt->version[0] = tt->version[0];
		tgt->version[1] = tt->version[1];
		tgt->version[2] = tt->version[2];
		strncpy(tgt->tgtname, tt->name, NVM_TTYPE_NAME_MAX);

		tgt_iter++;
	}

	info->tgtsize = tgt_iter;
1041
	up_write(&nvm_tgtt_lock);
1042

S
Sudip Mukherjee 已提交
1043 1044
	if (copy_to_user(arg, info, sizeof(struct nvm_ioctl_info))) {
		kfree(info);
1045
		return -EFAULT;
S
Sudip Mukherjee 已提交
1046
	}
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

	kfree(info);
	return 0;
}

static long nvm_ioctl_get_devices(struct file *file, void __user *arg)
{
	struct nvm_ioctl_get_devices *devices;
	struct nvm_dev *dev;
	int i = 0;

	devices = kzalloc(sizeof(struct nvm_ioctl_get_devices), GFP_KERNEL);
	if (!devices)
		return -ENOMEM;

	down_write(&nvm_lock);
	list_for_each_entry(dev, &nvm_devices, devices) {
		struct nvm_ioctl_device_info *info = &devices->info[i];

1066
		strlcpy(info->devname, dev->name, sizeof(info->devname));
1067

1068 1069 1070 1071
		/* kept for compatibility */
		info->bmversion[0] = 1;
		info->bmversion[1] = 0;
		info->bmversion[2] = 0;
1072
		strlcpy(info->bmname, "gennvm", sizeof(info->bmname));
1073
		i++;
1074

1075 1076 1077 1078 1079 1080 1081 1082 1083
		if (i > 31) {
			pr_err("nvm: max 31 devices can be reported.\n");
			break;
		}
	}
	up_write(&nvm_lock);

	devices->nr_devices = i;

S
Sudip Mukherjee 已提交
1084 1085 1086
	if (copy_to_user(arg, devices,
			 sizeof(struct nvm_ioctl_get_devices))) {
		kfree(devices);
1087
		return -EFAULT;
S
Sudip Mukherjee 已提交
1088
	}
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

	kfree(devices);
	return 0;
}

static long nvm_ioctl_dev_create(struct file *file, void __user *arg)
{
	struct nvm_ioctl_create create;

	if (copy_from_user(&create, arg, sizeof(struct nvm_ioctl_create)))
		return -EFAULT;

1101 1102 1103 1104 1105 1106
	if (create.conf.type == NVM_CONFIG_TYPE_EXTENDED &&
	    create.conf.e.rsv != 0) {
		pr_err("nvm: reserved config field in use\n");
		return -EINVAL;
	}

1107 1108 1109 1110 1111
	create.dev[DISK_NAME_LEN - 1] = '\0';
	create.tgttype[NVM_TTYPE_NAME_MAX - 1] = '\0';
	create.tgtname[DISK_NAME_LEN - 1] = '\0';

	if (create.flags != 0) {
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
		__u32 flags = create.flags;

		/* Check for valid flags */
		if (flags & NVM_TARGET_FACTORY)
			flags &= ~NVM_TARGET_FACTORY;

		if (flags) {
			pr_err("nvm: flag not supported\n");
			return -EINVAL;
		}
1122 1123 1124 1125 1126 1127 1128 1129
	}

	return __nvm_configure_create(&create);
}

static long nvm_ioctl_dev_remove(struct file *file, void __user *arg)
{
	struct nvm_ioctl_remove remove;
1130 1131
	struct nvm_dev *dev;
	int ret = 0;
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142

	if (copy_from_user(&remove, arg, sizeof(struct nvm_ioctl_remove)))
		return -EFAULT;

	remove.tgtname[DISK_NAME_LEN - 1] = '\0';

	if (remove.flags != 0) {
		pr_err("nvm: no flags supported\n");
		return -EINVAL;
	}

1143
	list_for_each_entry(dev, &nvm_devices, devices) {
1144
		ret = nvm_remove_tgt(dev, &remove);
1145 1146 1147 1148 1149
		if (!ret)
			break;
	}

	return ret;
1150 1151
}

1152
/* kept for compatibility reasons */
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
static long nvm_ioctl_dev_init(struct file *file, void __user *arg)
{
	struct nvm_ioctl_dev_init init;

	if (copy_from_user(&init, arg, sizeof(struct nvm_ioctl_dev_init)))
		return -EFAULT;

	if (init.flags != 0) {
		pr_err("nvm: no flags supported\n");
		return -EINVAL;
	}

1165
	return 0;
1166 1167
}

1168
/* Kept for compatibility reasons */
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
static long nvm_ioctl_dev_factory(struct file *file, void __user *arg)
{
	struct nvm_ioctl_dev_factory fact;

	if (copy_from_user(&fact, arg, sizeof(struct nvm_ioctl_dev_factory)))
		return -EFAULT;

	fact.dev[DISK_NAME_LEN - 1] = '\0';

	if (fact.flags & ~(NVM_FACTORY_NR_BITS - 1))
		return -EINVAL;

1181
	return 0;
1182 1183
}

1184 1185 1186 1187
static long nvm_ctl_ioctl(struct file *file, uint cmd, unsigned long arg)
{
	void __user *argp = (void __user *)arg;

1188 1189 1190
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

1191 1192 1193 1194 1195 1196 1197 1198 1199
	switch (cmd) {
	case NVM_INFO:
		return nvm_ioctl_info(file, argp);
	case NVM_GET_DEVICES:
		return nvm_ioctl_get_devices(file, argp);
	case NVM_DEV_CREATE:
		return nvm_ioctl_dev_create(file, argp);
	case NVM_DEV_REMOVE:
		return nvm_ioctl_dev_remove(file, argp);
1200 1201
	case NVM_DEV_INIT:
		return nvm_ioctl_dev_init(file, argp);
1202 1203
	case NVM_DEV_FACTORY:
		return nvm_ioctl_dev_factory(file, argp);
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
	}
	return 0;
}

static const struct file_operations _ctl_fops = {
	.open = nonseekable_open,
	.unlocked_ioctl = nvm_ctl_ioctl,
	.owner = THIS_MODULE,
	.llseek  = noop_llseek,
};

static struct miscdevice _nvm_misc = {
	.minor		= MISC_DYNAMIC_MINOR,
	.name		= "lightnvm",
	.nodename	= "lightnvm/control",
	.fops		= &_ctl_fops,
};
1221
builtin_misc_device(_nvm_misc);