-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libnvdimm: control character device and nvdimm_bus sysfs attributes
The control device for a nvdimm_bus is registered as an "nd" class device. The expectation is that there will usually only be one "nd" bus registered under /sys/class/nd. However, we allow for the possibility of multiple buses and they will listed in discovery order as ndctl0...ndctlN. This character device hosts the ioctl for passing control messages. The initial command set has a 1:1 correlation with the commands listed in the by the "NFIT DSM Example" document [1], but this scheme is extensible to future command sets. Note, nd_ioctl() and the backing ->ndctl() implementation are defined in a subsequent patch. This is simply the initial registrations and sysfs attributes. [1]: http://pmem.io/documents/NVDIMM_DSM_Interface_Example.pdf Cc: Neil Brown <neilb@suse.de> Cc: Greg KH <gregkh@linuxfoundation.org> Cc: <linux-acpi@vger.kernel.org> Cc: Robert Moore <robert.moore@intel.com> Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Christoph Hellwig <hch@lst.de> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Tested-by: Toshi Kani <toshi.kani@hp.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
- Loading branch information
Dan Williams
committed
Jun 25, 2015
1 parent
b94d523
commit 45def22
Showing
7 changed files
with
215 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
obj-$(CONFIG_LIBNVDIMM) += libnvdimm.o | ||
|
||
libnvdimm-y := core.o | ||
libnvdimm-y += bus.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* 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. | ||
*/ | ||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
#include <linux/uaccess.h> | ||
#include <linux/fcntl.h> | ||
#include <linux/slab.h> | ||
#include <linux/fs.h> | ||
#include <linux/io.h> | ||
#include "nd-core.h" | ||
|
||
static int nvdimm_bus_major; | ||
static struct class *nd_class; | ||
|
||
int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus) | ||
{ | ||
dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id); | ||
struct device *dev; | ||
|
||
dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus, | ||
"ndctl%d", nvdimm_bus->id); | ||
|
||
if (IS_ERR(dev)) { | ||
dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n", | ||
nvdimm_bus->id, PTR_ERR(dev)); | ||
return PTR_ERR(dev); | ||
} | ||
return 0; | ||
} | ||
|
||
void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus) | ||
{ | ||
device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id)); | ||
} | ||
|
||
static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | ||
{ | ||
return -ENXIO; | ||
} | ||
|
||
static const struct file_operations nvdimm_bus_fops = { | ||
.owner = THIS_MODULE, | ||
.open = nonseekable_open, | ||
.unlocked_ioctl = nd_ioctl, | ||
.compat_ioctl = nd_ioctl, | ||
.llseek = noop_llseek, | ||
}; | ||
|
||
int __init nvdimm_bus_init(void) | ||
{ | ||
int rc; | ||
|
||
rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops); | ||
if (rc < 0) | ||
return rc; | ||
nvdimm_bus_major = rc; | ||
|
||
nd_class = class_create(THIS_MODULE, "nd"); | ||
if (IS_ERR(nd_class)) | ||
goto err_class; | ||
|
||
return 0; | ||
|
||
err_class: | ||
unregister_chrdev(nvdimm_bus_major, "ndctl"); | ||
|
||
return rc; | ||
} | ||
|
||
void __exit nvdimm_bus_exit(void) | ||
{ | ||
class_destroy(nd_class); | ||
unregister_chrdev(nvdimm_bus_major, "ndctl"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters