pcie_layerscape.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Copyright 2014-2015 Freescale Semiconductor, Inc.
  3. * Layerscape PCIe driver
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _PCIE_LAYERSCAPE_H_
  8. #define _PCIE_LAYERSCAPE_H_
  9. #include <pci.h>
  10. #include <dm.h>
  11. #ifndef CONFIG_SYS_PCI_MEMORY_BUS
  12. #define CONFIG_SYS_PCI_MEMORY_BUS CONFIG_SYS_SDRAM_BASE
  13. #endif
  14. #ifndef CONFIG_SYS_PCI_MEMORY_PHYS
  15. #define CONFIG_SYS_PCI_MEMORY_PHYS CONFIG_SYS_SDRAM_BASE
  16. #endif
  17. #ifndef CONFIG_SYS_PCI_MEMORY_SIZE
  18. #define CONFIG_SYS_PCI_MEMORY_SIZE (2 * 1024 * 1024 * 1024UL) /* 2G */
  19. #endif
  20. #ifndef CONFIG_SYS_PCI_EP_MEMORY_BASE
  21. #define CONFIG_SYS_PCI_EP_MEMORY_BASE CONFIG_SYS_LOAD_ADDR
  22. #endif
  23. /* iATU registers */
  24. #define PCIE_ATU_VIEWPORT 0x900
  25. #define PCIE_ATU_REGION_INBOUND (0x1 << 31)
  26. #define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
  27. #define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
  28. #define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
  29. #define PCIE_ATU_REGION_INDEX2 (0x2 << 0)
  30. #define PCIE_ATU_REGION_INDEX3 (0x3 << 0)
  31. #define PCIE_ATU_REGION_NUM 6
  32. #define PCIE_ATU_CR1 0x904
  33. #define PCIE_ATU_TYPE_MEM (0x0 << 0)
  34. #define PCIE_ATU_TYPE_IO (0x2 << 0)
  35. #define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
  36. #define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
  37. #define PCIE_ATU_CR2 0x908
  38. #define PCIE_ATU_ENABLE (0x1 << 31)
  39. #define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
  40. #define PCIE_ATU_BAR_NUM(bar) ((bar) << 8)
  41. #define PCIE_ATU_LOWER_BASE 0x90C
  42. #define PCIE_ATU_UPPER_BASE 0x910
  43. #define PCIE_ATU_LIMIT 0x914
  44. #define PCIE_ATU_LOWER_TARGET 0x918
  45. #define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
  46. #define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
  47. #define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
  48. #define PCIE_ATU_UPPER_TARGET 0x91C
  49. /* DBI registers */
  50. #define PCIE_SRIOV 0x178
  51. #define PCIE_STRFMR1 0x71c /* Symbol Timer & Filter Mask Register1 */
  52. #define PCIE_DBI_RO_WR_EN 0x8bc
  53. #define PCIE_LINK_CAP 0x7c
  54. #define PCIE_LINK_SPEED_MASK 0xf
  55. #define PCIE_LINK_WIDTH_MASK 0x3f0
  56. #define PCIE_LINK_STA 0x82
  57. #define LTSSM_STATE_MASK 0x3f
  58. #define LTSSM_PCIE_L0 0x11 /* L0 state */
  59. #define PCIE_DBI_SIZE 0x100000 /* 1M */
  60. #define PCIE_LCTRL0_CFG2_ENABLE (1 << 31)
  61. #define PCIE_LCTRL0_VF(vf) ((vf) << 22)
  62. #define PCIE_LCTRL0_PF(pf) ((pf) << 16)
  63. #define PCIE_LCTRL0_VF_ACTIVE (1 << 21)
  64. #define PCIE_LCTRL0_VAL(pf, vf) (PCIE_LCTRL0_PF(pf) | \
  65. PCIE_LCTRL0_VF(vf) | \
  66. ((vf) == 0 ? 0 : PCIE_LCTRL0_VF_ACTIVE) | \
  67. PCIE_LCTRL0_CFG2_ENABLE)
  68. #define PCIE_NO_SRIOV_BAR_BASE 0x1000
  69. #define PCIE_PF_NUM 2
  70. #define PCIE_VF_NUM 64
  71. #define PCIE_BAR0_SIZE (4 * 1024) /* 4K */
  72. #define PCIE_BAR1_SIZE (8 * 1024) /* 8K for MSIX */
  73. #define PCIE_BAR2_SIZE (4 * 1024) /* 4K */
  74. #define PCIE_BAR4_SIZE (1 * 1024 * 1024) /* 1M */
  75. /* LUT registers */
  76. #define PCIE_LUT_UDR(n) (0x800 + (n) * 8)
  77. #define PCIE_LUT_LDR(n) (0x804 + (n) * 8)
  78. #define PCIE_LUT_ENABLE (1 << 31)
  79. #define PCIE_LUT_ENTRY_COUNT 32
  80. /* PF Controll registers */
  81. #define PCIE_PF_CONFIG 0x14
  82. #define PCIE_PF_VF_CTRL 0x7F8
  83. #define PCIE_PF_DBG 0x7FC
  84. #define PCIE_CONFIG_READY (1 << 0)
  85. #define PCIE_SRDS_PRTCL(idx) (PCIE1 + (idx))
  86. #define PCIE_SYS_BASE_ADDR 0x3400000
  87. #define PCIE_CCSR_SIZE 0x0100000
  88. /* CS2 */
  89. #define PCIE_CS2_OFFSET 0x1000 /* For PCIe without SR-IOV */
  90. #define SVR_LS102XA 0
  91. #define SVR_VAR_PER_SHIFT 8
  92. #define SVR_LS102XA_MASK 0x700
  93. /* LS1021a PCIE space */
  94. #define LS1021_PCIE_SPACE_OFFSET 0x4000000000ULL
  95. #define LS1021_PCIE_SPACE_SIZE 0x0800000000ULL
  96. /* LS1021a PEX1/2 Misc Ports Status Register */
  97. #define LS1021_PEXMSCPORTSR(pex_idx) (0x94 + (pex_idx) * 4)
  98. #define LS1021_LTSSM_STATE_SHIFT 20
  99. struct ls_pcie {
  100. int idx;
  101. struct list_head list;
  102. struct udevice *bus;
  103. struct fdt_resource dbi_res;
  104. struct fdt_resource lut_res;
  105. struct fdt_resource ctrl_res;
  106. struct fdt_resource cfg_res;
  107. void __iomem *dbi;
  108. void __iomem *lut;
  109. void __iomem *ctrl;
  110. void __iomem *cfg0;
  111. void __iomem *cfg1;
  112. bool big_endian;
  113. bool enabled;
  114. int next_lut_index;
  115. struct pci_controller hose;
  116. };
  117. extern struct list_head ls_pcie_list;
  118. #endif /* _PCIE_LAYERSCAPE_H_ */