Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2014 - 2018 Xilinx, Inc. |
| 4 | * Michal Simek <michal.simek@xilinx.com> |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 9a3b4ce | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 9 | #include <env.h> |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 10 | #include <fdtdec.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 11 | #include <init.h> |
Michal Simek | f66d0b5 | 2022-03-17 15:25:31 +0100 | [diff] [blame] | 12 | #include <image.h> |
Ashok Reddy Soma | 4fb83c9 | 2021-02-23 08:07:46 -0700 | [diff] [blame] | 13 | #include <env_internal.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 15 | #include <malloc.h> |
Simon Glass | 1045315 | 2019-11-14 12:57:30 -0700 | [diff] [blame] | 16 | #include <time.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 19 | #include <asm/io.h> |
| 20 | #include <asm/arch/hardware.h> |
Michal Simek | aef149e | 2019-04-29 09:39:09 -0700 | [diff] [blame] | 21 | #include <asm/arch/sys_proto.h> |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 22 | #include <dm/device.h> |
| 23 | #include <dm/uclass.h> |
Siva Durga Prasad Paladugu | 26e054c | 2019-08-05 15:54:59 +0530 | [diff] [blame] | 24 | #include <versalpl.h> |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 25 | #include "../common/board.h" |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Siva Durga Prasad Paladugu | 26e054c | 2019-08-05 15:54:59 +0530 | [diff] [blame] | 29 | #if defined(CONFIG_FPGA_VERSALPL) |
| 30 | static xilinx_desc versalpl = XILINX_VERSAL_DESC; |
| 31 | #endif |
| 32 | |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 33 | int board_init(void) |
| 34 | { |
| 35 | printf("EL Level:\tEL%d\n", current_el()); |
| 36 | |
Siva Durga Prasad Paladugu | 26e054c | 2019-08-05 15:54:59 +0530 | [diff] [blame] | 37 | #if defined(CONFIG_FPGA_VERSALPL) |
| 38 | fpga_init(); |
| 39 | fpga_add(fpga_xilinx, &versalpl); |
| 40 | #endif |
| 41 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 42 | if (CONFIG_IS_ENABLED(DM_I2C) && CONFIG_IS_ENABLED(I2C_EEPROM)) |
| 43 | xilinx_read_eeprom(); |
| 44 | |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | int board_early_init_r(void) |
| 49 | { |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 50 | u32 val; |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 51 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 52 | if (current_el() != 3) |
| 53 | return 0; |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 54 | |
Michal Simek | 47a766f | 2019-01-28 11:12:41 +0100 | [diff] [blame] | 55 | debug("iou_switch ctrl div0 %x\n", |
| 56 | readl(&crlapb_base->iou_switch_ctrl)); |
| 57 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 58 | writel(IOU_SWITCH_CTRL_CLKACT_BIT | |
Michal Simek | 47a766f | 2019-01-28 11:12:41 +0100 | [diff] [blame] | 59 | (CONFIG_IOU_SWITCH_DIVISOR0 << IOU_SWITCH_CTRL_DIVISOR0_SHIFT), |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 60 | &crlapb_base->iou_switch_ctrl); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 61 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 62 | /* Global timer init - Program time stamp reference clk */ |
| 63 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 64 | val |= CRL_APB_TIMESTAMP_REF_CTRL_CLKACT_BIT; |
| 65 | writel(val, &crlapb_base->timestamp_ref_ctrl); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 66 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 67 | debug("ref ctrl 0x%x\n", |
| 68 | readl(&crlapb_base->timestamp_ref_ctrl)); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 69 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 70 | /* Clear reset of timestamp reg */ |
| 71 | writel(0, &crlapb_base->rst_timestamp); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 72 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 73 | /* |
| 74 | * Program freq register in System counter and |
| 75 | * enable system counter. |
| 76 | */ |
Peng Fan | d8c033a | 2022-04-13 17:47:17 +0800 | [diff] [blame] | 77 | writel(CONFIG_COUNTER_FREQUENCY, |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 78 | &iou_scntr_secure->base_frequency_id_register); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 79 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 80 | debug("counter val 0x%x\n", |
| 81 | readl(&iou_scntr_secure->base_frequency_id_register)); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 82 | |
Michal Simek | fb77179 | 2019-01-28 11:08:00 +0100 | [diff] [blame] | 83 | writel(IOU_SCNTRS_CONTROL_EN, |
| 84 | &iou_scntr_secure->counter_control_register); |
| 85 | |
| 86 | debug("scntrs control 0x%x\n", |
| 87 | readl(&iou_scntr_secure->counter_control_register)); |
| 88 | debug("timer 0x%llx\n", get_ticks()); |
| 89 | debug("timer 0x%llx\n", get_ticks()); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
Ashok Reddy Soma | 2eeceb4 | 2022-05-05 23:53:45 -0600 | [diff] [blame] | 94 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, |
| 95 | char *const argv[]) |
| 96 | { |
| 97 | int ret = 0; |
| 98 | |
| 99 | if (current_el() > 1) { |
| 100 | smp_kick_all_cpus(); |
| 101 | dcache_disable(); |
| 102 | armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry, |
| 103 | ES_TO_AARCH64); |
| 104 | } else { |
| 105 | printf("FAIL: current EL is not above EL1\n"); |
| 106 | ret = EINVAL; |
| 107 | } |
| 108 | return ret; |
| 109 | } |
| 110 | |
Michal Simek | 51f6c52 | 2020-04-08 11:04:41 +0200 | [diff] [blame] | 111 | static u8 versal_get_bootmode(void) |
| 112 | { |
| 113 | u8 bootmode; |
| 114 | u32 reg = 0; |
| 115 | |
| 116 | reg = readl(&crp_base->boot_mode_usr); |
| 117 | |
| 118 | if (reg >> BOOT_MODE_ALT_SHIFT) |
| 119 | reg >>= BOOT_MODE_ALT_SHIFT; |
| 120 | |
| 121 | bootmode = reg & BOOT_MODES_MASK; |
| 122 | |
| 123 | return bootmode; |
| 124 | } |
| 125 | |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 126 | int board_late_init(void) |
| 127 | { |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 128 | u8 bootmode; |
| 129 | struct udevice *dev; |
| 130 | int bootseq = -1; |
| 131 | int bootseq_len = 0; |
| 132 | int env_targets_len = 0; |
| 133 | const char *mode; |
| 134 | char *new_targets; |
| 135 | char *env_targets; |
| 136 | |
| 137 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 138 | debug("Saved variables - Skipping\n"); |
| 139 | return 0; |
| 140 | } |
| 141 | |
Michal Simek | 62b9626 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 142 | if (!CONFIG_IS_ENABLED(ENV_VARS_UBOOT_RUNTIME_CONFIG)) |
| 143 | return 0; |
| 144 | |
Michal Simek | 51f6c52 | 2020-04-08 11:04:41 +0200 | [diff] [blame] | 145 | bootmode = versal_get_bootmode(); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 146 | |
| 147 | puts("Bootmode: "); |
| 148 | switch (bootmode) { |
T Karthik Reddy | f0c16cd | 2019-07-11 16:07:57 +0530 | [diff] [blame] | 149 | case USB_MODE: |
| 150 | puts("USB_MODE\n"); |
T Karthik Reddy | 82cb49d | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 151 | mode = "usb_dfu0 usb_dfu1"; |
T Karthik Reddy | f0c16cd | 2019-07-11 16:07:57 +0530 | [diff] [blame] | 152 | break; |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 153 | case JTAG_MODE: |
| 154 | puts("JTAG_MODE\n"); |
Siva Durga Prasad Paladugu | 3d865ac | 2019-06-25 17:13:14 +0530 | [diff] [blame] | 155 | mode = "jtag pxe dhcp"; |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 156 | break; |
| 157 | case QSPI_MODE_24BIT: |
| 158 | puts("QSPI_MODE_24\n"); |
| 159 | mode = "xspi0"; |
| 160 | break; |
| 161 | case QSPI_MODE_32BIT: |
| 162 | puts("QSPI_MODE_32\n"); |
| 163 | mode = "xspi0"; |
| 164 | break; |
| 165 | case OSPI_MODE: |
| 166 | puts("OSPI_MODE\n"); |
| 167 | mode = "xspi0"; |
| 168 | break; |
| 169 | case EMMC_MODE: |
| 170 | puts("EMMC_MODE\n"); |
T Karthik Reddy | 7c5b7bb | 2019-12-16 04:44:26 -0700 | [diff] [blame] | 171 | if (uclass_get_device_by_name(UCLASS_MMC, |
T Karthik Reddy | 5f4e1ff | 2021-11-18 12:57:20 +0100 | [diff] [blame] | 172 | "mmc@f1050000", &dev) && |
| 173 | uclass_get_device_by_name(UCLASS_MMC, |
T Karthik Reddy | 7c5b7bb | 2019-12-16 04:44:26 -0700 | [diff] [blame] | 174 | "sdhci@f1050000", &dev)) { |
| 175 | puts("Boot from EMMC but without SD1 enabled!\n"); |
| 176 | return -1; |
| 177 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 178 | debug("mmc1 device found at %p, seq %d\n", dev, dev_seq(dev)); |
T Karthik Reddy | 7c5b7bb | 2019-12-16 04:44:26 -0700 | [diff] [blame] | 179 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 180 | bootseq = dev_seq(dev); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 181 | break; |
| 182 | case SD_MODE: |
| 183 | puts("SD_MODE\n"); |
| 184 | if (uclass_get_device_by_name(UCLASS_MMC, |
T Karthik Reddy | 5f4e1ff | 2021-11-18 12:57:20 +0100 | [diff] [blame] | 185 | "mmc@f1040000", &dev) && |
| 186 | uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 187 | "sdhci@f1040000", &dev)) { |
| 188 | puts("Boot from SD0 but without SD0 enabled!\n"); |
| 189 | return -1; |
| 190 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 191 | debug("mmc0 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 192 | |
| 193 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 194 | bootseq = dev_seq(dev); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 195 | break; |
| 196 | case SD1_LSHFT_MODE: |
| 197 | puts("LVL_SHFT_"); |
| 198 | /* fall through */ |
| 199 | case SD_MODE1: |
| 200 | puts("SD_MODE1\n"); |
| 201 | if (uclass_get_device_by_name(UCLASS_MMC, |
T Karthik Reddy | 5f4e1ff | 2021-11-18 12:57:20 +0100 | [diff] [blame] | 202 | "mmc@f1050000", &dev) && |
| 203 | uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 204 | "sdhci@f1050000", &dev)) { |
| 205 | puts("Boot from SD1 but without SD1 enabled!\n"); |
| 206 | return -1; |
| 207 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 208 | debug("mmc1 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 209 | |
| 210 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 211 | bootseq = dev_seq(dev); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 212 | break; |
| 213 | default: |
| 214 | mode = ""; |
| 215 | printf("Invalid Boot Mode:0x%x\n", bootmode); |
| 216 | break; |
| 217 | } |
| 218 | |
| 219 | if (bootseq >= 0) { |
| 220 | bootseq_len = snprintf(NULL, 0, "%i", bootseq); |
| 221 | debug("Bootseq len: %x\n", bootseq_len); |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * One terminating char + one byte for space between mode |
| 226 | * and default boot_targets |
| 227 | */ |
| 228 | env_targets = env_get("boot_targets"); |
| 229 | if (env_targets) |
| 230 | env_targets_len = strlen(env_targets); |
| 231 | |
| 232 | new_targets = calloc(1, strlen(mode) + env_targets_len + 2 + |
| 233 | bootseq_len); |
| 234 | if (!new_targets) |
| 235 | return -ENOMEM; |
| 236 | |
| 237 | if (bootseq >= 0) |
| 238 | sprintf(new_targets, "%s%x %s", mode, bootseq, |
| 239 | env_targets ? env_targets : ""); |
| 240 | else |
| 241 | sprintf(new_targets, "%s %s", mode, |
| 242 | env_targets ? env_targets : ""); |
| 243 | |
| 244 | env_set("boot_targets", new_targets); |
| 245 | |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 246 | return board_late_init_xilinx(); |
Siva Durga Prasad Paladugu | bfd092f | 2019-01-31 17:28:14 +0530 | [diff] [blame] | 247 | } |
| 248 | |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 249 | int dram_init_banksize(void) |
| 250 | { |
Michal Simek | aef149e | 2019-04-29 09:39:09 -0700 | [diff] [blame] | 251 | int ret; |
| 252 | |
| 253 | ret = fdtdec_setup_memory_banksize(); |
| 254 | if (ret) |
| 255 | return ret; |
| 256 | |
| 257 | mem_map_fill(); |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | int dram_init(void) |
| 263 | { |
Michal Simek | 22b6bb6 | 2020-07-10 12:42:09 +0200 | [diff] [blame] | 264 | if (fdtdec_setup_mem_size_base_lowest() != 0) |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 265 | return -EINVAL; |
| 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
Michal Simek | f66d0b5 | 2022-03-17 15:25:31 +0100 | [diff] [blame] | 270 | ulong board_get_usable_ram_top(ulong total_size) |
| 271 | { |
| 272 | phys_size_t size; |
| 273 | phys_addr_t reg; |
| 274 | struct lmb lmb; |
| 275 | |
Michal Simek | 9c563e9 | 2022-04-29 11:52:27 +0200 | [diff] [blame] | 276 | if (!total_size) |
| 277 | return gd->ram_top; |
| 278 | |
Michal Simek | f66d0b5 | 2022-03-17 15:25:31 +0100 | [diff] [blame] | 279 | /* found enough not-reserved memory to relocated U-Boot */ |
| 280 | lmb_init(&lmb); |
| 281 | lmb_add(&lmb, gd->ram_base, gd->ram_size); |
| 282 | boot_fdt_add_mem_rsv_regions(&lmb, (void *)gd->fdt_blob); |
| 283 | size = ALIGN(CONFIG_SYS_MALLOC_LEN + total_size, MMU_SECTION_SIZE); |
| 284 | reg = lmb_alloc(&lmb, size, MMU_SECTION_SIZE); |
| 285 | |
| 286 | if (!reg) |
| 287 | reg = gd->ram_top - size; |
| 288 | |
| 289 | return reg + size; |
| 290 | } |
| 291 | |
Harald Seiler | 35b65dd | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 292 | void reset_cpu(void) |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 293 | { |
| 294 | } |
Ashok Reddy Soma | 4fb83c9 | 2021-02-23 08:07:46 -0700 | [diff] [blame] | 295 | |
| 296 | enum env_location env_get_location(enum env_operation op, int prio) |
| 297 | { |
| 298 | u32 bootmode = versal_get_bootmode(); |
| 299 | |
| 300 | if (prio) |
| 301 | return ENVL_UNKNOWN; |
| 302 | |
| 303 | switch (bootmode) { |
| 304 | case EMMC_MODE: |
| 305 | case SD_MODE: |
| 306 | case SD1_LSHFT_MODE: |
| 307 | case SD_MODE1: |
| 308 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 309 | return ENVL_FAT; |
| 310 | if (IS_ENABLED(CONFIG_ENV_IS_IN_EXT4)) |
| 311 | return ENVL_EXT4; |
T Karthik Reddy | bf97c46 | 2021-11-24 12:16:55 +0100 | [diff] [blame] | 312 | return ENVL_NOWHERE; |
Ashok Reddy Soma | 4fb83c9 | 2021-02-23 08:07:46 -0700 | [diff] [blame] | 313 | case OSPI_MODE: |
| 314 | case QSPI_MODE_24BIT: |
| 315 | case QSPI_MODE_32BIT: |
| 316 | if (IS_ENABLED(CONFIG_ENV_IS_IN_SPI_FLASH)) |
| 317 | return ENVL_SPI_FLASH; |
T Karthik Reddy | bf97c46 | 2021-11-24 12:16:55 +0100 | [diff] [blame] | 318 | return ENVL_NOWHERE; |
Ashok Reddy Soma | 4fb83c9 | 2021-02-23 08:07:46 -0700 | [diff] [blame] | 319 | case JTAG_MODE: |
| 320 | default: |
| 321 | return ENVL_NOWHERE; |
| 322 | } |
| 323 | } |