nfit: update block I/O path to use PMEM API
[linux-2.6-block.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 \
27 | ACPI_NFIT_MEM_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
43struct nfit_spa {
44 struct acpi_nfit_system_address *spa;
45 struct list_head list;
46};
47
48struct nfit_dcr {
49 struct acpi_nfit_control_region *dcr;
50 struct list_head list;
51};
52
53struct nfit_bdw {
54 struct acpi_nfit_data_region *bdw;
55 struct list_head list;
56};
57
047fc8a1
RZ
58struct nfit_idt {
59 struct acpi_nfit_interleave *idt;
60 struct list_head list;
61};
62
c2ad2954
RZ
63struct nfit_flush {
64 struct acpi_nfit_flush_address *flush;
65 struct list_head list;
66};
67
b94d5230
DW
68struct nfit_memdev {
69 struct acpi_nfit_memory_map *memdev;
70 struct list_head list;
71};
72
73/* assembled tables for a given dimm/memory-device */
74struct nfit_mem {
e6dfb2de 75 struct nvdimm *nvdimm;
b94d5230
DW
76 struct acpi_nfit_memory_map *memdev_dcr;
77 struct acpi_nfit_memory_map *memdev_pmem;
047fc8a1 78 struct acpi_nfit_memory_map *memdev_bdw;
b94d5230
DW
79 struct acpi_nfit_control_region *dcr;
80 struct acpi_nfit_data_region *bdw;
81 struct acpi_nfit_system_address *spa_dcr;
82 struct acpi_nfit_system_address *spa_bdw;
047fc8a1
RZ
83 struct acpi_nfit_interleave *idt_dcr;
84 struct acpi_nfit_interleave *idt_bdw;
c2ad2954 85 struct nfit_flush *nfit_flush;
b94d5230 86 struct list_head list;
62232e45
DW
87 struct acpi_device *adev;
88 unsigned long dsm_mask;
b94d5230
DW
89};
90
91struct acpi_nfit_desc {
92 struct nvdimm_bus_descriptor nd_desc;
93 struct acpi_table_nfit *nfit;
047fc8a1
RZ
94 struct mutex spa_map_mutex;
95 struct list_head spa_maps;
b94d5230 96 struct list_head memdevs;
c2ad2954 97 struct list_head flushes;
b94d5230
DW
98 struct list_head dimms;
99 struct list_head spas;
100 struct list_head dcrs;
101 struct list_head bdws;
047fc8a1 102 struct list_head idts;
b94d5230
DW
103 struct nvdimm_bus *nvdimm_bus;
104 struct device *dev;
62232e45 105 unsigned long dimm_dsm_force_en;
6bc75619
DW
106 int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa,
107 void *iobuf, u64 len, int rw);
b94d5230
DW
108};
109
047fc8a1
RZ
110enum nd_blk_mmio_selector {
111 BDW,
112 DCR,
113};
114
115struct nfit_blk {
116 struct nfit_blk_mmio {
117 union {
118 void __iomem *base;
c2ad2954 119 void __pmem *aperture;
047fc8a1
RZ
120 };
121 u64 size;
122 u64 base_offset;
123 u32 line_size;
124 u32 num_lines;
125 u32 table_size;
126 struct acpi_nfit_interleave *idt;
127 struct acpi_nfit_system_address *spa;
128 } mmio[2];
129 struct nd_region *nd_region;
130 u64 bdw_offset; /* post interleave offset */
131 u64 stat_offset;
132 u64 cmd_offset;
c2ad2954
RZ
133 void __iomem *nvdimm_flush;
134};
135
136enum spa_map_type {
137 SPA_MAP_CONTROL,
138 SPA_MAP_APERTURE,
047fc8a1
RZ
139};
140
141struct nfit_spa_mapping {
142 struct acpi_nfit_desc *acpi_desc;
143 struct acpi_nfit_system_address *spa;
144 struct list_head list;
145 struct kref kref;
146 void __iomem *iomem;
147};
148
149static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref)
150{
151 return container_of(kref, struct nfit_spa_mapping, kref);
152}
153
b94d5230
DW
154static inline struct acpi_nfit_memory_map *__to_nfit_memdev(
155 struct nfit_mem *nfit_mem)
156{
157 if (nfit_mem->memdev_dcr)
158 return nfit_mem->memdev_dcr;
159 return nfit_mem->memdev_pmem;
160}
45def22c
DW
161
162static inline struct acpi_nfit_desc *to_acpi_desc(
163 struct nvdimm_bus_descriptor *nd_desc)
164{
165 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
166}
6bc75619
DW
167
168const u8 *to_nfit_uuid(enum nfit_uuids id);
169int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz);
170extern const struct attribute_group *acpi_nfit_attribute_groups[];
b94d5230 171#endif /* __NFIT_H__ */