2015-05-20 10:54:31 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#include <linux/libnvdimm.h>
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/device.h>
|
2015-06-09 02:27:06 +08:00
|
|
|
#include <linux/ndctl.h>
|
2015-04-27 07:26:48 +08:00
|
|
|
#include <linux/mutex.h>
|
2015-05-20 10:54:31 +08:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include "nd-core.h"
|
2015-06-01 02:41:48 +08:00
|
|
|
#include "nd.h"
|
2015-05-20 10:54:31 +08:00
|
|
|
|
2015-04-25 15:56:17 +08:00
|
|
|
LIST_HEAD(nvdimm_bus_list);
|
|
|
|
DEFINE_MUTEX(nvdimm_bus_list_mutex);
|
2015-05-20 10:54:31 +08:00
|
|
|
static DEFINE_IDA(nd_ida);
|
|
|
|
|
|
|
|
static void nvdimm_bus_release(struct device *dev)
|
|
|
|
{
|
|
|
|
struct nvdimm_bus *nvdimm_bus;
|
|
|
|
|
|
|
|
nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
|
|
|
|
ida_simple_remove(&nd_ida, nvdimm_bus->id);
|
|
|
|
kfree(nvdimm_bus);
|
|
|
|
}
|
|
|
|
|
2015-04-27 07:26:48 +08:00
|
|
|
struct nvdimm_bus *to_nvdimm_bus(struct device *dev)
|
|
|
|
{
|
|
|
|
struct nvdimm_bus *nvdimm_bus;
|
|
|
|
|
|
|
|
nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
|
|
|
|
WARN_ON(nvdimm_bus->dev.release != nvdimm_bus_release);
|
|
|
|
return nvdimm_bus;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(to_nvdimm_bus);
|
|
|
|
|
|
|
|
struct nvdimm_bus_descriptor *to_nd_desc(struct nvdimm_bus *nvdimm_bus)
|
|
|
|
{
|
|
|
|
/* struct nvdimm_bus definition is private to libnvdimm */
|
|
|
|
return nvdimm_bus->nd_desc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(to_nd_desc);
|
|
|
|
|
2015-04-25 15:56:17 +08:00
|
|
|
struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev)
|
|
|
|
{
|
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
for (dev = nd_dev; dev; dev = dev->parent)
|
|
|
|
if (dev->release == nvdimm_bus_release)
|
|
|
|
break;
|
|
|
|
dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n");
|
|
|
|
if (dev)
|
|
|
|
return to_nvdimm_bus(dev);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-09 02:27:06 +08:00
|
|
|
static ssize_t commands_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
int cmd, len = 0;
|
|
|
|
struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
|
|
|
|
struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
|
|
|
|
|
|
|
|
for_each_set_bit(cmd, &nd_desc->dsm_mask, BITS_PER_LONG)
|
|
|
|
len += sprintf(buf + len, "%s ", nvdimm_bus_cmd_name(cmd));
|
|
|
|
len += sprintf(buf + len, "\n");
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_RO(commands);
|
|
|
|
|
2015-04-27 07:26:48 +08:00
|
|
|
static const char *nvdimm_bus_provider(struct nvdimm_bus *nvdimm_bus)
|
|
|
|
{
|
|
|
|
struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
|
|
|
|
struct device *parent = nvdimm_bus->dev.parent;
|
|
|
|
|
|
|
|
if (nd_desc->provider_name)
|
|
|
|
return nd_desc->provider_name;
|
|
|
|
else if (parent)
|
|
|
|
return dev_name(parent);
|
|
|
|
else
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t provider_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
|
|
|
|
|
|
|
|
return sprintf(buf, "%s\n", nvdimm_bus_provider(nvdimm_bus));
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_RO(provider);
|
|
|
|
|
2015-06-01 02:41:48 +08:00
|
|
|
static int flush_namespaces(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
device_lock(dev);
|
|
|
|
device_unlock(dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int flush_regions_dimms(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
device_lock(dev);
|
|
|
|
device_unlock(dev);
|
|
|
|
device_for_each_child(dev, NULL, flush_namespaces);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t wait_probe_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
nd_synchronize();
|
|
|
|
device_for_each_child(dev, NULL, flush_regions_dimms);
|
|
|
|
return sprintf(buf, "1\n");
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_RO(wait_probe);
|
|
|
|
|
2015-04-27 07:26:48 +08:00
|
|
|
static struct attribute *nvdimm_bus_attributes[] = {
|
2015-06-09 02:27:06 +08:00
|
|
|
&dev_attr_commands.attr,
|
2015-06-01 02:41:48 +08:00
|
|
|
&dev_attr_wait_probe.attr,
|
2015-04-27 07:26:48 +08:00
|
|
|
&dev_attr_provider.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct attribute_group nvdimm_bus_attribute_group = {
|
|
|
|
.attrs = nvdimm_bus_attributes,
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(nvdimm_bus_attribute_group);
|
|
|
|
|
2015-05-20 10:54:31 +08:00
|
|
|
struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
|
|
|
|
struct nvdimm_bus_descriptor *nd_desc)
|
|
|
|
{
|
|
|
|
struct nvdimm_bus *nvdimm_bus;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL);
|
|
|
|
if (!nvdimm_bus)
|
|
|
|
return NULL;
|
2015-04-27 07:26:48 +08:00
|
|
|
INIT_LIST_HEAD(&nvdimm_bus->list);
|
2015-05-20 10:54:31 +08:00
|
|
|
nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL);
|
|
|
|
if (nvdimm_bus->id < 0) {
|
|
|
|
kfree(nvdimm_bus);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
nvdimm_bus->nd_desc = nd_desc;
|
|
|
|
nvdimm_bus->dev.parent = parent;
|
|
|
|
nvdimm_bus->dev.release = nvdimm_bus_release;
|
2015-04-27 07:26:48 +08:00
|
|
|
nvdimm_bus->dev.groups = nd_desc->attr_groups;
|
2015-05-20 10:54:31 +08:00
|
|
|
dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id);
|
|
|
|
rc = device_register(&nvdimm_bus->dev);
|
|
|
|
if (rc) {
|
|
|
|
dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc);
|
2015-04-27 07:26:48 +08:00
|
|
|
goto err;
|
2015-05-20 10:54:31 +08:00
|
|
|
}
|
|
|
|
|
2015-04-27 07:26:48 +08:00
|
|
|
rc = nvdimm_bus_create_ndctl(nvdimm_bus);
|
|
|
|
if (rc)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
mutex_lock(&nvdimm_bus_list_mutex);
|
|
|
|
list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list);
|
|
|
|
mutex_unlock(&nvdimm_bus_list_mutex);
|
|
|
|
|
2015-05-20 10:54:31 +08:00
|
|
|
return nvdimm_bus;
|
2015-04-27 07:26:48 +08:00
|
|
|
err:
|
|
|
|
put_device(&nvdimm_bus->dev);
|
|
|
|
return NULL;
|
2015-05-20 10:54:31 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nvdimm_bus_register);
|
|
|
|
|
2015-04-25 15:56:17 +08:00
|
|
|
static int child_unregister(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* the singular ndctl class device per bus needs to be
|
|
|
|
* "device_destroy"ed, so skip it here
|
|
|
|
*
|
|
|
|
* i.e. remove classless children
|
|
|
|
*/
|
|
|
|
if (dev->class)
|
|
|
|
/* pass */;
|
|
|
|
else
|
2015-06-01 02:41:48 +08:00
|
|
|
nd_device_unregister(dev, ND_SYNC);
|
2015-04-25 15:56:17 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-20 10:54:31 +08:00
|
|
|
void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus)
|
|
|
|
{
|
|
|
|
if (!nvdimm_bus)
|
|
|
|
return;
|
2015-04-27 07:26:48 +08:00
|
|
|
|
|
|
|
mutex_lock(&nvdimm_bus_list_mutex);
|
|
|
|
list_del_init(&nvdimm_bus->list);
|
|
|
|
mutex_unlock(&nvdimm_bus_list_mutex);
|
|
|
|
|
2015-06-01 02:41:48 +08:00
|
|
|
nd_synchronize();
|
2015-04-25 15:56:17 +08:00
|
|
|
device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister);
|
2015-04-27 07:26:48 +08:00
|
|
|
nvdimm_bus_destroy_ndctl(nvdimm_bus);
|
|
|
|
|
2015-05-20 10:54:31 +08:00
|
|
|
device_unregister(&nvdimm_bus->dev);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nvdimm_bus_unregister);
|
|
|
|
|
2015-04-27 07:26:48 +08:00
|
|
|
static __init int libnvdimm_init(void)
|
|
|
|
{
|
2015-06-01 02:41:48 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = nvdimm_bus_init();
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
rc = nvdimm_init();
|
|
|
|
if (rc)
|
|
|
|
goto err_dimm;
|
|
|
|
return 0;
|
|
|
|
err_dimm:
|
|
|
|
nvdimm_bus_exit();
|
|
|
|
return rc;
|
2015-04-27 07:26:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static __exit void libnvdimm_exit(void)
|
|
|
|
{
|
|
|
|
WARN_ON(!list_empty(&nvdimm_bus_list));
|
2015-06-01 02:41:48 +08:00
|
|
|
nvdimm_exit();
|
2015-04-27 07:26:48 +08:00
|
|
|
nvdimm_bus_exit();
|
|
|
|
}
|
|
|
|
|
2015-05-20 10:54:31 +08:00
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
2015-04-27 07:26:48 +08:00
|
|
|
subsys_initcall(libnvdimm_init);
|
|
|
|
module_exit(libnvdimm_exit);
|