blob: 79b6d83875c1de1aed4bc67e091a4d2e3aa88204 [file] [log] [blame]
Dan Williamsb94d5232015-05-19 22:54:31 -04001/*
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"
Dan Williams58138822015-06-23 20:08:34 -040025#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)
Dan Williamsb94d5232015-05-19 22:54:31 -040028
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
Ross Zwislerf0f2c072015-07-10 11:06:14 -060043enum {
44 ND_BLK_DCR_LATCH = 2,
45};
46
Dan Williamsb94d5232015-05-19 22:54:31 -040047struct nfit_spa {
48 struct acpi_nfit_system_address *spa;
49 struct list_head list;
50};
51
52struct nfit_dcr {
53 struct acpi_nfit_control_region *dcr;
54 struct list_head list;
55};
56
57struct nfit_bdw {
58 struct acpi_nfit_data_region *bdw;
59 struct list_head list;
60};
61
Ross Zwisler047fc8a2015-06-25 04:21:02 -040062struct nfit_idt {
63 struct acpi_nfit_interleave *idt;
64 struct list_head list;
65};
66
Ross Zwislerc2ad2952015-07-10 11:06:13 -060067struct nfit_flush {
68 struct acpi_nfit_flush_address *flush;
69 struct list_head list;
70};
71
Dan Williamsb94d5232015-05-19 22:54:31 -040072struct nfit_memdev {
73 struct acpi_nfit_memory_map *memdev;
74 struct list_head list;
75};
76
77/* assembled tables for a given dimm/memory-device */
78struct nfit_mem {
Dan Williamse6dfb2d2015-04-25 03:56:17 -040079 struct nvdimm *nvdimm;
Dan Williamsb94d5232015-05-19 22:54:31 -040080 struct acpi_nfit_memory_map *memdev_dcr;
81 struct acpi_nfit_memory_map *memdev_pmem;
Ross Zwisler047fc8a2015-06-25 04:21:02 -040082 struct acpi_nfit_memory_map *memdev_bdw;
Dan Williamsb94d5232015-05-19 22:54:31 -040083 struct acpi_nfit_control_region *dcr;
84 struct acpi_nfit_data_region *bdw;
85 struct acpi_nfit_system_address *spa_dcr;
86 struct acpi_nfit_system_address *spa_bdw;
Ross Zwisler047fc8a2015-06-25 04:21:02 -040087 struct acpi_nfit_interleave *idt_dcr;
88 struct acpi_nfit_interleave *idt_bdw;
Ross Zwislerc2ad2952015-07-10 11:06:13 -060089 struct nfit_flush *nfit_flush;
Dan Williamsb94d5232015-05-19 22:54:31 -040090 struct list_head list;
Dan Williams62232e452015-06-08 14:27:06 -040091 struct acpi_device *adev;
92 unsigned long dsm_mask;
Dan Williamsb94d5232015-05-19 22:54:31 -040093};
94
95struct acpi_nfit_desc {
96 struct nvdimm_bus_descriptor nd_desc;
97 struct acpi_table_nfit *nfit;
Ross Zwisler047fc8a2015-06-25 04:21:02 -040098 struct mutex spa_map_mutex;
99 struct list_head spa_maps;
Dan Williamsb94d5232015-05-19 22:54:31 -0400100 struct list_head memdevs;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600101 struct list_head flushes;
Dan Williamsb94d5232015-05-19 22:54:31 -0400102 struct list_head dimms;
103 struct list_head spas;
104 struct list_head dcrs;
105 struct list_head bdws;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400106 struct list_head idts;
Dan Williamsb94d5232015-05-19 22:54:31 -0400107 struct nvdimm_bus *nvdimm_bus;
108 struct device *dev;
Dan Williams62232e452015-06-08 14:27:06 -0400109 unsigned long dimm_dsm_force_en;
Dan Williams6bc75612015-06-17 17:23:32 -0400110 int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa,
111 void *iobuf, u64 len, int rw);
Dan Williamsb94d5232015-05-19 22:54:31 -0400112};
113
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400114enum nd_blk_mmio_selector {
115 BDW,
116 DCR,
117};
118
119struct nfit_blk {
120 struct nfit_blk_mmio {
121 union {
122 void __iomem *base;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600123 void __pmem *aperture;
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400124 };
125 u64 size;
126 u64 base_offset;
127 u32 line_size;
128 u32 num_lines;
129 u32 table_size;
130 struct acpi_nfit_interleave *idt;
131 struct acpi_nfit_system_address *spa;
132 } mmio[2];
133 struct nd_region *nd_region;
134 u64 bdw_offset; /* post interleave offset */
135 u64 stat_offset;
136 u64 cmd_offset;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600137 void __iomem *nvdimm_flush;
Ross Zwislerf0f2c072015-07-10 11:06:14 -0600138 u32 dimm_flags;
Ross Zwislerc2ad2952015-07-10 11:06:13 -0600139};
140
141enum spa_map_type {
142 SPA_MAP_CONTROL,
143 SPA_MAP_APERTURE,
Ross Zwisler047fc8a2015-06-25 04:21:02 -0400144};
145
146struct nfit_spa_mapping {
147 struct acpi_nfit_desc *acpi_desc;
148 struct acpi_nfit_system_address *spa;
149 struct list_head list;
150 struct kref kref;
151 void __iomem *iomem;
152};
153
154static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref)
155{
156 return container_of(kref, struct nfit_spa_mapping, kref);
157}
158
Dan Williamsb94d5232015-05-19 22:54:31 -0400159static inline struct acpi_nfit_memory_map *__to_nfit_memdev(
160 struct nfit_mem *nfit_mem)
161{
162 if (nfit_mem->memdev_dcr)
163 return nfit_mem->memdev_dcr;
164 return nfit_mem->memdev_pmem;
165}
Dan Williams45def222015-04-26 19:26:48 -0400166
167static inline struct acpi_nfit_desc *to_acpi_desc(
168 struct nvdimm_bus_descriptor *nd_desc)
169{
170 return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
171}
Dan Williams6bc75612015-06-17 17:23:32 -0400172
173const u8 *to_nfit_uuid(enum nfit_uuids id);
174int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz);
175extern const struct attribute_group *acpi_nfit_attribute_groups[];
Dan Williamsb94d5232015-05-19 22:54:31 -0400176#endif /* __NFIT_H__ */