Merge remote-tracking branch 'linusw-gpio/for-next' into devm_gpiochip
[deliverable/linux.git] / drivers / acpi / nfit.h
CommitLineData
b94d5230
DW
1/*
2 * NVDIMM Firmware Interface Table - NFIT
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 __NFIT_H__
16#define __NFIT_H__
17#include <linux/libnvdimm.h>
18#include <linux/types.h>
19#include <linux/uuid.h>
20#include <linux/acpi.h>
21#include <acpi/acuuid.h>
22
23#define UUID_NFIT_BUS "2f10e7a4-9e91-11e4-89d3-123b93f75cba"
24#define UUID_NFIT_DIMM "4309ac30-0d11-11e4-9191-0800200c9a66"
58138820
DW
25#define ACPI_NFIT_MEM_FAILED_MASK (ACPI_NFIT_MEM_SAVE_FAILED \
26 | ACPI_NFIT_MEM_RESTORE_FAILED | ACPI_NFIT_MEM_FLUSH_FAILED \
ca321d1c 27 | ACPI_NFIT_MEM_NOT_ARMED)
b94d5230
DW
28
29enum nfit_uuids {
30 NFIT_SPA_VOLATILE,
31 NFIT_SPA_PM,
32 NFIT_SPA_DCR,
33 NFIT_SPA_BDW,
34 NFIT_SPA_VDISK,
35 NFIT_SPA_VCD,
36 NFIT_SPA_PDISK,
37 NFIT_SPA_PCD,
38 NFIT_DEV_BUS,
39 NFIT_DEV_DIMM,
40 NFIT_UUID_MAX,
41};
42
f0f2c072 43enum {
67a3e8fe 44 ND_BLK_READ_FLUSH = 1,
f0f2c072
RZ
45 ND_BLK_DCR_LATCH = 2,
46};
47
b94d5230
DW
48struct nfit_spa {
49 struct acpi_nfit_system_address *spa;
50 struct list_head list;
20985164 51 int is_registered;
b94d5230
DW
52};
53
54struct nfit_dcr {
55 struct acpi_nfit_control_region *dcr;
56 struct list_head list;
57};
58
59struct nfit_bdw {
60 struct acpi_nfit_data_region *bdw;
61 struct list_head list;
62};
63
047fc8a1
RZ
64struct nfit_idt {
65 struct acpi_nfit_interleave *idt;
66 struct list_head list;
67};
68
c2ad2954
RZ
69struct nfit_flush {
70 struct acpi_nfit_flush_address *flush;
71 struct list_head list;
72};
73
b94d5230
DW
74struct nfit_memdev {
75 struct acpi_nfit_memory_map *memdev;
76 struct list_head list;
77};
78
79/* assembled tables for a given dimm/memory-device */
80struct nfit_mem {
e6dfb2de 81 struct nvdimm *nvdimm;
b94d5230
DW
82 struct acpi_nfit_memory_map *memdev_dcr;
83 struct acpi_nfit_memory_map *memdev_pmem;
047fc8a1 84 struct acpi_nfit_memory_map *memdev_bdw;
b94d5230
DW
85 struct acpi_nfit_control_region *dcr;
86 struct acpi_nfit_data_region *bdw;
87 struct acpi_nfit_system_address *spa_dcr;
88 struct acpi_nfit_system_address *spa_bdw;
047fc8a1
RZ
89 struct acpi_nfit_interleave *idt_dcr;
90 struct acpi_nfit_interleave *idt_bdw;
c2ad2954 91 struct nfit_flush *nfit_flush;
b94d5230 92 struct list_head list;
62232e45
DW
93 struct acpi_device *adev;
94 unsigned long dsm_mask;
b94d5230
DW
95};
96
97struct acpi_nfit_desc {
98 struct nvdimm_bus_descriptor nd_desc;
6b577c9d
LK
99 struct acpi_table_header acpi_header;
100 struct acpi_nfit_header *nfit;
047fc8a1 101 struct mutex spa_map_mutex;
20985164 102 struct mutex init_mutex;
047fc8a1 103 struct list_head spa_maps;
b94d5230 104 struct list_head memdevs;
c2ad2954 105 struct list_head flushes;
b94d5230
DW
106 struct list_head dimms;
107 struct list_head spas;
108 struct list_head dcrs;
109 struct list_head bdws;
047fc8a1 110 struct list_head idts;
b94d5230
DW
111 struct nvdimm_bus *nvdimm_bus;
112 struct device *dev;
62232e45 113 unsigned long dimm_dsm_force_en;
39c686b8 114 unsigned long bus_dsm_force_en;
6bc75619
DW
115 int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa,
116 void *iobuf, u64 len, int rw);
b94d5230
DW
117};
118
047fc8a1
RZ
119enum nd_blk_mmio_selector {
120 BDW,
121 DCR,
122};
123
67a3e8fe
RZ
124struct nd_blk_addr {
125 union {
126 void __iomem *base;
127 void __pmem *aperture;
128 };
129};
130
047fc8a1
RZ
131struct nfit_blk {
132 struct nfit_blk_mmio {
67a3e8fe 133 struct nd_blk_addr addr;
047fc8a1
RZ
134 u64 size;
135 u64 base_offset;
136 u32 line_size;
137 u32 num_lines;
138 u32 table_size;
139 struct acpi_nfit_interleave *idt;
140 struct acpi_nfit_system_address *spa;
141 } mmio[2];
142 struct nd_region *nd_region;
143 u64 bdw_offset; /* post interleave offset */
144 u64 stat_offset;
145 u64 cmd_offset;
c2ad2954 146 void __iomem *nvdimm_flush;
f0f2c072 147 u32 dimm_flags;
c2ad2954
RZ
148};
149
150enum spa_map_type {
151 SPA_MAP_CONTROL,
152 SPA_MAP_APERTURE,
047fc8a1
RZ
153};
154
155struct nfit_spa_mapping {
156 struct acpi_nfit_desc *acpi_desc;
157 struct acpi_nfit_system_address *spa;
158 struct list_head list;
159 struct kref kref;
67a3e8fe
RZ
160 enum spa_map_type type;
161 struct nd_blk_addr addr;
047fc8a1
RZ
162};
163
164static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref)
165{
166 return container_of(kref, struct nfit_spa_mapping, kref);
167}
168
b94d5230
DW
169static inline struct acpi_nfit_memory_map *__to_nfit_memdev(
170 struct nfit_mem *nfit_mem)
171{
172 if (nfit_mem->memdev_dcr)
173 return nfit_mem->memdev_dcr;
174 return nfit_mem->memdev_pmem;
175}
45def22c
DW
176
177static inline struct acpi_nfit_desc *to_acpi_desc(
178 struct nvdimm_bus_descriptor *nd_desc)
179{
180 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
181}
6bc75619
DW
182
183const u8 *to_nfit_uuid(enum nfit_uuids id);
184int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz);
185extern const struct attribute_group *acpi_nfit_attribute_groups[];
b94d5230 186#endif /* __NFIT_H__ */
This page took 0.055542 seconds and 5 git commands to generate.