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__ |
Dan Williams | 7ae0fa43 | 2016-02-19 12:16:34 -0800 | [diff] [blame] | 17 | #include <linux/workqueue.h> |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 18 | #include <linux/libnvdimm.h> |
| 19 | #include <linux/types.h> |
| 20 | #include <linux/uuid.h> |
| 21 | #include <linux/acpi.h> |
| 22 | #include <acpi/acuuid.h> |
| 23 | |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 24 | /* ACPI 6.1 */ |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 25 | #define UUID_NFIT_BUS "2f10e7a4-9e91-11e4-89d3-123b93f75cba" |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 26 | |
| 27 | /* http://pmem.io/documents/NVDIMM_DSM_Interface_Example.pdf */ |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 28 | #define UUID_NFIT_DIMM "4309ac30-0d11-11e4-9191-0800200c9a66" |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 29 | |
| 30 | /* https://github.com/HewlettPackard/hpe-nvm/blob/master/Documentation/ */ |
| 31 | #define UUID_NFIT_DIMM_N_HPE1 "9002c334-acf3-4c0e-9642-a235f0d53bc6" |
| 32 | #define UUID_NFIT_DIMM_N_HPE2 "5008664b-b758-41a0-a03c-27c2f2d04f7e" |
| 33 | |
Dan Williams | 5813882 | 2015-06-23 20:08:34 -0400 | [diff] [blame] | 34 | #define ACPI_NFIT_MEM_FAILED_MASK (ACPI_NFIT_MEM_SAVE_FAILED \ |
| 35 | | ACPI_NFIT_MEM_RESTORE_FAILED | ACPI_NFIT_MEM_FLUSH_FAILED \ |
Bob Moore | ca321d1 | 2015-10-19 10:24:52 +0800 | [diff] [blame] | 36 | | ACPI_NFIT_MEM_NOT_ARMED) |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 37 | |
| 38 | enum nfit_uuids { |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 39 | /* for simplicity alias the uuid index with the family id */ |
| 40 | NFIT_DEV_DIMM = NVDIMM_FAMILY_INTEL, |
| 41 | NFIT_DEV_DIMM_N_HPE1 = NVDIMM_FAMILY_HPE1, |
| 42 | NFIT_DEV_DIMM_N_HPE2 = NVDIMM_FAMILY_HPE2, |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 43 | NFIT_SPA_VOLATILE, |
| 44 | NFIT_SPA_PM, |
| 45 | NFIT_SPA_DCR, |
| 46 | NFIT_SPA_BDW, |
| 47 | NFIT_SPA_VDISK, |
| 48 | NFIT_SPA_VCD, |
| 49 | NFIT_SPA_PDISK, |
| 50 | NFIT_SPA_PCD, |
| 51 | NFIT_DEV_BUS, |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 52 | NFIT_UUID_MAX, |
| 53 | }; |
| 54 | |
Dan Williams | 30ec5fd | 2016-04-28 18:35:23 -0700 | [diff] [blame] | 55 | /* |
Dan Williams | 1bcbf42 | 2016-06-29 11:19:32 -0700 | [diff] [blame^] | 56 | * Region format interface codes are stored with the interface as the |
| 57 | * LSB and the function as the MSB. |
Dan Williams | 30ec5fd | 2016-04-28 18:35:23 -0700 | [diff] [blame] | 58 | */ |
Dan Williams | 1bcbf42 | 2016-06-29 11:19:32 -0700 | [diff] [blame^] | 59 | #define NFIT_FIC_BYTE cpu_to_le16(0x101) /* byte-addressable energy backed */ |
| 60 | #define NFIT_FIC_BLK cpu_to_le16(0x201) /* block-addressable non-energy backed */ |
| 61 | #define NFIT_FIC_BYTEN cpu_to_le16(0x301) /* byte-addressable non-energy backed */ |
Dan Williams | be26f9a | 2016-02-01 17:48:42 -0800 | [diff] [blame] | 62 | |
Ross Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 63 | enum { |
Dan Williams | aef2533 | 2016-02-12 17:01:11 -0800 | [diff] [blame] | 64 | NFIT_BLK_READ_FLUSH = 1, |
| 65 | NFIT_BLK_DCR_LATCH = 2, |
| 66 | NFIT_ARS_STATUS_DONE = 0, |
| 67 | NFIT_ARS_STATUS_BUSY = 1 << 16, |
| 68 | NFIT_ARS_STATUS_NONE = 2 << 16, |
| 69 | NFIT_ARS_STATUS_INTR = 3 << 16, |
| 70 | NFIT_ARS_START_BUSY = 6, |
| 71 | NFIT_ARS_CAP_NONE = 1, |
| 72 | NFIT_ARS_F_OVERFLOW = 1, |
Dan Williams | 1cf03c0 | 2016-02-17 13:01:23 -0800 | [diff] [blame] | 73 | NFIT_ARS_TIMEOUT = 90, |
Ross Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 74 | }; |
| 75 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 76 | struct nfit_spa { |
| 77 | struct acpi_nfit_system_address *spa; |
| 78 | struct list_head list; |
Dan Williams | 1cf03c0 | 2016-02-17 13:01:23 -0800 | [diff] [blame] | 79 | struct nd_region *nd_region; |
| 80 | unsigned int ars_done:1; |
| 81 | u32 clear_err_unit; |
| 82 | u32 max_ars; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | struct nfit_dcr { |
| 86 | struct acpi_nfit_control_region *dcr; |
| 87 | struct list_head list; |
| 88 | }; |
| 89 | |
| 90 | struct nfit_bdw { |
| 91 | struct acpi_nfit_data_region *bdw; |
| 92 | struct list_head list; |
| 93 | }; |
| 94 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 95 | struct nfit_idt { |
| 96 | struct acpi_nfit_interleave *idt; |
| 97 | struct list_head list; |
| 98 | }; |
| 99 | |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 100 | struct nfit_flush { |
| 101 | struct acpi_nfit_flush_address *flush; |
| 102 | struct list_head list; |
| 103 | }; |
| 104 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 105 | struct nfit_memdev { |
| 106 | struct acpi_nfit_memory_map *memdev; |
| 107 | struct list_head list; |
| 108 | }; |
| 109 | |
| 110 | /* assembled tables for a given dimm/memory-device */ |
| 111 | struct nfit_mem { |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 112 | struct nvdimm *nvdimm; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 113 | struct acpi_nfit_memory_map *memdev_dcr; |
| 114 | struct acpi_nfit_memory_map *memdev_pmem; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 115 | struct acpi_nfit_memory_map *memdev_bdw; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 116 | struct acpi_nfit_control_region *dcr; |
| 117 | struct acpi_nfit_data_region *bdw; |
| 118 | struct acpi_nfit_system_address *spa_dcr; |
| 119 | struct acpi_nfit_system_address *spa_bdw; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 120 | struct acpi_nfit_interleave *idt_dcr; |
| 121 | struct acpi_nfit_interleave *idt_bdw; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 122 | struct nfit_flush *nfit_flush; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 123 | struct list_head list; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 124 | struct acpi_device *adev; |
Dan Williams | 8cc6ddf | 2016-04-05 15:26:50 -0700 | [diff] [blame] | 125 | struct acpi_nfit_desc *acpi_desc; |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 126 | unsigned long dsm_mask; |
Dan Williams | 31eca76 | 2016-04-28 16:23:43 -0700 | [diff] [blame] | 127 | int family; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct acpi_nfit_desc { |
| 131 | struct nvdimm_bus_descriptor nd_desc; |
Linda Knippers | 6b577c9 | 2015-11-20 19:05:49 -0500 | [diff] [blame] | 132 | struct acpi_table_header acpi_header; |
| 133 | struct acpi_nfit_header *nfit; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 134 | struct mutex spa_map_mutex; |
Vishal Verma | 2098516 | 2015-10-27 16:58:27 -0600 | [diff] [blame] | 135 | struct mutex init_mutex; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 136 | struct list_head spa_maps; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 137 | struct list_head memdevs; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 138 | struct list_head flushes; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 139 | struct list_head dimms; |
| 140 | struct list_head spas; |
| 141 | struct list_head dcrs; |
| 142 | struct list_head bdws; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 143 | struct list_head idts; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 144 | struct nvdimm_bus *nvdimm_bus; |
| 145 | struct device *dev; |
Dan Williams | 1cf03c0 | 2016-02-17 13:01:23 -0800 | [diff] [blame] | 146 | struct nd_cmd_ars_status *ars_status; |
| 147 | size_t ars_status_size; |
Dan Williams | 7ae0fa43 | 2016-02-19 12:16:34 -0800 | [diff] [blame] | 148 | struct work_struct work; |
| 149 | unsigned int cancel:1; |
Dan Williams | e3654ec | 2016-04-28 16:17:07 -0700 | [diff] [blame] | 150 | unsigned long dimm_cmd_force_en; |
| 151 | unsigned long bus_cmd_force_en; |
Dan Williams | 6bc7561 | 2015-06-17 17:23:32 -0400 | [diff] [blame] | 152 | int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa, |
| 153 | void *iobuf, u64 len, int rw); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 154 | }; |
| 155 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 156 | enum nd_blk_mmio_selector { |
| 157 | BDW, |
| 158 | DCR, |
| 159 | }; |
| 160 | |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 161 | struct nd_blk_addr { |
| 162 | union { |
| 163 | void __iomem *base; |
| 164 | void __pmem *aperture; |
| 165 | }; |
| 166 | }; |
| 167 | |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 168 | struct nfit_blk { |
| 169 | struct nfit_blk_mmio { |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 170 | struct nd_blk_addr addr; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 171 | u64 size; |
| 172 | u64 base_offset; |
| 173 | u32 line_size; |
| 174 | u32 num_lines; |
| 175 | u32 table_size; |
| 176 | struct acpi_nfit_interleave *idt; |
| 177 | struct acpi_nfit_system_address *spa; |
| 178 | } mmio[2]; |
| 179 | struct nd_region *nd_region; |
| 180 | u64 bdw_offset; /* post interleave offset */ |
| 181 | u64 stat_offset; |
| 182 | u64 cmd_offset; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 183 | void __iomem *nvdimm_flush; |
Ross Zwisler | f0f2c07 | 2015-07-10 11:06:14 -0600 | [diff] [blame] | 184 | u32 dimm_flags; |
Ross Zwisler | c2ad295 | 2015-07-10 11:06:13 -0600 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | enum spa_map_type { |
| 188 | SPA_MAP_CONTROL, |
| 189 | SPA_MAP_APERTURE, |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 190 | }; |
| 191 | |
| 192 | struct nfit_spa_mapping { |
| 193 | struct acpi_nfit_desc *acpi_desc; |
| 194 | struct acpi_nfit_system_address *spa; |
| 195 | struct list_head list; |
| 196 | struct kref kref; |
Ross Zwisler | 67a3e8f | 2015-08-27 13:14:20 -0600 | [diff] [blame] | 197 | enum spa_map_type type; |
| 198 | struct nd_blk_addr addr; |
Ross Zwisler | 047fc8a | 2015-06-25 04:21:02 -0400 | [diff] [blame] | 199 | }; |
| 200 | |
| 201 | static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref) |
| 202 | { |
| 203 | return container_of(kref, struct nfit_spa_mapping, kref); |
| 204 | } |
| 205 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 206 | static inline struct acpi_nfit_memory_map *__to_nfit_memdev( |
| 207 | struct nfit_mem *nfit_mem) |
| 208 | { |
| 209 | if (nfit_mem->memdev_dcr) |
| 210 | return nfit_mem->memdev_dcr; |
| 211 | return nfit_mem->memdev_pmem; |
| 212 | } |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 213 | |
| 214 | static inline struct acpi_nfit_desc *to_acpi_desc( |
| 215 | struct nvdimm_bus_descriptor *nd_desc) |
| 216 | { |
| 217 | return container_of(nd_desc, struct acpi_nfit_desc, nd_desc); |
| 218 | } |
Dan Williams | 6bc7561 | 2015-06-17 17:23:32 -0400 | [diff] [blame] | 219 | |
| 220 | const u8 *to_nfit_uuid(enum nfit_uuids id); |
| 221 | int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz); |
Dan Williams | a61fe6f | 2016-02-19 12:29:32 -0800 | [diff] [blame] | 222 | void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 223 | #endif /* __NFIT_H__ */ |