Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 84c7204 | 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 | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | 62270f4 | 2019-11-14 12:57:35 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
Michal Simek | c0adba5 | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 10 | #include <debug_uart.h> |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 11 | #include <dfu.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 12 | #include <env.h> |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 13 | #include <env_internal.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 14 | #include <init.h> |
Michal Simek | ce39ee2 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 15 | #include <image.h> |
| 16 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 18 | #include <net.h> |
Michal Simek | 679b994 | 2015-09-30 17:26:55 +0200 | [diff] [blame] | 19 | #include <sata.h> |
Michal Simek | 6fe6f13 | 2015-07-23 13:27:40 +0200 | [diff] [blame] | 20 | #include <ahci.h> |
| 21 | #include <scsi.h> |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 22 | #include <malloc.h> |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 23 | #include <memalign.h> |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 24 | #include <wdt.h> |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 25 | #include <asm/arch/clk.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 26 | #include <asm/arch/hardware.h> |
| 27 | #include <asm/arch/sys_proto.h> |
Michal Simek | 2ad341e | 2018-01-10 09:36:09 +0100 | [diff] [blame] | 28 | #include <asm/arch/psu_init_gpl.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 29 | #include <asm/cache.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 30 | #include <asm/global_data.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 31 | #include <asm/io.h> |
Simon Glass | 25a5818 | 2020-05-10 11:40:06 -0600 | [diff] [blame] | 32 | #include <asm/ptrace.h> |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 33 | #include <dm/device.h> |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 34 | #include <dm/uclass.h> |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 35 | #include <usb.h> |
| 36 | #include <dwc3-uboot.h> |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 37 | #include <zynqmppl.h> |
Ibai Erkiaga | 009ab7b | 2019-09-27 11:37:01 +0100 | [diff] [blame] | 38 | #include <zynqmp_firmware.h> |
Michal Simek | 9feff38 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 39 | #include <g_dnl.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 40 | #include <linux/bitops.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 41 | #include <linux/delay.h> |
| 42 | #include <linux/sizes.h> |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 43 | #include "../common/board.h" |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 44 | |
Luca Ceresoli | c28a9cf | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 45 | #include "pm_cfg_obj.h" |
| 46 | |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 47 | #define ZYNQMP_VERSION_SIZE 7 |
Michal Simek | 2fbdbee | 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 | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 54 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
| 56 | |
Michal Simek | 29bd8ad | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 57 | #if CONFIG_IS_ENABLED(FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 58 | static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC; |
| 59 | |
Ibai Erkiaga | fa79316 | 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 | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 67 | static const struct { |
Michal Simek | 8ebdf9e | 2017-11-06 12:55:59 +0100 | [diff] [blame] | 68 | u32 id; |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 69 | u8 device; |
| 70 | u8 variants; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 71 | } zynqmp_devices[] = { |
| 72 | { |
Ibai Erkiaga | fa79316 | 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 | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 76 | }, |
| 77 | { |
Ibai Erkiaga | fa79316 | 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 | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 81 | }, |
| 82 | { |
Ibai Erkiaga | fa79316 | 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 | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 87 | }, |
| 88 | { |
Ibai Erkiaga | fa79316 | 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 | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 93 | }, |
| 94 | { |
Ibai Erkiaga | fa79316 | 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 | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 98 | }, |
| 99 | { |
Ibai Erkiaga | fa79316 | 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 | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 104 | }, |
| 105 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 106 | .id = 0x04738093, |
| 107 | .device = 9, |
Michal Simek | bbe086a | 2020-10-02 14:42:05 +0200 | [diff] [blame] | 108 | .variants = ZYNQMP_VARIANT_EG | ZYNQMP_VARIANT_CG, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 109 | }, |
| 110 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 111 | .id = 0x04740093, |
| 112 | .device = 11, |
| 113 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 114 | }, |
| 115 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 116 | .id = 0x04750093, |
| 117 | .device = 15, |
| 118 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 119 | }, |
| 120 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 121 | .id = 0x04759093, |
| 122 | .device = 17, |
| 123 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 124 | }, |
| 125 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 126 | .id = 0x04758093, |
| 127 | .device = 19, |
| 128 | .variants = ZYNQMP_VARIANT_EG, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 129 | }, |
| 130 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 131 | .id = 0x047E1093, |
| 132 | .device = 21, |
| 133 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 134 | }, |
| 135 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 136 | .id = 0x047E3093, |
| 137 | .device = 23, |
| 138 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 139 | }, |
| 140 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 141 | .id = 0x047E5093, |
| 142 | .device = 25, |
| 143 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 144 | }, |
| 145 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 146 | .id = 0x047E4093, |
| 147 | .device = 27, |
| 148 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 149 | }, |
| 150 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 151 | .id = 0x047E0093, |
| 152 | .device = 28, |
| 153 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 154 | }, |
| 155 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 156 | .id = 0x047E2093, |
| 157 | .device = 29, |
| 158 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 159 | }, |
| 160 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 161 | .id = 0x047E6093, |
| 162 | .device = 39, |
| 163 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 164 | }, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 165 | { |
Michal Simek | e17c5ec | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 166 | .id = 0x047FD093, |
| 167 | .device = 43, |
| 168 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 169 | }, |
| 170 | { |
Michal Simek | e17c5ec | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 171 | .id = 0x047F8093, |
| 172 | .device = 46, |
| 173 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 174 | }, |
| 175 | { |
Michal Simek | e17c5ec | 2020-09-11 09:22:15 +0200 | [diff] [blame] | 176 | .id = 0x047FF093, |
| 177 | .device = 47, |
| 178 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 179 | }, |
Michal Simek | b030fed | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 180 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 181 | .id = 0x047FB093, |
| 182 | .device = 48, |
| 183 | .variants = ZYNQMP_VARIANT_DR, |
Michal Simek | b030fed | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 184 | }, |
| 185 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 186 | .id = 0x047FE093, |
| 187 | .device = 49, |
| 188 | .variants = ZYNQMP_VARIANT_DR, |
Siva Durga Prasad Paladugu | 134b0c8 | 2019-07-23 11:56:17 +0530 | [diff] [blame] | 189 | }, |
T Karthik Reddy | 4557627 | 2021-05-13 07:13:25 -0600 | [diff] [blame] | 190 | { |
| 191 | .id = 0x046d0093, |
| 192 | .device = 67, |
| 193 | .variants = ZYNQMP_VARIANT_DR, |
| 194 | }, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 195 | }; |
| 196 | |
Michal Simek | ddf8dea | 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 | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 223 | static char *zynqmp_get_silicon_idcode_name(void) |
| 224 | { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 225 | u32 i; |
| 226 | u32 idcode, idcode2; |
Michal Simek | ced4d46 | 2020-08-05 12:41:35 +0200 | [diff] [blame] | 227 | char name[ZYNQMP_VERSION_SIZE]; |
Ibai Erkiaga | 050f10f | 2020-08-04 23:17:30 +0100 | [diff] [blame] | 228 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
Michal Simek | 0d76b71 | 2020-10-07 15:13:17 +0200 | [diff] [blame] | 229 | int ret; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 230 | |
Michal Simek | d026aa1 | 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 | 050f10f | 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 | fa79316 | 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 | 16df2f1 | 2020-10-21 12:16:50 +0200 | [diff] [blame] | 248 | debug("%s, IDCODE: 0x%0x, IDCODE2: 0x%0x\r\n", __func__, idcode, |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 249 | idcode2); |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 250 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 251 | for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) { |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 252 | if (zynqmp_devices[i].id == (idcode & 0x0FFFFFFF)) |
| 253 | break; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 254 | } |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 255 | |
| 256 | if (i >= ARRAY_SIZE(zynqmp_devices)) |
Michal Simek | ddf8dea | 2020-10-05 09:35:40 +0200 | [diff] [blame] | 257 | return zynqmp_detect_svd_name(idcode); |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 258 | |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 259 | /* Add device prefix to the name */ |
Michal Simek | 0d76b71 | 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 | 07499da | 2020-10-21 12:17:44 +0200 | [diff] [blame] | 262 | if (ret < 0) |
Michal Simek | 0d76b71 | 2020-10-07 15:13:17 +0200 | [diff] [blame] | 263 | return "unknown"; |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 264 | |
Ibai Erkiaga | fa79316 | 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); |
| 272 | |
| 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); |
Siva Durga Prasad Paladugu | 5473f24 | 2018-10-26 17:47:55 +0530 | [diff] [blame] | 300 | } |
Ibai Erkiaga | fa79316 | 2020-08-04 23:17:31 +0100 | [diff] [blame] | 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 | 5473f24 | 2018-10-26 17:47:55 +0530 | [diff] [blame] | 310 | } |
| 311 | |
Michal Simek | ced4d46 | 2020-08-05 12:41:35 +0200 | [diff] [blame] | 312 | return strdup(name); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 313 | } |
| 314 | #endif |
| 315 | |
Michal Simek | 11381fb | 2022-02-17 14:28:42 +0100 | [diff] [blame^] | 316 | int __maybe_unused psu_uboot_init(void) |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 317 | { |
Michal Simek | c0adba5 | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 318 | int ret; |
| 319 | |
Michal Simek | f32e79f | 2018-01-10 11:48:48 +0100 | [diff] [blame] | 320 | ret = psu_init(); |
Michal Simek | c0adba5 | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 321 | if (ret) |
| 322 | return ret; |
Michal Simek | f8451f1 | 2020-03-20 08:59:02 +0100 | [diff] [blame] | 323 | |
Adrian Fiergolski | 3414712b | 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 | f8451f1 | 2020-03-20 08:59:02 +0100 | [diff] [blame] | 335 | /* Delay is required for clocks to be propagated */ |
| 336 | udelay(1000000); |
Michal Simek | 11381fb | 2022-02-17 14:28:42 +0100 | [diff] [blame^] | 337 | |
Michal Simek | c0adba5 | 2020-01-07 09:02:52 +0100 | [diff] [blame] | 338 | return 0; |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 339 | } |
Michal Simek | 11381fb | 2022-02-17 14:28:42 +0100 | [diff] [blame^] | 340 | |
| 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 |
| 350 | |
| 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; |
| 359 | } |
| 360 | # endif |
Michal Simek | 83d2941 | 2022-02-17 14:28:40 +0100 | [diff] [blame] | 361 | #endif |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 362 | |
Michal Simek | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 363 | static int multi_boot(void) |
| 364 | { |
Michal Simek | 3d23843 | 2021-07-27 16:17:31 +0200 | [diff] [blame] | 365 | u32 multiboot = 0; |
| 366 | int ret; |
Michal Simek | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 367 | |
Michal Simek | 3d23843 | 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 | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 371 | |
Michal Simek | e49f2a7 | 2021-07-27 14:05:27 +0200 | [diff] [blame] | 372 | return multiboot; |
Michal Simek | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Jorge Ramirez-Ortiz | 398a74a | 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 | 25a91f3 | 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 | |
Mike Looijmans | dfbe492 | 2019-10-18 07:34:13 +0200 | [diff] [blame] | 402 | #define PS_SYSMON_ANALOG_BUS_VAL 0x3210 |
| 403 | #define PS_SYSMON_ANALOG_BUS_REG 0xFFA50914 |
| 404 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 405 | int board_init(void) |
| 406 | { |
Michal Simek | 66ef85d | 2020-03-04 08:48:16 +0100 | [diff] [blame] | 407 | #if defined(CONFIG_ZYNQMP_FIRMWARE) |
Ibai Erkiaga | 325a22d | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 408 | struct udevice *dev; |
| 409 | |
| 410 | uclass_get_device_by_name(UCLASS_FIRMWARE, "zynqmp-power", &dev); |
| 411 | if (!dev) |
| 412 | panic("PMU Firmware device not found - Enable it"); |
Michal Simek | 66ef85d | 2020-03-04 08:48:16 +0100 | [diff] [blame] | 413 | #endif |
Ibai Erkiaga | 325a22d | 2019-09-27 11:37:04 +0100 | [diff] [blame] | 414 | |
Luca Ceresoli | c28a9cf | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 415 | #if defined(CONFIG_SPL_BUILD) |
| 416 | /* Check *at build time* if the filename is an non-empty string */ |
| 417 | if (sizeof(CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE) > 1) |
| 418 | zynqmp_pmufw_load_config_object(zynqmp_pm_cfg_obj, |
| 419 | zynqmp_pm_cfg_obj_size); |
Michal Simek | 98757d8 | 2021-02-02 16:34:48 +0100 | [diff] [blame] | 420 | printf("Silicon version:\t%d\n", zynqmp_get_silicon_version()); |
Jorge Ramirez-Ortiz | 398a74a | 2021-10-13 15:48:00 +0200 | [diff] [blame] | 421 | |
| 422 | /* the CSU disables the JTAG interface when secure boot is enabled */ |
Ricardo Salveti | 11c0255 | 2021-11-04 16:28:02 -0300 | [diff] [blame] | 423 | if (CONFIG_IS_ENABLED(ZYNQMP_RESTORE_JTAG)) |
Jorge Ramirez-Ortiz | 398a74a | 2021-10-13 15:48:00 +0200 | [diff] [blame] | 424 | restore_jtag(); |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 425 | #else |
| 426 | if (CONFIG_IS_ENABLED(DM_I2C) && CONFIG_IS_ENABLED(I2C_EEPROM)) |
| 427 | xilinx_read_eeprom(); |
Luca Ceresoli | c28a9cf | 2019-05-21 18:06:43 +0200 | [diff] [blame] | 428 | #endif |
| 429 | |
Michal Simek | a0736ef | 2015-06-22 14:31:06 +0200 | [diff] [blame] | 430 | printf("EL Level:\tEL%d\n", current_el()); |
| 431 | |
Mike Looijmans | dfbe492 | 2019-10-18 07:34:13 +0200 | [diff] [blame] | 432 | /* Bug in ROM sets wrong value in this register */ |
| 433 | writel(PS_SYSMON_ANALOG_BUS_VAL, PS_SYSMON_ANALOG_BUS_REG); |
| 434 | |
Michal Simek | 29bd8ad | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 435 | #if CONFIG_IS_ENABLED(FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) |
Ibai Erkiaga | 4b2ad7b | 2020-08-04 23:17:29 +0100 | [diff] [blame] | 436 | zynqmppl.name = zynqmp_get_silicon_idcode_name(); |
| 437 | printf("Chip ID:\t%s\n", zynqmppl.name); |
| 438 | fpga_init(); |
| 439 | fpga_add(fpga_xilinx, &zynqmppl); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 440 | #endif |
| 441 | |
Jorge Ramirez-Ortiz | 25a91f3 | 2021-10-13 19:04:47 +0200 | [diff] [blame] | 442 | /* display secure boot information */ |
| 443 | print_secure_boot(); |
Michal Simek | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 444 | if (current_el() == 3) |
Michal Simek | e49f2a7 | 2021-07-27 14:05:27 +0200 | [diff] [blame] | 445 | printf("Multiboot:\t%d\n", multi_boot()); |
Michal Simek | c514301 | 2020-02-11 12:43:14 +0100 | [diff] [blame] | 446 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | int board_early_init_r(void) |
| 451 | { |
| 452 | u32 val; |
| 453 | |
Siva Durga Prasad Paladugu | ec60a27 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 454 | if (current_el() != 3) |
| 455 | return 0; |
| 456 | |
Michal Simek | 90a35db | 2017-07-12 10:32:18 +0200 | [diff] [blame] | 457 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 458 | val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 459 | |
Siva Durga Prasad Paladugu | ec60a27 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 460 | if (!val) { |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 461 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 462 | val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 463 | writel(val, &crlapb_base->timestamp_ref_ctrl); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 464 | |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 465 | /* Program freq register in System counter */ |
| 466 | writel(zynqmp_get_system_timer_freq(), |
| 467 | &iou_scntr_secure->base_frequency_id_register); |
| 468 | /* And enable system counter */ |
| 469 | writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN, |
| 470 | &iou_scntr_secure->counter_control_register); |
| 471 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 472 | return 0; |
| 473 | } |
| 474 | |
Nitin Jain | 5191686 | 2018-02-16 12:56:17 +0530 | [diff] [blame] | 475 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 476 | char *const argv[]) |
Nitin Jain | 5191686 | 2018-02-16 12:56:17 +0530 | [diff] [blame] | 477 | { |
| 478 | int ret = 0; |
| 479 | |
| 480 | if (current_el() > 1) { |
| 481 | smp_kick_all_cpus(); |
| 482 | dcache_disable(); |
| 483 | armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry, |
| 484 | ES_TO_AARCH64); |
| 485 | } else { |
| 486 | printf("FAIL: current EL is not above EL1\n"); |
| 487 | ret = EINVAL; |
| 488 | } |
| 489 | return ret; |
| 490 | } |
| 491 | |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 492 | #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE) |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 493 | int dram_init_banksize(void) |
Tom Rini | 361a879 | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 494 | { |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 495 | int ret; |
| 496 | |
| 497 | ret = fdtdec_setup_memory_banksize(); |
| 498 | if (ret) |
| 499 | return ret; |
| 500 | |
| 501 | mem_map_fill(); |
| 502 | |
| 503 | return 0; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | int dram_init(void) |
| 507 | { |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 508 | if (fdtdec_setup_mem_size_base() != 0) |
Nathan Rossi | 950f86c | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 509 | return -EINVAL; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 510 | |
| 511 | return 0; |
| 512 | } |
Michal Simek | ce39ee2 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 513 | |
| 514 | ulong board_get_usable_ram_top(ulong total_size) |
| 515 | { |
| 516 | phys_size_t size; |
| 517 | phys_addr_t reg; |
| 518 | struct lmb lmb; |
| 519 | |
Michal Simek | 5bd5ee0 | 2021-08-19 11:07:59 +0200 | [diff] [blame] | 520 | if (!IS_ALIGNED((ulong)gd->fdt_blob, 0x8)) |
| 521 | panic("Not 64bit aligned DT location: %p\n", gd->fdt_blob); |
| 522 | |
Michal Simek | ce39ee2 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 523 | /* found enough not-reserved memory to relocated U-Boot */ |
| 524 | lmb_init(&lmb); |
| 525 | lmb_add(&lmb, gd->ram_base, gd->ram_size); |
| 526 | boot_fdt_add_mem_rsv_regions(&lmb, (void *)gd->fdt_blob); |
Michal Simek | 412ab13 | 2021-10-21 08:58:50 +0200 | [diff] [blame] | 527 | size = ALIGN(CONFIG_SYS_MALLOC_LEN + total_size, MMU_SECTION_SIZE); |
Michal Simek | ce39ee2 | 2021-05-31 11:03:19 +0200 | [diff] [blame] | 528 | reg = lmb_alloc(&lmb, size, MMU_SECTION_SIZE); |
| 529 | |
| 530 | if (!reg) |
| 531 | reg = gd->ram_top - size; |
| 532 | |
| 533 | return reg + size; |
| 534 | } |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 535 | #else |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 536 | int dram_init_banksize(void) |
| 537 | { |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 538 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 539 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 540 | |
| 541 | mem_map_fill(); |
| 542 | |
| 543 | return 0; |
| 544 | } |
| 545 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 546 | int dram_init(void) |
| 547 | { |
Michal Simek | 61dc92a | 2018-04-11 16:12:28 +0200 | [diff] [blame] | 548 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 549 | CONFIG_SYS_SDRAM_SIZE); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | } |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 553 | #endif |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 554 | |
Michal Simek | f1bc214 | 2021-07-13 16:39:26 +0200 | [diff] [blame] | 555 | #if !CONFIG_IS_ENABLED(SYSRESET) |
Harald Seiler | 35b65dd | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 556 | void reset_cpu(void) |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 557 | { |
| 558 | } |
Michal Simek | f1bc214 | 2021-07-13 16:39:26 +0200 | [diff] [blame] | 559 | #endif |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 560 | |
Michal Simek | 4d9bc79 | 2020-08-20 10:54:45 +0200 | [diff] [blame] | 561 | static u8 __maybe_unused zynqmp_get_bootmode(void) |
| 562 | { |
| 563 | u8 bootmode; |
| 564 | u32 reg = 0; |
| 565 | int ret; |
| 566 | |
| 567 | ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, ®); |
| 568 | if (ret) |
| 569 | return -EINVAL; |
| 570 | |
Michal Simek | afb08a8 | 2021-07-28 12:25:49 +0200 | [diff] [blame] | 571 | debug("HW boot mode: %x\n", reg & BOOT_MODES_MASK); |
| 572 | debug("ALT boot mode: %x\n", reg >> BOOT_MODE_ALT_SHIFT); |
| 573 | |
Michal Simek | 4d9bc79 | 2020-08-20 10:54:45 +0200 | [diff] [blame] | 574 | if (reg >> BOOT_MODE_ALT_SHIFT) |
| 575 | reg >>= BOOT_MODE_ALT_SHIFT; |
| 576 | |
| 577 | bootmode = reg & BOOT_MODES_MASK; |
| 578 | |
| 579 | return bootmode; |
| 580 | } |
| 581 | |
Michal Simek | 0bf3f9c | 2018-12-20 09:33:38 +0100 | [diff] [blame] | 582 | #if defined(CONFIG_BOARD_LATE_INIT) |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 583 | static const struct { |
| 584 | u32 bit; |
| 585 | const char *name; |
| 586 | } reset_reasons[] = { |
| 587 | { RESET_REASON_DEBUG_SYS, "DEBUG" }, |
| 588 | { RESET_REASON_SOFT, "SOFT" }, |
| 589 | { RESET_REASON_SRST, "SRST" }, |
| 590 | { RESET_REASON_PSONLY, "PS-ONLY" }, |
| 591 | { RESET_REASON_PMU, "PMU" }, |
| 592 | { RESET_REASON_INTERNAL, "INTERNAL" }, |
| 593 | { RESET_REASON_EXTERNAL, "EXTERNAL" }, |
| 594 | {} |
| 595 | }; |
| 596 | |
T Karthik Reddy | be52372 | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 597 | static int reset_reason(void) |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 598 | { |
T Karthik Reddy | be52372 | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 599 | u32 reg; |
| 600 | int i, ret; |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 601 | const char *reason = NULL; |
| 602 | |
T Karthik Reddy | be52372 | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 603 | ret = zynqmp_mmio_read((ulong)&crlapb_base->reset_reason, ®); |
| 604 | if (ret) |
| 605 | return -EINVAL; |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 606 | |
| 607 | puts("Reset reason:\t"); |
| 608 | |
| 609 | for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) { |
T Karthik Reddy | be52372 | 2019-03-13 20:24:18 +0530 | [diff] [blame] | 610 | if (reg & reset_reasons[i].bit) { |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 611 | reason = reset_reasons[i].name; |
| 612 | printf("%s ", reset_reasons[i].name); |
| 613 | break; |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | puts("\n"); |
| 618 | |
| 619 | env_set("reset_reason", reason); |
| 620 | |
Michal Simek | 3aba25b | 2021-02-09 08:50:22 +0100 | [diff] [blame] | 621 | return 0; |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 622 | } |
| 623 | |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 624 | static int set_fdtfile(void) |
| 625 | { |
| 626 | char *compatible, *fdtfile; |
| 627 | const char *suffix = ".dtb"; |
| 628 | const char *vendor = "xilinx/"; |
Igor Lantsman | 1b208d5 | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 629 | int fdt_compat_len; |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 630 | |
| 631 | if (env_get("fdtfile")) |
| 632 | return 0; |
| 633 | |
Igor Lantsman | 1b208d5 | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 634 | compatible = (char *)fdt_getprop(gd->fdt_blob, 0, "compatible", |
| 635 | &fdt_compat_len); |
| 636 | if (compatible && fdt_compat_len) { |
| 637 | char *name; |
| 638 | |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 639 | debug("Compatible: %s\n", compatible); |
| 640 | |
Igor Lantsman | 1b208d5 | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 641 | name = strchr(compatible, ','); |
| 642 | if (!name) |
| 643 | return -EINVAL; |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 644 | |
Igor Lantsman | 1b208d5 | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 645 | name++; |
| 646 | |
| 647 | fdtfile = calloc(1, strlen(vendor) + strlen(name) + |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 648 | strlen(suffix) + 1); |
| 649 | if (!fdtfile) |
| 650 | return -ENOMEM; |
| 651 | |
Igor Lantsman | 1b208d5 | 2020-06-24 14:33:46 +0200 | [diff] [blame] | 652 | sprintf(fdtfile, "%s%s%s", vendor, name, suffix); |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 653 | |
| 654 | env_set("fdtfile", fdtfile); |
| 655 | free(fdtfile); |
| 656 | } |
| 657 | |
| 658 | return 0; |
| 659 | } |
| 660 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 661 | int board_late_init(void) |
| 662 | { |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 663 | u8 bootmode; |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 664 | struct udevice *dev; |
| 665 | int bootseq = -1; |
| 666 | int bootseq_len = 0; |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 667 | int env_targets_len = 0; |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 668 | const char *mode; |
| 669 | char *new_targets; |
Siva Durga Prasad Paladugu | 01c42d3 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 670 | char *env_targets; |
Michal Simek | e8b43c6 | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 671 | int ret, multiboot; |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 672 | |
Michal Simek | e615f39 | 2018-10-05 08:55:16 +0200 | [diff] [blame] | 673 | #if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD) |
| 674 | usb_ether_init(); |
| 675 | #endif |
| 676 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 677 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 678 | debug("Saved variables - Skipping\n"); |
| 679 | return 0; |
| 680 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 681 | |
Michal Simek | 62b9626 | 2020-07-28 12:45:47 +0200 | [diff] [blame] | 682 | if (!CONFIG_IS_ENABLED(ENV_VARS_UBOOT_RUNTIME_CONFIG)) |
| 683 | return 0; |
| 684 | |
Michal Simek | 91d7e0c | 2019-02-14 13:14:30 +0100 | [diff] [blame] | 685 | ret = set_fdtfile(); |
| 686 | if (ret) |
| 687 | return ret; |
| 688 | |
Michal Simek | e8b43c6 | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 689 | multiboot = multi_boot(); |
| 690 | if (multiboot >= 0) |
| 691 | env_set_hex("multiboot", multiboot); |
| 692 | |
Michal Simek | 51f6c52 | 2020-04-08 11:04:41 +0200 | [diff] [blame] | 693 | bootmode = zynqmp_get_bootmode(); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 694 | |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 695 | puts("Bootmode: "); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 696 | switch (bootmode) { |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 697 | case USB_MODE: |
| 698 | puts("USB_MODE\n"); |
T Karthik Reddy | ef1be3e | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 699 | mode = "usb_dfu0 usb_dfu1"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 700 | env_set("modeboot", "usb_dfu_spl"); |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 701 | break; |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 702 | case JTAG_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 703 | puts("JTAG_MODE\n"); |
Siva Durga Prasad Paladugu | 5d2274c | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 704 | mode = "jtag pxe dhcp"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 705 | env_set("modeboot", "jtagboot"); |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 706 | break; |
| 707 | case QSPI_MODE_24BIT: |
| 708 | case QSPI_MODE_32BIT: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 709 | mode = "qspi0"; |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 710 | puts("QSPI_MODE\n"); |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 711 | env_set("modeboot", "qspiboot"); |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 712 | break; |
Michal Simek | 39c56f5 | 2015-04-15 15:02:28 +0200 | [diff] [blame] | 713 | case EMMC_MODE: |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 714 | puts("EMMC_MODE\n"); |
T Karthik Reddy | 18be60b | 2019-12-17 06:41:42 -0700 | [diff] [blame] | 715 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 716 | "mmc@ff160000", &dev) && |
| 717 | uclass_get_device_by_name(UCLASS_MMC, |
| 718 | "sdhci@ff160000", &dev)) { |
| 719 | puts("Boot from EMMC but without SD0 enabled!\n"); |
| 720 | return -1; |
| 721 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 722 | debug("mmc0 device found at %p, seq %d\n", dev, dev_seq(dev)); |
T Karthik Reddy | 18be60b | 2019-12-17 06:41:42 -0700 | [diff] [blame] | 723 | |
| 724 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 725 | bootseq = dev_seq(dev); |
Ashok Reddy Soma | 5d498a1 | 2021-09-15 08:52:17 +0200 | [diff] [blame] | 726 | env_set("modeboot", "emmcboot"); |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 727 | break; |
| 728 | case SD_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 729 | puts("SD_MODE\n"); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 730 | if (uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | e7c9de6 | 2019-01-03 15:44:24 +0530 | [diff] [blame] | 731 | "mmc@ff160000", &dev) && |
| 732 | uclass_get_device_by_name(UCLASS_MMC, |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 733 | "sdhci@ff160000", &dev)) { |
| 734 | puts("Boot from SD0 but without SD0 enabled!\n"); |
| 735 | return -1; |
| 736 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 737 | debug("mmc0 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 738 | |
| 739 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 740 | bootseq = dev_seq(dev); |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 741 | env_set("modeboot", "sdboot"); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 742 | break; |
Siva Durga Prasad Paladugu | e199227 | 2016-09-21 11:45:05 +0530 | [diff] [blame] | 743 | case SD1_LSHFT_MODE: |
| 744 | puts("LVL_SHFT_"); |
Michal Simek | f510927 | 2021-10-18 13:30:04 +0200 | [diff] [blame] | 745 | fallthrough; |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 746 | case SD_MODE1: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 747 | puts("SD_MODE1\n"); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 748 | if (uclass_get_device_by_name(UCLASS_MMC, |
Siva Durga Prasad Paladugu | e7c9de6 | 2019-01-03 15:44:24 +0530 | [diff] [blame] | 749 | "mmc@ff170000", &dev) && |
| 750 | uclass_get_device_by_name(UCLASS_MMC, |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 751 | "sdhci@ff170000", &dev)) { |
| 752 | puts("Boot from SD1 but without SD1 enabled!\n"); |
| 753 | return -1; |
| 754 | } |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 755 | debug("mmc1 device found at %p, seq %d\n", dev, dev_seq(dev)); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 756 | |
| 757 | mode = "mmc"; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 758 | bootseq = dev_seq(dev); |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 759 | env_set("modeboot", "sdboot"); |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 760 | break; |
| 761 | case NAND_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 762 | puts("NAND_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 763 | mode = "nand0"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 764 | env_set("modeboot", "nandboot"); |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 765 | break; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 766 | default: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 767 | mode = ""; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 768 | printf("Invalid Boot Mode:0x%x\n", bootmode); |
| 769 | break; |
| 770 | } |
| 771 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 772 | if (bootseq >= 0) { |
| 773 | bootseq_len = snprintf(NULL, 0, "%i", bootseq); |
| 774 | debug("Bootseq len: %x\n", bootseq_len); |
Michal Simek | 2784bef | 2021-01-11 13:46:58 +0100 | [diff] [blame] | 775 | env_set_hex("bootseq", bootseq); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 776 | } |
| 777 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 778 | /* |
| 779 | * One terminating char + one byte for space between mode |
| 780 | * and default boot_targets |
| 781 | */ |
Siva Durga Prasad Paladugu | 01c42d3 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 782 | env_targets = env_get("boot_targets"); |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 783 | if (env_targets) |
| 784 | env_targets_len = strlen(env_targets); |
| 785 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 786 | new_targets = calloc(1, strlen(mode) + env_targets_len + 2 + |
| 787 | bootseq_len); |
Michal Simek | 1e3e68f | 2018-06-13 09:42:41 +0200 | [diff] [blame] | 788 | if (!new_targets) |
| 789 | return -ENOMEM; |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 790 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 791 | if (bootseq >= 0) |
| 792 | sprintf(new_targets, "%s%x %s", mode, bootseq, |
| 793 | env_targets ? env_targets : ""); |
| 794 | else |
| 795 | sprintf(new_targets, "%s %s", mode, |
| 796 | env_targets ? env_targets : ""); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 797 | |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 798 | env_set("boot_targets", new_targets); |
Michal Simek | f83cfaa | 2021-07-28 12:46:39 +0200 | [diff] [blame] | 799 | free(new_targets); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 800 | |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 801 | reset_reason(); |
| 802 | |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 803 | return board_late_init_xilinx(); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 804 | } |
Michal Simek | 0bf3f9c | 2018-12-20 09:33:38 +0100 | [diff] [blame] | 805 | #endif |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 806 | |
| 807 | int checkboard(void) |
| 808 | { |
Michal Simek | 5af0855 | 2016-01-25 11:04:21 +0100 | [diff] [blame] | 809 | puts("Board: Xilinx ZynqMP\n"); |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 810 | return 0; |
| 811 | } |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 812 | |
Michal Simek | 476588c | 2021-05-19 15:16:19 +0200 | [diff] [blame] | 813 | int mmc_get_env_dev(void) |
| 814 | { |
| 815 | struct udevice *dev; |
| 816 | int bootseq = 0; |
| 817 | |
| 818 | switch (zynqmp_get_bootmode()) { |
| 819 | case EMMC_MODE: |
| 820 | case SD_MODE: |
| 821 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 822 | "mmc@ff160000", &dev) && |
| 823 | uclass_get_device_by_name(UCLASS_MMC, |
| 824 | "sdhci@ff160000", &dev)) { |
| 825 | return -1; |
| 826 | } |
| 827 | bootseq = dev_seq(dev); |
| 828 | break; |
| 829 | case SD1_LSHFT_MODE: |
| 830 | case SD_MODE1: |
| 831 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 832 | "mmc@ff170000", &dev) && |
| 833 | uclass_get_device_by_name(UCLASS_MMC, |
| 834 | "sdhci@ff170000", &dev)) { |
| 835 | return -1; |
| 836 | } |
| 837 | bootseq = dev_seq(dev); |
| 838 | break; |
| 839 | default: |
| 840 | break; |
| 841 | } |
| 842 | |
| 843 | debug("bootseq %d\n", bootseq); |
| 844 | |
| 845 | return bootseq; |
| 846 | } |
| 847 | |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 848 | enum env_location env_get_location(enum env_operation op, int prio) |
| 849 | { |
| 850 | u32 bootmode = zynqmp_get_bootmode(); |
| 851 | |
| 852 | if (prio) |
| 853 | return ENVL_UNKNOWN; |
| 854 | |
| 855 | switch (bootmode) { |
| 856 | case EMMC_MODE: |
| 857 | case SD_MODE: |
| 858 | case SD1_LSHFT_MODE: |
| 859 | case SD_MODE1: |
| 860 | if (IS_ENABLED(CONFIG_ENV_IS_IN_FAT)) |
| 861 | return ENVL_FAT; |
| 862 | if (IS_ENABLED(CONFIG_ENV_IS_IN_EXT4)) |
| 863 | return ENVL_EXT4; |
Mike Looijmans | 50918d0 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 864 | return ENVL_NOWHERE; |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 865 | case NAND_MODE: |
| 866 | if (IS_ENABLED(CONFIG_ENV_IS_IN_NAND)) |
| 867 | return ENVL_NAND; |
| 868 | if (IS_ENABLED(CONFIG_ENV_IS_IN_UBI)) |
| 869 | return ENVL_UBI; |
Mike Looijmans | 50918d0 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 870 | return ENVL_NOWHERE; |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 871 | case QSPI_MODE_24BIT: |
| 872 | case QSPI_MODE_32BIT: |
| 873 | if (IS_ENABLED(CONFIG_ENV_IS_IN_SPI_FLASH)) |
| 874 | return ENVL_SPI_FLASH; |
Mike Looijmans | 50918d0 | 2021-07-02 10:28:36 +0200 | [diff] [blame] | 875 | return ENVL_NOWHERE; |
Michal Simek | 1025bd0 | 2020-07-30 13:37:49 +0200 | [diff] [blame] | 876 | case JTAG_MODE: |
| 877 | default: |
| 878 | return ENVL_NOWHERE; |
| 879 | } |
| 880 | } |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 881 | |
| 882 | #if defined(CONFIG_SET_DFU_ALT_INFO) |
| 883 | |
| 884 | #define DFU_ALT_BUF_LEN SZ_1K |
| 885 | |
| 886 | void set_dfu_alt_info(char *interface, char *devstr) |
| 887 | { |
| 888 | u8 multiboot; |
| 889 | int bootseq = 0; |
| 890 | |
| 891 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, DFU_ALT_BUF_LEN); |
| 892 | |
| 893 | if (env_get("dfu_alt_info")) |
| 894 | return; |
| 895 | |
| 896 | memset(buf, 0, sizeof(buf)); |
| 897 | |
| 898 | multiboot = multi_boot(); |
Michal Simek | e8b43c6 | 2021-10-25 10:10:52 +0200 | [diff] [blame] | 899 | if (multiboot < 0) |
| 900 | multiboot = 0; |
| 901 | |
| 902 | multiboot = env_get_hex("multiboot", multiboot); |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 903 | debug("Multiboot: %d\n", multiboot); |
| 904 | |
| 905 | switch (zynqmp_get_bootmode()) { |
| 906 | case EMMC_MODE: |
| 907 | case SD_MODE: |
| 908 | case SD1_LSHFT_MODE: |
| 909 | case SD_MODE1: |
| 910 | bootseq = mmc_get_env_dev(); |
| 911 | if (!multiboot) |
| 912 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 913 | "mmc %d:1=boot.bin fat %d 1;" |
Michal Simek | 6070588 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 914 | "%s fat %d 1", |
| 915 | bootseq, bootseq, |
| 916 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, bootseq); |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 917 | else |
| 918 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 919 | "mmc %d:1=boot%04d.bin fat %d 1;" |
Michal Simek | 6070588 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 920 | "%s fat %d 1", |
| 921 | bootseq, multiboot, bootseq, |
| 922 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, bootseq); |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 923 | break; |
| 924 | case QSPI_MODE_24BIT: |
| 925 | case QSPI_MODE_32BIT: |
| 926 | snprintf(buf, DFU_ALT_BUF_LEN, |
| 927 | "sf 0:0=boot.bin raw %x 0x1500000;" |
Michal Simek | 6070588 | 2021-10-18 14:02:15 +0200 | [diff] [blame] | 928 | "%s raw 0x%x 0x500000", |
| 929 | multiboot * SZ_32K, CONFIG_SPL_FS_LOAD_PAYLOAD_NAME, |
| 930 | CONFIG_SYS_SPI_U_BOOT_OFFS); |
Michal Simek | b86f43d | 2021-07-27 16:19:18 +0200 | [diff] [blame] | 931 | break; |
| 932 | default: |
| 933 | return; |
| 934 | } |
| 935 | |
| 936 | env_set("dfu_alt_info", buf); |
| 937 | puts("DFU alt info setting: done\n"); |
| 938 | } |
| 939 | #endif |