2016-05-18 09:15:08 -07:00
|
|
|
/*
|
|
|
|
* Copyright(c) 2016 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/percpu-refcount.h>
|
|
|
|
#include <linux/memremap.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pfn_t.h>
|
|
|
|
#include "../nvdimm/pfn.h"
|
|
|
|
#include "../nvdimm/nd.h"
|
2017-07-12 17:58:21 -07:00
|
|
|
#include "bus.h"
|
2016-05-18 09:15:08 -07:00
|
|
|
|
|
|
|
static int dax_pmem_probe(struct device *dev)
|
|
|
|
{
|
|
|
|
struct resource res;
|
2017-07-18 17:49:14 -07:00
|
|
|
int rc, id, region_id;
|
2018-10-29 15:52:42 -07:00
|
|
|
resource_size_t offset;
|
2016-05-18 09:15:08 -07:00
|
|
|
struct nd_pfn_sb *pfn_sb;
|
2017-01-30 21:43:10 -08:00
|
|
|
struct dev_dax *dev_dax;
|
2016-05-18 09:15:08 -07:00
|
|
|
struct nd_namespace_io *nsio;
|
|
|
|
struct dax_region *dax_region;
|
2018-10-29 15:52:42 -07:00
|
|
|
struct dev_pagemap pgmap = { 0 };
|
2016-05-18 09:15:08 -07:00
|
|
|
struct nd_namespace_common *ndns;
|
|
|
|
struct nd_dax *nd_dax = to_nd_dax(dev);
|
|
|
|
struct nd_pfn *nd_pfn = &nd_dax->nd_pfn;
|
|
|
|
|
|
|
|
ndns = nvdimm_namespace_common_probe(dev);
|
|
|
|
if (IS_ERR(ndns))
|
|
|
|
return PTR_ERR(ndns);
|
|
|
|
nsio = to_nd_namespace_io(&ndns->dev);
|
|
|
|
|
|
|
|
/* parse the 'pfn' info block via ->rw_bytes */
|
2016-10-28 14:34:51 -07:00
|
|
|
rc = devm_nsio_enable(dev, nsio);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2018-10-29 15:52:42 -07:00
|
|
|
rc = nvdimm_setup_pfn(nd_pfn, &pgmap);
|
2017-12-29 08:54:05 +01:00
|
|
|
if (rc)
|
|
|
|
return rc;
|
2016-05-18 09:15:08 -07:00
|
|
|
devm_nsio_disable(dev, nsio);
|
|
|
|
|
2018-10-29 15:52:42 -07:00
|
|
|
/* reserve the metadata area, device-dax will reserve the data */
|
|
|
|
pfn_sb = nd_pfn->pfn_sb;
|
|
|
|
offset = le64_to_cpu(pfn_sb->dataoff);
|
|
|
|
if (!devm_request_mem_region(dev, nsio->res.start, offset,
|
libnvdimm: use consistent naming for request_mem_region()
Here is an example /proc/iomem listing for a system with 2 namespaces,
one in "sector" mode and one in "memory" mode:
1fc000000-2fbffffff : Persistent Memory (legacy)
1fc000000-2fbffffff : namespace1.0
340000000-34fffffff : Persistent Memory
340000000-34fffffff : btt0.1
Here is the corresponding ndctl listing:
# ndctl list
[
{
"dev":"namespace1.0",
"mode":"memory",
"size":4294967296,
"blockdev":"pmem1"
},
{
"dev":"namespace0.0",
"mode":"sector",
"size":267091968,
"uuid":"f7594f86-badb-4592-875f-ded577da2eaf",
"sector_size":4096,
"blockdev":"pmem0s"
}
]
Notice that the ndctl listing is purely in terms of namespace devices,
while the iomem listing leaks the internal "btt0.1" implementation
detail. Given that ndctl requires the namespace device name to change
the mode, for example:
# ndctl create-namespace --reconfig=namespace0.0 --mode=raw --force
...use the namespace name in the iomem listing to keep the claiming
device name consistent across different mode settings.
Cc: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
2016-11-28 11:15:18 -08:00
|
|
|
dev_name(&ndns->dev))) {
|
2018-10-29 15:52:42 -07:00
|
|
|
dev_warn(dev, "could not reserve metadata\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
2016-08-25 15:17:14 -07:00
|
|
|
|
2017-07-18 17:49:14 -07:00
|
|
|
rc = sscanf(dev_name(&ndns->dev), "namespace%d.%d", ®ion_id, &id);
|
|
|
|
if (rc != 2)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-10-29 15:52:42 -07:00
|
|
|
/* adjust the dax_region resource to the start of data */
|
|
|
|
memcpy(&res, &pgmap.res, sizeof(res));
|
|
|
|
res.start += offset;
|
2017-07-18 17:49:14 -07:00
|
|
|
dax_region = alloc_dax_region(dev, region_id, &res,
|
2017-07-19 15:57:44 -07:00
|
|
|
le32_to_cpu(pfn_sb->align), PFN_DEV|PFN_MAP);
|
2016-05-18 09:15:08 -07:00
|
|
|
if (!dax_region)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-10-29 15:52:42 -07:00
|
|
|
dev_dax = devm_create_dev_dax(dax_region, id, &pgmap);
|
2016-05-18 09:15:08 -07:00
|
|
|
|
2017-01-30 21:43:10 -08:00
|
|
|
/* child dev_dax instances now own the lifetime of the dax_region */
|
2016-05-18 09:15:08 -07:00
|
|
|
dax_region_put(dax_region);
|
|
|
|
|
2017-01-30 21:43:10 -08:00
|
|
|
return PTR_ERR_OR_ZERO(dev_dax);
|
2016-05-18 09:15:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct nd_device_driver dax_pmem_driver = {
|
|
|
|
.probe = dax_pmem_probe,
|
|
|
|
.drv = {
|
|
|
|
.name = "dax_pmem",
|
|
|
|
},
|
|
|
|
.type = ND_DRIVER_DAX_PMEM,
|
|
|
|
};
|
|
|
|
|
2018-03-14 19:25:08 +01:00
|
|
|
module_nd_driver(dax_pmem_driver);
|
2016-05-18 09:15:08 -07:00
|
|
|
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
|
|
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_DAX_PMEM);
|