nfit.h 5.0 KB

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