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 | #include <common.h> |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | 370382c | 2019-11-14 12:57:35 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
Michal Simek | 09a7d7d | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 10 | #include <debug_uart.h> |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 11 | #include <dfu.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 12 | #include <env.h> |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 13 | #include <env_internal.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 14 | #include <init.h> |
Michal Simek | 97ab961 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 15 | #include <image.h> |
| 16 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 18 | #include <net.h> |
Michal Simek | d54b1af | 2015-09-30 17:26:55 +0200 | [diff] [blame] | 19 | #include <sata.h> |
Michal Simek | b216cc1 | 2015-07-23 13:27:40 +0200 | [diff] [blame] | 20 | #include <ahci.h> |
| 21 | #include <scsi.h> |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 22 | #include <malloc.h> |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 23 | #include <memalign.h> |
Michal Simek | bf0f9ca | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 24 | #include <wdt.h> |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 25 | #include <asm/arch/clk.h> |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 26 | #include <asm/arch/hardware.h> |
| 27 | #include <asm/arch/sys_proto.h> |
Michal Simek | f2f0864 | 2018-01-10 09:36:09 +0100 | [diff] [blame] | 28 | #include <asm/arch/psu_init_gpl.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 29 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 30 | #include <asm/global_data.h> |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 31 | #include <asm/io.h> |
Simon Glass | 6b9f010 | 2020-05-10 11:40:06 -0600 | [diff] [blame] | 32 | #include <asm/ptrace.h> |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 33 | #include <dm/device.h> |
Michal Simek | bf0f9ca | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 34 | #include <dm/uclass.h> |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 35 | #include <usb.h> |
| 36 | #include <dwc3-uboot.h> |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 37 | #include <zynqmppl.h> |
Ibai Erkiaga | c8a3efa | 2019-09-27 11:37:01 +0100 | [diff] [blame] | 38 | #include <zynqmp_firmware.h> |
Michal Simek | 76d0a77 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 39 | #include <g_dnl.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 40 | #include <linux/bitops.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 41 | #include <linux/delay.h> |
| 42 | #include <linux/sizes.h> |
Michal Simek | 705d44a | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 43 | #include "../common/board.h" |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 44 | |
Luca Ceresoli | 23e6500 | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 45 | #include "pm_cfg_obj.h" |
| 46 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 47 | #define ZYNQMP_VERSION_SIZE 7 |
Michal Simek | c702a74 | 2020-10-21 12:23:17 +0200 | [diff] [blame] | 48 | #define EFUSE_VCU_DIS_MASK 0x100 |
| 49 | #define EFUSE_VCU_DIS_SHIFT 8 |
| 50 | #define EFUSE_GPU_DIS_MASK 0x20 |
| 51 | #define EFUSE_GPU_DIS_SHIFT 5 |
| 52 | #define IDCODE2_PL_INIT_MASK 0x200 |
| 53 | #define IDCODE2_PL_INIT_SHIFT 9 |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 54 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
| 56 | |
Michal Simek | 1aab114 | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 57 | #if CONFIG_IS_ENABLED(FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 58 | static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC; |
| 59 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 60 | enum { |
| 61 | ZYNQMP_VARIANT_EG = BIT(0U), |
| 62 | ZYNQMP_VARIANT_EV = BIT(1U), |
| 63 | ZYNQMP_VARIANT_CG = BIT(2U), |
| 64 | ZYNQMP_VARIANT_DR = BIT(3U), |
| 65 | }; |
| 66 | |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 67 | static const struct { |
Michal Simek | 6908b86 | 2017-11-06 12:55:59 +0100 | [diff] [blame] | 68 | u32 id; |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 69 | u8 device; |
| 70 | u8 variants; |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 71 | } zynqmp_devices[] = { |
| 72 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 73 | .id = 0x04711093, |
| 74 | .device = 2, |
| 75 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 76 | }, |
| 77 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 78 | .id = 0x04710093, |
| 79 | .device = 3, |
| 80 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 81 | }, |
| 82 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 83 | .id = 0x04721093, |
| 84 | .device = 4, |
| 85 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG | |
| 86 | ZYNQMP_VARIANT_EV, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 87 | }, |
| 88 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 89 | .id = 0x04720093, |
| 90 | .device = 5, |
| 91 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG | |
| 92 | ZYNQMP_VARIANT_EV, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 93 | }, |
| 94 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 95 | .id = 0x04739093, |
| 96 | .device = 6, |
| 97 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 98 | }, |
| 99 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 100 | .id = 0x04730093, |
| 101 | .device = 7, |
| 102 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG | |
| 103 | ZYNQMP_VARIANT_EV, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 104 | }, |
| 105 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 106 | .id = 0x04738093, |
| 107 | .device = 9, |
Michal Simek | 3626f2c | 2020-10-02 14:42:05 +0200 | [diff] [blame] | 108 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 109 | }, |
| 110 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 111 | .id = 0x04740093, |
| 112 | .device = 11, |
| 113 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 114 | }, |
| 115 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 116 | .id = 0x04750093, |
| 117 | .device = 15, |
| 118 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 119 | }, |
| 120 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 121 | .id = 0x04759093, |
| 122 | .device = 17, |
| 123 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 124 | }, |
| 125 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 126 | .id = 0x04758093, |
| 127 | .device = 19, |
| 128 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 129 | }, |
| 130 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 131 | .id = 0x047E1093, |
| 132 | .device = 21, |
| 133 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 134 | }, |
| 135 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 136 | .id = 0x047E3093, |
| 137 | .device = 23, |
| 138 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 139 | }, |
| 140 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 141 | .id = 0x047E5093, |
| 142 | .device = 25, |
| 143 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 144 | }, |
| 145 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 146 | .id = 0x047E4093, |
| 147 | .device = 27, |
| 148 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 149 | }, |
| 150 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 151 | .id = 0x047E0093, |
| 152 | .device = 28, |
| 153 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 154 | }, |
| 155 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 156 | .id = 0x047E2093, |
| 157 | .device = 29, |
| 158 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 159 | }, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 160 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 161 | .id = 0x047E6093, |
| 162 | .device = 39, |
| 163 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 164 | }, |
| 165 | { |
Michal Simek | 3fd2ed3 | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 166 | .id = 0x047FD093, |
| 167 | .device = 43, |
| 168 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 169 | }, |
| 170 | { |
Michal Simek | 3fd2ed3 | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 171 | .id = 0x047F8093, |
| 172 | .device = 46, |
| 173 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 174 | }, |
| 175 | { |
Michal Simek | 3fd2ed3 | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 176 | .id = 0x047FF093, |
| 177 | .device = 47, |
| 178 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 179 | }, |
| 180 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 181 | .id = 0x047FB093, |
| 182 | .device = 48, |
| 183 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b510e53 | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 184 | }, |
| 185 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 186 | .id = 0x047FE093, |
| 187 | .device = 49, |
| 188 | .variants = ZYNQMP_VARIANT_DR, |
Siva Durga Prasad Paladugu | 85f61a8 | 2019-07-23 11:56:17 +0530 | [diff] [blame] | 189 | }, |
T Karthik Reddy | 83df2cb | 2021-05-13 07:13:25 -0600 | [diff] [blame] | 190 | { |
| 191 | .id = 0x046d0093, |
| 192 | .device = 67, |
| 193 | .variants = ZYNQMP_VARIANT_DR, |
| 194 | }, |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 195 | }; |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 196 | |
Michal Simek | 005cac0 | 2020-10-05 09:35:40 +0200 | [diff] [blame] | 197 | static const struct { |
| 198 | u32 id; |
| 199 | char *name; |
| 200 | } zynqmp_svd_devices[] = { |
| 201 | { |
| 202 | .id = 0x04714093, |
| 203 | .name = "xck24" |
| 204 | }, |
| 205 | { |
| 206 | .id = 0x04724093, |
| 207 | .name = "xck26", |
| 208 | }, |
| 209 | }; |
| 210 | |
| 211 | static char *zynqmp_detect_svd_name(u32 idcode) |
| 212 | { |
| 213 | u32 i; |
| 214 | |
| 215 | for (i = 0; i < ARRAY_SIZE(zynqmp_svd_devices); i++) { |
| 216 | if (zynqmp_svd_devices[i].id == (idcode & 0x0FFFFFFF)) |
| 217 | return zynqmp_svd_devices[i].name; |
| 218 | } |
| 219 | |
| 220 | return "unknown"; |
| 221 | } |
| 222 | |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 223 | static char *zynqmp_get_silicon_idcode_name(void) |
| 224 | { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 225 | u32 i; |
| 226 | u32 idcode, idcode2; |
Michal Simek | 051b8bc | 2020-08-05 12:41:35 +0200 | [diff] [blame] | 227 | char name[ZYNQMP_VERSION_SIZE]; |
Ibai Erkiaga | c318ecb | 2020-08-04 23:17:30 +0100 | [diff] [blame] | 228 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
Michal Simek | b5c3b0d | 2020-10-07 15:13:17 +0200 | [diff] [blame] | 229 | int ret; |
Ibai Erkiaga | c318ecb | 2020-08-04 23:17:30 +0100 | [diff] [blame] | 230 | |
Michal Simek | 23c0def | 2020-10-21 12:16:02 +0200 | [diff] [blame] | 231 | ret = xilinx_pm_request(PM_GET_CHIPID, 0, 0, 0, 0, ret_payload); |
| 232 | if (ret) { |
| 233 | debug("%s: Getting chipid failed\n", __func__); |
| 234 | return "unknown"; |
| 235 | } |
Ibai Erkiaga | c318ecb | 2020-08-04 23:17:30 +0100 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * Firmware returns: |
| 239 | * payload[0][31:0] = status of the operation |
| 240 | * payload[1]] = IDCODE |
| 241 | * payload[2][19:0] = Version |
| 242 | * payload[2][28:20] = EXTENDED_IDCODE |
| 243 | * payload[2][29] = PL_INIT |
| 244 | */ |
| 245 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 246 | idcode = ret_payload[1]; |
| 247 | idcode2 = ret_payload[2] >> ZYNQMP_CSU_VERSION_EMPTY_SHIFT; |
Michal Simek | c76c96f | 2020-10-21 12:16:50 +0200 | [diff] [blame] | 248 | debug("%s, IDCODE: 0x%0x, IDCODE2: 0x%0x\r\n", __func__, idcode, |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 249 | idcode2); |
Michal Simek | 50d8cef | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 250 | |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 251 | for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) { |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 252 | if (zynqmp_devices[i].id == (idcode & 0x0FFFFFFF)) |
| 253 | break; |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 254 | } |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 255 | |
| 256 | if (i >= ARRAY_SIZE(zynqmp_devices)) |
Michal Simek | 005cac0 | 2020-10-05 09:35:40 +0200 | [diff] [blame] | 257 | return zynqmp_detect_svd_name(idcode); |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 258 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 259 | /* Add device prefix to the name */ |
Michal Simek | b5c3b0d | 2020-10-07 15:13:17 +0200 | [diff] [blame] | 260 | ret = snprintf(name, ZYNQMP_VERSION_SIZE, "zu%d", |
| 261 | zynqmp_devices[i].device); |
Michal Simek | d228167 | 2020-10-21 12:17:44 +0200 | [diff] [blame] | 262 | if (ret < 0) |
Michal Simek | b5c3b0d | 2020-10-07 15:13:17 +0200 | [diff] [blame] | 263 | return "unknown"; |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 264 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 265 | if (zynqmp_devices[i].variants & ZYNQMP_VARIANT_EV) { |
| 266 | /* Devices with EV variant might be EG/CG/EV family */ |
| 267 | if (idcode2 & IDCODE2_PL_INIT_MASK) { |
| 268 | u32 family = ((idcode2 & EFUSE_VCU_DIS_MASK) >> |
| 269 | EFUSE_VCU_DIS_SHIFT) << 1 | |
| 270 | ((idcode2 & EFUSE_GPU_DIS_MASK) >> |
| 271 | EFUSE_GPU_DIS_SHIFT); |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 272 | |
Ibai Erkiaga | 4f73618 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 273 | /* |
| 274 | * Get family name based on extended idcode values as |
| 275 | * determined on UG1087, EXTENDED_IDCODE register |
| 276 | * description |
| 277 | */ |
| 278 | switch (family) { |
| 279 | case 0x00: |
| 280 | strncat(name, "ev", 2); |
| 281 | break; |
| 282 | case 0x10: |
| 283 | strncat(name, "eg", 2); |
| 284 | break; |
| 285 | case 0x11: |
| 286 | strncat(name, "cg", 2); |
| 287 | break; |
| 288 | default: |
| 289 | /* Do not append family name*/ |
| 290 | break; |
| 291 | } |
| 292 | } else { |
| 293 | /* |
| 294 | * When PL powered down the VCU Disable efuse cannot be |
| 295 | * read. So, ignore the bit and just findout if it is CG |
| 296 | * or EG/EV variant. |
| 297 | */ |
| 298 | strncat(name, (idcode2 & EFUSE_GPU_DIS_MASK) ? "cg" : |
| 299 | "e", 2); |
| 300 | } |
| 301 | } else if (zynqmp_devices[i].variants & ZYNQMP_VARIANT_CG) { |
| 302 | /* Devices with CG variant might be EG or CG family */ |
| 303 | strncat(name, (idcode2 & EFUSE_GPU_DIS_MASK) ? "cg" : "eg", 2); |
| 304 | } else if (zynqmp_devices[i].variants & ZYNQMP_VARIANT_EG) { |
| 305 | strncat(name, "eg", 2); |
| 306 | } else if (zynqmp_devices[i].variants & ZYNQMP_VARIANT_DR) { |
| 307 | strncat(name, "dr", 2); |
| 308 | } else { |
| 309 | debug("Variant not identified\n"); |
Siva Durga Prasad Paladugu | ba2622d | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 310 | } |
| 311 | |
Michal Simek | 051b8bc | 2020-08-05 12:41:35 +0200 | [diff] [blame] | 312 | return strdup(name); |
Michal Simek | 8111aff | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 313 | } |
| 314 | #endif |
| 315 | |
Michal Simek | e5710e3 | 2022-02-17 14:28:42 +0100 | [diff] [blame] | 316 | int __maybe_unused psu_uboot_init(void) |
Michal Simek | 8b35330 | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 317 | { |
Michal Simek | 09a7d7d | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 318 | int ret; |
| 319 | |
Michal Simek | c8785f2 | 2018-01-10 11:48:48 +0100 | [diff] [blame] | 320 | ret = psu_init(); |
Michal Simek | 09a7d7d | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 321 | if (ret) |
| 322 | return ret; |
Michal Simek | 1f55e57 | 2020-03-20 08:59:02 +0100 | [diff] [blame] | 323 | |
Adrian Fiergolski | 8e87ecf | 2021-06-08 12:37:23 +0200 | [diff] [blame] | 324 | /* |
| 325 | * PS_SYSMON_ANALOG_BUS register determines mapping between SysMon |
| 326 | * supply sense channel to SysMon supply registers inside the IP. |
| 327 | * This register must be programmed to complete SysMon IP |
| 328 | * configuration. The default register configuration after |
| 329 | * power-up is incorrect. Hence, fix this by writing the |
| 330 | * correct value - 0x3210. |
| 331 | */ |
| 332 | writel(ZYNQMP_PS_SYSMON_ANALOG_BUS_VAL, |
| 333 | ZYNQMP_AMS_PS_SYSMON_ANALOG_BUS); |
| 334 | |
Michal Simek | 1f55e57 | 2020-03-20 08:59:02 +0100 | [diff] [blame] | 335 | /* Delay is required for clocks to be propagated */ |
| 336 | udelay(1000000); |
Michal Simek | e5710e3 | 2022-02-17 14:28:42 +0100 | [diff] [blame] | 337 | |
| 338 | return 0; |
| 339 | } |
Michal Simek | e0f3610 | 2017-07-12 13:08:41 +0200 | [diff] [blame] | 340 | |
Michal Simek | e5710e3 | 2022-02-17 14:28:42 +0100 | [diff] [blame] | 341 | #if !defined(CONFIG_SPL_BUILD) |
| 342 | # if defined(CONFIG_DEBUG_UART_BOARD_INIT) |
| 343 | void board_debug_uart_init(void) |
| 344 | { |
| 345 | # if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED) |
| 346 | psu_uboot_init(); |
| 347 | # endif |
| 348 | } |
| 349 | # endif |
Michal Simek | 09a7d7d | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 350 | |
Michal Simek | e5710e3 | 2022-02-17 14:28:42 +0100 | [diff] [blame] | 351 | # if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 352 | int board_early_init_f(void) |
| 353 | { |
| 354 | int ret = 0; |
| 355 | # if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED) && !defined(CONFIG_DEBUG_UART_BOARD_INIT) |
| 356 | ret = psu_uboot_init(); |
| 357 | # endif |
| 358 | return ret; |
Michal Simek | 8b35330 | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 359 | } |
Michal Simek | e5710e3 | 2022-02-17 14:28:42 +0100 | [diff] [blame] | 360 | # endif |
Michal Simek | ba6fb83 | 2022-02-17 14:28:40 +0100 | [diff] [blame] | 361 | #endif |
Michal Simek | 8b35330 | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 362 | |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 363 | static int multi_boot(void) |
| 364 | { |
Michal Simek | 6aca283 | 2021-07-27 16:17:31 +0200 | [diff] [blame] | 365 | u32 multiboot = 0; |
| 366 | int ret; |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 367 | |
Michal Simek | 6aca283 | 2021-07-27 16:17:31 +0200 | [diff] [blame] | 368 | ret = zynqmp_mmio_read((ulong)&csu_base->multi_boot, &multiboot); |
| 369 | if (ret) |
| 370 | return -EINVAL; |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 371 | |
Michal Simek | 21e5c32 | 2021-07-27 14:05:27 +0200 | [diff] [blame] | 372 | return multiboot; |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Jorge Ramirez-Ortiz | 34deca5 | 2021-10-13 15:48:00 +0200 | [diff] [blame] | 375 | #if defined(CONFIG_SPL_BUILD) |
| 376 | static void restore_jtag(void) |
| 377 | { |
| 378 | if (current_el() != 3) |
| 379 | return; |
| 380 | |
| 381 | writel(CSU_JTAG_SEC_GATE_DISABLE, &csu_base->jtag_sec); |
| 382 | writel(CSU_JTAG_DAP_ENABLE_DEBUG, &csu_base->jtag_dap_cfg); |
| 383 | writel(CSU_JTAG_CHAIN_WR_SETUP, &csu_base->jtag_chain_status_wr); |
| 384 | writel(CRLAPB_DBG_LPD_CTRL_SETUP_CLK, &crlapb_base->dbg_lpd_ctrl); |
| 385 | writel(CRLAPB_RST_LPD_DBG_RESET, &crlapb_base->rst_lpd_dbg); |
| 386 | writel(CSU_PCAP_PROG_RELEASE_PL, &csu_base->pcap_prog); |
| 387 | } |
| 388 | #endif |
| 389 | |
Jorge Ramirez-Ortiz | b0e388a | 2021-10-13 19:04:47 +0200 | [diff] [blame] | 390 | static void print_secure_boot(void) |
| 391 | { |
| 392 | u32 status = 0; |
| 393 | |
| 394 | if (zynqmp_mmio_read((ulong)&csu_base->status, &status)) |
| 395 | return; |
| 396 | |
| 397 | printf("Secure Boot:\t%sauthenticated, %sencrypted\n", |
| 398 | status & ZYNQMP_CSU_STATUS_AUTHENTICATED ? "" : "not ", |
| 399 | status & ZYNQMP_CSU_STATUS_ENCRYPTED ? "" : "not "); |
| 400 | } |
| 401 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 402 | int board_init(void) |
| 403 | { |
Michal Simek | 826d7eca | 2020-03-04 08:48:16 +0100 | [diff] [blame] | 404 | #if defined(CONFIG_ZYNQMP_FIRMWARE) |
Ibai Erkiaga | 2d9b95b | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 405 | struct udevice *dev; |
| 406 | |
| 407 | uclass_get_device_by_name(UCLASS_FIRMWARE, "zynqmp-power", &dev); |
| 408 | if (!dev) |
| 409 | panic("PMU Firmware device not found - Enable it"); |
Michal Simek | 826d7eca | 2020-03-04 08:48:16 +0100 | [diff] [blame] | 410 | #endif |
Ibai Erkiaga | 2d9b95b | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 411 | |
Luca Ceresoli | 23e6500 | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 412 | #if defined(CONFIG_SPL_BUILD) |
| 413 | /* Check *at build time* if the filename is an non-empty string */ |
| 414 | if (sizeof(CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE) > 1) |
| 415 | zynqmp_pmufw_load_config_object(zynqmp_pm_cfg_obj, |
| 416 | zynqmp_pm_cfg_obj_size); |
Michal Simek | ae9dc11 | 2021-02-02 16:34:48 +0100 | [diff] [blame] | 417 | printf("Silicon version:\t%d\n", zynqmp_get_silicon_version()); |
Jorge Ramirez-Ortiz | 34deca5 | 2021-10-13 15:48:00 +0200 | [diff] [blame] | 418 | |
| 419 | /* the CSU disables the JTAG interface when secure boot is enabled */ |
Ricardo Salveti | 5b774f0 | 2021-11-04 16:28:02 -0300 | [diff] [blame] | 420 | if (CONFIG_IS_ENABLED(ZYNQMP_RESTORE_JTAG)) |
Jorge Ramirez-Ortiz | 34deca5 | 2021-10-13 15:48:00 +0200 | [diff] [blame] | 421 | restore_jtag(); |
Michal Simek | 394ee24 | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 422 | #else |
| 423 | if (CONFIG_IS_ENABLED(DM_I2C) && CONFIG_IS_ENABLED(I2C_EEPROM)) |
| 424 | xilinx_read_eeprom(); |
Luca Ceresoli | 23e6500 | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 425 | #endif |
| 426 | |
Michal Simek | fb7242d | 2015-06-22 14:31:06 +0200 | [diff] [blame] | 427 | printf("EL Level:\tEL%d\n", current_el()); |
| 428 | |
Michal Simek | 1aab114 | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 429 | #if CONFIG_IS_ENABLED(FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) |
Ibai Erkiaga | e91ca7c | 2020-08-04 23:17:29 +0100 | [diff] [blame] | 430 | zynqmppl.name = zynqmp_get_silicon_idcode_name(); |
| 431 | printf("Chip ID:\t%s\n", zynqmppl.name); |
| 432 | fpga_init(); |
| 433 | fpga_add(fpga_xilinx, &zynqmppl); |
Michal Simek | bf0f9ca | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 434 | #endif |
| 435 | |
Jorge Ramirez-Ortiz | b0e388a | 2021-10-13 19:04:47 +0200 | [diff] [blame] | 436 | /* display secure boot information */ |
| 437 | print_secure_boot(); |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 438 | if (current_el() == 3) |
Michal Simek | 21e5c32 | 2021-07-27 14:05:27 +0200 | [diff] [blame] | 439 | printf("Multiboot:\t%d\n", multi_boot()); |
Michal Simek | 4690046 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 440 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | int board_early_init_r(void) |
| 445 | { |
| 446 | u32 val; |
| 447 | |
Siva Durga Prasad Paladugu | 64d9000 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 448 | if (current_el() != 3) |
| 449 | return 0; |
| 450 | |
Michal Simek | 245d528 | 2017-07-12 10:32:18 +0200 | [diff] [blame] | 451 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 452 | val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 453 | |
Siva Durga Prasad Paladugu | 64d9000 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 454 | if (!val) { |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 455 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 456 | val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 457 | writel(val, &crlapb_base->timestamp_ref_ctrl); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 458 | |
Michal Simek | c23d3f8 | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 459 | /* Program freq register in System counter */ |
| 460 | writel(zynqmp_get_system_timer_freq(), |
| 461 | &iou_scntr_secure->base_frequency_id_register); |
| 462 | /* And enable system counter */ |
| 463 | writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN, |
| 464 | &iou_scntr_secure->counter_control_register); |
| 465 | } |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 466 | return 0; |
| 467 | } |
| 468 | |
Nitin Jain | b2eb59b | 2018-02-16 12:56:17 +0530 | [diff] [blame] | 469 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 470 | char *const argv[]) |
Nitin Jain | b2eb59b | 2018-02-16 12:56:17 +0530 | [diff] [blame] | 471 | { |
| 472 | int ret = 0; |
| 473 | |
| 474 | if (current_el() > 1) { |
| 475 | smp_kick_all_cpus(); |
| 476 | dcache_disable(); |
| 477 | armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry, |
| 478 | ES_TO_AARCH64); |
| 479 | } else { |
| 480 | printf("FAIL: current EL is not above EL1\n"); |
| 481 | ret = EINVAL; |
| 482 | } |
| 483 | return ret; |
| 484 | } |
| 485 | |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 486 | #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE) |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 487 | int dram_init_banksize(void) |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 488 | { |
Nitin Jain | 9bcc76f | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 489 | int ret; |
| 490 | |
| 491 | ret = fdtdec_setup_memory_banksize(); |
| 492 | if (ret) |
| 493 | return ret; |
| 494 | |
| 495 | mem_map_fill(); |
| 496 | |
| 497 | return 0; |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 498 | } |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 499 | |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 500 | int dram_init(void) |
| 501 | { |
Siva Durga Prasad Paladugu | b3d55ea | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 502 | if (fdtdec_setup_mem_size_base() != 0) |
Nathan Rossi | ac04bfa | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 503 | return -EINVAL; |
Tom Rini | edcfdbd | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 504 | |
| 505 | return 0; |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 506 | } |
Michal Simek | 97ab961 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 507 | |
| 508 | ulong board_get_usable_ram_top(ulong total_size) |
| 509 | { |
| 510 | phys_size_t size; |
| 511 | phys_addr_t reg; |
| 512 | struct lmb lmb; |
| 513 | |
Michal Simek | f14a4f2 | 2021-08-19 11:07:59 +0200 | [diff] [blame] | 514 | if (!IS_ALIGNED((ulong)gd->fdt_blob, 0x8)) |
| 515 | panic("Not 64bit aligned DT location: %p\n", gd->fdt_blob); |
| 516 | |
Michal Simek | 97ab961 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 517 | /* found enough not-reserved memory to relocated U-Boot */ |
| 518 | lmb_init(&lmb); |
| 519 | lmb_add(&lmb, gd->ram_base, gd->ram_size); |
| 520 | boot_fdt_add_mem_rsv_regions(&lmb, (void *)gd->fdt_blob); |
Michal Simek | 770264e | 2021-10-21 08:58:50 +0200 | [diff] [blame] | 521 | size = ALIGN(CONFIG_SYS_MALLOC_LEN + total_size, MMU_SECTION_SIZE); |
Michal Simek | 97ab961 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 522 | reg = lmb_alloc(&lmb, size, MMU_SECTION_SIZE); |
| 523 | |
| 524 | if (!reg) |
| 525 | reg = gd->ram_top - size; |
| 526 | |
| 527 | return reg + size; |
| 528 | } |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 529 | #else |
Nitin Jain | 9bcc76f | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 530 | int dram_init_banksize(void) |
| 531 | { |
Nitin Jain | 9bcc76f | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 532 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 533 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
Nitin Jain | 9bcc76f | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 534 | |
| 535 | mem_map_fill(); |
| 536 | |
| 537 | return 0; |
| 538 | } |
| 539 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 540 | int dram_init(void) |
| 541 | { |
Michal Simek | 1b84621 | 2018-04-11 16:12:28 +0200 | [diff] [blame] | 542 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 543 | CONFIG_SYS_SDRAM_SIZE); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 544 | |
| 545 | return 0; |
| 546 | } |
Michal Simek | 8faa66a | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 547 | #endif |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 548 | |
Michal Simek | 2a22033 | 2021-07-13 16:39:26 +0200 | [diff] [blame] | 549 | #if !CONFIG_IS_ENABLED(SYSRESET) |
Harald Seiler | 6f14d5f | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 550 | void reset_cpu(void) |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 551 | { |
| 552 | } |
Michal Simek | 2a22033 | 2021-07-13 16:39:26 +0200 | [diff] [blame] | 553 | #endif |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 554 | |
Michal Simek | 8ec3004 | 2020-08-20 10:54:45 +0200 | [diff] [blame] | 555 | static u8 __maybe_unused zynqmp_get_bootmode(void) |
| 556 | { |
| 557 | u8 bootmode; |
| 558 | u32 reg = 0; |
| 559 | int ret; |
| 560 | |
| 561 | ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, ®); |
| 562 | if (ret) |
| 563 | return -EINVAL; |
| 564 | |
Michal Simek | 58cc08c | 2021-07-28 12:25:49 +0200 | [diff] [blame] | 565 | debug("HW boot mode: %x\n", reg & BOOT_MODES_MASK); |
| 566 | debug("ALT boot mode: %x\n", reg >> BOOT_MODE_ALT_SHIFT); |
| 567 | |
Michal Simek | 8ec3004 | 2020-08-20 10:54:45 +0200 | [diff] [blame] | 568 | if (reg >> BOOT_MODE_ALT_SHIFT) |
| 569 | reg >>= BOOT_MODE_ALT_SHIFT; |
| 570 | |
| 571 | bootmode = reg & BOOT_MODES_MASK; |
| 572 | |
| 573 | return bootmode; |
| 574 | } |
| 575 | |
Michal Simek | 342edfe | 2018-12-20 09:33:38 +0100 | [diff] [blame] | 576 | #if defined(CONFIG_BOARD_LATE_INIT) |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 577 | static const struct { |
| 578 | u32 bit; |
| 579 | const char *name; |
| 580 | } reset_reasons[] = { |
| 581 | { RESET_REASON_DEBUG_SYS, "DEBUG" }, |
| 582 | { RESET_REASON_SOFT, "SOFT" }, |
| 583 | { RESET_REASON_SRST, "SRST" }, |
| 584 | { RESET_REASON_PSONLY, "PS-ONLY" }, |
| 585 | { RESET_REASON_PMU, "PMU" }, |
| 586 | { RESET_REASON_INTERNAL, "INTERNAL" }, |
| 587 | { RESET_REASON_EXTERNAL, "EXTERNAL" }, |
| 588 | {} |
| 589 | }; |
| 590 | |
T Karthik Reddy | 09b6def | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 591 | static int reset_reason(void) |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 592 | { |
T Karthik Reddy | 09b6def | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 593 | u32 reg; |
| 594 | int i, ret; |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 595 | const char *reason = NULL; |
| 596 | |
T Karthik Reddy | 09b6def | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 597 | ret = zynqmp_mmio_read((ulong)&crlapb_base->reset_reason, ®); |
| 598 | if (ret) |
| 599 | return -EINVAL; |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 600 | |
| 601 | puts("Reset reason:\t"); |
| 602 | |
| 603 | for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) { |
T Karthik Reddy | 09b6def | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 604 | if (reg & reset_reasons[i].bit) { |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 605 | reason = reset_reasons[i].name; |
| 606 | printf("%s ", reset_reasons[i].name); |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | puts("\n"); |
| 612 | |
| 613 | env_set("reset_reason", reason); |
| 614 | |
Michal Simek | 0954c8c | 2021-02-09 08:50:22 +0100 | [diff] [blame] | 615 | return 0; |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 616 | } |
| 617 | |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 618 | static int set_fdtfile(void) |
| 619 | { |
| 620 | char *compatible, *fdtfile; |
| 621 | const char *suffix = ".dtb"; |
| 622 | const char *vendor = "xilinx/"; |
Igor Lantsman | e167bac | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 623 | int fdt_compat_len; |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 624 | |
| 625 | if (env_get("fdtfile")) |
| 626 | return 0; |
| 627 | |
Igor Lantsman | e167bac | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 628 | compatible = (char *)fdt_getprop(gd->fdt_blob, 0, "compatible", |
| 629 | &fdt_compat_len); |
| 630 | if (compatible && fdt_compat_len) { |
| 631 | char *name; |
| 632 | |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 633 | debug("Compatible: %s\n", compatible); |
| 634 | |
Igor Lantsman | e167bac | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 635 | name = strchr(compatible, ','); |
| 636 | if (!name) |
| 637 | return -EINVAL; |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 638 | |
Igor Lantsman | e167bac | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 639 | name++; |
| 640 | |
| 641 | fdtfile = calloc(1, strlen(vendor) + strlen(name) + |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 642 | strlen(suffix) + 1); |
| 643 | if (!fdtfile) |
| 644 | return -ENOMEM; |
| 645 | |
Igor Lantsman | e167bac | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 646 | sprintf(fdtfile, "%s%s%s", vendor, name, suffix); |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 647 | |
| 648 | env_set("fdtfile", fdtfile); |
| 649 | free(fdtfile); |
| 650 | } |
| 651 | |
| 652 | return 0; |
| 653 | } |
| 654 | |
Michal Simek | 9c91e61 | 2020-04-08 11:04:41 +0200 | [diff] [blame] | 655 | int board_late_init(void) |
| 656 | { |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 657 | u8 bootmode; |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 658 | struct udevice *dev; |
| 659 | int bootseq = -1; |
| 660 | int bootseq_len = 0; |
Michal Simek | 7410b14 | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 661 | int env_targets_len = 0; |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 662 | const char *mode; |
| 663 | char *new_targets; |
Siva Durga Prasad Paladugu | 245c556 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 664 | char *env_targets; |
Michal Simek | 7cb4cca | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 665 | int ret, multiboot; |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 666 | |
Michal Simek | 482f549 | 2018-10-05 08:55:16 +0200 | [diff] [blame] | 667 | #if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD) |
| 668 | usb_ether_init(); |
| 669 | #endif |
| 670 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 671 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 672 | debug("Saved variables - Skipping\n"); |
| 673 | return 0; |
| 674 | } |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 675 | |
Michal Simek | bab07b6 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 676 | if (!CONFIG_IS_ENABLED(ENV_VARS_UBOOT_RUNTIME_CONFIG)) |
| 677 | return 0; |
| 678 | |
Michal Simek | 1ca66d7 | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 679 | ret = set_fdtfile(); |
| 680 | if (ret) |
| 681 | return ret; |
| 682 | |
Michal Simek | 7cb4cca | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 683 | multiboot = multi_boot(); |
| 684 | if (multiboot >= 0) |
| 685 | env_set_hex("multiboot", multiboot); |
| 686 | |
Michal Simek | 9c91e61 | 2020-04-08 11:04:41 +0200 | [diff] [blame] | 687 | bootmode = zynqmp_get_bootmode(); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 688 | |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 689 | puts("Bootmode: "); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 690 | switch (bootmode) { |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 691 | case USB_MODE: |
| 692 | puts("USB_MODE\n"); |
T Karthik Reddy | 9eee8e3 | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 693 | mode = "usb_dfu0 usb_dfu1"; |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 694 | env_set("modeboot", "usb_dfu_spl"); |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 695 | break; |
Siva Durga Prasad Paladugu | 30f0fc7 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 696 | case JTAG_MODE: |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 697 | puts("JTAG_MODE\n"); |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 698 | mode = "jtag pxe dhcp"; |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 699 | env_set("modeboot", "jtagboot"); |
Siva Durga Prasad Paladugu | 30f0fc7 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 700 | break; |
| 701 | case QSPI_MODE_24BIT: |
| 702 | case QSPI_MODE_32BIT: |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 703 | mode = "qspi0"; |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 704 | puts("QSPI_MODE\n"); |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 705 | env_set("modeboot", "qspiboot"); |
Siva Durga Prasad Paladugu | 30f0fc7 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 706 | break; |
Michal Simek | 02d66cd | 2015-04-15 15:02:28 +0200 | [diff] [blame] | 707 | case EMMC_MODE: |
Michal Simek | df7ff0a | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 708 | puts("EMMC_MODE\n"); |
T Karthik Reddy | 19735c3 | 2019-12-17 06:41:42 -0700 | [diff] [blame] | 709 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 710 | "mmc@ff160000", &dev) && |
| 711 | uclass_get_device_by_name(UCLASS_MMC, |
| 712 | "sdhci@ff160000", &dev)) { |
| 713 | puts("Boot from EMMC but without SD0 enabled!\n"); |
| 714 | return -1; |
| 715 | } |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 716 | debug("mmc0 device found at %p, seq %d\n", dev, dev_seq(dev)); |
T Karthik Reddy | 19735c3 | 2019-12-17 06:41:42 -0700 | [diff] [blame] | 717 | |
| 718 | mode = "mmc"; |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 719 | bootseq = dev_seq(dev); |
Ashok Reddy Soma | a10be05 | 2021-09-15 08:52:17 +0200 | [diff] [blame] | 720 | env_set("modeboot", "emmcboot"); |
Michal Simek | df7ff0a | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 721 | break; |
| 722 | case SD_MODE: |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 723 | puts("SD_MODE\n"); |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 724 | if (uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | e91778d | 2019-01-03 15:44:24 +0530 | [diff] [blame] | 725 | "mmc@ff160000", &dev) && |
| 726 | uclass_get_device_by_name(UCLASS_MMC, |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 727 | "sdhci@ff160000", &dev)) { |
| 728 | puts("Boot from SD0 but without SD0 enabled!\n"); |
| 729 | return -1; |
| 730 | } |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 731 | debug("mmc0 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 732 | |
| 733 | mode = "mmc"; |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 734 | bootseq = dev_seq(dev); |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 735 | env_set("modeboot", "sdboot"); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 736 | break; |
Siva Durga Prasad Paladugu | 29a77d2 | 2016-09-21 11:45:05 +0530 | [diff] [blame] | 737 | case SD1_LSHFT_MODE: |
| 738 | puts("LVL_SHFT_"); |
Michal Simek | 293f47b | 2021-10-18 13:30:04 +0200 | [diff] [blame] | 739 | fallthrough; |
Michal Simek | 108e184 | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 740 | case SD_MODE1: |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 741 | puts("SD_MODE1\n"); |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 742 | if (uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | e91778d | 2019-01-03 15:44:24 +0530 | [diff] [blame] | 743 | "mmc@ff170000", &dev) && |
| 744 | uclass_get_device_by_name(UCLASS_MMC, |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 745 | "sdhci@ff170000", &dev)) { |
| 746 | puts("Boot from SD1 but without SD1 enabled!\n"); |
| 747 | return -1; |
| 748 | } |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 749 | debug("mmc1 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 750 | |
| 751 | mode = "mmc"; |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 752 | bootseq = dev_seq(dev); |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 753 | env_set("modeboot", "sdboot"); |
Michal Simek | 108e184 | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 754 | break; |
| 755 | case NAND_MODE: |
Michal Simek | c5d9523 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 756 | puts("NAND_MODE\n"); |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 757 | mode = "nand0"; |
Michal Simek | 4338035 | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 758 | env_set("modeboot", "nandboot"); |
Michal Simek | 108e184 | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 759 | break; |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 760 | default: |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 761 | mode = ""; |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 762 | printf("Invalid Boot Mode:0x%x\n", bootmode); |
| 763 | break; |
| 764 | } |
| 765 | |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 766 | if (bootseq >= 0) { |
| 767 | bootseq_len = snprintf(NULL, 0, "%i", bootseq); |
| 768 | debug("Bootseq len: %x\n", bootseq_len); |
Michal Simek | 7a117c7 | 2021-01-11 13:46:58 +0100 | [diff] [blame] | 769 | env_set_hex("bootseq", bootseq); |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 770 | } |
| 771 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 772 | /* |
| 773 | * One terminating char + one byte for space between mode |
| 774 | * and default boot_targets |
| 775 | */ |
Siva Durga Prasad Paladugu | 245c556 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 776 | env_targets = env_get("boot_targets"); |
Michal Simek | 7410b14 | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 777 | if (env_targets) |
| 778 | env_targets_len = strlen(env_targets); |
| 779 | |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 780 | new_targets = calloc(1, strlen(mode) + env_targets_len + 2 + |
| 781 | bootseq_len); |
Michal Simek | 089b84d | 2018-06-13 09:42:41 +0200 | [diff] [blame] | 782 | if (!new_targets) |
| 783 | return -ENOMEM; |
Michal Simek | 7410b14 | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 784 | |
Michal Simek | f183a98 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 785 | if (bootseq >= 0) |
| 786 | sprintf(new_targets, "%s%x %s", mode, bootseq, |
| 787 | env_targets ? env_targets : ""); |
| 788 | else |
| 789 | sprintf(new_targets, "%s %s", mode, |
| 790 | env_targets ? env_targets : ""); |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 791 | |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 792 | env_set("boot_targets", new_targets); |
Michal Simek | 7748823 | 2021-07-28 12:46:39 +0200 | [diff] [blame] | 793 | free(new_targets); |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 794 | |
Michal Simek | 29b9b71 | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 795 | reset_reason(); |
| 796 | |
Michal Simek | 705d44a | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 797 | return board_late_init_xilinx(); |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 798 | } |
Michal Simek | 342edfe | 2018-12-20 09:33:38 +0100 | [diff] [blame] | 799 | #endif |
Siva Durga Prasad Paladugu | 650e0a3 | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 800 | |
| 801 | int checkboard(void) |
| 802 | { |
Michal Simek | 47ce936 | 2016-01-25 11:04:21 +0100 | [diff] [blame] | 803 | puts("Board: Xilinx ZynqMP\n"); |
Siva Durga Prasad Paladugu | 650e0a3 | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 804 | return 0; |
| 805 | } |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 806 | |
Michal Simek | e0026bf | 2021-05-19 15:16:19 +0200 | [diff] [blame] | 807 | int mmc_get_env_dev(void) |
| 808 | { |
| 809 | struct udevice *dev; |
| 810 | int bootseq = 0; |
| 811 | |
| 812 | switch (zynqmp_get_bootmode()) { |
| 813 | case EMMC_MODE: |
| 814 | case SD_MODE: |
| 815 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 816 | "mmc@ff160000", &dev) && |
| 817 | uclass_get_device_by_name(UCLASS_MMC, |
| 818 | "sdhci@ff160000", &dev)) { |
| 819 | return -1; |
| 820 | } |
| 821 | bootseq = dev_seq(dev); |
| 822 | break; |
| 823 | case SD1_LSHFT_MODE: |
| 824 | case SD_MODE1: |
| 825 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 826 | "mmc@ff170000", &dev) && |
| 827 | uclass_get_device_by_name(UCLASS_MMC, |
| 828 | "sdhci@ff170000", &dev)) { |
| 829 | return -1; |
| 830 | } |
| 831 | bootseq = dev_seq(dev); |
| 832 | break; |
| 833 | default: |
| 834 | break; |
| 835 | } |
| 836 | |
| 837 | debug("bootseq %d\n", bootseq); |
| 838 | |
| 839 | return bootseq; |
| 840 | } |
| 841 | |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 842 | enum env_location env_get_location(enum env_operation op, int prio) |
| 843 | { |
| 844 | u32 bootmode = zynqmp_get_bootmode(); |
| 845 | |
| 846 | if (prio) |
| 847 | return ENVL_UNKNOWN; |
| 848 | |
| 849 | switch (bootmode) { |
| 850 | case EMMC_MODE: |
| 851 | case SD_MODE: |
| 852 | case SD1_LSHFT_MODE: |
| 853 | case SD_MODE1: |
| 854 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 855 | return ENVL_FAT; |
| 856 | if (IS_ENABLED(CONFIG_ENV_IS_IN_EXT4)) |
| 857 | return ENVL_EXT4; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 858 | return ENVL_NOWHERE; |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 859 | case NAND_MODE: |
| 860 | if (IS_ENABLED(CONFIG_ENV_IS_IN_NAND)) |
| 861 | return ENVL_NAND; |
| 862 | if (IS_ENABLED(CONFIG_ENV_IS_IN_UBI)) |
| 863 | return ENVL_UBI; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 864 | return ENVL_NOWHERE; |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 865 | case QSPI_MODE_24BIT: |
| 866 | case QSPI_MODE_32BIT: |
| 867 | if (IS_ENABLED(CONFIG_ENV_IS_IN_SPI_FLASH)) |
| 868 | return ENVL_SPI_FLASH; |
Mike Looijmans | 682cf08 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 869 | return ENVL_NOWHERE; |
Michal Simek | 8d4a8d4 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 870 | case JTAG_MODE: |
| 871 | default: |
| 872 | return ENVL_NOWHERE; |
| 873 | } |
| 874 | } |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 875 | |
| 876 | #if defined(CONFIG_SET_DFU_ALT_INFO) |
| 877 | |
| 878 | #define DFU_ALT_BUF_LEN SZ_1K |
| 879 | |
| 880 | void set_dfu_alt_info(char *interface, char *devstr) |
| 881 | { |
| 882 | u8 multiboot; |
| 883 | int bootseq = 0; |
| 884 | |
| 885 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, DFU_ALT_BUF_LEN); |
| 886 | |
| 887 | if (env_get("dfu_alt_info")) |
| 888 | return; |
| 889 | |
| 890 | memset(buf, 0, sizeof(buf)); |
| 891 | |
| 892 | multiboot = multi_boot(); |
Michal Simek | 7cb4cca | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 893 | if (multiboot < 0) |
| 894 | multiboot = 0; |
| 895 | |
| 896 | multiboot = env_get_hex("multiboot", multiboot); |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 897 | debug("Multiboot: %d\n", multiboot); |
| 898 | |
| 899 | switch (zynqmp_get_bootmode()) { |
| 900 | case EMMC_MODE: |
| 901 | case SD_MODE: |
| 902 | case SD1_LSHFT_MODE: |
| 903 | case SD_MODE1: |
| 904 | bootseq = mmc_get_env_dev(); |
| 905 | if (!multiboot) |
| 906 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 907 | "mmc %d:1=boot.bin fat %d 1;" |
Michal Simek | 6910319 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 908 | "%s fat %d 1", |
| 909 | bootseq, bootseq, |
| 910 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, bootseq); |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 911 | else |
| 912 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 913 | "mmc %d:1=boot%04d.bin fat %d 1;" |
Michal Simek | 6910319 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 914 | "%s fat %d 1", |
| 915 | bootseq, multiboot, bootseq, |
| 916 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, bootseq); |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 917 | break; |
| 918 | case QSPI_MODE_24BIT: |
| 919 | case QSPI_MODE_32BIT: |
| 920 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 921 | "sf 0:0=boot.bin raw %x 0x1500000;" |
Michal Simek | 6910319 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 922 | "%s raw 0x%x 0x500000", |
| 923 | multiboot * SZ_32K, CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, |
| 924 | CONFIG_SYS_SPI_U_BOOT_OFFS); |
Michal Simek | cfb3760 | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 925 | break; |
| 926 | default: |
| 927 | return; |
| 928 | } |
| 929 | |
| 930 | env_set("dfu_alt_info", buf); |
| 931 | puts("DFU alt info setting: done\n"); |
| 932 | } |
| 933 | #endif |