blob: d13eccbb67e9c1e8c7931436587c218bd8b85f9b [file] [log] [blame]
Dan Williams4d88a972015-05-31 14:41:48 -04001/*
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_H__
14#define __ND_H__
Dan Williams1f7df6f2015-06-09 20:13:14 -040015#include <linux/libnvdimm.h>
Dan Williams4d88a972015-05-31 14:41:48 -040016#include <linux/device.h>
17#include <linux/mutex.h>
18#include <linux/ndctl.h>
Dan Williamsbf9bccc2015-06-17 17:14:46 -040019#include <linux/types.h>
Dan Williams4a826c82015-06-09 16:09:36 -040020#include "label.h"
Dan Williams4d88a972015-05-31 14:41:48 -040021
Dan Williams8c2f7e82015-06-25 04:20:04 -040022enum {
23 SECTOR_SHIFT = 9,
24};
25
Dan Williams4d88a972015-05-31 14:41:48 -040026struct nvdimm_drvdata {
27 struct device *dev;
Dan Williams4a826c82015-06-09 16:09:36 -040028 int nsindex_size;
Dan Williams4d88a972015-05-31 14:41:48 -040029 struct nd_cmd_get_config_size nsarea;
30 void *data;
Dan Williams4a826c82015-06-09 16:09:36 -040031 int ns_current, ns_next;
32 struct resource dpa;
Dan Williamsbf9bccc2015-06-17 17:14:46 -040033 struct kref kref;
Dan Williams4d88a972015-05-31 14:41:48 -040034};
35
Dan Williams3d880022015-05-31 15:02:11 -040036struct nd_region_namespaces {
37 int count;
38 int active;
39};
40
Dan Williams4a826c82015-06-09 16:09:36 -040041static inline struct nd_namespace_index *to_namespace_index(
42 struct nvdimm_drvdata *ndd, int i)
43{
44 if (i < 0)
45 return NULL;
46
47 return ndd->data + sizeof_namespace_index(ndd) * i;
48}
49
50static inline struct nd_namespace_index *to_current_namespace_index(
51 struct nvdimm_drvdata *ndd)
52{
53 return to_namespace_index(ndd, ndd->ns_current);
54}
55
56static inline struct nd_namespace_index *to_next_namespace_index(
57 struct nvdimm_drvdata *ndd)
58{
59 return to_namespace_index(ndd, ndd->ns_next);
60}
61
62#define nd_dbg_dpa(r, d, res, fmt, arg...) \
63 dev_dbg((r) ? &(r)->dev : (d)->dev, "%s: %.13s: %#llx @ %#llx " fmt, \
64 (r) ? dev_name((d)->dev) : "", res ? res->name : "null", \
65 (unsigned long long) (res ? resource_size(res) : 0), \
66 (unsigned long long) (res ? res->start : 0), ##arg)
67
Dan Williamsbf9bccc2015-06-17 17:14:46 -040068#define for_each_label(l, label, labels) \
69 for (l = 0; (label = labels ? labels[l] : NULL); l++)
70
71#define for_each_dpa_resource(ndd, res) \
72 for (res = (ndd)->dpa.child; res; res = res->sibling)
73
Dan Williams4a826c82015-06-09 16:09:36 -040074#define for_each_dpa_resource_safe(ndd, res, next) \
75 for (res = (ndd)->dpa.child, next = res ? res->sibling : NULL; \
76 res; res = next, next = next ? next->sibling : NULL)
77
Dan Williams1f7df6f2015-06-09 20:13:14 -040078struct nd_region {
79 struct device dev;
Dan Williams1b40e092015-05-01 13:34:01 -040080 struct ida ns_ida;
Dan Williams8c2f7e82015-06-25 04:20:04 -040081 struct ida btt_ida;
Dan Williamsbf9bccc2015-06-17 17:14:46 -040082 struct device *ns_seed;
Dan Williams8c2f7e82015-06-25 04:20:04 -040083 struct device *btt_seed;
Dan Williams1f7df6f2015-06-09 20:13:14 -040084 u16 ndr_mappings;
85 u64 ndr_size;
86 u64 ndr_start;
87 int id;
88 void *provider_data;
Dan Williamseaf96152015-05-01 13:11:27 -040089 struct nd_interleave_set *nd_set;
Dan Williams1f7df6f2015-06-09 20:13:14 -040090 struct nd_mapping mapping[0];
91};
92
Dan Williams4a826c82015-06-09 16:09:36 -040093/*
94 * Lookup next in the repeating sequence of 01, 10, and 11.
95 */
96static inline unsigned nd_inc_seq(unsigned seq)
97{
98 static const unsigned next[] = { 0, 2, 3, 1 };
99
100 return next[seq & 3];
101}
Dan Williamsf524bf22015-05-30 12:36:02 -0400102
Dan Williams8c2f7e82015-06-25 04:20:04 -0400103struct nd_btt {
104 struct device dev;
105 struct nd_namespace_common *ndns;
106 unsigned long lbasize;
107 u8 *uuid;
108 int id;
109};
110
Dan Williams4d88a972015-05-31 14:41:48 -0400111enum nd_async_mode {
112 ND_SYNC,
113 ND_ASYNC,
114};
115
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400116void wait_nvdimm_bus_probe_idle(struct device *dev);
Dan Williams4d88a972015-05-31 14:41:48 -0400117void nd_device_register(struct device *dev);
118void nd_device_unregister(struct device *dev, enum nd_async_mode mode);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400119int nd_uuid_store(struct device *dev, u8 **uuid_out, const char *buf,
120 size_t len);
Dan Williams1b40e092015-05-01 13:34:01 -0400121ssize_t nd_sector_size_show(unsigned long current_lbasize,
122 const unsigned long *supported, char *buf);
123ssize_t nd_sector_size_store(struct device *dev, const char *buf,
124 unsigned long *current_lbasize, const unsigned long *supported);
Dan Williams4d88a972015-05-31 14:41:48 -0400125int __init nvdimm_init(void);
Dan Williams3d880022015-05-31 15:02:11 -0400126int __init nd_region_init(void);
Dan Williams4d88a972015-05-31 14:41:48 -0400127void nvdimm_exit(void);
Dan Williams3d880022015-05-31 15:02:11 -0400128void nd_region_exit(void);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400129struct nvdimm;
130struct nvdimm_drvdata *to_ndd(struct nd_mapping *nd_mapping);
Dan Williams4d88a972015-05-31 14:41:48 -0400131int nvdimm_init_nsarea(struct nvdimm_drvdata *ndd);
132int nvdimm_init_config_data(struct nvdimm_drvdata *ndd);
Dan Williamsf524bf22015-05-30 12:36:02 -0400133int nvdimm_set_config_data(struct nvdimm_drvdata *ndd, size_t offset,
134 void *buf, size_t len);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400135struct nd_btt *to_nd_btt(struct device *dev);
136struct btt_sb;
137u64 nd_btt_sb_checksum(struct btt_sb *btt_sb);
138#if IS_ENABLED(CONFIG_BTT)
139int nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata);
140bool is_nd_btt(struct device *dev);
141struct device *nd_btt_create(struct nd_region *nd_region);
142#else
143static inline nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata)
144{
145 return -ENODEV;
146}
147
148static inline bool is_nd_btt(struct device *dev)
149{
150 return false;
151}
152
153static inline struct device *nd_btt_create(struct nd_region *nd_region)
154{
155 return NULL;
156}
157
158#endif
Dan Williams3d880022015-05-31 15:02:11 -0400159struct nd_region *to_nd_region(struct device *dev);
160int nd_region_to_nstype(struct nd_region *nd_region);
161int nd_region_register_namespaces(struct nd_region *nd_region, int *err);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400162u64 nd_region_interleave_set_cookie(struct nd_region *nd_region);
Dan Williams3d880022015-05-31 15:02:11 -0400163void nvdimm_bus_lock(struct device *dev);
164void nvdimm_bus_unlock(struct device *dev);
165bool is_nvdimm_bus_locked(struct device *dev);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400166void nvdimm_drvdata_release(struct kref *kref);
167void put_ndd(struct nvdimm_drvdata *ndd);
Dan Williams4a826c82015-06-09 16:09:36 -0400168int nd_label_reserve_dpa(struct nvdimm_drvdata *ndd);
169void nvdimm_free_dpa(struct nvdimm_drvdata *ndd, struct resource *res);
170struct resource *nvdimm_allocate_dpa(struct nvdimm_drvdata *ndd,
171 struct nd_label_id *label_id, resource_size_t start,
172 resource_size_t n);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400173resource_size_t nvdimm_namespace_capacity(struct nd_namespace_common *ndns);
174struct nd_namespace_common *nvdimm_namespace_common_probe(struct device *dev);
Dan Williams4d88a972015-05-31 14:41:48 -0400175#endif /* __ND_H__ */