null_blk.c 27.2 KB
Newer Older
S
Shaohua Li 已提交
1 2 3 4
/*
 * Add configfs and memory store: Kyungchan Koh <kkc6196@fb.com> and
 * Shaohua Li <shli@fb.com>
 */
5
#include <linux/module.h>
6

7 8 9 10 11 12 13 14
#include <linux/moduleparam.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/blkdev.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/blk-mq.h>
#include <linux/hrtimer.h>
15
#include <linux/lightnvm.h>
S
Shaohua Li 已提交
16
#include <linux/configfs.h>
17 18 19 20 21 22 23 24 25

struct nullb_cmd {
	struct list_head list;
	struct llist_node ll_list;
	struct call_single_data csd;
	struct request *rq;
	struct bio *bio;
	unsigned int tag;
	struct nullb_queue *nq;
26
	struct hrtimer timer;
27 28 29 30 31 32
};

struct nullb_queue {
	unsigned long *tag_map;
	wait_queue_head_t wait;
	unsigned int queue_depth;
S
Shaohua Li 已提交
33
	struct nullb_device *dev;
34 35 36 37

	struct nullb_cmd *cmds;
};

S
Shaohua Li 已提交
38 39 40 41 42 43 44 45 46 47 48
/*
 * Status flags for nullb_device.
 *
 * CONFIGURED:	Device has been configured and turned on. Cannot reconfigure.
 * UP:		Device is currently on and visible in userspace.
 */
enum nullb_device_flags {
	NULLB_DEV_FL_CONFIGURED	= 0,
	NULLB_DEV_FL_UP		= 1,
};

S
Shaohua Li 已提交
49 50
struct nullb_device {
	struct nullb *nullb;
S
Shaohua Li 已提交
51 52
	struct config_item item;
	unsigned long flags; /* device flags */
S
Shaohua Li 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66

	unsigned long size; /* device size in MB */
	unsigned long completion_nsec; /* time in ns to complete a request */
	unsigned int submit_queues; /* number of submission queues */
	unsigned int home_node; /* home node for the device */
	unsigned int queue_mode; /* block interface */
	unsigned int blocksize; /* block size */
	unsigned int irqmode; /* IRQ completion handler */
	unsigned int hw_queue_depth; /* queue depth */
	bool use_lightnvm; /* register as a LightNVM device */
	bool blocking; /* blocking blk-mq device */
	bool use_per_node_hctx; /* use per-node allocation for hardware context */
};

67
struct nullb {
S
Shaohua Li 已提交
68
	struct nullb_device *dev;
69 70 71 72
	struct list_head list;
	unsigned int index;
	struct request_queue *q;
	struct gendisk *disk;
73
	struct nvm_dev *ndev;
74 75
	struct blk_mq_tag_set *tag_set;
	struct blk_mq_tag_set __tag_set;
76 77 78 79 80 81
	struct hrtimer timer;
	unsigned int queue_depth;
	spinlock_t lock;

	struct nullb_queue *queues;
	unsigned int nr_queues;
82
	char disk_name[DISK_NAME_LEN];
83 84 85 86 87 88
};

static LIST_HEAD(nullb_list);
static struct mutex lock;
static int null_major;
static int nullb_indexes;
M
Matias Bjørling 已提交
89
static struct kmem_cache *ppa_cache;
90
static struct blk_mq_tag_set tag_set;
91 92 93 94 95

enum {
	NULL_IRQ_NONE		= 0,
	NULL_IRQ_SOFTIRQ	= 1,
	NULL_IRQ_TIMER		= 2,
96
};
97

98
enum {
99 100 101 102 103
	NULL_Q_BIO		= 0,
	NULL_Q_RQ		= 1,
	NULL_Q_MQ		= 2,
};

S
Shaohua Li 已提交
104 105
static int g_submit_queues = 1;
module_param_named(submit_queues, g_submit_queues, int, S_IRUGO);
106 107
MODULE_PARM_DESC(submit_queues, "Number of submission queues");

S
Shaohua Li 已提交
108 109
static int g_home_node = NUMA_NO_NODE;
module_param_named(home_node, g_home_node, int, S_IRUGO);
110 111
MODULE_PARM_DESC(home_node, "Home node for the device");

S
Shaohua Li 已提交
112
static int g_queue_mode = NULL_Q_MQ;
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130

static int null_param_store_val(const char *str, int *val, int min, int max)
{
	int ret, new_val;

	ret = kstrtoint(str, 10, &new_val);
	if (ret)
		return -EINVAL;

	if (new_val < min || new_val > max)
		return -EINVAL;

	*val = new_val;
	return 0;
}

static int null_set_queue_mode(const char *str, const struct kernel_param *kp)
{
S
Shaohua Li 已提交
131
	return null_param_store_val(str, &g_queue_mode, NULL_Q_BIO, NULL_Q_MQ);
132 133
}

134
static const struct kernel_param_ops null_queue_mode_param_ops = {
135 136 137 138
	.set	= null_set_queue_mode,
	.get	= param_get_int,
};

S
Shaohua Li 已提交
139
device_param_cb(queue_mode, &null_queue_mode_param_ops, &g_queue_mode, S_IRUGO);
140
MODULE_PARM_DESC(queue_mode, "Block interface to use (0=bio,1=rq,2=multiqueue)");
141

S
Shaohua Li 已提交
142 143
static int g_gb = 250;
module_param_named(gb, g_gb, int, S_IRUGO);
144 145
MODULE_PARM_DESC(gb, "Size in GB");

S
Shaohua Li 已提交
146 147
static int g_bs = 512;
module_param_named(bs, g_bs, int, S_IRUGO);
148 149
MODULE_PARM_DESC(bs, "Block size (in bytes)");

150
static int nr_devices = 1;
151 152 153
module_param(nr_devices, int, S_IRUGO);
MODULE_PARM_DESC(nr_devices, "Number of devices to register");

S
Shaohua Li 已提交
154 155
static bool g_use_lightnvm;
module_param_named(use_lightnvm, g_use_lightnvm, bool, S_IRUGO);
156 157
MODULE_PARM_DESC(use_lightnvm, "Register as a LightNVM device");

S
Shaohua Li 已提交
158 159
static bool g_blocking;
module_param_named(blocking, g_blocking, bool, S_IRUGO);
J
Jens Axboe 已提交
160 161
MODULE_PARM_DESC(blocking, "Register as a blocking blk-mq driver device");

162 163 164 165
static bool shared_tags;
module_param(shared_tags, bool, S_IRUGO);
MODULE_PARM_DESC(shared_tags, "Share tag set between devices for blk-mq");

S
Shaohua Li 已提交
166
static int g_irqmode = NULL_IRQ_SOFTIRQ;
167 168 169

static int null_set_irqmode(const char *str, const struct kernel_param *kp)
{
S
Shaohua Li 已提交
170
	return null_param_store_val(str, &g_irqmode, NULL_IRQ_NONE,
171 172 173
					NULL_IRQ_TIMER);
}

174
static const struct kernel_param_ops null_irqmode_param_ops = {
175 176 177 178
	.set	= null_set_irqmode,
	.get	= param_get_int,
};

S
Shaohua Li 已提交
179
device_param_cb(irqmode, &null_irqmode_param_ops, &g_irqmode, S_IRUGO);
180 181
MODULE_PARM_DESC(irqmode, "IRQ completion handler. 0-none, 1-softirq, 2-timer");

S
Shaohua Li 已提交
182 183
static unsigned long g_completion_nsec = 10000;
module_param_named(completion_nsec, g_completion_nsec, ulong, S_IRUGO);
184 185
MODULE_PARM_DESC(completion_nsec, "Time in ns to complete a request in hardware. Default: 10,000ns");

S
Shaohua Li 已提交
186 187
static int g_hw_queue_depth = 64;
module_param_named(hw_queue_depth, g_hw_queue_depth, int, S_IRUGO);
188 189
MODULE_PARM_DESC(hw_queue_depth, "Queue depth for each hardware queue. Default: 64");

S
Shaohua Li 已提交
190 191
static bool g_use_per_node_hctx;
module_param_named(use_per_node_hctx, g_use_per_node_hctx, bool, S_IRUGO);
192
MODULE_PARM_DESC(use_per_node_hctx, "Use per-node allocation for hardware context queues. Default: false");
193

S
Shaohua Li 已提交
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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
static struct nullb_device *null_alloc_dev(void);
static void null_free_dev(struct nullb_device *dev);

static inline struct nullb_device *to_nullb_device(struct config_item *item)
{
	return item ? container_of(item, struct nullb_device, item) : NULL;
}

static inline ssize_t nullb_device_uint_attr_show(unsigned int val, char *page)
{
	return snprintf(page, PAGE_SIZE, "%u\n", val);
}

static inline ssize_t nullb_device_ulong_attr_show(unsigned long val,
	char *page)
{
	return snprintf(page, PAGE_SIZE, "%lu\n", val);
}

static inline ssize_t nullb_device_bool_attr_show(bool val, char *page)
{
	return snprintf(page, PAGE_SIZE, "%u\n", val);
}

static ssize_t nullb_device_uint_attr_store(unsigned int *val,
	const char *page, size_t count)
{
	unsigned int tmp;
	int result;

	result = kstrtouint(page, 0, &tmp);
	if (result)
		return result;

	*val = tmp;
	return count;
}

static ssize_t nullb_device_ulong_attr_store(unsigned long *val,
	const char *page, size_t count)
{
	int result;
	unsigned long tmp;

	result = kstrtoul(page, 0, &tmp);
	if (result)
		return result;

	*val = tmp;
	return count;
}

static ssize_t nullb_device_bool_attr_store(bool *val, const char *page,
	size_t count)
{
	bool tmp;
	int result;

	result = kstrtobool(page,  &tmp);
	if (result)
		return result;

	*val = tmp;
	return count;
}

/* The following macro should only be used with TYPE = {uint, ulong, bool}. */
#define NULLB_DEVICE_ATTR(NAME, TYPE)						\
static ssize_t									\
nullb_device_##NAME##_show(struct config_item *item, char *page)		\
{										\
	return nullb_device_##TYPE##_attr_show(					\
				to_nullb_device(item)->NAME, page);		\
}										\
static ssize_t									\
nullb_device_##NAME##_store(struct config_item *item, const char *page,		\
			    size_t count)					\
{										\
	if (test_bit(NULLB_DEV_FL_CONFIGURED, &to_nullb_device(item)->flags))	\
		return -EBUSY;							\
	return nullb_device_##TYPE##_attr_store(				\
			&to_nullb_device(item)->NAME, page, count);		\
}										\
CONFIGFS_ATTR(nullb_device_, NAME);

NULLB_DEVICE_ATTR(size, ulong);
NULLB_DEVICE_ATTR(completion_nsec, ulong);
NULLB_DEVICE_ATTR(submit_queues, uint);
NULLB_DEVICE_ATTR(home_node, uint);
NULLB_DEVICE_ATTR(queue_mode, uint);
NULLB_DEVICE_ATTR(blocksize, uint);
NULLB_DEVICE_ATTR(irqmode, uint);
NULLB_DEVICE_ATTR(hw_queue_depth, uint);
NULLB_DEVICE_ATTR(use_lightnvm, bool);
NULLB_DEVICE_ATTR(blocking, bool);
NULLB_DEVICE_ATTR(use_per_node_hctx, bool);

static struct configfs_attribute *nullb_device_attrs[] = {
	&nullb_device_attr_size,
	&nullb_device_attr_completion_nsec,
	&nullb_device_attr_submit_queues,
	&nullb_device_attr_home_node,
	&nullb_device_attr_queue_mode,
	&nullb_device_attr_blocksize,
	&nullb_device_attr_irqmode,
	&nullb_device_attr_hw_queue_depth,
	&nullb_device_attr_use_lightnvm,
	&nullb_device_attr_blocking,
	&nullb_device_attr_use_per_node_hctx,
	NULL,
};

static void nullb_device_release(struct config_item *item)
{
	null_free_dev(to_nullb_device(item));
}

static struct configfs_item_operations nullb_device_ops = {
	.release	= nullb_device_release,
};

static struct config_item_type nullb_device_type = {
	.ct_item_ops	= &nullb_device_ops,
	.ct_attrs	= nullb_device_attrs,
	.ct_owner	= THIS_MODULE,
};

static struct
config_item *nullb_group_make_item(struct config_group *group, const char *name)
{
	struct nullb_device *dev;

	dev = null_alloc_dev();
	if (!dev)
		return ERR_PTR(-ENOMEM);

	config_item_init_type_name(&dev->item, name, &nullb_device_type);

	return &dev->item;
}

static void
nullb_group_drop_item(struct config_group *group, struct config_item *item)
{
	config_item_put(item);
}

static ssize_t memb_group_features_show(struct config_item *item, char *page)
{
	return snprintf(page, PAGE_SIZE, "\n");
}

CONFIGFS_ATTR_RO(memb_group_, features);

static struct configfs_attribute *nullb_group_attrs[] = {
	&memb_group_attr_features,
	NULL,
};

static struct configfs_group_operations nullb_group_ops = {
	.make_item	= nullb_group_make_item,
	.drop_item	= nullb_group_drop_item,
};

static struct config_item_type nullb_group_type = {
	.ct_group_ops	= &nullb_group_ops,
	.ct_attrs	= nullb_group_attrs,
	.ct_owner	= THIS_MODULE,
};

static struct configfs_subsystem nullb_subsys = {
	.su_group = {
		.cg_item = {
			.ci_namebuf = "nullb",
			.ci_type = &nullb_group_type,
		},
	},
};

S
Shaohua Li 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
static struct nullb_device *null_alloc_dev(void)
{
	struct nullb_device *dev;

	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (!dev)
		return NULL;
	dev->size = g_gb * 1024;
	dev->completion_nsec = g_completion_nsec;
	dev->submit_queues = g_submit_queues;
	dev->home_node = g_home_node;
	dev->queue_mode = g_queue_mode;
	dev->blocksize = g_bs;
	dev->irqmode = g_irqmode;
	dev->hw_queue_depth = g_hw_queue_depth;
	dev->use_lightnvm = g_use_lightnvm;
	dev->blocking = g_blocking;
	dev->use_per_node_hctx = g_use_per_node_hctx;
	return dev;
}

static void null_free_dev(struct nullb_device *dev)
{
	kfree(dev);
}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
static void put_tag(struct nullb_queue *nq, unsigned int tag)
{
	clear_bit_unlock(tag, nq->tag_map);

	if (waitqueue_active(&nq->wait))
		wake_up(&nq->wait);
}

static unsigned int get_tag(struct nullb_queue *nq)
{
	unsigned int tag;

	do {
		tag = find_first_zero_bit(nq->tag_map, nq->queue_depth);
		if (tag >= nq->queue_depth)
			return -1U;
	} while (test_and_set_bit_lock(tag, nq->tag_map));

	return tag;
}

static void free_cmd(struct nullb_cmd *cmd)
{
	put_tag(cmd->nq, cmd->tag);
}

425 426
static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer);

427 428 429 430 431 432 433 434 435 436
static struct nullb_cmd *__alloc_cmd(struct nullb_queue *nq)
{
	struct nullb_cmd *cmd;
	unsigned int tag;

	tag = get_tag(nq);
	if (tag != -1U) {
		cmd = &nq->cmds[tag];
		cmd->tag = tag;
		cmd->nq = nq;
S
Shaohua Li 已提交
437
		if (nq->dev->irqmode == NULL_IRQ_TIMER) {
438 439 440 441
			hrtimer_init(&cmd->timer, CLOCK_MONOTONIC,
				     HRTIMER_MODE_REL);
			cmd->timer.function = null_cmd_timer_expired;
		}
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
		return cmd;
	}

	return NULL;
}

static struct nullb_cmd *alloc_cmd(struct nullb_queue *nq, int can_wait)
{
	struct nullb_cmd *cmd;
	DEFINE_WAIT(wait);

	cmd = __alloc_cmd(nq);
	if (cmd || !can_wait)
		return cmd;

	do {
		prepare_to_wait(&nq->wait, &wait, TASK_UNINTERRUPTIBLE);
		cmd = __alloc_cmd(nq);
		if (cmd)
			break;

		io_schedule();
	} while (1);

	finish_wait(&nq->wait, &wait);
	return cmd;
}

static void end_cmd(struct nullb_cmd *cmd)
{
472
	struct request_queue *q = NULL;
S
Shaohua Li 已提交
473
	int queue_mode = cmd->nq->dev->queue_mode;
474

M
Mike Krinkin 已提交
475 476 477
	if (cmd->rq)
		q = cmd->rq->q;

478 479
	switch (queue_mode)  {
	case NULL_Q_MQ:
480
		blk_mq_end_request(cmd->rq, BLK_STS_OK);
481 482 483
		return;
	case NULL_Q_RQ:
		INIT_LIST_HEAD(&cmd->rq->queuelist);
484
		blk_end_request_all(cmd->rq, BLK_STS_OK);
485 486
		break;
	case NULL_Q_BIO:
487
		bio_endio(cmd->bio);
488
		break;
489
	}
490

491 492
	free_cmd(cmd);

493
	/* Restart queue if needed, as we are freeing a tag */
494
	if (queue_mode == NULL_Q_RQ && blk_queue_stopped(q)) {
495 496 497
		unsigned long flags;

		spin_lock_irqsave(q->queue_lock, flags);
498
		blk_start_queue_async(q);
499
		spin_unlock_irqrestore(q->queue_lock, flags);
500
	}
501 502 503 504 505
}

static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer)
{
	end_cmd(container_of(timer, struct nullb_cmd, timer));
506 507 508 509 510 511

	return HRTIMER_NORESTART;
}

static void null_cmd_end_timer(struct nullb_cmd *cmd)
{
S
Shaohua Li 已提交
512
	ktime_t kt = cmd->nq->dev->completion_nsec;
513

514
	hrtimer_start(&cmd->timer, kt, HRTIMER_MODE_REL);
515 516 517 518
}

static void null_softirq_done_fn(struct request *rq)
{
S
Shaohua Li 已提交
519 520 521
	struct nullb *nullb = rq->q->queuedata;

	if (nullb->dev->queue_mode == NULL_Q_MQ)
522 523 524
		end_cmd(blk_mq_rq_to_pdu(rq));
	else
		end_cmd(rq->special);
525 526 527 528 529
}

static inline void null_handle_cmd(struct nullb_cmd *cmd)
{
	/* Complete IO by inline, softirq or timer */
S
Shaohua Li 已提交
530
	switch (cmd->nq->dev->irqmode) {
531
	case NULL_IRQ_SOFTIRQ:
S
Shaohua Li 已提交
532
		switch (cmd->nq->dev->queue_mode)  {
533
		case NULL_Q_MQ:
534
			blk_mq_complete_request(cmd->rq);
535 536 537 538 539 540 541 542 543 544 545 546 547
			break;
		case NULL_Q_RQ:
			blk_complete_request(cmd->rq);
			break;
		case NULL_Q_BIO:
			/*
			 * XXX: no proper submitting cpu information available.
			 */
			end_cmd(cmd);
			break;
		}
		break;
	case NULL_IRQ_NONE:
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
		end_cmd(cmd);
		break;
	case NULL_IRQ_TIMER:
		null_cmd_end_timer(cmd);
		break;
	}
}

static struct nullb_queue *nullb_to_queue(struct nullb *nullb)
{
	int index = 0;

	if (nullb->nr_queues != 1)
		index = raw_smp_processor_id() / ((nr_cpu_ids + nullb->nr_queues - 1) / nullb->nr_queues);

	return &nullb->queues[index];
}

566
static blk_qc_t null_queue_bio(struct request_queue *q, struct bio *bio)
567 568 569 570 571 572 573 574 575
{
	struct nullb *nullb = q->queuedata;
	struct nullb_queue *nq = nullb_to_queue(nullb);
	struct nullb_cmd *cmd;

	cmd = alloc_cmd(nq, 1);
	cmd->bio = bio;

	null_handle_cmd(cmd);
576
	return BLK_QC_T_NONE;
577 578 579 580 581 582 583 584 585 586 587 588 589 590
}

static int null_rq_prep_fn(struct request_queue *q, struct request *req)
{
	struct nullb *nullb = q->queuedata;
	struct nullb_queue *nq = nullb_to_queue(nullb);
	struct nullb_cmd *cmd;

	cmd = alloc_cmd(nq, 0);
	if (cmd) {
		cmd->rq = req;
		req->special = cmd;
		return BLKPREP_OK;
	}
591
	blk_stop_queue(q);
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608

	return BLKPREP_DEFER;
}

static void null_request_fn(struct request_queue *q)
{
	struct request *rq;

	while ((rq = blk_fetch_request(q)) != NULL) {
		struct nullb_cmd *cmd = rq->special;

		spin_unlock_irq(q->queue_lock);
		null_handle_cmd(cmd);
		spin_lock_irq(q->queue_lock);
	}
}

609
static blk_status_t null_queue_rq(struct blk_mq_hw_ctx *hctx,
610
			 const struct blk_mq_queue_data *bd)
611
{
612
	struct nullb_cmd *cmd = blk_mq_rq_to_pdu(bd->rq);
S
Shaohua Li 已提交
613
	struct nullb_queue *nq = hctx->driver_data;
614

J
Jens Axboe 已提交
615 616
	might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);

S
Shaohua Li 已提交
617
	if (nq->dev->irqmode == NULL_IRQ_TIMER) {
618 619 620
		hrtimer_init(&cmd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
		cmd->timer.function = null_cmd_timer_expired;
	}
621
	cmd->rq = bd->rq;
S
Shaohua Li 已提交
622
	cmd->nq = nq;
623

624
	blk_mq_start_request(bd->rq);
625

626
	null_handle_cmd(cmd);
627
	return BLK_STS_OK;
628 629
}

630
static const struct blk_mq_ops null_mq_ops = {
631
	.queue_rq       = null_queue_rq,
632
	.complete	= null_softirq_done_fn,
633 634
};

635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
static void cleanup_queue(struct nullb_queue *nq)
{
	kfree(nq->tag_map);
	kfree(nq->cmds);
}

static void cleanup_queues(struct nullb *nullb)
{
	int i;

	for (i = 0; i < nullb->nr_queues; i++)
		cleanup_queue(&nullb->queues[i]);

	kfree(nullb->queues);
}

651 652
#ifdef CONFIG_NVM

653
static void null_lnvm_end_io(struct request *rq, blk_status_t status)
654 655 656
{
	struct nvm_rq *rqd = rq->end_io_data;

657 658
	/* XXX: lighnvm core seems to expect NVM_RSP_* values here.. */
	rqd->error = status ? -EIO : 0;
659
	nvm_end_io(rqd);
660 661 662 663

	blk_put_request(rq);
}

664
static int null_lnvm_submit_io(struct nvm_dev *dev, struct nvm_rq *rqd)
665
{
666
	struct request_queue *q = dev->q;
667 668 669
	struct request *rq;
	struct bio *bio = rqd->bio;

670 671
	rq = blk_mq_alloc_request(q,
		op_is_write(bio_op(bio)) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0);
672 673 674
	if (IS_ERR(rq))
		return -ENOMEM;

675
	blk_init_request_from_bio(rq, bio);
676 677 678 679 680 681 682 683

	rq->end_io_data = rqd;

	blk_execute_rq_nowait(q, NULL, rq, 0, null_lnvm_end_io);

	return 0;
}

684
static int null_lnvm_id(struct nvm_dev *dev, struct nvm_id *id)
685
{
S
Shaohua Li 已提交
686 687
	struct nullb *nullb = dev->q->queuedata;
	sector_t size = (sector_t)nullb->dev->size * 1024 * 1024ULL;
688
	sector_t blksize;
689 690 691 692
	struct nvm_id_group *grp;

	id->ver_id = 0x1;
	id->vmnt = 0;
693
	id->cap = 0x2;
694
	id->dom = 0x1;
695 696 697 698 699 700 701 702 703 704 705 706 707

	id->ppaf.blk_offset = 0;
	id->ppaf.blk_len = 16;
	id->ppaf.pg_offset = 16;
	id->ppaf.pg_len = 16;
	id->ppaf.sect_offset = 32;
	id->ppaf.sect_len = 8;
	id->ppaf.pln_offset = 40;
	id->ppaf.pln_len = 8;
	id->ppaf.lun_offset = 48;
	id->ppaf.lun_len = 8;
	id->ppaf.ch_offset = 56;
	id->ppaf.ch_len = 8;
708

S
Shaohua Li 已提交
709
	sector_div(size, nullb->dev->blocksize); /* convert size to pages */
710
	size >>= 8; /* concert size to pgs pr blk */
711
	grp = &id->grp;
712
	grp->mtype = 0;
713
	grp->fmtype = 0;
714 715
	grp->num_ch = 1;
	grp->num_pg = 256;
716
	blksize = size;
717
	size >>= 16;
718
	grp->num_lun = size + 1;
719
	sector_div(blksize, grp->num_lun);
720 721 722
	grp->num_blk = blksize;
	grp->num_pln = 1;

S
Shaohua Li 已提交
723 724
	grp->fpg_sz = nullb->dev->blocksize;
	grp->csecs = nullb->dev->blocksize;
725 726 727 728 729 730 731
	grp->trdt = 25000;
	grp->trdm = 25000;
	grp->tprt = 500000;
	grp->tprm = 500000;
	grp->tbet = 1500000;
	grp->tbem = 1500000;
	grp->mpos = 0x010101; /* single plane rwe */
S
Shaohua Li 已提交
732
	grp->cpar = nullb->dev->hw_queue_depth;
733 734 735 736

	return 0;
}

737
static void *null_lnvm_create_dma_pool(struct nvm_dev *dev, char *name)
738 739 740
{
	mempool_t *virtmem_pool;

M
Matias Bjørling 已提交
741
	virtmem_pool = mempool_create_slab_pool(64, ppa_cache);
742 743 744 745 746 747 748 749 750 751 752 753 754
	if (!virtmem_pool) {
		pr_err("null_blk: Unable to create virtual memory pool\n");
		return NULL;
	}

	return virtmem_pool;
}

static void null_lnvm_destroy_dma_pool(void *pool)
{
	mempool_destroy(pool);
}

755
static void *null_lnvm_dev_dma_alloc(struct nvm_dev *dev, void *pool,
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
				gfp_t mem_flags, dma_addr_t *dma_handler)
{
	return mempool_alloc(pool, mem_flags);
}

static void null_lnvm_dev_dma_free(void *pool, void *entry,
							dma_addr_t dma_handler)
{
	mempool_free(entry, pool);
}

static struct nvm_dev_ops null_lnvm_dev_ops = {
	.identity		= null_lnvm_id,
	.submit_io		= null_lnvm_submit_io,

	.create_dma_pool	= null_lnvm_create_dma_pool,
	.destroy_dma_pool	= null_lnvm_destroy_dma_pool,
	.dev_dma_alloc		= null_lnvm_dev_dma_alloc,
	.dev_dma_free		= null_lnvm_dev_dma_free,

	/* Simulate nvme protocol restriction */
	.max_phys_sect		= 64,
};
779 780 781

static int null_nvm_register(struct nullb *nullb)
{
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
	struct nvm_dev *dev;
	int rv;

	dev = nvm_alloc_dev(0);
	if (!dev)
		return -ENOMEM;

	dev->q = nullb->q;
	memcpy(dev->name, nullb->disk_name, DISK_NAME_LEN);
	dev->ops = &null_lnvm_dev_ops;

	rv = nvm_register(dev);
	if (rv) {
		kfree(dev);
		return rv;
	}
	nullb->ndev = dev;
	return 0;
800 801 802 803
}

static void null_nvm_unregister(struct nullb *nullb)
{
804
	nvm_unregister(nullb->ndev);
805
}
806
#else
807 808
static int null_nvm_register(struct nullb *nullb)
{
809
	pr_err("null_blk: CONFIG_NVM needs to be enabled for LightNVM\n");
810 811 812
	return -EINVAL;
}
static void null_nvm_unregister(struct nullb *nullb) {}
813 814
#endif /* CONFIG_NVM */

815 816
static void null_del_dev(struct nullb *nullb)
{
S
Shaohua Li 已提交
817 818
	struct nullb_device *dev = nullb->dev;

819 820
	list_del_init(&nullb->list);

S
Shaohua Li 已提交
821
	if (dev->use_lightnvm)
822 823 824 825
		null_nvm_unregister(nullb);
	else
		del_gendisk(nullb->disk);
	blk_cleanup_queue(nullb->q);
S
Shaohua Li 已提交
826 827
	if (dev->queue_mode == NULL_Q_MQ &&
	    nullb->tag_set == &nullb->__tag_set)
828
		blk_mq_free_tag_set(nullb->tag_set);
S
Shaohua Li 已提交
829
	if (!dev->use_lightnvm)
830 831 832
		put_disk(nullb->disk);
	cleanup_queues(nullb);
	kfree(nullb);
S
Shaohua Li 已提交
833
	dev->nullb = NULL;
834 835
}

836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
static int null_open(struct block_device *bdev, fmode_t mode)
{
	return 0;
}

static void null_release(struct gendisk *disk, fmode_t mode)
{
}

static const struct block_device_operations null_fops = {
	.owner =	THIS_MODULE,
	.open =		null_open,
	.release =	null_release,
};

851 852 853 854 855 856 857
static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq)
{
	BUG_ON(!nullb);
	BUG_ON(!nq);

	init_waitqueue_head(&nq->wait);
	nq->queue_depth = nullb->queue_depth;
S
Shaohua Li 已提交
858
	nq->dev = nullb->dev;
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
}

static void null_init_queues(struct nullb *nullb)
{
	struct request_queue *q = nullb->q;
	struct blk_mq_hw_ctx *hctx;
	struct nullb_queue *nq;
	int i;

	queue_for_each_hw_ctx(q, hctx, i) {
		if (!hctx->nr_ctx || !hctx->tags)
			continue;
		nq = &nullb->queues[i];
		hctx->driver_data = nq;
		null_init_queue(nullb, nq);
		nullb->nr_queues++;
	}
}

878 879 880 881 882 883 884
static int setup_commands(struct nullb_queue *nq)
{
	struct nullb_cmd *cmd;
	int i, tag_size;

	nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL);
	if (!nq->cmds)
885
		return -ENOMEM;
886 887 888 889 890

	tag_size = ALIGN(nq->queue_depth, BITS_PER_LONG) / BITS_PER_LONG;
	nq->tag_map = kzalloc(tag_size * sizeof(unsigned long), GFP_KERNEL);
	if (!nq->tag_map) {
		kfree(nq->cmds);
891
		return -ENOMEM;
892 893 894 895 896 897 898 899 900 901 902 903 904 905
	}

	for (i = 0; i < nq->queue_depth; i++) {
		cmd = &nq->cmds[i];
		INIT_LIST_HEAD(&cmd->list);
		cmd->ll_list.next = NULL;
		cmd->tag = -1U;
	}

	return 0;
}

static int setup_queues(struct nullb *nullb)
{
S
Shaohua Li 已提交
906 907
	nullb->queues = kzalloc(nullb->dev->submit_queues *
		sizeof(struct nullb_queue), GFP_KERNEL);
908
	if (!nullb->queues)
909
		return -ENOMEM;
910 911

	nullb->nr_queues = 0;
S
Shaohua Li 已提交
912
	nullb->queue_depth = nullb->dev->hw_queue_depth;
913

914 915 916 917 918 919 920
	return 0;
}

static int init_driver_queues(struct nullb *nullb)
{
	struct nullb_queue *nq;
	int i, ret = 0;
921

S
Shaohua Li 已提交
922
	for (i = 0; i < nullb->dev->submit_queues; i++) {
923
		nq = &nullb->queues[i];
924 925 926 927 928

		null_init_queue(nullb, nq);

		ret = setup_commands(nq);
		if (ret)
929
			return ret;
930 931
		nullb->nr_queues++;
	}
932
	return 0;
933 934
}

935
static int null_gendisk_register(struct nullb *nullb)
936 937 938
{
	struct gendisk *disk;
	sector_t size;
939

S
Shaohua Li 已提交
940
	disk = nullb->disk = alloc_disk_node(1, nullb->dev->home_node);
941 942
	if (!disk)
		return -ENOMEM;
S
Shaohua Li 已提交
943
	size = (sector_t)nullb->dev->size * 1024 * 1024ULL;
944 945 946 947 948 949 950 951 952 953 954 955 956 957
	set_capacity(disk, size >> 9);

	disk->flags |= GENHD_FL_EXT_DEVT | GENHD_FL_SUPPRESS_PARTITION_INFO;
	disk->major		= null_major;
	disk->first_minor	= nullb->index;
	disk->fops		= &null_fops;
	disk->private_data	= nullb;
	disk->queue		= nullb->q;
	strncpy(disk->disk_name, nullb->disk_name, DISK_NAME_LEN);

	add_disk(disk);
	return 0;
}

S
Shaohua Li 已提交
958
static int null_init_tag_set(struct nullb *nullb, struct blk_mq_tag_set *set)
959 960
{
	set->ops = &null_mq_ops;
S
Shaohua Li 已提交
961 962 963 964 965
	set->nr_hw_queues = nullb ? nullb->dev->submit_queues :
						g_submit_queues;
	set->queue_depth = nullb ? nullb->dev->hw_queue_depth :
						g_hw_queue_depth;
	set->numa_node = nullb ? nullb->dev->home_node : g_home_node;
966 967 968 969
	set->cmd_size	= sizeof(struct nullb_cmd);
	set->flags = BLK_MQ_F_SHOULD_MERGE;
	set->driver_data = NULL;

S
Shaohua Li 已提交
970
	if (nullb->dev->blocking)
971 972 973 974 975
		set->flags |= BLK_MQ_F_BLOCKING;

	return blk_mq_alloc_tag_set(set);
}

S
Shaohua Li 已提交
976
static int null_add_dev(struct nullb_device *dev)
977 978
{
	struct nullb *nullb;
979
	int rv;
980

S
Shaohua Li 已提交
981
	nullb = kzalloc_node(sizeof(*nullb), GFP_KERNEL, dev->home_node);
982 983
	if (!nullb) {
		rv = -ENOMEM;
984
		goto out;
985
	}
S
Shaohua Li 已提交
986 987
	nullb->dev = dev;
	dev->nullb = nullb;
988 989 990

	spin_lock_init(&nullb->lock);

991 992
	rv = setup_queues(nullb);
	if (rv)
993
		goto out_free_nullb;
994

S
Shaohua Li 已提交
995
	if (dev->queue_mode == NULL_Q_MQ) {
996 997 998 999 1000
		if (shared_tags) {
			nullb->tag_set = &tag_set;
			rv = 0;
		} else {
			nullb->tag_set = &nullb->__tag_set;
S
Shaohua Li 已提交
1001
			rv = null_init_tag_set(nullb, nullb->tag_set);
1002 1003
		}

1004
		if (rv)
1005 1006
			goto out_cleanup_queues;

1007
		nullb->q = blk_mq_init_queue(nullb->tag_set);
1008
		if (IS_ERR(nullb->q)) {
1009
			rv = -ENOMEM;
1010
			goto out_cleanup_tags;
1011
		}
1012
		null_init_queues(nullb);
S
Shaohua Li 已提交
1013 1014
	} else if (dev->queue_mode == NULL_Q_BIO) {
		nullb->q = blk_alloc_queue_node(GFP_KERNEL, dev->home_node);
1015 1016
		if (!nullb->q) {
			rv = -ENOMEM;
1017
			goto out_cleanup_queues;
1018
		}
1019
		blk_queue_make_request(nullb->q, null_queue_bio);
1020 1021 1022
		rv = init_driver_queues(nullb);
		if (rv)
			goto out_cleanup_blk_queue;
1023
	} else {
S
Shaohua Li 已提交
1024 1025
		nullb->q = blk_init_queue_node(null_request_fn, &nullb->lock,
						dev->home_node);
1026 1027
		if (!nullb->q) {
			rv = -ENOMEM;
1028
			goto out_cleanup_queues;
1029
		}
1030
		blk_queue_prep_rq(nullb->q, null_rq_prep_fn);
1031
		blk_queue_softirq_done(nullb->q, null_softirq_done_fn);
1032 1033 1034
		rv = init_driver_queues(nullb);
		if (rv)
			goto out_cleanup_blk_queue;
1035 1036 1037 1038
	}

	nullb->q->queuedata = nullb;
	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, nullb->q);
1039
	queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, nullb->q);
1040 1041 1042 1043 1044

	mutex_lock(&lock);
	nullb->index = nullb_indexes++;
	mutex_unlock(&lock);

S
Shaohua Li 已提交
1045 1046
	blk_queue_logical_block_size(nullb->q, dev->blocksize);
	blk_queue_physical_block_size(nullb->q, dev->blocksize);
1047

1048 1049
	sprintf(nullb->disk_name, "nullb%d", nullb->index);

S
Shaohua Li 已提交
1050
	if (dev->use_lightnvm)
1051 1052 1053
		rv = null_nvm_register(nullb);
	else
		rv = null_gendisk_register(nullb);
1054

1055 1056
	if (rv)
		goto out_cleanup_blk_queue;
1057 1058 1059 1060

	mutex_lock(&lock);
	list_add_tail(&nullb->list, &nullb_list);
	mutex_unlock(&lock);
1061

1062
	return 0;
1063 1064 1065
out_cleanup_blk_queue:
	blk_cleanup_queue(nullb->q);
out_cleanup_tags:
S
Shaohua Li 已提交
1066
	if (dev->queue_mode == NULL_Q_MQ && nullb->tag_set == &nullb->__tag_set)
1067
		blk_mq_free_tag_set(nullb->tag_set);
1068 1069 1070 1071 1072
out_cleanup_queues:
	cleanup_queues(nullb);
out_free_nullb:
	kfree(nullb);
out:
S
Shaohua Li 已提交
1073
	null_free_dev(dev);
1074
	return rv;
1075 1076 1077 1078
}

static int __init null_init(void)
{
1079
	int ret = 0;
1080
	unsigned int i;
1081
	struct nullb *nullb;
S
Shaohua Li 已提交
1082
	struct nullb_device *dev;
1083

S
Shaohua Li 已提交
1084
	if (g_bs > PAGE_SIZE) {
1085 1086
		pr_warn("null_blk: invalid block size\n");
		pr_warn("null_blk: defaults block size to %lu\n", PAGE_SIZE);
S
Shaohua Li 已提交
1087
		g_bs = PAGE_SIZE;
1088
	}
1089

S
Shaohua Li 已提交
1090
	if (g_use_lightnvm && g_bs != 4096) {
M
Matias Bjørling 已提交
1091 1092
		pr_warn("null_blk: LightNVM only supports 4k block size\n");
		pr_warn("null_blk: defaults block size to 4k\n");
S
Shaohua Li 已提交
1093
		g_bs = 4096;
M
Matias Bjørling 已提交
1094 1095
	}

S
Shaohua Li 已提交
1096
	if (g_use_lightnvm && g_queue_mode != NULL_Q_MQ) {
1097 1098
		pr_warn("null_blk: LightNVM only supported for blk-mq\n");
		pr_warn("null_blk: defaults queue mode to blk-mq\n");
S
Shaohua Li 已提交
1099
		g_queue_mode = NULL_Q_MQ;
1100 1101
	}

S
Shaohua Li 已提交
1102 1103
	if (g_queue_mode == NULL_Q_MQ && g_use_per_node_hctx) {
		if (g_submit_queues != nr_online_nodes) {
1104
			pr_warn("null_blk: submit_queues param is set to %u.\n",
1105
							nr_online_nodes);
S
Shaohua Li 已提交
1106
			g_submit_queues = nr_online_nodes;
1107
		}
S
Shaohua Li 已提交
1108 1109 1110 1111
	} else if (g_submit_queues > nr_cpu_ids)
		g_submit_queues = nr_cpu_ids;
	else if (g_submit_queues <= 0)
		g_submit_queues = 1;
1112

S
Shaohua Li 已提交
1113 1114
	if (g_queue_mode == NULL_Q_MQ && shared_tags) {
		ret = null_init_tag_set(NULL, &tag_set);
1115 1116 1117 1118
		if (ret)
			return ret;
	}

S
Shaohua Li 已提交
1119 1120 1121 1122 1123 1124 1125
	config_group_init(&nullb_subsys.su_group);
	mutex_init(&nullb_subsys.su_mutex);

	ret = configfs_register_subsystem(&nullb_subsys);
	if (ret)
		goto err_tagset;

1126 1127 1128
	mutex_init(&lock);

	null_major = register_blkdev(0, "nullb");
1129 1130
	if (null_major < 0) {
		ret = null_major;
S
Shaohua Li 已提交
1131
		goto err_conf;
1132
	}
1133

S
Shaohua Li 已提交
1134
	if (g_use_lightnvm) {
M
Matias Bjørling 已提交
1135 1136 1137 1138
		ppa_cache = kmem_cache_create("ppa_cache", 64 * sizeof(u64),
								0, 0, NULL);
		if (!ppa_cache) {
			pr_err("null_blk: unable to create ppa cache\n");
1139 1140
			ret = -ENOMEM;
			goto err_ppa;
M
Matias Bjørling 已提交
1141 1142 1143
		}
	}

1144
	for (i = 0; i < nr_devices; i++) {
S
Shaohua Li 已提交
1145 1146 1147 1148 1149 1150
		dev = null_alloc_dev();
		if (!dev)
			goto err_dev;
		ret = null_add_dev(dev);
		if (ret) {
			null_free_dev(dev);
1151
			goto err_dev;
S
Shaohua Li 已提交
1152
		}
1153 1154 1155 1156
	}

	pr_info("null: module loaded\n");
	return 0;
1157 1158 1159 1160

err_dev:
	while (!list_empty(&nullb_list)) {
		nullb = list_entry(nullb_list.next, struct nullb, list);
S
Shaohua Li 已提交
1161
		dev = nullb->dev;
1162
		null_del_dev(nullb);
S
Shaohua Li 已提交
1163
		null_free_dev(dev);
1164
	}
M
Matias Bjørling 已提交
1165
	kmem_cache_destroy(ppa_cache);
1166 1167
err_ppa:
	unregister_blkdev(null_major, "nullb");
S
Shaohua Li 已提交
1168 1169
err_conf:
	configfs_unregister_subsystem(&nullb_subsys);
1170
err_tagset:
S
Shaohua Li 已提交
1171
	if (g_queue_mode == NULL_Q_MQ && shared_tags)
1172
		blk_mq_free_tag_set(&tag_set);
1173
	return ret;
1174 1175 1176 1177 1178 1179
}

static void __exit null_exit(void)
{
	struct nullb *nullb;

S
Shaohua Li 已提交
1180 1181
	configfs_unregister_subsystem(&nullb_subsys);

1182 1183 1184 1185
	unregister_blkdev(null_major, "nullb");

	mutex_lock(&lock);
	while (!list_empty(&nullb_list)) {
S
Shaohua Li 已提交
1186 1187
		struct nullb_device *dev;

1188
		nullb = list_entry(nullb_list.next, struct nullb, list);
S
Shaohua Li 已提交
1189
		dev = nullb->dev;
1190
		null_del_dev(nullb);
S
Shaohua Li 已提交
1191
		null_free_dev(dev);
1192 1193
	}
	mutex_unlock(&lock);
M
Matias Bjørling 已提交
1194

S
Shaohua Li 已提交
1195
	if (g_queue_mode == NULL_Q_MQ && shared_tags)
1196 1197
		blk_mq_free_tag_set(&tag_set);

M
Matias Bjørling 已提交
1198
	kmem_cache_destroy(ppa_cache);
1199 1200 1201 1202 1203 1204 1205
}

module_init(null_init);
module_exit(null_exit);

MODULE_AUTHOR("Jens Axboe <jaxboe@fusionio.com>");
MODULE_LICENSE("GPL");