Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
| 4 | * Michal Simek <michal.simek@xilinx.com> |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_ARCH_HARDWARE_H |
| 8 | #define _ASM_ARCH_HARDWARE_H |
| 9 | |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 10 | #ifndef __ASSEMBLY__ |
| 11 | #include <linux/bitops.h> |
| 12 | #endif |
| 13 | |
Siva Durga Prasad Paladugu | 4628c50 | 2017-07-13 19:01:11 +0530 | [diff] [blame] | 14 | #define ZYNQMP_TCM_BASE_ADDR 0xFFE00000 |
| 15 | #define ZYNQMP_TCM_SIZE 0x40000 |
| 16 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 17 | #define ZYNQMP_CRL_APB_BASEADDR 0xFF5E0000 |
| 18 | #define ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT 0x1000000 |
Michal Simek | 3eb32de | 2016-08-15 09:41:36 +0200 | [diff] [blame] | 19 | #define ZYNQMP_CRL_APB_BOOT_PIN_CTRL_OUT_EN_SHIFT 0 |
| 20 | #define ZYNQMP_CRL_APB_BOOT_PIN_CTRL_OUT_VAL_SHIFT 8 |
| 21 | |
| 22 | #define PS_MODE0 BIT(0) |
| 23 | #define PS_MODE1 BIT(1) |
| 24 | #define PS_MODE2 BIT(2) |
| 25 | #define PS_MODE3 BIT(3) |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 26 | |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 27 | #define RESET_REASON_DEBUG_SYS BIT(6) |
| 28 | #define RESET_REASON_SOFT BIT(5) |
| 29 | #define RESET_REASON_SRST BIT(4) |
| 30 | #define RESET_REASON_PSONLY BIT(3) |
| 31 | #define RESET_REASON_PMU BIT(2) |
| 32 | #define RESET_REASON_INTERNAL BIT(1) |
| 33 | #define RESET_REASON_EXTERNAL BIT(0) |
| 34 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 35 | struct crlapb_regs { |
Michal Simek | 58f865f | 2015-04-15 13:36:40 +0200 | [diff] [blame] | 36 | u32 reserved0[36]; |
| 37 | u32 cpu_r5_ctrl; /* 0x90 */ |
| 38 | u32 reserved1[37]; |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 39 | u32 timestamp_ref_ctrl; /* 0x128 */ |
Michal Simek | 58f865f | 2015-04-15 13:36:40 +0200 | [diff] [blame] | 40 | u32 reserved2[53]; |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 41 | u32 boot_mode; /* 0x200 */ |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 42 | u32 reserved3_0[7]; |
| 43 | u32 reset_reason; /* 0x220 */ |
| 44 | u32 reserved3_1[6]; |
Michal Simek | 58f865f | 2015-04-15 13:36:40 +0200 | [diff] [blame] | 45 | u32 rst_lpd_top; /* 0x23C */ |
Michal Simek | 3eb32de | 2016-08-15 09:41:36 +0200 | [diff] [blame] | 46 | u32 reserved4[4]; |
| 47 | u32 boot_pin_ctrl; /* 0x250 */ |
| 48 | u32 reserved5[21]; |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | #define crlapb_base ((struct crlapb_regs *)ZYNQMP_CRL_APB_BASEADDR) |
| 52 | |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 53 | #define ZYNQMP_IOU_SCNTR_SECURE 0xFF260000 |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 54 | #define ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN 0x1 |
| 55 | #define ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_HDBG 0x2 |
| 56 | |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 57 | struct iou_scntr_secure { |
| 58 | u32 counter_control_register; |
| 59 | u32 reserved0[7]; |
| 60 | u32 base_frequency_id_register; |
| 61 | }; |
| 62 | |
| 63 | #define iou_scntr_secure ((struct iou_scntr_secure *)ZYNQMP_IOU_SCNTR_SECURE) |
| 64 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 65 | /* Bootmode setting values */ |
| 66 | #define BOOT_MODES_MASK 0x0000000F |
Siva Durga Prasad Paladugu | 30f0fc7 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 67 | #define QSPI_MODE_24BIT 0x00000001 |
| 68 | #define QSPI_MODE_32BIT 0x00000002 |
Michal Simek | 108e184 | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 69 | #define SD_MODE 0x00000003 /* sd 0 */ |
| 70 | #define SD_MODE1 0x00000005 /* sd 1 */ |
Siva Durga Prasad Paladugu | 30f0fc7 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 71 | #define NAND_MODE 0x00000004 |
Michal Simek | 02d66cd | 2015-04-15 15:02:28 +0200 | [diff] [blame] | 72 | #define EMMC_MODE 0x00000006 |
Michal Simek | 203a944 | 2016-04-29 13:00:10 +0200 | [diff] [blame] | 73 | #define USB_MODE 0x00000007 |
Siva Durga Prasad Paladugu | 29a77d2 | 2016-09-21 11:45:05 +0530 | [diff] [blame] | 74 | #define SD1_LSHFT_MODE 0x0000000E /* SD1 Level shifter */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 75 | #define JTAG_MODE 0x00000000 |
Michal Simek | 94ddcaa | 2016-08-30 16:17:27 +0200 | [diff] [blame] | 76 | #define BOOT_MODE_USE_ALT 0x100 |
| 77 | #define BOOT_MODE_ALT_SHIFT 12 |
Michal Simek | 2740d37 | 2016-10-26 09:24:32 +0200 | [diff] [blame] | 78 | /* SW secondary boot modes 0xa - 0xd */ |
| 79 | #define SW_USBHOST_MODE 0x0000000A |
| 80 | #define SW_SATA_MODE 0x0000000B |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 81 | |
Michal Simek | f2e373f | 2015-07-22 09:27:11 +0200 | [diff] [blame] | 82 | #define ZYNQMP_IOU_SLCR_BASEADDR 0xFF180000 |
| 83 | |
| 84 | struct iou_slcr_regs { |
| 85 | u32 mio_pin[78]; |
| 86 | u32 reserved[442]; |
| 87 | }; |
| 88 | |
| 89 | #define slcr_base ((struct iou_slcr_regs *)ZYNQMP_IOU_SLCR_BASEADDR) |
| 90 | |
Michal Simek | 58f865f | 2015-04-15 13:36:40 +0200 | [diff] [blame] | 91 | #define ZYNQMP_RPU_BASEADDR 0xFF9A0000 |
| 92 | |
| 93 | struct rpu_regs { |
| 94 | u32 rpu_glbl_ctrl; |
| 95 | u32 reserved0[63]; |
| 96 | u32 rpu0_cfg; /* 0x100 */ |
| 97 | u32 reserved1[63]; |
| 98 | u32 rpu1_cfg; /* 0x200 */ |
| 99 | }; |
| 100 | |
| 101 | #define rpu_base ((struct rpu_regs *)ZYNQMP_RPU_BASEADDR) |
| 102 | |
| 103 | #define ZYNQMP_CRF_APB_BASEADDR 0xFD1A0000 |
| 104 | |
| 105 | struct crfapb_regs { |
| 106 | u32 reserved0[65]; |
| 107 | u32 rst_fpd_apu; /* 0x104 */ |
| 108 | u32 reserved1; |
| 109 | }; |
| 110 | |
| 111 | #define crfapb_base ((struct crfapb_regs *)ZYNQMP_CRF_APB_BASEADDR) |
| 112 | |
| 113 | #define ZYNQMP_APU_BASEADDR 0xFD5C0000 |
| 114 | |
| 115 | struct apu_regs { |
| 116 | u32 reserved0[16]; |
| 117 | u32 rvbar_addr0_l; /* 0x40 */ |
| 118 | u32 rvbar_addr0_h; /* 0x44 */ |
| 119 | u32 reserved1[20]; |
| 120 | }; |
| 121 | |
| 122 | #define apu_base ((struct apu_regs *)ZYNQMP_APU_BASEADDR) |
| 123 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 124 | /* Board version value */ |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 125 | #define ZYNQMP_CSU_BASEADDR 0xFFCA0000 |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 126 | #define ZYNQMP_CSU_VERSION_SILICON 0x0 |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 127 | #define ZYNQMP_CSU_VERSION_QEMU 0x3 |
| 128 | |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 129 | #define ZYNQMP_CSU_VERSION_EMPTY_SHIFT 20 |
| 130 | |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 131 | #define ZYNQMP_SILICON_VER_MASK 0xF000 |
| 132 | #define ZYNQMP_SILICON_VER_SHIFT 12 |
| 133 | |
| 134 | struct csu_regs { |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 135 | u32 reserved0[4]; |
| 136 | u32 multi_boot; |
Michal Simek | 812881b | 2020-11-10 13:10:04 +0100 | [diff] [blame] | 137 | u32 reserved1[11]; |
| 138 | u32 idcode; |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 139 | u32 version; |
| 140 | }; |
| 141 | |
| 142 | #define csu_base ((struct csu_regs *)ZYNQMP_CSU_BASEADDR) |
| 143 | |
Michal Simek | 456e454 | 2017-01-09 10:05:16 +0100 | [diff] [blame] | 144 | #define ZYNQMP_PMU_BASEADDR 0xFFD80000 |
| 145 | |
| 146 | struct pmu_regs { |
| 147 | u32 reserved[18]; |
| 148 | u32 gen_storage6; /* 0x48 */ |
| 149 | }; |
| 150 | |
| 151 | #define pmu_base ((struct pmu_regs *)ZYNQMP_PMU_BASEADDR) |
| 152 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 153 | #endif /* _ASM_ARCH_HARDWARE_H */ |