blob: 39e7e606092abbcb7c06aa64e6fafee869313bed [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 Williams1f7df6f2015-06-09 20:13:14 -040044struct nd_mapping {
45 struct nvdimm *nvdimm;
46 u64 start;
47 u64 size;
48};
49
Dan Williamsb94d5232015-05-19 22:54:31 -040050struct nvdimm_bus_descriptor {
Dan Williams45def222015-04-26 19:26:48 -040051 const struct attribute_group **attr_groups;
Dan Williamsb94d5232015-05-19 22:54:31 -040052 unsigned long dsm_mask;
53 char *provider_name;
54 ndctl_fn ndctl;
55};
56
Dan Williams62232e452015-06-08 14:27:06 -040057struct nd_cmd_desc {
58 int in_num;
59 int out_num;
60 u32 in_sizes[ND_CMD_MAX_ELEM];
61 int out_sizes[ND_CMD_MAX_ELEM];
62};
63
Dan Williams1f7df6f2015-06-09 20:13:14 -040064struct nd_region_desc {
65 struct resource *res;
66 struct nd_mapping *nd_mapping;
67 u16 num_mappings;
68 const struct attribute_group **attr_groups;
69 void *provider_data;
70};
71
Dan Williams62232e452015-06-08 14:27:06 -040072struct nvdimm_bus;
Dan Williamsb94d5232015-05-19 22:54:31 -040073struct device;
Dan Williamsb94d5232015-05-19 22:54:31 -040074struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
75 struct nvdimm_bus_descriptor *nfit_desc);
76void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus);
Dan Williams45def222015-04-26 19:26:48 -040077struct nvdimm_bus *to_nvdimm_bus(struct device *dev);
Dan Williamse6dfb2d2015-04-25 03:56:17 -040078struct nvdimm *to_nvdimm(struct device *dev);
Dan Williams1f7df6f2015-06-09 20:13:14 -040079struct nd_region *to_nd_region(struct device *dev);
Dan Williams45def222015-04-26 19:26:48 -040080struct nvdimm_bus_descriptor *to_nd_desc(struct nvdimm_bus *nvdimm_bus);
Dan Williamse6dfb2d2015-04-25 03:56:17 -040081const char *nvdimm_name(struct nvdimm *nvdimm);
82void *nvdimm_provider_data(struct nvdimm *nvdimm);
Dan Williams1f7df6f2015-06-09 20:13:14 -040083void *nd_region_provider_data(struct nd_region *nd_region);
Dan Williamse6dfb2d2015-04-25 03:56:17 -040084struct nvdimm *nvdimm_create(struct nvdimm_bus *nvdimm_bus, void *provider_data,
Dan Williams62232e452015-06-08 14:27:06 -040085 const struct attribute_group **groups, unsigned long flags,
86 unsigned long *dsm_mask);
87const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd);
88const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd);
89u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
90 const struct nd_cmd_desc *desc, int idx, void *buf);
91u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
92 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
93 const u32 *out_field);
Dan Williams4d88a972015-05-31 14:41:48 -040094int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count);
Dan Williams1f7df6f2015-06-09 20:13:14 -040095struct nd_region *nvdimm_pmem_region_create(struct nvdimm_bus *nvdimm_bus,
96 struct nd_region_desc *ndr_desc);
97struct nd_region *nvdimm_blk_region_create(struct nvdimm_bus *nvdimm_bus,
98 struct nd_region_desc *ndr_desc);
99struct nd_region *nvdimm_volatile_region_create(struct nvdimm_bus *nvdimm_bus,
100 struct nd_region_desc *ndr_desc);
Dan Williamsb94d5232015-05-19 22:54:31 -0400101#endif /* __LIBNVDIMM_H__ */