blob: c130972e08c42afa5832237d254991777653b2ba [file] [log] [blame]
Dan Williamsb94d5232015-05-19 22:54:31 -04001/*
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__
Dan Williams62232e452015-06-08 14:27:06 -040017#include <linux/sizes.h>
18#include <linux/types.h>
Dan Williamse6dfb2d2015-04-25 03:56:17 -040019
20enum {
21 /* when a dimm supports both PMEM and BLK access a label is required */
22 NDD_ALIASING = 1 << 0,
Dan Williams62232e452015-06-08 14:27:06 -040023
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,
Dan Williams1f7df6f2015-06-09 20:13:14 -040029 ND_MAX_MAPPINGS = 32,
Dan Williamse6dfb2d2015-04-25 03:56:17 -040030};
31
Dan Williams45def222015-04-26 19:26:48 -040032extern struct attribute_group nvdimm_bus_attribute_group;
Dan Williams62232e452015-06-08 14:27:06 -040033extern struct attribute_group nvdimm_attribute_group;
Dan Williams4d88a972015-05-31 14:41:48 -040034extern struct attribute_group nd_device_attribute_group;
Dan Williams1f7df6f2015-06-09 20:13:14 -040035extern struct attribute_group nd_region_attribute_group;
36extern struct attribute_group nd_mapping_attribute_group;
Dan Williams45def222015-04-26 19:26:48 -040037
Dan Williamsb94d5232015-05-19 22:54:31 -040038struct nvdimm;
39struct nvdimm_bus_descriptor;
40typedef int (*ndctl_fn)(struct nvdimm_bus_descriptor *nd_desc,
41 struct nvdimm *nvdimm, unsigned int cmd, void *buf,
42 unsigned int buf_len);
43
Dan Williamsbf9bccc2015-06-17 17:14:46 -040044struct nd_namespace_label;
45struct nvdimm_drvdata;
Dan Williams1f7df6f2015-06-09 20:13:14 -040046struct nd_mapping {
47 struct nvdimm *nvdimm;
Dan Williamsbf9bccc2015-06-17 17:14:46 -040048 struct nd_namespace_label **labels;
Dan Williams1f7df6f2015-06-09 20:13:14 -040049 u64 start;
50 u64 size;
Dan Williamsbf9bccc2015-06-17 17:14:46 -040051 /*
52 * @ndd is for private use at region enable / disable time for
53 * get_ndd() + put_ndd(), all other nd_mapping to ndd
54 * conversions use to_ndd() which respects enabled state of the
55 * nvdimm.
56 */
57 struct nvdimm_drvdata *ndd;
Dan Williams1f7df6f2015-06-09 20:13:14 -040058};
59
Dan Williamsb94d5232015-05-19 22:54:31 -040060struct nvdimm_bus_descriptor {
Dan Williams45def222015-04-26 19:26:48 -040061 const struct attribute_group **attr_groups;
Dan Williamsb94d5232015-05-19 22:54:31 -040062 unsigned long dsm_mask;
63 char *provider_name;
64 ndctl_fn ndctl;
65};
66
Dan Williams62232e452015-06-08 14:27:06 -040067struct nd_cmd_desc {
68 int in_num;
69 int out_num;
70 u32 in_sizes[ND_CMD_MAX_ELEM];
71 int out_sizes[ND_CMD_MAX_ELEM];
72};
73
Dan Williamseaf96152015-05-01 13:11:27 -040074struct nd_interleave_set {
75 u64 cookie;
76};
77
Dan Williams1f7df6f2015-06-09 20:13:14 -040078struct nd_region_desc {
79 struct resource *res;
80 struct nd_mapping *nd_mapping;
81 u16 num_mappings;
82 const struct attribute_group **attr_groups;
Dan Williamseaf96152015-05-01 13:11:27 -040083 struct nd_interleave_set *nd_set;
Dan Williams1f7df6f2015-06-09 20:13:14 -040084 void *provider_data;
85};
86
Dan Williams62232e452015-06-08 14:27:06 -040087struct nvdimm_bus;
Dan Williamsb94d5232015-05-19 22:54:31 -040088struct device;
Dan Williams3d880022015-05-31 15:02:11 -040089struct module;
90struct nvdimm_bus *__nvdimm_bus_register(struct device *parent,
91 struct nvdimm_bus_descriptor *nfit_desc, struct module *module);
92#define nvdimm_bus_register(parent, desc) \
93 __nvdimm_bus_register(parent, desc, THIS_MODULE)
Dan Williamsb94d5232015-05-19 22:54:31 -040094void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus);
Dan Williams45def222015-04-26 19:26:48 -040095struct nvdimm_bus *to_nvdimm_bus(struct device *dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -040096struct nvdimm *to_nvdimm(struct device *dev);
Dan Williams1f7df6f2015-06-09 20:13:14 -040097struct nd_region *to_nd_region(struct device *dev);
Dan Williams45def222015-04-26 19:26:48 -040098struct nvdimm_bus_descriptor *to_nd_desc(struct nvdimm_bus *nvdimm_bus);
Dan Williamse6dfb2d2015-04-25 03:56:17 -040099const char *nvdimm_name(struct nvdimm *nvdimm);
100void *nvdimm_provider_data(struct nvdimm *nvdimm);
Dan Williams1f7df6f2015-06-09 20:13:14 -0400101void *nd_region_provider_data(struct nd_region *nd_region);
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400102struct nvdimm *nvdimm_create(struct nvdimm_bus *nvdimm_bus, void *provider_data,
Dan Williams62232e452015-06-08 14:27:06 -0400103 const struct attribute_group **groups, unsigned long flags,
104 unsigned long *dsm_mask);
105const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd);
106const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd);
107u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
108 const struct nd_cmd_desc *desc, int idx, void *buf);
109u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
110 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
111 const u32 *out_field);
Dan Williams4d88a972015-05-31 14:41:48 -0400112int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count);
Dan Williams1f7df6f2015-06-09 20:13:14 -0400113struct nd_region *nvdimm_pmem_region_create(struct nvdimm_bus *nvdimm_bus,
114 struct nd_region_desc *ndr_desc);
115struct nd_region *nvdimm_blk_region_create(struct nvdimm_bus *nvdimm_bus,
116 struct nd_region_desc *ndr_desc);
117struct nd_region *nvdimm_volatile_region_create(struct nvdimm_bus *nvdimm_bus,
118 struct nd_region_desc *ndr_desc);
Dan Williamseaf96152015-05-01 13:11:27 -0400119u64 nd_fletcher64(void *addr, size_t len, bool le);
Dan Williamsb94d5232015-05-19 22:54:31 -0400120#endif /* __LIBNVDIMM_H__ */