Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 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" |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 25 | #define ACPI_NFIT_MEM_FAILED_MASK (ACPI_NFIT_MEM_SAVE_FAILED \ |
| 26 | | ACPI_NFIT_MEM_RESTORE_FAILED | ACPI_NFIT_MEM_FLUSH_FAILED \ |
Bob Moore | ca321d1 | 2015-10-19 10:24:52 +0800 | [diff] [blame] | 27 | | ACPI_NFIT_MEM_NOT_ARMED) |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 28 | |
| 29 | enum 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 Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 43 | enum { |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 44 | ND_BLK_READ_FLUSH = 1, |
Ross Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 45 | ND_BLK_DCR_LATCH = 2, |
| 46 | }; |
| 47 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 48 | struct nfit_spa { |
| 49 | struct acpi_nfit_system_address *spa; |
| 50 | struct list_head list; |
Vishal Verma | 2098516 | 2015-10-27 16:58:27 -0600 | [diff] [blame] | 51 | int is_registered; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | struct nfit_dcr { |
| 55 | struct acpi_nfit_control_region *dcr; |
| 56 | struct list_head list; |
| 57 | }; |
| 58 | |
| 59 | struct nfit_bdw { |
| 60 | struct acpi_nfit_data_region *bdw; |
| 61 | struct list_head list; |
| 62 | }; |
| 63 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 64 | struct nfit_idt { |
| 65 | struct acpi_nfit_interleave *idt; |
| 66 | struct list_head list; |
| 67 | }; |
| 68 | |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 69 | struct nfit_flush { |
| 70 | struct acpi_nfit_flush_address *flush; |
| 71 | struct list_head list; |
| 72 | }; |
| 73 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 74 | struct 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 */ |
| 80 | struct nfit_mem { |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 81 | struct nvdimm *nvdimm; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 82 | struct acpi_nfit_memory_map *memdev_dcr; |
| 83 | struct acpi_nfit_memory_map *memdev_pmem; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 84 | struct acpi_nfit_memory_map *memdev_bdw; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 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; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 89 | struct acpi_nfit_interleave *idt_dcr; |
| 90 | struct acpi_nfit_interleave *idt_bdw; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 91 | struct nfit_flush *nfit_flush; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 92 | struct list_head list; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 93 | struct acpi_device *adev; |
| 94 | unsigned long dsm_mask; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | struct acpi_nfit_desc { |
| 98 | struct nvdimm_bus_descriptor nd_desc; |
| 99 | struct acpi_table_nfit *nfit; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 100 | struct mutex spa_map_mutex; |
Vishal Verma | 2098516 | 2015-10-27 16:58:27 -0600 | [diff] [blame] | 101 | struct mutex init_mutex; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 102 | struct list_head spa_maps; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 103 | struct list_head memdevs; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 104 | struct list_head flushes; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 105 | struct list_head dimms; |
| 106 | struct list_head spas; |
| 107 | struct list_head dcrs; |
| 108 | struct list_head bdws; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 109 | struct list_head idts; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 110 | struct nvdimm_bus *nvdimm_bus; |
| 111 | struct device *dev; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 112 | unsigned long dimm_dsm_force_en; |
Vishal Verma | 39c686b | 2015-07-09 13:25:36 -0600 | [diff] [blame] | 113 | unsigned long bus_dsm_force_en; |
Dan Williams | 6bc7561 | 2015-06-17 17:23:32 -0400 | [diff] [blame] | 114 | int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa, |
| 115 | void *iobuf, u64 len, int rw); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 116 | }; |
| 117 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 118 | enum nd_blk_mmio_selector { |
| 119 | BDW, |
| 120 | DCR, |
| 121 | }; |
| 122 | |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 123 | struct nd_blk_addr { |
| 124 | union { |
| 125 | void __iomem *base; |
| 126 | void __pmem *aperture; |
| 127 | }; |
| 128 | }; |
| 129 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 130 | struct nfit_blk { |
| 131 | struct nfit_blk_mmio { |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 132 | struct nd_blk_addr addr; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 133 | u64 size; |
| 134 | u64 base_offset; |
| 135 | u32 line_size; |
| 136 | u32 num_lines; |
| 137 | u32 table_size; |
| 138 | struct acpi_nfit_interleave *idt; |
| 139 | struct acpi_nfit_system_address *spa; |
| 140 | } mmio[2]; |
| 141 | struct nd_region *nd_region; |
| 142 | u64 bdw_offset; /* post interleave offset */ |
| 143 | u64 stat_offset; |
| 144 | u64 cmd_offset; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 145 | void __iomem *nvdimm_flush; |
Ross Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 146 | u32 dimm_flags; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | enum spa_map_type { |
| 150 | SPA_MAP_CONTROL, |
| 151 | SPA_MAP_APERTURE, |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | struct nfit_spa_mapping { |
| 155 | struct acpi_nfit_desc *acpi_desc; |
| 156 | struct acpi_nfit_system_address *spa; |
| 157 | struct list_head list; |
| 158 | struct kref kref; |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 159 | enum spa_map_type type; |
| 160 | struct nd_blk_addr addr; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 161 | }; |
| 162 | |
| 163 | static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref) |
| 164 | { |
| 165 | return container_of(kref, struct nfit_spa_mapping, kref); |
| 166 | } |
| 167 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 168 | static inline struct acpi_nfit_memory_map *__to_nfit_memdev( |
| 169 | struct nfit_mem *nfit_mem) |
| 170 | { |
| 171 | if (nfit_mem->memdev_dcr) |
| 172 | return nfit_mem->memdev_dcr; |
| 173 | return nfit_mem->memdev_pmem; |
| 174 | } |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 175 | |
| 176 | static inline struct acpi_nfit_desc *to_acpi_desc( |
| 177 | struct nvdimm_bus_descriptor *nd_desc) |
| 178 | { |
| 179 | return container_of(nd_desc, struct acpi_nfit_desc, nd_desc); |
| 180 | } |
Dan Williams | 6bc7561 | 2015-06-17 17:23:32 -0400 | [diff] [blame] | 181 | |
| 182 | const u8 *to_nfit_uuid(enum nfit_uuids id); |
| 183 | int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz); |
| 184 | extern const struct attribute_group *acpi_nfit_attribute_groups[]; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 185 | #endif /* __NFIT_H__ */ |