acpi/nfit, libnvdimm: Add disable passphrase support to Intel nvdimm.
[linux-2.6-microblaze.git] / drivers / nvdimm / nd-core.h
1 /*
2  * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
3  *
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.
7  *
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.
12  */
13 #ifndef __ND_CORE_H__
14 #define __ND_CORE_H__
15 #include <linux/libnvdimm.h>
16 #include <linux/device.h>
17 #include <linux/sizes.h>
18 #include <linux/mutex.h>
19 #include <linux/nd.h>
20
21 extern struct list_head nvdimm_bus_list;
22 extern struct mutex nvdimm_bus_list_mutex;
23 extern int nvdimm_major;
24
25 struct nvdimm_bus {
26         struct nvdimm_bus_descriptor *nd_desc;
27         wait_queue_head_t probe_wait;
28         struct list_head list;
29         struct device dev;
30         int id, probe_active;
31         struct list_head mapping_list;
32         struct mutex reconfig_mutex;
33         struct badrange badrange;
34 };
35
36 struct nvdimm {
37         unsigned long flags;
38         void *provider_data;
39         unsigned long cmd_mask;
40         struct device dev;
41         atomic_t busy;
42         int id, num_flush;
43         struct resource *flush_wpq;
44         const char *dimm_id;
45         struct {
46                 const struct nvdimm_security_ops *ops;
47                 enum nvdimm_security_state state;
48         } sec;
49 };
50
51 static inline enum nvdimm_security_state nvdimm_security_state(
52                 struct nvdimm *nvdimm)
53 {
54         if (!nvdimm->sec.ops)
55                 return -ENXIO;
56
57         return nvdimm->sec.ops->state(nvdimm);
58 }
59 int nvdimm_security_freeze(struct nvdimm *nvdimm);
60 #if IS_ENABLED(CONFIG_NVDIMM_KEYS)
61 int nvdimm_security_disable(struct nvdimm *nvdimm, unsigned int keyid);
62 #else
63 static inline int nvdimm_security_disable(struct nvdimm *nvdimm,
64                 unsigned int keyid)
65 {
66         return -EOPNOTSUPP;
67 }
68 #endif
69
70 /**
71  * struct blk_alloc_info - tracking info for BLK dpa scanning
72  * @nd_mapping: blk region mapping boundaries
73  * @available: decremented in alias_dpa_busy as aliased PMEM is scanned
74  * @busy: decremented in blk_dpa_busy to account for ranges already
75  *        handled by alias_dpa_busy
76  * @res: alias_dpa_busy interprets this a free space range that needs to
77  *       be truncated to the valid BLK allocation starting DPA, blk_dpa_busy
78  *       treats it as a busy range that needs the aliased PMEM ranges
79  *       truncated.
80  */
81 struct blk_alloc_info {
82         struct nd_mapping *nd_mapping;
83         resource_size_t available, busy;
84         struct resource *res;
85 };
86
87 bool is_nvdimm(struct device *dev);
88 bool is_nd_pmem(struct device *dev);
89 bool is_nd_volatile(struct device *dev);
90 bool is_nd_blk(struct device *dev);
91 static inline bool is_nd_region(struct device *dev)
92 {
93         return is_nd_pmem(dev) || is_nd_blk(dev) || is_nd_volatile(dev);
94 }
95 static inline bool is_memory(struct device *dev)
96 {
97         return is_nd_pmem(dev) || is_nd_volatile(dev);
98 }
99 struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev);
100 int __init nvdimm_bus_init(void);
101 void nvdimm_bus_exit(void);
102 void nvdimm_devs_exit(void);
103 void nd_region_devs_exit(void);
104 void nd_region_probe_success(struct nvdimm_bus *nvdimm_bus, struct device *dev);
105 struct nd_region;
106 void nd_region_create_ns_seed(struct nd_region *nd_region);
107 void nd_region_create_btt_seed(struct nd_region *nd_region);
108 void nd_region_create_pfn_seed(struct nd_region *nd_region);
109 void nd_region_create_dax_seed(struct nd_region *nd_region);
110 void nd_region_disable(struct nvdimm_bus *nvdimm_bus, struct device *dev);
111 int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus);
112 void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus);
113 void nd_synchronize(void);
114 int nvdimm_bus_register_dimms(struct nvdimm_bus *nvdimm_bus);
115 int nvdimm_bus_register_regions(struct nvdimm_bus *nvdimm_bus);
116 int nvdimm_bus_init_interleave_sets(struct nvdimm_bus *nvdimm_bus);
117 void __nd_device_register(struct device *dev);
118 int nd_match_dimm(struct device *dev, void *data);
119 struct nd_label_id;
120 char *nd_label_gen_id(struct nd_label_id *label_id, u8 *uuid, u32 flags);
121 bool nd_is_uuid_unique(struct device *dev, u8 *uuid);
122 struct nd_region;
123 struct nvdimm_drvdata;
124 struct nd_mapping;
125 void nd_mapping_free_labels(struct nd_mapping *nd_mapping);
126
127 int __reserve_free_pmem(struct device *dev, void *data);
128 void release_free_pmem(struct nvdimm_bus *nvdimm_bus,
129                        struct nd_mapping *nd_mapping);
130
131 resource_size_t nd_pmem_max_contiguous_dpa(struct nd_region *nd_region,
132                                            struct nd_mapping *nd_mapping);
133 resource_size_t nd_region_allocatable_dpa(struct nd_region *nd_region);
134 resource_size_t nd_pmem_available_dpa(struct nd_region *nd_region,
135                 struct nd_mapping *nd_mapping, resource_size_t *overlap);
136 resource_size_t nd_blk_available_dpa(struct nd_region *nd_region);
137 resource_size_t nd_region_available_dpa(struct nd_region *nd_region);
138 resource_size_t nvdimm_allocated_dpa(struct nvdimm_drvdata *ndd,
139                 struct nd_label_id *label_id);
140 int alias_dpa_busy(struct device *dev, void *data);
141 struct resource *nsblk_add_resource(struct nd_region *nd_region,
142                 struct nvdimm_drvdata *ndd, struct nd_namespace_blk *nsblk,
143                 resource_size_t start);
144 int nvdimm_num_label_slots(struct nvdimm_drvdata *ndd);
145 void get_ndd(struct nvdimm_drvdata *ndd);
146 resource_size_t __nvdimm_namespace_capacity(struct nd_namespace_common *ndns);
147 void nd_detach_ndns(struct device *dev, struct nd_namespace_common **_ndns);
148 void __nd_detach_ndns(struct device *dev, struct nd_namespace_common **_ndns);
149 bool nd_attach_ndns(struct device *dev, struct nd_namespace_common *attach,
150                 struct nd_namespace_common **_ndns);
151 bool __nd_attach_ndns(struct device *dev, struct nd_namespace_common *attach,
152                 struct nd_namespace_common **_ndns);
153 ssize_t nd_namespace_store(struct device *dev,
154                 struct nd_namespace_common **_ndns, const char *buf,
155                 size_t len);
156 struct nd_pfn *to_nd_pfn_safe(struct device *dev);
157 #endif /* __ND_CORE_H__ */