nfit.h 4.4 KB

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