cxlpci.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright(c) 2020 Intel Corporation. All rights reserved. */
  3. #ifndef __CXL_PCI_H__
  4. #define __CXL_PCI_H__
  5. #include <linux/pci.h>
  6. #include "cxl.h"
  7. #define CXL_MEMORY_PROGIF 0x10
  8. /*
  9. * See section 8.1 Configuration Space Registers in the CXL 2.0
  10. * Specification. Names are taken straight from the specification with "CXL" and
  11. * "DVSEC" redundancies removed. When obvious, abbreviations may be used.
  12. */
  13. #define PCI_DVSEC_HEADER1_LENGTH_MASK GENMASK(31, 20)
  14. #define PCI_DVSEC_VENDOR_ID_CXL 0x1E98
  15. /* CXL 2.0 8.1.3: PCIe DVSEC for CXL Device */
  16. #define CXL_DVSEC_PCIE_DEVICE 0
  17. #define CXL_DVSEC_CAP_OFFSET 0xA
  18. #define CXL_DVSEC_MEM_CAPABLE BIT(2)
  19. #define CXL_DVSEC_HDM_COUNT_MASK GENMASK(5, 4)
  20. #define CXL_DVSEC_CTRL_OFFSET 0xC
  21. #define CXL_DVSEC_MEM_ENABLE BIT(2)
  22. #define CXL_DVSEC_RANGE_SIZE_HIGH(i) (0x18 + (i * 0x10))
  23. #define CXL_DVSEC_RANGE_SIZE_LOW(i) (0x1C + (i * 0x10))
  24. #define CXL_DVSEC_MEM_INFO_VALID BIT(0)
  25. #define CXL_DVSEC_MEM_ACTIVE BIT(1)
  26. #define CXL_DVSEC_MEM_SIZE_LOW_MASK GENMASK(31, 28)
  27. #define CXL_DVSEC_RANGE_BASE_HIGH(i) (0x20 + (i * 0x10))
  28. #define CXL_DVSEC_RANGE_BASE_LOW(i) (0x24 + (i * 0x10))
  29. #define CXL_DVSEC_MEM_BASE_LOW_MASK GENMASK(31, 28)
  30. #define CXL_DVSEC_RANGE_MAX 2
  31. /* CXL 2.0 8.1.4: Non-CXL Function Map DVSEC */
  32. #define CXL_DVSEC_FUNCTION_MAP 2
  33. /* CXL 2.0 8.1.5: CXL 2.0 Extensions DVSEC for Ports */
  34. #define CXL_DVSEC_PORT_EXTENSIONS 3
  35. /* CXL 2.0 8.1.6: GPF DVSEC for CXL Port */
  36. #define CXL_DVSEC_PORT_GPF 4
  37. /* CXL 2.0 8.1.7: GPF DVSEC for CXL Device */
  38. #define CXL_DVSEC_DEVICE_GPF 5
  39. /* CXL 2.0 8.1.8: PCIe DVSEC for Flex Bus Port */
  40. #define CXL_DVSEC_PCIE_FLEXBUS_PORT 7
  41. /* CXL 2.0 8.1.9: Register Locator DVSEC */
  42. #define CXL_DVSEC_REG_LOCATOR 8
  43. #define CXL_DVSEC_REG_LOCATOR_BLOCK1_OFFSET 0xC
  44. #define CXL_DVSEC_REG_LOCATOR_BIR_MASK GENMASK(2, 0)
  45. #define CXL_DVSEC_REG_LOCATOR_BLOCK_ID_MASK GENMASK(15, 8)
  46. #define CXL_DVSEC_REG_LOCATOR_BLOCK_OFF_LOW_MASK GENMASK(31, 16)
  47. /* Register Block Identifier (RBI) */
  48. enum cxl_regloc_type {
  49. CXL_REGLOC_RBI_EMPTY = 0,
  50. CXL_REGLOC_RBI_COMPONENT,
  51. CXL_REGLOC_RBI_VIRT,
  52. CXL_REGLOC_RBI_MEMDEV,
  53. CXL_REGLOC_RBI_TYPES
  54. };
  55. static inline resource_size_t cxl_regmap_to_base(struct pci_dev *pdev,
  56. struct cxl_register_map *map)
  57. {
  58. if (map->block_offset == U64_MAX)
  59. return CXL_RESOURCE_NONE;
  60. return pci_resource_start(pdev, map->barno) + map->block_offset;
  61. }
  62. struct cdat_header {
  63. __le32 length;
  64. u8 revision;
  65. u8 checksum;
  66. u8 reserved[6];
  67. __le32 sequence;
  68. } __packed;
  69. struct cdat_entry_header {
  70. u8 type;
  71. u8 reserved;
  72. __le16 length;
  73. } __packed;
  74. int devm_cxl_port_enumerate_dports(struct cxl_port *port);
  75. struct cxl_dev_state;
  76. int cxl_hdm_decode_init(struct cxl_dev_state *cxlds, struct cxl_hdm *cxlhdm);
  77. void read_cdat_data(struct cxl_port *port);
  78. #endif /* __CXL_PCI_H__ */