Michal Simek | 9755e3d | 2019-01-21 15:25:02 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Michal Simek | 8174cd2 | 2023-01-06 09:38:52 +0100 | [diff] [blame] | 3 | * (C) Copyright 2014 - 2022, Xilinx, Inc. |
| 4 | * (C) Copyright 2022 - 2023, Advanced Micro Devices, Inc. |
| 5 | * |
| 6 | * Michal Simek <michal.simek@amd.com> |
Michal Simek | 9755e3d | 2019-01-21 15:25:02 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 10 | #include <efi.h> |
| 11 | #include <efi_loader.h> |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 12 | #include <env.h> |
Michal Simek | a32c3e9 | 2022-08-25 14:23:10 +0200 | [diff] [blame] | 13 | #include <image.h> |
Algapally Santosh Sagar | fb737f1 | 2023-01-19 22:36:14 -0700 | [diff] [blame] | 14 | #include <init.h> |
Michal Simek | a32c3e9 | 2022-08-25 14:23:10 +0200 | [diff] [blame] | 15 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 16 | #include <log.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Michal Simek | fc274a5 | 2019-12-19 17:45:15 +0100 | [diff] [blame] | 18 | #include <asm/sections.h> |
Michal Simek | 9755e3d | 2019-01-21 15:25:02 +0100 | [diff] [blame] | 19 | #include <dm/uclass.h> |
| 20 | #include <i2c.h> |
Michal Simek | a29511e | 2020-04-08 10:51:36 +0200 | [diff] [blame] | 21 | #include <linux/sizes.h> |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 22 | #include <malloc.h> |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 23 | #include "board.h" |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 24 | #include <dm.h> |
| 25 | #include <i2c_eeprom.h> |
| 26 | #include <net.h> |
Michal Simek | 05af483 | 2020-10-26 12:26:13 +0100 | [diff] [blame] | 27 | #include <generated/dt.h> |
Michal Simek | 8174cd2 | 2023-01-06 09:38:52 +0100 | [diff] [blame] | 28 | #include <slre.h> |
T Karthik Reddy | 80c0d38 | 2021-08-10 06:50:20 -0600 | [diff] [blame] | 29 | #include <soc.h> |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 30 | #include <linux/ctype.h> |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 31 | #include <linux/kernel.h> |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 32 | #include <uuid.h> |
Michal Simek | 9755e3d | 2019-01-21 15:25:02 +0100 | [diff] [blame] | 33 | |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 34 | #include "fru.h" |
| 35 | |
Simon Glass | 71aa806 | 2023-02-05 15:39:42 -0700 | [diff] [blame^] | 36 | #if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 37 | struct efi_fw_image fw_images[] = { |
| 38 | #if defined(XILINX_BOOT_IMAGE_GUID) |
| 39 | { |
| 40 | .image_type_id = XILINX_BOOT_IMAGE_GUID, |
| 41 | .fw_name = u"XILINX-BOOT", |
| 42 | .image_index = 1, |
| 43 | }, |
| 44 | #endif |
| 45 | #if defined(XILINX_UBOOT_IMAGE_GUID) |
| 46 | { |
| 47 | .image_type_id = XILINX_UBOOT_IMAGE_GUID, |
| 48 | .fw_name = u"XILINX-UBOOT", |
| 49 | .image_index = 2, |
| 50 | }, |
| 51 | #endif |
| 52 | }; |
| 53 | |
| 54 | struct efi_capsule_update_info update_info = { |
| 55 | .images = fw_images, |
| 56 | }; |
| 57 | |
| 58 | u8 num_image_type_guids = ARRAY_SIZE(fw_images); |
| 59 | #endif /* EFI_HAVE_CAPSULE_SUPPORT */ |
| 60 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 61 | #define EEPROM_HEADER_MAGIC 0xdaaddeed |
| 62 | #define EEPROM_HDR_MANUFACTURER_LEN 16 |
| 63 | #define EEPROM_HDR_NAME_LEN 16 |
| 64 | #define EEPROM_HDR_REV_LEN 8 |
| 65 | #define EEPROM_HDR_SERIAL_LEN 20 |
| 66 | #define EEPROM_HDR_NO_OF_MAC_ADDR 4 |
| 67 | #define EEPROM_HDR_ETH_ALEN ETH_ALEN |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 68 | #define EEPROM_HDR_UUID_LEN 16 |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 69 | |
| 70 | struct xilinx_board_description { |
| 71 | u32 header; |
| 72 | char manufacturer[EEPROM_HDR_MANUFACTURER_LEN + 1]; |
| 73 | char name[EEPROM_HDR_NAME_LEN + 1]; |
| 74 | char revision[EEPROM_HDR_REV_LEN + 1]; |
| 75 | char serial[EEPROM_HDR_SERIAL_LEN + 1]; |
| 76 | u8 mac_addr[EEPROM_HDR_NO_OF_MAC_ADDR][EEPROM_HDR_ETH_ALEN + 1]; |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 77 | char uuid[EEPROM_HDR_UUID_LEN + 1]; |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 78 | }; |
| 79 | |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 80 | static int highest_id = -1; |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 81 | static struct xilinx_board_description *board_info; |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 82 | |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 83 | #define XILINX_I2C_DETECTION_BITS sizeof(struct fru_common_hdr) |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 84 | |
| 85 | /* Variable which stores pointer to array which stores eeprom content */ |
| 86 | struct xilinx_legacy_format { |
| 87 | char board_sn[18]; /* 0x0 */ |
| 88 | char unused0[14]; /* 0x12 */ |
Michal Simek | b86b135 | 2023-01-24 16:19:26 +0100 | [diff] [blame] | 89 | char eth_mac[ETH_ALEN]; /* 0x20 */ |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 90 | char unused1[170]; /* 0x26 */ |
| 91 | char board_name[11]; /* 0xd0 */ |
| 92 | char unused2[5]; /* 0xdc */ |
| 93 | char board_revision[3]; /* 0xe0 */ |
| 94 | char unused3[29]; /* 0xe3 */ |
| 95 | }; |
| 96 | |
| 97 | static void xilinx_eeprom_legacy_cleanup(char *eeprom, int size) |
| 98 | { |
| 99 | int i; |
Venkatesh Yadav Abbarapu | e1a193b | 2022-09-26 12:22:42 +0530 | [diff] [blame] | 100 | unsigned char byte; |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 101 | |
| 102 | for (i = 0; i < size; i++) { |
| 103 | byte = eeprom[i]; |
| 104 | |
Michal Simek | e6c6253 | 2023-01-24 16:19:27 +0100 | [diff] [blame] | 105 | /* Remove all non printable chars but ignore MAC address */ |
| 106 | if ((i < offsetof(struct xilinx_legacy_format, eth_mac) || |
| 107 | i >= offsetof(struct xilinx_legacy_format, unused1)) && |
| 108 | (byte < '!' || byte > '~')) { |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 109 | eeprom[i] = 0; |
Michal Simek | e6c6253 | 2023-01-24 16:19:27 +0100 | [diff] [blame] | 110 | continue; |
| 111 | } |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 112 | |
| 113 | /* Convert strings to lower case */ |
| 114 | if (byte >= 'A' && byte <= 'Z') |
| 115 | eeprom[i] = byte + 'a' - 'A'; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | static int xilinx_read_eeprom_legacy(struct udevice *dev, char *name, |
| 120 | struct xilinx_board_description *desc) |
| 121 | { |
| 122 | int ret, size; |
| 123 | struct xilinx_legacy_format *eeprom_content; |
| 124 | bool eth_valid = false; |
| 125 | |
| 126 | size = sizeof(*eeprom_content); |
| 127 | |
| 128 | eeprom_content = calloc(1, size); |
| 129 | if (!eeprom_content) |
| 130 | return -ENOMEM; |
| 131 | |
| 132 | debug("%s: I2C EEPROM read pass data at %p\n", __func__, |
| 133 | eeprom_content); |
| 134 | |
| 135 | ret = dm_i2c_read(dev, 0, (uchar *)eeprom_content, size); |
| 136 | if (ret) { |
| 137 | debug("%s: I2C EEPROM read failed\n", __func__); |
| 138 | free(eeprom_content); |
| 139 | return ret; |
| 140 | } |
| 141 | |
| 142 | xilinx_eeprom_legacy_cleanup((char *)eeprom_content, size); |
| 143 | |
Michal Simek | 5563167 | 2023-01-24 16:19:28 +0100 | [diff] [blame] | 144 | /* Terminating \0 chars are the part of desc fields already */ |
| 145 | strlcpy(desc->name, eeprom_content->board_name, |
| 146 | sizeof(eeprom_content->board_name) + 1); |
| 147 | strlcpy(desc->revision, eeprom_content->board_revision, |
| 148 | sizeof(eeprom_content->board_revision) + 1); |
| 149 | strlcpy(desc->serial, eeprom_content->board_sn, |
| 150 | sizeof(eeprom_content->board_sn) + 1); |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 151 | |
| 152 | eth_valid = is_valid_ethaddr((const u8 *)eeprom_content->eth_mac); |
| 153 | if (eth_valid) |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 154 | memcpy(desc->mac_addr[0], eeprom_content->eth_mac, ETH_ALEN); |
| 155 | |
Michal Simek | 5563167 | 2023-01-24 16:19:28 +0100 | [diff] [blame] | 156 | printf("Xilinx I2C Legacy format at %s:\n", name); |
| 157 | printf(" Board name:\t%s\n", desc->name); |
| 158 | printf(" Board rev:\t%s\n", desc->revision); |
| 159 | printf(" Board SN:\t%s\n", desc->serial); |
| 160 | |
| 161 | if (eth_valid) |
| 162 | printf(" Ethernet mac:\t%pM\n", desc->mac_addr); |
| 163 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 164 | desc->header = EEPROM_HEADER_MAGIC; |
| 165 | |
| 166 | free(eeprom_content); |
| 167 | |
| 168 | return ret; |
| 169 | } |
| 170 | |
| 171 | static bool xilinx_detect_legacy(u8 *buffer) |
| 172 | { |
| 173 | int i; |
| 174 | char c; |
| 175 | |
| 176 | for (i = 0; i < XILINX_I2C_DETECTION_BITS; i++) { |
| 177 | c = buffer[i]; |
| 178 | |
| 179 | if (c < '0' || c > '9') |
| 180 | return false; |
| 181 | } |
| 182 | |
| 183 | return true; |
| 184 | } |
| 185 | |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 186 | static int xilinx_read_eeprom_fru(struct udevice *dev, char *name, |
| 187 | struct xilinx_board_description *desc) |
| 188 | { |
Michal Simek | 530560b | 2021-08-12 11:03:49 +0200 | [diff] [blame] | 189 | int i, ret, eeprom_size; |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 190 | u8 *fru_content; |
Ashok Reddy Soma | 7a036b6 | 2022-02-23 15:00:59 +0100 | [diff] [blame] | 191 | u8 id = 0; |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 192 | |
| 193 | /* FIXME this is shortcut - if eeprom type is wrong it will fail */ |
| 194 | eeprom_size = i2c_eeprom_size(dev); |
| 195 | |
| 196 | fru_content = calloc(1, eeprom_size); |
| 197 | if (!fru_content) |
| 198 | return -ENOMEM; |
| 199 | |
| 200 | debug("%s: I2C EEPROM read pass data at %p\n", __func__, |
| 201 | fru_content); |
| 202 | |
| 203 | ret = dm_i2c_read(dev, 0, (uchar *)fru_content, |
| 204 | eeprom_size); |
| 205 | if (ret) { |
| 206 | debug("%s: I2C EEPROM read failed\n", __func__); |
Michal Simek | b262863 | 2021-08-13 09:17:10 +0200 | [diff] [blame] | 207 | goto end; |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 208 | } |
| 209 | |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 210 | fru_capture((unsigned long)fru_content); |
Simon Glass | 866ec87 | 2023-02-05 15:39:38 -0700 | [diff] [blame] | 211 | if (gd->flags & GD_FLG_RELOC || (_DEBUG && IS_ENABLED(CONFIG_DTB_RESELECT))) { |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 212 | printf("Xilinx I2C FRU format at %s:\n", name); |
| 213 | ret = fru_display(0); |
| 214 | if (ret) { |
| 215 | printf("FRU format decoding failed.\n"); |
| 216 | goto end; |
| 217 | } |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | if (desc->header == EEPROM_HEADER_MAGIC) { |
| 221 | debug("Information already filled\n"); |
Michal Simek | b262863 | 2021-08-13 09:17:10 +0200 | [diff] [blame] | 222 | ret = -EINVAL; |
| 223 | goto end; |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /* It is clear that FRU was captured and structures were filled */ |
Michal Simek | 4a1bfcd | 2022-07-21 16:19:18 +0200 | [diff] [blame] | 227 | strlcpy(desc->manufacturer, (char *)fru_data.brd.manufacturer_name, |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 228 | sizeof(desc->manufacturer)); |
Michal Simek | 4a1bfcd | 2022-07-21 16:19:18 +0200 | [diff] [blame] | 229 | strlcpy(desc->uuid, (char *)fru_data.brd.uuid, |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 230 | sizeof(desc->uuid)); |
Michal Simek | 4a1bfcd | 2022-07-21 16:19:18 +0200 | [diff] [blame] | 231 | strlcpy(desc->name, (char *)fru_data.brd.product_name, |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 232 | sizeof(desc->name)); |
Michal Simek | 530560b | 2021-08-12 11:03:49 +0200 | [diff] [blame] | 233 | for (i = 0; i < sizeof(desc->name); i++) { |
| 234 | if (desc->name[i] == ' ') |
| 235 | desc->name[i] = '\0'; |
| 236 | } |
Michal Simek | 4a1bfcd | 2022-07-21 16:19:18 +0200 | [diff] [blame] | 237 | strlcpy(desc->revision, (char *)fru_data.brd.rev, |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 238 | sizeof(desc->revision)); |
Michal Simek | 9321627 | 2022-06-06 09:31:27 +0200 | [diff] [blame] | 239 | for (i = 0; i < sizeof(desc->revision); i++) { |
| 240 | if (desc->revision[i] == ' ') |
| 241 | desc->revision[i] = '\0'; |
| 242 | } |
Michal Simek | 4a1bfcd | 2022-07-21 16:19:18 +0200 | [diff] [blame] | 243 | strlcpy(desc->serial, (char *)fru_data.brd.serial_number, |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 244 | sizeof(desc->serial)); |
Ashok Reddy Soma | 7a036b6 | 2022-02-23 15:00:59 +0100 | [diff] [blame] | 245 | |
| 246 | while (id < EEPROM_HDR_NO_OF_MAC_ADDR) { |
| 247 | if (is_valid_ethaddr((const u8 *)fru_data.mac.macid[id])) |
| 248 | memcpy(&desc->mac_addr[id], |
| 249 | (char *)fru_data.mac.macid[id], ETH_ALEN); |
| 250 | id++; |
| 251 | } |
| 252 | |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 253 | desc->header = EEPROM_HEADER_MAGIC; |
| 254 | |
Michal Simek | b262863 | 2021-08-13 09:17:10 +0200 | [diff] [blame] | 255 | end: |
| 256 | free(fru_content); |
| 257 | return ret; |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | static bool xilinx_detect_fru(u8 *buffer) |
| 261 | { |
| 262 | u8 checksum = 0; |
| 263 | int i; |
| 264 | |
| 265 | checksum = fru_checksum((u8 *)buffer, sizeof(struct fru_common_hdr)); |
| 266 | if (checksum) { |
| 267 | debug("%s Common header CRC FAIL\n", __func__); |
| 268 | return false; |
| 269 | } |
| 270 | |
| 271 | bool all_zeros = true; |
| 272 | /* Checksum over all zeros is also zero that's why detect this case */ |
| 273 | for (i = 0; i < sizeof(struct fru_common_hdr); i++) { |
| 274 | if (buffer[i] != 0) |
| 275 | all_zeros = false; |
| 276 | } |
| 277 | |
| 278 | if (all_zeros) |
| 279 | return false; |
| 280 | |
| 281 | debug("%s Common header CRC PASS\n", __func__); |
| 282 | return true; |
| 283 | } |
| 284 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 285 | static int xilinx_read_eeprom_single(char *name, |
| 286 | struct xilinx_board_description *desc) |
| 287 | { |
| 288 | int ret; |
| 289 | struct udevice *dev; |
| 290 | ofnode eeprom; |
| 291 | u8 buffer[XILINX_I2C_DETECTION_BITS]; |
| 292 | |
| 293 | eeprom = ofnode_get_aliases_node(name); |
| 294 | if (!ofnode_valid(eeprom)) |
| 295 | return -ENODEV; |
| 296 | |
| 297 | ret = uclass_get_device_by_ofnode(UCLASS_I2C_EEPROM, eeprom, &dev); |
| 298 | if (ret) |
| 299 | return ret; |
| 300 | |
| 301 | ret = dm_i2c_read(dev, 0, buffer, sizeof(buffer)); |
| 302 | if (ret) { |
| 303 | debug("%s: I2C EEPROM read failed\n", __func__); |
| 304 | return ret; |
| 305 | } |
| 306 | |
| 307 | debug("%s: i2c memory detected: %s\n", __func__, name); |
| 308 | |
Simon Glass | f8daba4 | 2023-02-05 15:36:31 -0700 | [diff] [blame] | 309 | if (IS_ENABLED(CONFIG_CMD_FRU) && xilinx_detect_fru(buffer)) |
Michal Simek | f149b39 | 2020-08-03 16:14:23 +0200 | [diff] [blame] | 310 | return xilinx_read_eeprom_fru(dev, name, desc); |
| 311 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 312 | if (xilinx_detect_legacy(buffer)) |
| 313 | return xilinx_read_eeprom_legacy(dev, name, desc); |
| 314 | |
| 315 | return -ENODEV; |
| 316 | } |
| 317 | |
| 318 | __maybe_unused int xilinx_read_eeprom(void) |
| 319 | { |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 320 | int id; |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 321 | char name_buf[8]; /* 8 bytes should be enough for nvmem+number */ |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 322 | struct xilinx_board_description *desc; |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 323 | |
| 324 | highest_id = dev_read_alias_highest_id("nvmem"); |
| 325 | /* No nvmem aliases present */ |
| 326 | if (highest_id < 0) |
| 327 | return -EINVAL; |
| 328 | |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 329 | board_info = calloc(1, sizeof(*desc) * (highest_id + 1)); |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 330 | if (!board_info) |
| 331 | return -ENOMEM; |
| 332 | |
| 333 | debug("%s: Highest ID %d, board_info %p\n", __func__, |
| 334 | highest_id, board_info); |
| 335 | |
| 336 | for (id = 0; id <= highest_id; id++) { |
| 337 | snprintf(name_buf, sizeof(name_buf), "nvmem%d", id); |
| 338 | |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 339 | /* Alloc structure */ |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 340 | desc = &board_info[id]; |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 341 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 342 | /* Ignoring return value for supporting multiple chips */ |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 343 | xilinx_read_eeprom_single(name_buf, desc); |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 344 | } |
| 345 | |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 346 | /* |
| 347 | * Consider to clean board_info structure when board/cards are not |
| 348 | * detected. |
| 349 | */ |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 350 | |
| 351 | return 0; |
| 352 | } |
| 353 | |
Michal Simek | f063100 | 2022-02-17 14:28:38 +0100 | [diff] [blame] | 354 | #if defined(CONFIG_OF_BOARD) |
Ilias Apalodimas | e7fb789 | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 355 | void *board_fdt_blob_setup(int *err) |
Ibai Erkiaga | fec657b | 2019-10-02 15:57:36 +0100 | [diff] [blame] | 356 | { |
Michal Simek | e2572b5 | 2020-09-04 16:21:47 +0200 | [diff] [blame] | 357 | void *fdt_blob; |
Michal Simek | 453bb77 | 2020-03-19 10:23:56 +0100 | [diff] [blame] | 358 | |
Ilias Apalodimas | e7fb789 | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 359 | *err = 0; |
Michal Simek | a672b98 | 2021-01-04 11:07:28 +0100 | [diff] [blame] | 360 | if (!IS_ENABLED(CONFIG_SPL_BUILD) && |
| 361 | !IS_ENABLED(CONFIG_VERSAL_NO_DDR) && |
Michal Simek | fc3c6fd | 2021-02-02 13:33:22 +0100 | [diff] [blame] | 362 | !IS_ENABLED(CONFIG_ZYNQMP_NO_DDR)) { |
Michal Simek | 506009f | 2021-01-04 11:03:36 +0100 | [diff] [blame] | 363 | fdt_blob = (void *)CONFIG_XILINX_OF_BOARD_DTB_ADDR; |
Ibai Erkiaga | fec657b | 2019-10-02 15:57:36 +0100 | [diff] [blame] | 364 | |
Michal Simek | 506009f | 2021-01-04 11:03:36 +0100 | [diff] [blame] | 365 | if (fdt_magic(fdt_blob) == FDT_MAGIC) |
| 366 | return fdt_blob; |
Ibai Erkiaga | fec657b | 2019-10-02 15:57:36 +0100 | [diff] [blame] | 367 | |
Michal Simek | 506009f | 2021-01-04 11:03:36 +0100 | [diff] [blame] | 368 | debug("DTB is not passed via %p\n", fdt_blob); |
| 369 | } |
Michal Simek | fc274a5 | 2019-12-19 17:45:15 +0100 | [diff] [blame] | 370 | |
Michal Simek | 506009f | 2021-01-04 11:03:36 +0100 | [diff] [blame] | 371 | if (IS_ENABLED(CONFIG_SPL_BUILD)) { |
| 372 | /* |
| 373 | * FDT is at end of BSS unless it is in a different memory |
| 374 | * region |
| 375 | */ |
| 376 | if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) |
| 377 | fdt_blob = (ulong *)&_image_binary_end; |
| 378 | else |
| 379 | fdt_blob = (ulong *)&__bss_end; |
| 380 | } else { |
| 381 | /* FDT is at end of image */ |
| 382 | fdt_blob = (ulong *)&_end; |
| 383 | } |
Michal Simek | fc274a5 | 2019-12-19 17:45:15 +0100 | [diff] [blame] | 384 | |
| 385 | if (fdt_magic(fdt_blob) == FDT_MAGIC) |
| 386 | return fdt_blob; |
| 387 | |
| 388 | debug("DTB is also not passed via %p\n", fdt_blob); |
| 389 | |
Michal Simek | f063100 | 2022-02-17 14:28:38 +0100 | [diff] [blame] | 390 | *err = -EINVAL; |
Michal Simek | fc274a5 | 2019-12-19 17:45:15 +0100 | [diff] [blame] | 391 | return NULL; |
Ibai Erkiaga | fec657b | 2019-10-02 15:57:36 +0100 | [diff] [blame] | 392 | } |
| 393 | #endif |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 394 | |
Michal Simek | 7c553ac | 2020-10-22 11:14:20 +0200 | [diff] [blame] | 395 | #if defined(CONFIG_BOARD_LATE_INIT) |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 396 | static int env_set_by_index(const char *name, int index, char *data) |
| 397 | { |
| 398 | char var[32]; |
| 399 | |
| 400 | if (!index) |
| 401 | sprintf(var, "board_%s", name); |
| 402 | else |
| 403 | sprintf(var, "card%d_%s", index, name); |
| 404 | |
| 405 | return env_set(var, data); |
| 406 | } |
| 407 | |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 408 | int board_late_init_xilinx(void) |
| 409 | { |
Michal Simek | ca0f616 | 2020-08-12 12:16:49 +0200 | [diff] [blame] | 410 | u32 ret = 0; |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 411 | int i, id, macid = 0; |
| 412 | struct xilinx_board_description *desc; |
Ricardo Salveti | e6e3b9d | 2022-01-20 16:17:30 -0300 | [diff] [blame] | 413 | phys_size_t bootm_size = gd->ram_top - gd->ram_base; |
T Karthik Reddy | d388ced | 2020-04-01 06:01:21 -0600 | [diff] [blame] | 414 | |
T Karthik Reddy | 25484d9 | 2021-04-02 01:49:17 -0600 | [diff] [blame] | 415 | if (!CONFIG_IS_ENABLED(MICROBLAZE)) { |
T Karthik Reddy | d388ced | 2020-04-01 06:01:21 -0600 | [diff] [blame] | 416 | ulong scriptaddr; |
| 417 | |
| 418 | scriptaddr = env_get_hex("scriptaddr", 0); |
T Karthik Reddy | 25484d9 | 2021-04-02 01:49:17 -0600 | [diff] [blame] | 419 | ret |= env_set_hex("scriptaddr", gd->ram_base + scriptaddr); |
T Karthik Reddy | d388ced | 2020-04-01 06:01:21 -0600 | [diff] [blame] | 420 | } |
Michal Simek | 2570cc6 | 2020-08-12 12:17:53 +0200 | [diff] [blame] | 421 | |
Simon Glass | c0ef5a3 | 2023-02-05 15:36:13 -0700 | [diff] [blame] | 422 | if (IS_ENABLED(CONFIG_ARCH_ZYNQ) || CONFIG_IS_ENABLED(MICROBLAZE)) |
Michal Simek | 2570cc6 | 2020-08-12 12:17:53 +0200 | [diff] [blame] | 423 | bootm_size = min(bootm_size, (phys_size_t)(SZ_512M + SZ_256M)); |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 424 | |
Michal Simek | ca0f616 | 2020-08-12 12:16:49 +0200 | [diff] [blame] | 425 | ret |= env_set_hex("script_offset_f", CONFIG_BOOT_SCRIPT_OFFSET); |
| 426 | |
| 427 | ret |= env_set_addr("bootm_low", (void *)gd->ram_base); |
Michal Simek | 2570cc6 | 2020-08-12 12:17:53 +0200 | [diff] [blame] | 428 | ret |= env_set_addr("bootm_size", (void *)bootm_size); |
Michal Simek | ca0f616 | 2020-08-12 12:16:49 +0200 | [diff] [blame] | 429 | |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 430 | for (id = 0; id <= highest_id; id++) { |
Michal Simek | d9c93c9 | 2021-08-12 12:30:36 +0200 | [diff] [blame] | 431 | desc = &board_info[id]; |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 432 | if (desc && desc->header == EEPROM_HEADER_MAGIC) { |
| 433 | if (desc->manufacturer[0]) |
| 434 | ret |= env_set_by_index("manufacturer", id, |
| 435 | desc->manufacturer); |
| 436 | if (desc->name[0]) |
| 437 | ret |= env_set_by_index("name", id, |
| 438 | desc->name); |
| 439 | if (desc->revision[0]) |
| 440 | ret |= env_set_by_index("rev", id, |
| 441 | desc->revision); |
| 442 | if (desc->serial[0]) |
| 443 | ret |= env_set_by_index("serial", id, |
| 444 | desc->serial); |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 445 | |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 446 | if (desc->uuid[0]) { |
Venkatesh Yadav Abbarapu | e1a193b | 2022-09-26 12:22:42 +0530 | [diff] [blame] | 447 | unsigned char uuid[UUID_STR_LEN + 1]; |
| 448 | unsigned char *t = desc->uuid; |
Michal Simek | ee5a4b8 | 2022-07-21 16:19:17 +0200 | [diff] [blame] | 449 | |
| 450 | memset(uuid, 0, UUID_STR_LEN + 1); |
| 451 | |
| 452 | sprintf(uuid, "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x", |
| 453 | t[0], t[1], t[2], t[3], t[4], t[5], |
| 454 | t[6], t[7], t[8], t[9], t[10], t[11], |
| 455 | t[12], t[13], t[14], t[15]); |
| 456 | ret |= env_set_by_index("uuid", id, uuid); |
| 457 | } |
| 458 | |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 459 | if (!CONFIG_IS_ENABLED(NET)) |
| 460 | continue; |
| 461 | |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 462 | for (i = 0; i < EEPROM_HDR_NO_OF_MAC_ADDR; i++) { |
Michal Simek | a03b594 | 2020-08-03 12:57:05 +0200 | [diff] [blame] | 463 | if (is_valid_ethaddr((const u8 *)desc->mac_addr[i])) |
| 464 | ret |= eth_env_set_enetaddr_by_index("eth", |
| 465 | macid++, desc->mac_addr[i]); |
| 466 | } |
Michal Simek | d61728c | 2020-08-03 13:01:45 +0200 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | |
Michal Simek | ca0f616 | 2020-08-12 12:16:49 +0200 | [diff] [blame] | 470 | if (ret) |
| 471 | printf("%s: Saving run time variables FAILED\n", __func__); |
Michal Simek | c8da651 | 2020-07-09 15:57:56 +0200 | [diff] [blame] | 472 | |
Michal Simek | 80fdef1 | 2020-03-31 12:39:37 +0200 | [diff] [blame] | 473 | return 0; |
| 474 | } |
Michal Simek | 7c553ac | 2020-10-22 11:14:20 +0200 | [diff] [blame] | 475 | #endif |
Michal Simek | 05af483 | 2020-10-26 12:26:13 +0100 | [diff] [blame] | 476 | |
Michal Simek | 57f7103 | 2021-07-23 09:55:59 +0200 | [diff] [blame] | 477 | static char *board_name = DEVICE_TREE; |
| 478 | |
Michal Simek | 05af483 | 2020-10-26 12:26:13 +0100 | [diff] [blame] | 479 | int __maybe_unused board_fit_config_name_match(const char *name) |
| 480 | { |
Michal Simek | 57f7103 | 2021-07-23 09:55:59 +0200 | [diff] [blame] | 481 | debug("%s: Check %s, default %s\n", __func__, name, board_name); |
Michal Simek | 05af483 | 2020-10-26 12:26:13 +0100 | [diff] [blame] | 482 | |
Michal Simek | 8174cd2 | 2023-01-06 09:38:52 +0100 | [diff] [blame] | 483 | #if !defined(CONFIG_SPL_BUILD) |
| 484 | if (CONFIG_IS_ENABLED(REGEX)) { |
| 485 | struct slre slre; |
| 486 | int ret; |
| 487 | |
| 488 | ret = slre_compile(&slre, name); |
| 489 | if (ret) { |
| 490 | ret = slre_match(&slre, board_name, strlen(board_name), |
| 491 | NULL); |
| 492 | debug("%s: name match ret = %d\n", __func__, ret); |
| 493 | return !ret; |
| 494 | } |
| 495 | } |
| 496 | #endif |
| 497 | |
Michal Simek | 57f7103 | 2021-07-23 09:55:59 +0200 | [diff] [blame] | 498 | if (!strcmp(name, board_name)) |
Michal Simek | 05af483 | 2020-10-26 12:26:13 +0100 | [diff] [blame] | 499 | return 0; |
| 500 | |
| 501 | return -1; |
| 502 | } |
T Karthik Reddy | 80c0d38 | 2021-08-10 06:50:20 -0600 | [diff] [blame] | 503 | |
Simon Glass | 866ec87 | 2023-02-05 15:39:38 -0700 | [diff] [blame] | 504 | #if IS_ENABLED(CONFIG_DTB_RESELECT) |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 505 | #define MAX_NAME_LENGTH 50 |
| 506 | |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 507 | char * __maybe_unused __weak board_name_decode(void) |
| 508 | { |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 509 | char *board_local_name; |
| 510 | struct xilinx_board_description *desc; |
| 511 | int i, id; |
| 512 | |
| 513 | board_local_name = calloc(1, MAX_NAME_LENGTH); |
| 514 | if (!board_info) |
| 515 | return NULL; |
| 516 | |
| 517 | for (id = 0; id <= highest_id; id++) { |
| 518 | desc = &board_info[id]; |
| 519 | |
| 520 | /* No board description */ |
| 521 | if (!desc) |
| 522 | goto error; |
| 523 | |
| 524 | /* Board is not detected */ |
| 525 | if (desc->header != EEPROM_HEADER_MAGIC) |
| 526 | continue; |
| 527 | |
| 528 | /* The first string should be soc name */ |
| 529 | if (!id) |
| 530 | strcat(board_local_name, CONFIG_SYS_BOARD); |
| 531 | |
| 532 | /* |
| 533 | * For two purpose here: |
| 534 | * soc_name- eg: zynqmp- |
| 535 | * and between base board and CC eg: ..revA-sck... |
| 536 | */ |
| 537 | strcat(board_local_name, "-"); |
| 538 | |
| 539 | if (desc->name[0]) { |
| 540 | /* For DT composition name needs to be lowercase */ |
| 541 | for (i = 0; i < sizeof(desc->name); i++) |
| 542 | desc->name[i] = tolower(desc->name[i]); |
| 543 | |
| 544 | strcat(board_local_name, desc->name); |
| 545 | } |
| 546 | if (desc->revision[0]) { |
| 547 | strcat(board_local_name, "-rev"); |
| 548 | |
| 549 | /* And revision needs to be uppercase */ |
| 550 | for (i = 0; i < sizeof(desc->revision); i++) |
| 551 | desc->revision[i] = toupper(desc->revision[i]); |
| 552 | |
| 553 | strcat(board_local_name, desc->revision); |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | /* |
| 558 | * Longer strings will end up with buffer overflow and potential |
| 559 | * attacks that's why check it |
| 560 | */ |
| 561 | if (strlen(board_local_name) >= MAX_NAME_LENGTH) |
| 562 | panic("Board name can't be determined\n"); |
| 563 | |
| 564 | if (strlen(board_local_name)) |
| 565 | return board_local_name; |
| 566 | |
| 567 | error: |
| 568 | free(board_local_name); |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 569 | return NULL; |
| 570 | } |
| 571 | |
| 572 | bool __maybe_unused __weak board_detection(void) |
| 573 | { |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 574 | if (CONFIG_IS_ENABLED(DM_I2C) && CONFIG_IS_ENABLED(I2C_EEPROM)) { |
| 575 | int ret; |
| 576 | |
| 577 | ret = xilinx_read_eeprom(); |
| 578 | return !ret ? true : false; |
| 579 | } |
| 580 | |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 581 | return false; |
| 582 | } |
| 583 | |
Michal Simek | 39d3c3c | 2022-09-06 12:40:41 +0200 | [diff] [blame] | 584 | bool __maybe_unused __weak soc_detection(void) |
| 585 | { |
| 586 | return false; |
| 587 | } |
| 588 | |
| 589 | char * __maybe_unused __weak soc_name_decode(void) |
| 590 | { |
| 591 | return NULL; |
| 592 | } |
| 593 | |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 594 | int embedded_dtb_select(void) |
| 595 | { |
Michal Simek | 39d3c3c | 2022-09-06 12:40:41 +0200 | [diff] [blame] | 596 | if (soc_detection()) { |
| 597 | char *soc_local_name; |
| 598 | |
| 599 | soc_local_name = soc_name_decode(); |
| 600 | if (soc_local_name) { |
| 601 | board_name = soc_local_name; |
| 602 | printf("Detected SOC name: %s\n", board_name); |
| 603 | |
| 604 | /* Time to change DTB on fly */ |
| 605 | /* Both ways should work here */ |
| 606 | /* fdtdec_resetup(&rescan); */ |
| 607 | return fdtdec_setup(); |
| 608 | } |
| 609 | } |
| 610 | |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 611 | if (board_detection()) { |
| 612 | char *board_local_name; |
| 613 | |
| 614 | board_local_name = board_name_decode(); |
| 615 | if (board_local_name) { |
| 616 | board_name = board_local_name; |
Michal Simek | 52ff162 | 2021-08-11 14:23:54 +0200 | [diff] [blame] | 617 | printf("Detected name: %s\n", board_name); |
Michal Simek | 8823253 | 2021-07-23 09:59:59 +0200 | [diff] [blame] | 618 | |
| 619 | /* Time to change DTB on fly */ |
| 620 | /* Both ways should work here */ |
| 621 | /* fdtdec_resetup(&rescan); */ |
| 622 | fdtdec_setup(); |
| 623 | } |
| 624 | } |
| 625 | return 0; |
| 626 | } |
| 627 | #endif |
Michal Simek | a32c3e9 | 2022-08-25 14:23:10 +0200 | [diff] [blame] | 628 | |
| 629 | #if defined(CONFIG_LMB) |
Pali Rohár | 049704f | 2022-09-09 17:32:40 +0200 | [diff] [blame] | 630 | phys_size_t board_get_usable_ram_top(phys_size_t total_size) |
Michal Simek | a32c3e9 | 2022-08-25 14:23:10 +0200 | [diff] [blame] | 631 | { |
| 632 | phys_size_t size; |
| 633 | phys_addr_t reg; |
| 634 | struct lmb lmb; |
| 635 | |
| 636 | if (!total_size) |
| 637 | return gd->ram_top; |
| 638 | |
| 639 | if (!IS_ALIGNED((ulong)gd->fdt_blob, 0x8)) |
| 640 | panic("Not 64bit aligned DT location: %p\n", gd->fdt_blob); |
| 641 | |
| 642 | /* found enough not-reserved memory to relocated U-Boot */ |
| 643 | lmb_init(&lmb); |
| 644 | lmb_add(&lmb, gd->ram_base, gd->ram_size); |
| 645 | boot_fdt_add_mem_rsv_regions(&lmb, (void *)gd->fdt_blob); |
| 646 | size = ALIGN(CONFIG_SYS_MALLOC_LEN + total_size, MMU_SECTION_SIZE); |
| 647 | reg = lmb_alloc(&lmb, size, MMU_SECTION_SIZE); |
| 648 | |
| 649 | if (!reg) |
| 650 | reg = gd->ram_top - size; |
| 651 | |
| 652 | return reg + size; |
| 653 | } |
| 654 | #endif |