region.c 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License 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.
 */
V
Vishal Verma 已提交
13
#include <linux/cpumask.h>
14 15 16
#include <linux/module.h>
#include <linux/device.h>
#include <linux/nd.h>
17
#include "nd-core.h"
18 19 20 21
#include "nd.h"

static int nd_region_probe(struct device *dev)
{
22
	int err, rc;
V
Vishal Verma 已提交
23
	static unsigned long once;
24
	struct nd_region_data *ndrd;
25 26
	struct nd_region *nd_region = to_nd_region(dev);

V
Vishal Verma 已提交
27 28 29 30 31 32 33 34 35 36
	if (nd_region->num_lanes > num_online_cpus()
			&& nd_region->num_lanes < num_possible_cpus()
			&& !test_and_set_bit(0, &once)) {
		dev_info(dev, "online cpus (%d) < concurrent i/o lanes (%d) < possible cpus (%d)\n",
				num_online_cpus(), nd_region->num_lanes,
				num_possible_cpus());
		dev_info(dev, "setting nr_cpus=%d may yield better libnvdimm device performance\n",
				nd_region->num_lanes);
	}

37 38 39 40
	rc = nd_region_activate(nd_region);
	if (rc)
		return rc;

41 42 43 44 45
	rc = nd_blk_region_init(nd_region);
	if (rc)
		return rc;

	rc = nd_region_register_namespaces(nd_region, &err);
46 47 48
	if (rc < 0)
		return rc;

49 50 51
	ndrd = dev_get_drvdata(dev);
	ndrd->ns_active = rc;
	ndrd->ns_count = rc + err;
52

53 54 55
	if (rc && err && rc == err)
		return -ENODEV;

56 57 58 59 60
	if (is_nd_pmem(&nd_region->dev)) {
		struct resource ndr_res;

		if (devm_init_badblocks(dev, &nd_region->bb))
			return -ENODEV;
61 62 63 64 65 66 67
		nd_region->bb_state = sysfs_get_dirent(nd_region->dev.kobj.sd,
						       "badblocks");
		if (nd_region->bb_state)
			sysfs_put(nd_region->bb_state);
		else
			dev_warn(&nd_region->dev,
				"sysfs_get_dirent 'badblocks' failed\n");
68 69
		ndr_res.start = nd_region->ndr_start;
		ndr_res.end = nd_region->ndr_start + nd_region->ndr_size - 1;
70
		nvdimm_badblocks_populate(nd_region, &nd_region->bb, &ndr_res);
71 72
	}

73
	nd_region->btt_seed = nd_btt_create(nd_region);
74
	nd_region->pfn_seed = nd_pfn_create(nd_region);
75
	nd_region->dax_seed = nd_dax_create(nd_region);
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
	if (err == 0)
		return 0;

	/*
	 * Given multiple namespaces per region, we do not want to
	 * disable all the successfully registered peer namespaces upon
	 * a single registration failure.  If userspace is missing a
	 * namespace that it expects it can disable/re-enable the region
	 * to retry discovery after correcting the failure.
	 * <regionX>/namespaces returns the current
	 * "<async-registered>/<total>" namespace count.
	 */
	dev_err(dev, "failed to register %d namespace%s, continuing...\n",
			err, err == 1 ? "" : "s");
	return 0;
}

static int child_unregister(struct device *dev, void *data)
{
	nd_device_unregister(dev, ND_SYNC);
	return 0;
}

static int nd_region_remove(struct device *dev)
{
101 102
	struct nd_region *nd_region = to_nd_region(dev);

103 104
	device_for_each_child(dev, NULL, child_unregister);

105 106
	/* flush attribute readers and disable */
	nvdimm_bus_lock(dev);
107
	nd_region->ns_seed = NULL;
108
	nd_region->btt_seed = NULL;
109
	nd_region->pfn_seed = NULL;
110
	nd_region->dax_seed = NULL;
111 112 113 114 115 116
	dev_set_drvdata(dev, NULL);
	nvdimm_bus_unlock(dev);

	return 0;
}

117 118 119 120 121 122 123 124
static int child_notify(struct device *dev, void *data)
{
	nd_device_notify(dev, *(enum nvdimm_event *) data);
	return 0;
}

static void nd_region_notify(struct device *dev, enum nvdimm_event event)
{
125 126 127 128 129 130 131 132 133 134
	if (event == NVDIMM_REVALIDATE_POISON) {
		struct nd_region *nd_region = to_nd_region(dev);
		struct resource res;

		if (is_nd_pmem(&nd_region->dev)) {
			res.start = nd_region->ndr_start;
			res.end = nd_region->ndr_start +
				nd_region->ndr_size - 1;
			nvdimm_badblocks_populate(nd_region,
					&nd_region->bb, &res);
135 136
			if (nd_region->bb_state)
				sysfs_notify_dirent(nd_region->bb_state);
137 138
		}
	}
139 140 141
	device_for_each_child(dev, &event, child_notify);
}

142 143 144
static struct nd_device_driver nd_region_driver = {
	.probe = nd_region_probe,
	.remove = nd_region_remove,
145
	.notify = nd_region_notify,
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
	.drv = {
		.name = "nd_region",
	},
	.type = ND_DRIVER_REGION_BLK | ND_DRIVER_REGION_PMEM,
};

int __init nd_region_init(void)
{
	return nd_driver_register(&nd_region_driver);
}

void nd_region_exit(void)
{
	driver_unregister(&nd_region_driver.drv);
}

MODULE_ALIAS_ND_DEVICE(ND_DEVICE_REGION_PMEM);
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_REGION_BLK);