nVMX x86: Check VPID value on vmentry of L2 guests
[linux/fpc-iii.git] / drivers / nvdimm / dimm.c
blob6c8fb7590838668c537aa09cfb289ed82f7fa563
1 /*
2 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 #include <linux/vmalloc.h>
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/sizes.h>
17 #include <linux/ndctl.h>
18 #include <linux/slab.h>
19 #include <linux/mm.h>
20 #include <linux/nd.h>
21 #include "label.h"
22 #include "nd.h"
24 static int nvdimm_probe(struct device *dev)
26 struct nvdimm_drvdata *ndd;
27 int rc;
29 rc = nvdimm_check_config_data(dev);
30 if (rc) {
31 /* not required for non-aliased nvdimm, ex. NVDIMM-N */
32 if (rc == -ENOTTY)
33 rc = 0;
34 return rc;
37 /* reset locked, to be validated below... */
38 nvdimm_clear_locked(dev);
40 ndd = kzalloc(sizeof(*ndd), GFP_KERNEL);
41 if (!ndd)
42 return -ENOMEM;
44 dev_set_drvdata(dev, ndd);
45 ndd->dpa.name = dev_name(dev);
46 ndd->ns_current = -1;
47 ndd->ns_next = -1;
48 ndd->dpa.start = 0;
49 ndd->dpa.end = -1;
50 ndd->dev = dev;
51 get_device(dev);
52 kref_init(&ndd->kref);
55 * EACCES failures reading the namespace label-area-properties
56 * are interpreted as the DIMM capacity being locked but the
57 * namespace labels themselves being accessible.
59 rc = nvdimm_init_nsarea(ndd);
60 if (rc == -EACCES) {
62 * See nvdimm_namespace_common_probe() where we fail to
63 * allow namespaces to probe while the DIMM is locked,
64 * but we do allow for namespace enumeration.
66 nvdimm_set_locked(dev);
67 rc = 0;
69 if (rc)
70 goto err;
73 * EACCES failures reading the namespace label-data are
74 * interpreted as the label area being locked in addition to the
75 * DIMM capacity. We fail the dimm probe to prevent regions from
76 * attempting to parse the label area.
78 rc = nvdimm_init_config_data(ndd);
79 if (rc == -EACCES)
80 nvdimm_set_locked(dev);
81 if (rc)
82 goto err;
84 dev_dbg(dev, "config data size: %d\n", ndd->nsarea.config_size);
86 nvdimm_bus_lock(dev);
87 ndd->ns_current = nd_label_validate(ndd);
88 ndd->ns_next = nd_label_next_nsindex(ndd->ns_current);
89 nd_label_copy(ndd, to_next_namespace_index(ndd),
90 to_current_namespace_index(ndd));
91 if (ndd->ns_current >= 0) {
92 rc = nd_label_reserve_dpa(ndd);
93 if (rc == 0)
94 nvdimm_set_aliasing(dev);
96 nvdimm_bus_unlock(dev);
98 if (rc)
99 goto err;
101 return 0;
103 err:
104 put_ndd(ndd);
105 return rc;
108 static int nvdimm_remove(struct device *dev)
110 struct nvdimm_drvdata *ndd = dev_get_drvdata(dev);
112 if (!ndd)
113 return 0;
115 nvdimm_bus_lock(dev);
116 dev_set_drvdata(dev, NULL);
117 nvdimm_bus_unlock(dev);
118 put_ndd(ndd);
120 return 0;
123 static struct nd_device_driver nvdimm_driver = {
124 .probe = nvdimm_probe,
125 .remove = nvdimm_remove,
126 .drv = {
127 .name = "nvdimm",
129 .type = ND_DRIVER_DIMM,
132 int __init nvdimm_init(void)
134 return nd_driver_register(&nvdimm_driver);
137 void nvdimm_exit(void)
139 driver_unregister(&nvdimm_driver.drv);
142 MODULE_ALIAS_ND_DEVICE(ND_DEVICE_DIMM);