hardware.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * (C) Copyright 2014 - 2015 Xilinx, Inc.
  3. * Michal Simek <michal.simek@xilinx.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _ASM_ARCH_HARDWARE_H
  8. #define _ASM_ARCH_HARDWARE_H
  9. #define ZYNQ_GEM_BASEADDR0 0xFF0B0000
  10. #define ZYNQ_GEM_BASEADDR1 0xFF0C0000
  11. #define ZYNQ_GEM_BASEADDR2 0xFF0D0000
  12. #define ZYNQ_GEM_BASEADDR3 0xFF0E0000
  13. #define ZYNQ_SPI_BASEADDR0 0xFF040000
  14. #define ZYNQ_SPI_BASEADDR1 0xFF050000
  15. #define ZYNQ_I2C_BASEADDR0 0xFF020000
  16. #define ZYNQ_I2C_BASEADDR1 0xFF030000
  17. #define ZYNQ_SDHCI_BASEADDR0 0xFF160000
  18. #define ZYNQ_SDHCI_BASEADDR1 0xFF170000
  19. #define ZYNQMP_SATA_BASEADDR 0xFD0C0000
  20. #define ZYNQMP_USB0_XHCI_BASEADDR 0xFE200000
  21. #define ZYNQMP_USB1_XHCI_BASEADDR 0xFE300000
  22. #define ZYNQMP_CRL_APB_BASEADDR 0xFF5E0000
  23. #define ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT 0x1000000
  24. struct crlapb_regs {
  25. u32 reserved0[36];
  26. u32 cpu_r5_ctrl; /* 0x90 */
  27. u32 reserved1[37];
  28. u32 timestamp_ref_ctrl; /* 0x128 */
  29. u32 reserved2[53];
  30. u32 boot_mode; /* 0x200 */
  31. u32 reserved3[14];
  32. u32 rst_lpd_top; /* 0x23C */
  33. u32 reserved4[26];
  34. };
  35. #define crlapb_base ((struct crlapb_regs *)ZYNQMP_CRL_APB_BASEADDR)
  36. #if defined(CONFIG_SECURE_IOU)
  37. #define ZYNQMP_IOU_SCNTR 0xFF260000
  38. #else
  39. #define ZYNQMP_IOU_SCNTR 0xFF250000
  40. #endif
  41. #define ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN 0x1
  42. #define ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_HDBG 0x2
  43. struct iou_scntr {
  44. u32 counter_control_register;
  45. u32 reserved0[7];
  46. u32 base_frequency_id_register;
  47. };
  48. #define iou_scntr ((struct iou_scntr *)ZYNQMP_IOU_SCNTR)
  49. /* Bootmode setting values */
  50. #define BOOT_MODES_MASK 0x0000000F
  51. #define SD_MODE 0x00000003
  52. #define EMMC_MODE 0x00000006
  53. #define JTAG_MODE 0x00000000
  54. #define ZYNQMP_IOU_SLCR_BASEADDR 0xFF180000
  55. struct iou_slcr_regs {
  56. u32 mio_pin[78];
  57. u32 reserved[442];
  58. };
  59. #define slcr_base ((struct iou_slcr_regs *)ZYNQMP_IOU_SLCR_BASEADDR)
  60. #define ZYNQMP_RPU_BASEADDR 0xFF9A0000
  61. struct rpu_regs {
  62. u32 rpu_glbl_ctrl;
  63. u32 reserved0[63];
  64. u32 rpu0_cfg; /* 0x100 */
  65. u32 reserved1[63];
  66. u32 rpu1_cfg; /* 0x200 */
  67. };
  68. #define rpu_base ((struct rpu_regs *)ZYNQMP_RPU_BASEADDR)
  69. #define ZYNQMP_CRF_APB_BASEADDR 0xFD1A0000
  70. struct crfapb_regs {
  71. u32 reserved0[65];
  72. u32 rst_fpd_apu; /* 0x104 */
  73. u32 reserved1;
  74. };
  75. #define crfapb_base ((struct crfapb_regs *)ZYNQMP_CRF_APB_BASEADDR)
  76. #define ZYNQMP_APU_BASEADDR 0xFD5C0000
  77. struct apu_regs {
  78. u32 reserved0[16];
  79. u32 rvbar_addr0_l; /* 0x40 */
  80. u32 rvbar_addr0_h; /* 0x44 */
  81. u32 reserved1[20];
  82. };
  83. #define apu_base ((struct apu_regs *)ZYNQMP_APU_BASEADDR)
  84. /* Board version value */
  85. #define ZYNQMP_CSU_VERSION_SILICON 0x0
  86. #define ZYNQMP_CSU_VERSION_EP108 0x1
  87. #define ZYNQMP_CSU_VERSION_VELOCE 0x2
  88. #define ZYNQMP_CSU_VERSION_QEMU 0x3
  89. #endif /* _ASM_ARCH_HARDWARE_H */