Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 Michal Simek <monstr@monstr.eu> |
Michal Simek | 98d0f1f | 2018-01-17 07:37:47 +0100 | [diff] [blame] | 4 | * (C) Copyright 2013 - 2018 Xilinx, Inc. |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 8 | #include <init.h> |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 9 | #include <log.h> |
Michal Simek | 309ef80 | 2018-02-21 17:04:28 +0100 | [diff] [blame] | 10 | #include <dm/uclass.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 11 | #include <env.h> |
Ashok Reddy Soma | 909546d | 2021-02-23 08:07:45 -0700 | [diff] [blame] | 12 | #include <env_internal.h> |
Michal Simek | 65ef52f | 2014-02-24 11:16:32 +0100 | [diff] [blame] | 13 | #include <fdtdec.h> |
Michal Simek | 0f79670 | 2014-04-25 13:51:17 +0200 | [diff] [blame] | 14 | #include <fpga.h> |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 15 | #include <malloc.h> |
Michal Simek | 2a7d952 | 2021-08-27 12:53:32 +0200 | [diff] [blame^] | 16 | #include <memalign.h> |
Michal Simek | 0f79670 | 2014-04-25 13:51:17 +0200 | [diff] [blame] | 17 | #include <mmc.h> |
Michal Simek | c07b225 | 2018-06-08 13:45:14 +0200 | [diff] [blame] | 18 | #include <watchdog.h> |
Michal Simek | 309ef80 | 2018-02-21 17:04:28 +0100 | [diff] [blame] | 19 | #include <wdt.h> |
Michal Simek | 15d654c | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 20 | #include <zynqpl.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 21 | #include <asm/global_data.h> |
Michal Simek | 242192b | 2013-04-12 16:33:08 +0200 | [diff] [blame] | 22 | #include <asm/arch/hardware.h> |
| 23 | #include <asm/arch/sys_proto.h> |
Michal Simek | 705d44a | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 24 | #include "../common/board.h" |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
| 28 | int board_init(void) |
| 29 | { |
Michal Simek | ae9dc11 | 2021-02-02 16:34:48 +0100 | [diff] [blame] | 30 | if (IS_ENABLED(CONFIG_SPL_BUILD)) |
| 31 | printf("Silicon version:\t%d\n", zynq_get_silicon_version()); |
| 32 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 33 | return 0; |
| 34 | } |
| 35 | |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 36 | int board_late_init(void) |
| 37 | { |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 38 | int env_targets_len = 0; |
| 39 | const char *mode; |
| 40 | char *new_targets; |
| 41 | char *env_targets; |
| 42 | |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 43 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 44 | debug("Saved variables - Skipping\n"); |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | if (!CONFIG_IS_ENABLED(ENV_VARS_UBOOT_RUNTIME_CONFIG)) |
| 49 | return 0; |
| 50 | |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 51 | switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) { |
Michal Simek | 1935671 | 2016-12-16 13:16:14 +0100 | [diff] [blame] | 52 | case ZYNQ_BM_QSPI: |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 53 | mode = "qspi"; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 54 | env_set("modeboot", "qspiboot"); |
Michal Simek | 1935671 | 2016-12-16 13:16:14 +0100 | [diff] [blame] | 55 | break; |
| 56 | case ZYNQ_BM_NAND: |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 57 | mode = "nand"; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 58 | env_set("modeboot", "nandboot"); |
Michal Simek | 1935671 | 2016-12-16 13:16:14 +0100 | [diff] [blame] | 59 | break; |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 60 | case ZYNQ_BM_NOR: |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 61 | mode = "nor"; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 62 | env_set("modeboot", "norboot"); |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 63 | break; |
| 64 | case ZYNQ_BM_SD: |
Michal Simek | 9541d0b | 2019-09-11 12:51:49 +0200 | [diff] [blame] | 65 | mode = "mmc0"; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 66 | env_set("modeboot", "sdboot"); |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 67 | break; |
| 68 | case ZYNQ_BM_JTAG: |
T Karthik Reddy | 6c28c29 | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 69 | mode = "jtag pxe dhcp"; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 70 | env_set("modeboot", "jtagboot"); |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 71 | break; |
| 72 | default: |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 73 | mode = ""; |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 74 | env_set("modeboot", ""); |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 75 | break; |
| 76 | } |
| 77 | |
Siva Durga Prasad Paladugu | bd75bc1 | 2019-01-25 17:06:06 +0530 | [diff] [blame] | 78 | /* |
| 79 | * One terminating char + one byte for space between mode |
| 80 | * and default boot_targets |
| 81 | */ |
| 82 | env_targets = env_get("boot_targets"); |
| 83 | if (env_targets) |
| 84 | env_targets_len = strlen(env_targets); |
| 85 | |
| 86 | new_targets = calloc(1, strlen(mode) + env_targets_len + 2); |
| 87 | if (!new_targets) |
| 88 | return -ENOMEM; |
| 89 | |
| 90 | sprintf(new_targets, "%s %s", mode, |
| 91 | env_targets ? env_targets : ""); |
| 92 | |
| 93 | env_set("boot_targets", new_targets); |
| 94 | |
Michal Simek | 705d44a | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 95 | return board_late_init_xilinx(); |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 96 | } |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 97 | |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 98 | #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE) |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 99 | int dram_init_banksize(void) |
Nathan Rossi | c12892b | 2016-12-04 19:33:22 +1000 | [diff] [blame] | 100 | { |
Michal Simek | d5b7de6 | 2017-11-03 15:25:51 +0100 | [diff] [blame] | 101 | return fdtdec_setup_memory_banksize(); |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 102 | } |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 103 | |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 104 | int dram_init(void) |
| 105 | { |
Siva Durga Prasad Paladugu | b3d55ea | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 106 | if (fdtdec_setup_mem_size_base() != 0) |
Nathan Rossi | 58ea0d8 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 107 | return -EINVAL; |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 108 | |
| 109 | zynq_ddrc_init(); |
| 110 | |
| 111 | return 0; |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 112 | } |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 113 | #else |
| 114 | int dram_init(void) |
| 115 | { |
Michal Simek | 1b84621 | 2018-04-11 16:12:28 +0200 | [diff] [blame] | 116 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 117 | CONFIG_SYS_SDRAM_SIZE); |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 118 | |
Michal Simek | f5ff7bc | 2013-06-17 14:37:01 +0200 | [diff] [blame] | 119 | zynq_ddrc_init(); |
| 120 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 121 | return 0; |
| 122 | } |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 123 | #endif |
Ashok Reddy Soma | 909546d | 2021-02-23 08:07:45 -0700 | [diff] [blame] | 124 | |
| 125 | enum env_location env_get_location(enum env_operation op, int prio) |
| 126 | { |
| 127 | u32 bootmode = zynq_slcr_get_boot_mode() & ZYNQ_BM_MASK; |
| 128 | |
| 129 | if (prio) |
| 130 | return ENVL_UNKNOWN; |
| 131 | |
| 132 | switch (bootmode) { |
| 133 | case ZYNQ_BM_SD: |
| 134 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 135 | return ENVL_FAT; |
| 136 | if (IS_ENABLED(CONFIG_ENV_IS_IN_EXT4)) |
| 137 | return ENVL_EXT4; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 138 | return ENVL_NOWHERE; |
Ashok Reddy Soma | 909546d | 2021-02-23 08:07:45 -0700 | [diff] [blame] | 139 | case ZYNQ_BM_NAND: |
| 140 | if (IS_ENABLED(CONFIG_ENV_IS_IN_NAND)) |
| 141 | return ENVL_NAND; |
| 142 | if (IS_ENABLED(CONFIG_ENV_IS_IN_UBI)) |
| 143 | return ENVL_UBI; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 144 | return ENVL_NOWHERE; |
Ashok Reddy Soma | 909546d | 2021-02-23 08:07:45 -0700 | [diff] [blame] | 145 | case ZYNQ_BM_NOR: |
| 146 | case ZYNQ_BM_QSPI: |
| 147 | if (IS_ENABLED(CONFIG_ENV_IS_IN_SPI_FLASH)) |
| 148 | return ENVL_SPI_FLASH; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 149 | return ENVL_NOWHERE; |
Ashok Reddy Soma | 909546d | 2021-02-23 08:07:45 -0700 | [diff] [blame] | 150 | case ZYNQ_BM_JTAG: |
| 151 | default: |
| 152 | return ENVL_NOWHERE; |
| 153 | } |
| 154 | } |
Michal Simek | 2a7d952 | 2021-08-27 12:53:32 +0200 | [diff] [blame^] | 155 | |
| 156 | #if defined(CONFIG_SET_DFU_ALT_INFO) |
| 157 | |
| 158 | #define DFU_ALT_BUF_LEN SZ_1K |
| 159 | |
| 160 | void set_dfu_alt_info(char *interface, char *devstr) |
| 161 | { |
| 162 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, DFU_ALT_BUF_LEN); |
| 163 | |
| 164 | if (env_get("dfu_alt_info")) |
| 165 | return; |
| 166 | |
| 167 | memset(buf, 0, sizeof(buf)); |
| 168 | |
| 169 | switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) { |
| 170 | case ZYNQ_BM_SD: |
| 171 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 172 | "mmc 0:1=boot.bin fat 0 1;" |
| 173 | "u-boot.img fat 0 1"); |
| 174 | break; |
| 175 | case ZYNQ_BM_QSPI: |
| 176 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 177 | "sf 0:0=boot.bin raw 0 0x1500000;" |
| 178 | "u-boot.img raw 0x%x 0x500000", |
| 179 | CONFIG_SYS_SPI_U_BOOT_OFFS); |
| 180 | break; |
| 181 | default: |
| 182 | return; |
| 183 | } |
| 184 | |
| 185 | env_set("dfu_alt_info", buf); |
| 186 | puts("DFU alt info setting: done\n"); |
| 187 | } |
| 188 | #endif |