nfit.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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/workqueue.h>
  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. /* ACPI 6.1 */
  24. #define UUID_NFIT_BUS "2f10e7a4-9e91-11e4-89d3-123b93f75cba"
  25. /* http://pmem.io/documents/NVDIMM_DSM_Interface_Example.pdf */
  26. #define UUID_NFIT_DIMM "4309ac30-0d11-11e4-9191-0800200c9a66"
  27. /* https://github.com/HewlettPackard/hpe-nvm/blob/master/Documentation/ */
  28. #define UUID_NFIT_DIMM_N_HPE1 "9002c334-acf3-4c0e-9642-a235f0d53bc6"
  29. #define UUID_NFIT_DIMM_N_HPE2 "5008664b-b758-41a0-a03c-27c2f2d04f7e"
  30. #define ACPI_NFIT_MEM_FAILED_MASK (ACPI_NFIT_MEM_SAVE_FAILED \
  31. | ACPI_NFIT_MEM_RESTORE_FAILED | ACPI_NFIT_MEM_FLUSH_FAILED \
  32. | ACPI_NFIT_MEM_NOT_ARMED)
  33. enum nfit_uuids {
  34. /* for simplicity alias the uuid index with the family id */
  35. NFIT_DEV_DIMM = NVDIMM_FAMILY_INTEL,
  36. NFIT_DEV_DIMM_N_HPE1 = NVDIMM_FAMILY_HPE1,
  37. NFIT_DEV_DIMM_N_HPE2 = NVDIMM_FAMILY_HPE2,
  38. NFIT_SPA_VOLATILE,
  39. NFIT_SPA_PM,
  40. NFIT_SPA_DCR,
  41. NFIT_SPA_BDW,
  42. NFIT_SPA_VDISK,
  43. NFIT_SPA_VCD,
  44. NFIT_SPA_PDISK,
  45. NFIT_SPA_PCD,
  46. NFIT_DEV_BUS,
  47. NFIT_UUID_MAX,
  48. };
  49. /*
  50. * Region format interface codes are stored as an array of bytes in the
  51. * NFIT DIMM Control Region structure
  52. */
  53. #define NFIT_FIC_BYTE cpu_to_be16(0x101) /* byte-addressable energy backed */
  54. #define NFIT_FIC_BLK cpu_to_be16(0x201) /* block-addressable non-energy backed */
  55. #define NFIT_FIC_BYTEN cpu_to_be16(0x301) /* byte-addressable non-energy backed */
  56. enum {
  57. NFIT_BLK_READ_FLUSH = 1,
  58. NFIT_BLK_DCR_LATCH = 2,
  59. NFIT_ARS_STATUS_DONE = 0,
  60. NFIT_ARS_STATUS_BUSY = 1 << 16,
  61. NFIT_ARS_STATUS_NONE = 2 << 16,
  62. NFIT_ARS_STATUS_INTR = 3 << 16,
  63. NFIT_ARS_START_BUSY = 6,
  64. NFIT_ARS_CAP_NONE = 1,
  65. NFIT_ARS_F_OVERFLOW = 1,
  66. NFIT_ARS_TIMEOUT = 90,
  67. };
  68. struct nfit_spa {
  69. struct acpi_nfit_system_address *spa;
  70. struct list_head list;
  71. struct nd_region *nd_region;
  72. unsigned int ars_done:1;
  73. u32 clear_err_unit;
  74. u32 max_ars;
  75. };
  76. struct nfit_dcr {
  77. struct acpi_nfit_control_region *dcr;
  78. struct list_head list;
  79. };
  80. struct nfit_bdw {
  81. struct acpi_nfit_data_region *bdw;
  82. struct list_head list;
  83. };
  84. struct nfit_idt {
  85. struct acpi_nfit_interleave *idt;
  86. struct list_head list;
  87. };
  88. struct nfit_flush {
  89. struct acpi_nfit_flush_address *flush;
  90. struct list_head list;
  91. };
  92. struct nfit_memdev {
  93. struct acpi_nfit_memory_map *memdev;
  94. struct list_head list;
  95. };
  96. /* assembled tables for a given dimm/memory-device */
  97. struct nfit_mem {
  98. struct nvdimm *nvdimm;
  99. struct acpi_nfit_memory_map *memdev_dcr;
  100. struct acpi_nfit_memory_map *memdev_pmem;
  101. struct acpi_nfit_memory_map *memdev_bdw;
  102. struct acpi_nfit_control_region *dcr;
  103. struct acpi_nfit_data_region *bdw;
  104. struct acpi_nfit_system_address *spa_dcr;
  105. struct acpi_nfit_system_address *spa_bdw;
  106. struct acpi_nfit_interleave *idt_dcr;
  107. struct acpi_nfit_interleave *idt_bdw;
  108. struct nfit_flush *nfit_flush;
  109. struct list_head list;
  110. struct acpi_device *adev;
  111. struct acpi_nfit_desc *acpi_desc;
  112. unsigned long dsm_mask;
  113. int family;
  114. };
  115. struct acpi_nfit_desc {
  116. struct nvdimm_bus_descriptor nd_desc;
  117. struct acpi_table_header acpi_header;
  118. struct acpi_nfit_header *nfit;
  119. struct mutex spa_map_mutex;
  120. struct mutex init_mutex;
  121. struct list_head spa_maps;
  122. struct list_head memdevs;
  123. struct list_head flushes;
  124. struct list_head dimms;
  125. struct list_head spas;
  126. struct list_head dcrs;
  127. struct list_head bdws;
  128. struct list_head idts;
  129. struct nvdimm_bus *nvdimm_bus;
  130. struct device *dev;
  131. struct nd_cmd_ars_status *ars_status;
  132. size_t ars_status_size;
  133. struct work_struct work;
  134. unsigned int cancel:1;
  135. unsigned long dimm_cmd_force_en;
  136. unsigned long bus_cmd_force_en;
  137. int (*blk_do_io)(struct nd_blk_region *ndbr, resource_size_t dpa,
  138. void *iobuf, u64 len, int rw);
  139. };
  140. enum nd_blk_mmio_selector {
  141. BDW,
  142. DCR,
  143. };
  144. struct nd_blk_addr {
  145. union {
  146. void __iomem *base;
  147. void __pmem *aperture;
  148. };
  149. };
  150. struct nfit_blk {
  151. struct nfit_blk_mmio {
  152. struct nd_blk_addr addr;
  153. u64 size;
  154. u64 base_offset;
  155. u32 line_size;
  156. u32 num_lines;
  157. u32 table_size;
  158. struct acpi_nfit_interleave *idt;
  159. struct acpi_nfit_system_address *spa;
  160. } mmio[2];
  161. struct nd_region *nd_region;
  162. u64 bdw_offset; /* post interleave offset */
  163. u64 stat_offset;
  164. u64 cmd_offset;
  165. void __iomem *nvdimm_flush;
  166. u32 dimm_flags;
  167. };
  168. enum spa_map_type {
  169. SPA_MAP_CONTROL,
  170. SPA_MAP_APERTURE,
  171. };
  172. struct nfit_spa_mapping {
  173. struct acpi_nfit_desc *acpi_desc;
  174. struct acpi_nfit_system_address *spa;
  175. struct list_head list;
  176. struct kref kref;
  177. enum spa_map_type type;
  178. struct nd_blk_addr addr;
  179. };
  180. static inline struct nfit_spa_mapping *to_spa_map(struct kref *kref)
  181. {
  182. return container_of(kref, struct nfit_spa_mapping, kref);
  183. }
  184. static inline struct acpi_nfit_memory_map *__to_nfit_memdev(
  185. struct nfit_mem *nfit_mem)
  186. {
  187. if (nfit_mem->memdev_dcr)
  188. return nfit_mem->memdev_dcr;
  189. return nfit_mem->memdev_pmem;
  190. }
  191. static inline struct acpi_nfit_desc *to_acpi_desc(
  192. struct nvdimm_bus_descriptor *nd_desc)
  193. {
  194. return container_of(nd_desc, struct acpi_nfit_desc, nd_desc);
  195. }
  196. const u8 *to_nfit_uuid(enum nfit_uuids id);
  197. int acpi_nfit_init(struct acpi_nfit_desc *nfit, acpi_size sz);
  198. void acpi_nfit_desc_init(struct acpi_nfit_desc *acpi_desc, struct device *dev);
  199. #endif /* __NFIT_H__ */