nd_btt: atomic sector updates
[linux-2.6-block.git] / include / linux / libnvdimm.h
... / ...
CommitLineData
1/*
2 * libnvdimm - Non-volatile-memory Devices Subsystem
3 *
4 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 */
15#ifndef __LIBNVDIMM_H__
16#define __LIBNVDIMM_H__
17#include <linux/sizes.h>
18#include <linux/types.h>
19
20enum {
21 /* when a dimm supports both PMEM and BLK access a label is required */
22 NDD_ALIASING = 1 << 0,
23
24 /* need to set a limit somewhere, but yes, this is likely overkill */
25 ND_IOCTL_MAX_BUFLEN = SZ_4M,
26 ND_CMD_MAX_ELEM = 4,
27 ND_CMD_MAX_ENVELOPE = 16,
28 ND_CMD_ARS_STATUS_MAX = SZ_4K,
29 ND_MAX_MAPPINGS = 32,
30
31 /* mark newly adjusted resources as requiring a label update */
32 DPA_RESOURCE_ADJUSTED = 1 << 0,
33};
34
35extern struct attribute_group nvdimm_bus_attribute_group;
36extern struct attribute_group nvdimm_attribute_group;
37extern struct attribute_group nd_device_attribute_group;
38extern struct attribute_group nd_region_attribute_group;
39extern struct attribute_group nd_mapping_attribute_group;
40
41struct nvdimm;
42struct nvdimm_bus_descriptor;
43typedef int (*ndctl_fn)(struct nvdimm_bus_descriptor *nd_desc,
44 struct nvdimm *nvdimm, unsigned int cmd, void *buf,
45 unsigned int buf_len);
46
47struct nd_namespace_label;
48struct nvdimm_drvdata;
49struct nd_mapping {
50 struct nvdimm *nvdimm;
51 struct nd_namespace_label **labels;
52 u64 start;
53 u64 size;
54 /*
55 * @ndd is for private use at region enable / disable time for
56 * get_ndd() + put_ndd(), all other nd_mapping to ndd
57 * conversions use to_ndd() which respects enabled state of the
58 * nvdimm.
59 */
60 struct nvdimm_drvdata *ndd;
61};
62
63struct nvdimm_bus_descriptor {
64 const struct attribute_group **attr_groups;
65 unsigned long dsm_mask;
66 char *provider_name;
67 ndctl_fn ndctl;
68};
69
70struct nd_cmd_desc {
71 int in_num;
72 int out_num;
73 u32 in_sizes[ND_CMD_MAX_ELEM];
74 int out_sizes[ND_CMD_MAX_ELEM];
75};
76
77struct nd_interleave_set {
78 u64 cookie;
79};
80
81struct nd_region_desc {
82 struct resource *res;
83 struct nd_mapping *nd_mapping;
84 u16 num_mappings;
85 const struct attribute_group **attr_groups;
86 struct nd_interleave_set *nd_set;
87 void *provider_data;
88 int num_lanes;
89};
90
91struct nvdimm_bus;
92struct device;
93struct module;
94struct nvdimm_bus *__nvdimm_bus_register(struct device *parent,
95 struct nvdimm_bus_descriptor *nfit_desc, struct module *module);
96#define nvdimm_bus_register(parent, desc) \
97 __nvdimm_bus_register(parent, desc, THIS_MODULE)
98void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus);
99struct nvdimm_bus *to_nvdimm_bus(struct device *dev);
100struct nvdimm *to_nvdimm(struct device *dev);
101struct nd_region *to_nd_region(struct device *dev);
102struct nvdimm_bus_descriptor *to_nd_desc(struct nvdimm_bus *nvdimm_bus);
103const char *nvdimm_name(struct nvdimm *nvdimm);
104void *nvdimm_provider_data(struct nvdimm *nvdimm);
105void *nd_region_provider_data(struct nd_region *nd_region);
106struct nvdimm *nvdimm_create(struct nvdimm_bus *nvdimm_bus, void *provider_data,
107 const struct attribute_group **groups, unsigned long flags,
108 unsigned long *dsm_mask);
109const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd);
110const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd);
111u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
112 const struct nd_cmd_desc *desc, int idx, void *buf);
113u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
114 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
115 const u32 *out_field);
116int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count);
117struct nd_region *nvdimm_pmem_region_create(struct nvdimm_bus *nvdimm_bus,
118 struct nd_region_desc *ndr_desc);
119struct nd_region *nvdimm_blk_region_create(struct nvdimm_bus *nvdimm_bus,
120 struct nd_region_desc *ndr_desc);
121struct nd_region *nvdimm_volatile_region_create(struct nvdimm_bus *nvdimm_bus,
122 struct nd_region_desc *ndr_desc);
123u64 nd_fletcher64(void *addr, size_t len, bool le);
124#endif /* __LIBNVDIMM_H__ */