1 /* SPDX-License-Identifier: GPL-2.0-only */ 1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 2 /* 3 * Copyright(c) 2013-2015 Intel Corporation. A 3 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved. 4 */ 4 */ 5 #ifndef __LINUX_ND_H__ 5 #ifndef __LINUX_ND_H__ 6 #define __LINUX_ND_H__ 6 #define __LINUX_ND_H__ 7 #include <linux/fs.h> 7 #include <linux/fs.h> 8 #include <linux/ndctl.h> 8 #include <linux/ndctl.h> 9 #include <linux/device.h> 9 #include <linux/device.h> 10 #include <linux/badblocks.h> 10 #include <linux/badblocks.h> 11 #include <linux/perf_event.h> 11 #include <linux/perf_event.h> 12 12 13 enum nvdimm_event { 13 enum nvdimm_event { 14 NVDIMM_REVALIDATE_POISON, 14 NVDIMM_REVALIDATE_POISON, 15 NVDIMM_REVALIDATE_REGION, 15 NVDIMM_REVALIDATE_REGION, 16 }; 16 }; 17 17 18 enum nvdimm_claim_class { 18 enum nvdimm_claim_class { 19 NVDIMM_CCLASS_NONE, 19 NVDIMM_CCLASS_NONE, 20 NVDIMM_CCLASS_BTT, 20 NVDIMM_CCLASS_BTT, 21 NVDIMM_CCLASS_BTT2, 21 NVDIMM_CCLASS_BTT2, 22 NVDIMM_CCLASS_PFN, 22 NVDIMM_CCLASS_PFN, 23 NVDIMM_CCLASS_DAX, 23 NVDIMM_CCLASS_DAX, 24 NVDIMM_CCLASS_UNKNOWN, 24 NVDIMM_CCLASS_UNKNOWN, 25 }; 25 }; 26 26 27 #define NVDIMM_EVENT_VAR(_id) event_attr_##_i 27 #define NVDIMM_EVENT_VAR(_id) event_attr_##_id 28 #define NVDIMM_EVENT_PTR(_id) (&event_attr_## 28 #define NVDIMM_EVENT_PTR(_id) (&event_attr_##_id.attr.attr) 29 29 30 #define NVDIMM_EVENT_ATTR(_name, _id) 30 #define NVDIMM_EVENT_ATTR(_name, _id) \ 31 PMU_EVENT_ATTR(_name, NVDIMM_EVENT_VAR 31 PMU_EVENT_ATTR(_name, NVDIMM_EVENT_VAR(_id), _id, \ 32 nvdimm_events_sysfs_sh 32 nvdimm_events_sysfs_show) 33 33 34 /* Event attribute array index */ 34 /* Event attribute array index */ 35 #define NVDIMM_PMU_FORMAT_ATTR 0 35 #define NVDIMM_PMU_FORMAT_ATTR 0 36 #define NVDIMM_PMU_EVENT_ATTR 1 36 #define NVDIMM_PMU_EVENT_ATTR 1 37 #define NVDIMM_PMU_CPUMASK_ATTR 2 37 #define NVDIMM_PMU_CPUMASK_ATTR 2 38 #define NVDIMM_PMU_NULL_ATTR 3 38 #define NVDIMM_PMU_NULL_ATTR 3 39 39 40 /** 40 /** 41 * struct nvdimm_pmu - data structure for nvdi 41 * struct nvdimm_pmu - data structure for nvdimm perf driver 42 * @pmu: pmu data structure for nvdimm perform 42 * @pmu: pmu data structure for nvdimm performance stats. 43 * @dev: nvdimm device pointer. 43 * @dev: nvdimm device pointer. 44 * @cpu: designated cpu for counter access. 44 * @cpu: designated cpu for counter access. 45 * @node: node for cpu hotplug notifier link. 45 * @node: node for cpu hotplug notifier link. 46 * @cpuhp_state: state for cpu hotplug notific 46 * @cpuhp_state: state for cpu hotplug notification. 47 * @arch_cpumask: cpumask to get designated cp 47 * @arch_cpumask: cpumask to get designated cpu for counter access. 48 */ 48 */ 49 struct nvdimm_pmu { 49 struct nvdimm_pmu { 50 struct pmu pmu; 50 struct pmu pmu; 51 struct device *dev; 51 struct device *dev; 52 int cpu; 52 int cpu; 53 struct hlist_node node; 53 struct hlist_node node; 54 enum cpuhp_state cpuhp_state; 54 enum cpuhp_state cpuhp_state; 55 /* cpumask provided by arch/platform s 55 /* cpumask provided by arch/platform specific code */ 56 struct cpumask arch_cpumask; 56 struct cpumask arch_cpumask; 57 }; 57 }; 58 58 59 struct platform_device; 59 struct platform_device; 60 60 61 #ifdef CONFIG_PERF_EVENTS 61 #ifdef CONFIG_PERF_EVENTS 62 extern ssize_t nvdimm_events_sysfs_show(struct 62 extern ssize_t nvdimm_events_sysfs_show(struct device *dev, 63 struct 63 struct device_attribute *attr, 64 char * 64 char *page); 65 65 66 int register_nvdimm_pmu(struct nvdimm_pmu *nvd 66 int register_nvdimm_pmu(struct nvdimm_pmu *nvdimm, struct platform_device *pdev); 67 void unregister_nvdimm_pmu(struct nvdimm_pmu * 67 void unregister_nvdimm_pmu(struct nvdimm_pmu *nd_pmu); 68 68 69 #else 69 #else 70 static inline int register_nvdimm_pmu(struct n 70 static inline int register_nvdimm_pmu(struct nvdimm_pmu *nvdimm, struct platform_device *pdev) 71 { 71 { 72 return -ENXIO; 72 return -ENXIO; 73 } 73 } 74 74 75 static inline void unregister_nvdimm_pmu(struc 75 static inline void unregister_nvdimm_pmu(struct nvdimm_pmu *nd_pmu) { } 76 #endif 76 #endif 77 77 78 struct nd_device_driver { 78 struct nd_device_driver { 79 struct device_driver drv; 79 struct device_driver drv; 80 unsigned long type; 80 unsigned long type; 81 int (*probe)(struct device *dev); 81 int (*probe)(struct device *dev); 82 void (*remove)(struct device *dev); 82 void (*remove)(struct device *dev); 83 void (*shutdown)(struct device *dev); 83 void (*shutdown)(struct device *dev); 84 void (*notify)(struct device *dev, enu 84 void (*notify)(struct device *dev, enum nvdimm_event event); 85 }; 85 }; 86 86 87 #define to_nd_device_driver(__drv) contai 87 #define to_nd_device_driver(__drv) container_of_const(__drv, struct nd_device_driver, drv) 88 88 89 /** 89 /** 90 * struct nd_namespace_common - core infrastru 90 * struct nd_namespace_common - core infrastructure of a namespace 91 * @force_raw: ignore other personalities for 91 * @force_raw: ignore other personalities for the namespace (e.g. btt) 92 * @dev: device model node 92 * @dev: device model node 93 * @claim: when set a another personality has 93 * @claim: when set a another personality has taken ownership of the namespace 94 * @claim_class: restrict claim type to a give 94 * @claim_class: restrict claim type to a given class 95 * @rw_bytes: access the raw namespace capacit 95 * @rw_bytes: access the raw namespace capacity with byte-aligned transfers 96 */ 96 */ 97 struct nd_namespace_common { 97 struct nd_namespace_common { 98 int force_raw; 98 int force_raw; 99 struct device dev; 99 struct device dev; 100 struct device *claim; 100 struct device *claim; 101 enum nvdimm_claim_class claim_class; 101 enum nvdimm_claim_class claim_class; 102 int (*rw_bytes)(struct nd_namespace_co 102 int (*rw_bytes)(struct nd_namespace_common *, resource_size_t offset, 103 void *buf, size_t size 103 void *buf, size_t size, int rw, unsigned long flags); 104 }; 104 }; 105 105 106 static inline struct nd_namespace_common *to_n 106 static inline struct nd_namespace_common *to_ndns(struct device *dev) 107 { 107 { 108 return container_of(dev, struct nd_nam 108 return container_of(dev, struct nd_namespace_common, dev); 109 } 109 } 110 110 111 /** 111 /** 112 * struct nd_namespace_io - device representat 112 * struct nd_namespace_io - device representation of a persistent memory range 113 * @dev: namespace device created by the nd re 113 * @dev: namespace device created by the nd region driver 114 * @res: struct resource conversion of a NFIT 114 * @res: struct resource conversion of a NFIT SPA table 115 * @size: cached resource_size(@res) for fast 115 * @size: cached resource_size(@res) for fast path size checks 116 * @addr: virtual address to access the namesp 116 * @addr: virtual address to access the namespace range 117 * @bb: badblocks list for the namespace range 117 * @bb: badblocks list for the namespace range 118 */ 118 */ 119 struct nd_namespace_io { 119 struct nd_namespace_io { 120 struct nd_namespace_common common; 120 struct nd_namespace_common common; 121 struct resource res; 121 struct resource res; 122 resource_size_t size; 122 resource_size_t size; 123 void *addr; 123 void *addr; 124 struct badblocks bb; 124 struct badblocks bb; 125 }; 125 }; 126 126 127 /** 127 /** 128 * struct nd_namespace_pmem - namespace device 128 * struct nd_namespace_pmem - namespace device for dimm-backed interleaved memory 129 * @nsio: device and system physical address r 129 * @nsio: device and system physical address range to drive 130 * @lbasize: logical sector size for the names 130 * @lbasize: logical sector size for the namespace in block-device-mode 131 * @alt_name: namespace name supplied in the d 131 * @alt_name: namespace name supplied in the dimm label 132 * @uuid: namespace name supplied in the dimm 132 * @uuid: namespace name supplied in the dimm label 133 * @id: ida allocated id 133 * @id: ida allocated id 134 */ 134 */ 135 struct nd_namespace_pmem { 135 struct nd_namespace_pmem { 136 struct nd_namespace_io nsio; 136 struct nd_namespace_io nsio; 137 unsigned long lbasize; 137 unsigned long lbasize; 138 char *alt_name; 138 char *alt_name; 139 uuid_t *uuid; 139 uuid_t *uuid; 140 int id; 140 int id; 141 }; 141 }; 142 142 143 static inline struct nd_namespace_io *to_nd_na 143 static inline struct nd_namespace_io *to_nd_namespace_io(const struct device *dev) 144 { 144 { 145 return container_of(dev, struct nd_nam 145 return container_of(dev, struct nd_namespace_io, common.dev); 146 } 146 } 147 147 148 static inline struct nd_namespace_pmem *to_nd_ 148 static inline struct nd_namespace_pmem *to_nd_namespace_pmem(const struct device *dev) 149 { 149 { 150 struct nd_namespace_io *nsio = to_nd_n 150 struct nd_namespace_io *nsio = to_nd_namespace_io(dev); 151 151 152 return container_of(nsio, struct nd_na 152 return container_of(nsio, struct nd_namespace_pmem, nsio); 153 } 153 } 154 154 155 /** 155 /** 156 * nvdimm_read_bytes() - synchronously read by 156 * nvdimm_read_bytes() - synchronously read bytes from an nvdimm namespace 157 * @ndns: device to read 157 * @ndns: device to read 158 * @offset: namespace-relative starting offset 158 * @offset: namespace-relative starting offset 159 * @buf: buffer to fill 159 * @buf: buffer to fill 160 * @size: transfer length 160 * @size: transfer length 161 * 161 * 162 * @buf is up-to-date upon return from this ro 162 * @buf is up-to-date upon return from this routine. 163 */ 163 */ 164 static inline int nvdimm_read_bytes(struct nd_ 164 static inline int nvdimm_read_bytes(struct nd_namespace_common *ndns, 165 resource_size_t offset, void * 165 resource_size_t offset, void *buf, size_t size, 166 unsigned long flags) 166 unsigned long flags) 167 { 167 { 168 return ndns->rw_bytes(ndns, offset, bu 168 return ndns->rw_bytes(ndns, offset, buf, size, READ, flags); 169 } 169 } 170 170 171 /** 171 /** 172 * nvdimm_write_bytes() - synchronously write 172 * nvdimm_write_bytes() - synchronously write bytes to an nvdimm namespace 173 * @ndns: device to write 173 * @ndns: device to write 174 * @offset: namespace-relative starting offset 174 * @offset: namespace-relative starting offset 175 * @buf: buffer to drain 175 * @buf: buffer to drain 176 * @size: transfer length 176 * @size: transfer length 177 * 177 * 178 * NVDIMM Namepaces disks do not implement sec 178 * NVDIMM Namepaces disks do not implement sectors internally. Depending on 179 * the @ndns, the contents of @buf may be in c 179 * the @ndns, the contents of @buf may be in cpu cache, platform buffers, 180 * or on backing memory media upon return from 180 * or on backing memory media upon return from this routine. Flushing 181 * to media is handled internal to the @ndns d 181 * to media is handled internal to the @ndns driver, if at all. 182 */ 182 */ 183 static inline int nvdimm_write_bytes(struct nd 183 static inline int nvdimm_write_bytes(struct nd_namespace_common *ndns, 184 resource_size_t offset, void * 184 resource_size_t offset, void *buf, size_t size, 185 unsigned long flags) 185 unsigned long flags) 186 { 186 { 187 return ndns->rw_bytes(ndns, offset, bu 187 return ndns->rw_bytes(ndns, offset, buf, size, WRITE, flags); 188 } 188 } 189 189 190 #define MODULE_ALIAS_ND_DEVICE(type) \ 190 #define MODULE_ALIAS_ND_DEVICE(type) \ 191 MODULE_ALIAS("nd:t" __stringify(type) 191 MODULE_ALIAS("nd:t" __stringify(type) "*") 192 #define ND_DEVICE_MODALIAS_FMT "nd:t%d" 192 #define ND_DEVICE_MODALIAS_FMT "nd:t%d" 193 193 194 struct nd_region; 194 struct nd_region; 195 void nvdimm_region_notify(struct nd_region *nd 195 void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event); 196 int __must_check __nd_driver_register(struct n 196 int __must_check __nd_driver_register(struct nd_device_driver *nd_drv, 197 struct module *module, const c 197 struct module *module, const char *mod_name); 198 static inline void nd_driver_unregister(struct 198 static inline void nd_driver_unregister(struct nd_device_driver *drv) 199 { 199 { 200 driver_unregister(&drv->drv); 200 driver_unregister(&drv->drv); 201 } 201 } 202 #define nd_driver_register(driver) \ 202 #define nd_driver_register(driver) \ 203 __nd_driver_register(driver, THIS_MODU 203 __nd_driver_register(driver, THIS_MODULE, KBUILD_MODNAME) 204 #define module_nd_driver(driver) \ 204 #define module_nd_driver(driver) \ 205 module_driver(driver, nd_driver_regist 205 module_driver(driver, nd_driver_register, nd_driver_unregister) 206 #endif /* __LINUX_ND_H__ */ 206 #endif /* __LINUX_ND_H__ */ 207 207
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.