blob: 92874272893a8da5639b6f5978116e1c68d6acda [file] [log] [blame]
Michal Simek014d3042019-01-21 15:25:02 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
Michal Simek394ee242020-08-03 13:01:45 +02003 * (C) Copyright 2014 - 2020 Xilinx, Inc.
Michal Simek014d3042019-01-21 15:25:02 +01004 * Michal Simek <michal.simek@xilinx.com>
5 */
6
7#include <common.h>
Simon Glassed38aef2020-05-10 11:40:03 -06008#include <env.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Michal Simek878ba362019-12-19 17:45:15 +010011#include <asm/sections.h>
Michal Simek014d3042019-01-21 15:25:02 +010012#include <dm/uclass.h>
13#include <i2c.h>
Michal Simekb90b97e2020-04-08 10:51:36 +020014#include <linux/sizes.h>
Michal Simek394ee242020-08-03 13:01:45 +020015#include <malloc.h>
Michal Simek705d44a2020-03-31 12:39:37 +020016#include "board.h"
Michal Simek394ee242020-08-03 13:01:45 +020017#include <dm.h>
18#include <i2c_eeprom.h>
19#include <net.h>
Michal Simekfe49df92020-10-26 12:26:13 +010020#include <generated/dt.h>
T Karthik Reddyc8fa40a2021-08-10 06:50:20 -060021#include <soc.h>
Michal Simek014d3042019-01-21 15:25:02 +010022
Michal Simek207e0622020-08-03 16:14:23 +020023#include "fru.h"
24
Michal Simekaee22b32020-08-03 12:59:28 +020025#if defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET)
Michal Simek014d3042019-01-21 15:25:02 +010026int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
27{
Michal Simek13db6162019-01-21 16:29:07 +010028 int ret = -EINVAL;
Michal Simek13db6162019-01-21 16:29:07 +010029 struct udevice *dev;
30 ofnode eeprom;
31
32 eeprom = ofnode_get_chosen_node("xlnx,eeprom");
33 if (!ofnode_valid(eeprom))
34 return -ENODEV;
35
36 debug("%s: Path to EEPROM %s\n", __func__,
Simon Glassf3455962020-01-27 08:49:43 -070037 ofnode_read_chosen_string("xlnx,eeprom"));
Michal Simek13db6162019-01-21 16:29:07 +010038
39 ret = uclass_get_device_by_ofnode(UCLASS_I2C_EEPROM, eeprom, &dev);
40 if (ret)
41 return ret;
42
43 ret = dm_i2c_read(dev, CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET, ethaddr, 6);
44 if (ret)
45 debug("%s: I2C EEPROM MAC address read failed\n", __func__);
46 else
47 debug("%s: I2C EEPROM MAC %pM\n", __func__, ethaddr);
Michal Simek13db6162019-01-21 16:29:07 +010048
49 return ret;
50}
Michal Simekaee22b32020-08-03 12:59:28 +020051#endif
Ibai Erkiaga6f658202019-10-02 15:57:36 +010052
Michal Simek394ee242020-08-03 13:01:45 +020053#define EEPROM_HEADER_MAGIC 0xdaaddeed
54#define EEPROM_HDR_MANUFACTURER_LEN 16
55#define EEPROM_HDR_NAME_LEN 16
56#define EEPROM_HDR_REV_LEN 8
57#define EEPROM_HDR_SERIAL_LEN 20
58#define EEPROM_HDR_NO_OF_MAC_ADDR 4
59#define EEPROM_HDR_ETH_ALEN ETH_ALEN
60
61struct xilinx_board_description {
62 u32 header;
63 char manufacturer[EEPROM_HDR_MANUFACTURER_LEN + 1];
64 char name[EEPROM_HDR_NAME_LEN + 1];
65 char revision[EEPROM_HDR_REV_LEN + 1];
66 char serial[EEPROM_HDR_SERIAL_LEN + 1];
67 u8 mac_addr[EEPROM_HDR_NO_OF_MAC_ADDR][EEPROM_HDR_ETH_ALEN + 1];
68};
69
Michal Simek0bb24e12020-08-03 12:57:05 +020070static int highest_id = -1;
Michal Simeke98ae1d2021-08-12 12:30:36 +020071static struct xilinx_board_description *board_info;
Michal Simek394ee242020-08-03 13:01:45 +020072
Michal Simek207e0622020-08-03 16:14:23 +020073#define XILINX_I2C_DETECTION_BITS sizeof(struct fru_common_hdr)
Michal Simek394ee242020-08-03 13:01:45 +020074
75/* Variable which stores pointer to array which stores eeprom content */
76struct xilinx_legacy_format {
77 char board_sn[18]; /* 0x0 */
78 char unused0[14]; /* 0x12 */
79 char eth_mac[6]; /* 0x20 */
80 char unused1[170]; /* 0x26 */
81 char board_name[11]; /* 0xd0 */
82 char unused2[5]; /* 0xdc */
83 char board_revision[3]; /* 0xe0 */
84 char unused3[29]; /* 0xe3 */
85};
86
87static void xilinx_eeprom_legacy_cleanup(char *eeprom, int size)
88{
89 int i;
90 char byte;
91
92 for (i = 0; i < size; i++) {
93 byte = eeprom[i];
94
95 /* Remove all ffs and spaces */
96 if (byte == 0xff || byte == ' ')
97 eeprom[i] = 0;
98
99 /* Convert strings to lower case */
100 if (byte >= 'A' && byte <= 'Z')
101 eeprom[i] = byte + 'a' - 'A';
102 }
103}
104
105static int xilinx_read_eeprom_legacy(struct udevice *dev, char *name,
106 struct xilinx_board_description *desc)
107{
108 int ret, size;
109 struct xilinx_legacy_format *eeprom_content;
110 bool eth_valid = false;
111
112 size = sizeof(*eeprom_content);
113
114 eeprom_content = calloc(1, size);
115 if (!eeprom_content)
116 return -ENOMEM;
117
118 debug("%s: I2C EEPROM read pass data at %p\n", __func__,
119 eeprom_content);
120
121 ret = dm_i2c_read(dev, 0, (uchar *)eeprom_content, size);
122 if (ret) {
123 debug("%s: I2C EEPROM read failed\n", __func__);
124 free(eeprom_content);
125 return ret;
126 }
127
128 xilinx_eeprom_legacy_cleanup((char *)eeprom_content, size);
129
130 printf("Xilinx I2C Legacy format at %s:\n", name);
131 printf(" Board name:\t%s\n", eeprom_content->board_name);
132 printf(" Board rev:\t%s\n", eeprom_content->board_revision);
133 printf(" Board SN:\t%s\n", eeprom_content->board_sn);
134
135 eth_valid = is_valid_ethaddr((const u8 *)eeprom_content->eth_mac);
136 if (eth_valid)
137 printf(" Ethernet mac:\t%pM\n", eeprom_content->eth_mac);
138
139 /* Terminating \0 chars ensure end of string */
140 strcpy(desc->name, eeprom_content->board_name);
141 strcpy(desc->revision, eeprom_content->board_revision);
142 strcpy(desc->serial, eeprom_content->board_sn);
143 if (eth_valid)
144 memcpy(desc->mac_addr[0], eeprom_content->eth_mac, ETH_ALEN);
145
146 desc->header = EEPROM_HEADER_MAGIC;
147
148 free(eeprom_content);
149
150 return ret;
151}
152
153static bool xilinx_detect_legacy(u8 *buffer)
154{
155 int i;
156 char c;
157
158 for (i = 0; i < XILINX_I2C_DETECTION_BITS; i++) {
159 c = buffer[i];
160
161 if (c < '0' || c > '9')
162 return false;
163 }
164
165 return true;
166}
167
Michal Simek207e0622020-08-03 16:14:23 +0200168static int xilinx_read_eeprom_fru(struct udevice *dev, char *name,
169 struct xilinx_board_description *desc)
170{
Michal Simekbe5f5722021-08-12 11:03:49 +0200171 int i, ret, eeprom_size;
Michal Simek207e0622020-08-03 16:14:23 +0200172 u8 *fru_content;
173
174 /* FIXME this is shortcut - if eeprom type is wrong it will fail */
175 eeprom_size = i2c_eeprom_size(dev);
176
177 fru_content = calloc(1, eeprom_size);
178 if (!fru_content)
179 return -ENOMEM;
180
181 debug("%s: I2C EEPROM read pass data at %p\n", __func__,
182 fru_content);
183
184 ret = dm_i2c_read(dev, 0, (uchar *)fru_content,
185 eeprom_size);
186 if (ret) {
187 debug("%s: I2C EEPROM read failed\n", __func__);
Michal Simekaada8a62021-08-13 09:17:10 +0200188 goto end;
Michal Simek207e0622020-08-03 16:14:23 +0200189 }
190
191 printf("Xilinx I2C FRU format at %s:\n", name);
192 fru_capture((unsigned long)fru_content);
193 ret = fru_display(0);
194 if (ret) {
195 printf("FRU format decoding failed.\n");
Michal Simekaada8a62021-08-13 09:17:10 +0200196 goto end;
Michal Simek207e0622020-08-03 16:14:23 +0200197 }
198
199 if (desc->header == EEPROM_HEADER_MAGIC) {
200 debug("Information already filled\n");
Michal Simekaada8a62021-08-13 09:17:10 +0200201 ret = -EINVAL;
202 goto end;
Michal Simek207e0622020-08-03 16:14:23 +0200203 }
204
205 /* It is clear that FRU was captured and structures were filled */
206 strncpy(desc->manufacturer, (char *)fru_data.brd.manufacturer_name,
207 sizeof(desc->manufacturer));
208 strncpy(desc->name, (char *)fru_data.brd.product_name,
209 sizeof(desc->name));
Michal Simekbe5f5722021-08-12 11:03:49 +0200210 for (i = 0; i < sizeof(desc->name); i++) {
211 if (desc->name[i] == ' ')
212 desc->name[i] = '\0';
213 }
Michal Simek207e0622020-08-03 16:14:23 +0200214 strncpy(desc->revision, (char *)fru_data.brd.rev,
215 sizeof(desc->revision));
216 strncpy(desc->serial, (char *)fru_data.brd.serial_number,
217 sizeof(desc->serial));
218 desc->header = EEPROM_HEADER_MAGIC;
219
Michal Simekaada8a62021-08-13 09:17:10 +0200220end:
221 free(fru_content);
222 return ret;
Michal Simek207e0622020-08-03 16:14:23 +0200223}
224
225static bool xilinx_detect_fru(u8 *buffer)
226{
227 u8 checksum = 0;
228 int i;
229
230 checksum = fru_checksum((u8 *)buffer, sizeof(struct fru_common_hdr));
231 if (checksum) {
232 debug("%s Common header CRC FAIL\n", __func__);
233 return false;
234 }
235
236 bool all_zeros = true;
237 /* Checksum over all zeros is also zero that's why detect this case */
238 for (i = 0; i < sizeof(struct fru_common_hdr); i++) {
239 if (buffer[i] != 0)
240 all_zeros = false;
241 }
242
243 if (all_zeros)
244 return false;
245
246 debug("%s Common header CRC PASS\n", __func__);
247 return true;
248}
249
Michal Simek394ee242020-08-03 13:01:45 +0200250static int xilinx_read_eeprom_single(char *name,
251 struct xilinx_board_description *desc)
252{
253 int ret;
254 struct udevice *dev;
255 ofnode eeprom;
256 u8 buffer[XILINX_I2C_DETECTION_BITS];
257
258 eeprom = ofnode_get_aliases_node(name);
259 if (!ofnode_valid(eeprom))
260 return -ENODEV;
261
262 ret = uclass_get_device_by_ofnode(UCLASS_I2C_EEPROM, eeprom, &dev);
263 if (ret)
264 return ret;
265
266 ret = dm_i2c_read(dev, 0, buffer, sizeof(buffer));
267 if (ret) {
268 debug("%s: I2C EEPROM read failed\n", __func__);
269 return ret;
270 }
271
272 debug("%s: i2c memory detected: %s\n", __func__, name);
273
Michal Simek207e0622020-08-03 16:14:23 +0200274 if (CONFIG_IS_ENABLED(CMD_FRU) && xilinx_detect_fru(buffer))
275 return xilinx_read_eeprom_fru(dev, name, desc);
276
Michal Simek394ee242020-08-03 13:01:45 +0200277 if (xilinx_detect_legacy(buffer))
278 return xilinx_read_eeprom_legacy(dev, name, desc);
279
280 return -ENODEV;
281}
282
283__maybe_unused int xilinx_read_eeprom(void)
284{
Michal Simeke98ae1d2021-08-12 12:30:36 +0200285 int id;
Michal Simek394ee242020-08-03 13:01:45 +0200286 char name_buf[8]; /* 8 bytes should be enough for nvmem+number */
Michal Simek0bb24e12020-08-03 12:57:05 +0200287 struct xilinx_board_description *desc;
Michal Simek394ee242020-08-03 13:01:45 +0200288
289 highest_id = dev_read_alias_highest_id("nvmem");
290 /* No nvmem aliases present */
291 if (highest_id < 0)
292 return -EINVAL;
293
Michal Simeke98ae1d2021-08-12 12:30:36 +0200294 board_info = calloc(1, sizeof(*desc) * (highest_id + 1));
Michal Simek394ee242020-08-03 13:01:45 +0200295 if (!board_info)
296 return -ENOMEM;
297
298 debug("%s: Highest ID %d, board_info %p\n", __func__,
299 highest_id, board_info);
300
301 for (id = 0; id <= highest_id; id++) {
302 snprintf(name_buf, sizeof(name_buf), "nvmem%d", id);
303
Michal Simek0bb24e12020-08-03 12:57:05 +0200304 /* Alloc structure */
Michal Simeke98ae1d2021-08-12 12:30:36 +0200305 desc = &board_info[id];
Michal Simek0bb24e12020-08-03 12:57:05 +0200306
Michal Simek394ee242020-08-03 13:01:45 +0200307 /* Ignoring return value for supporting multiple chips */
Michal Simeke98ae1d2021-08-12 12:30:36 +0200308 xilinx_read_eeprom_single(name_buf, desc);
Michal Simek394ee242020-08-03 13:01:45 +0200309 }
310
Michal Simek0bb24e12020-08-03 12:57:05 +0200311 /*
312 * Consider to clean board_info structure when board/cards are not
313 * detected.
314 */
Michal Simek394ee242020-08-03 13:01:45 +0200315
316 return 0;
317}
318
Michal Simek878ba362019-12-19 17:45:15 +0100319#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
Ibai Erkiaga6f658202019-10-02 15:57:36 +0100320void *board_fdt_blob_setup(void)
321{
Michal Simekddf69ae2020-09-04 16:21:47 +0200322 void *fdt_blob;
Michal Simekc89f4292020-03-19 10:23:56 +0100323
Michal Simek663c1622021-01-04 11:07:28 +0100324 if (!IS_ENABLED(CONFIG_SPL_BUILD) &&
325 !IS_ENABLED(CONFIG_VERSAL_NO_DDR) &&
Michal Simek6d4317b2021-02-02 13:33:22 +0100326 !IS_ENABLED(CONFIG_ZYNQMP_NO_DDR)) {
Michal Simek9b9d01e2021-01-04 11:03:36 +0100327 fdt_blob = (void *)CONFIG_XILINX_OF_BOARD_DTB_ADDR;
Ibai Erkiaga6f658202019-10-02 15:57:36 +0100328
Michal Simek9b9d01e2021-01-04 11:03:36 +0100329 if (fdt_magic(fdt_blob) == FDT_MAGIC)
330 return fdt_blob;
Michal Simek878ba362019-12-19 17:45:15 +0100331
Michal Simek9b9d01e2021-01-04 11:03:36 +0100332 debug("DTB is not passed via %p\n", fdt_blob);
333 }
Michal Simek878ba362019-12-19 17:45:15 +0100334
Michal Simek9b9d01e2021-01-04 11:03:36 +0100335 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
336 /*
337 * FDT is at end of BSS unless it is in a different memory
338 * region
339 */
340 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
341 fdt_blob = (ulong *)&_image_binary_end;
342 else
343 fdt_blob = (ulong *)&__bss_end;
344 } else {
345 /* FDT is at end of image */
346 fdt_blob = (ulong *)&_end;
347 }
Michal Simek878ba362019-12-19 17:45:15 +0100348
349 if (fdt_magic(fdt_blob) == FDT_MAGIC)
350 return fdt_blob;
351
352 debug("DTB is also not passed via %p\n", fdt_blob);
Ibai Erkiaga6f658202019-10-02 15:57:36 +0100353
Michal Simek878ba362019-12-19 17:45:15 +0100354 return NULL;
Ibai Erkiaga6f658202019-10-02 15:57:36 +0100355}
356#endif
Michal Simek705d44a2020-03-31 12:39:37 +0200357
Michal Simek67ed85d2020-10-22 11:14:20 +0200358#if defined(CONFIG_BOARD_LATE_INIT)
Michal Simek0bb24e12020-08-03 12:57:05 +0200359static int env_set_by_index(const char *name, int index, char *data)
360{
361 char var[32];
362
363 if (!index)
364 sprintf(var, "board_%s", name);
365 else
366 sprintf(var, "card%d_%s", index, name);
367
368 return env_set(var, data);
369}
370
Michal Simek705d44a2020-03-31 12:39:37 +0200371int board_late_init_xilinx(void)
372{
Michal Simekbd07b5d2020-08-12 12:16:49 +0200373 u32 ret = 0;
Michal Simek0bb24e12020-08-03 12:57:05 +0200374 int i, id, macid = 0;
375 struct xilinx_board_description *desc;
Michal Simekc86ce0c2020-08-12 12:17:53 +0200376 phys_size_t bootm_size = gd->ram_size;
T Karthik Reddy17b7f662020-04-01 06:01:21 -0600377
T Karthik Reddy466cdde2021-04-02 01:49:17 -0600378 if (!CONFIG_IS_ENABLED(MICROBLAZE)) {
T Karthik Reddy17b7f662020-04-01 06:01:21 -0600379 ulong scriptaddr;
380
381 scriptaddr = env_get_hex("scriptaddr", 0);
T Karthik Reddy466cdde2021-04-02 01:49:17 -0600382 ret |= env_set_hex("scriptaddr", gd->ram_base + scriptaddr);
T Karthik Reddy17b7f662020-04-01 06:01:21 -0600383 }
Michal Simekc86ce0c2020-08-12 12:17:53 +0200384
Michal Simek9ccfcae2020-10-23 07:54:18 +0200385 if (CONFIG_IS_ENABLED(ARCH_ZYNQ) || CONFIG_IS_ENABLED(MICROBLAZE))
Michal Simekc86ce0c2020-08-12 12:17:53 +0200386 bootm_size = min(bootm_size, (phys_size_t)(SZ_512M + SZ_256M));
Michal Simekbd07b5d2020-08-12 12:16:49 +0200387
388 ret |= env_set_hex("script_offset_f", CONFIG_BOOT_SCRIPT_OFFSET);
389
390 ret |= env_set_addr("bootm_low", (void *)gd->ram_base);
Michal Simekc86ce0c2020-08-12 12:17:53 +0200391 ret |= env_set_addr("bootm_size", (void *)bootm_size);
Michal Simek705d44a2020-03-31 12:39:37 +0200392
Michal Simek0bb24e12020-08-03 12:57:05 +0200393 for (id = 0; id <= highest_id; id++) {
Michal Simeke98ae1d2021-08-12 12:30:36 +0200394 desc = &board_info[id];
Michal Simek0bb24e12020-08-03 12:57:05 +0200395 if (desc && desc->header == EEPROM_HEADER_MAGIC) {
396 if (desc->manufacturer[0])
397 ret |= env_set_by_index("manufacturer", id,
398 desc->manufacturer);
399 if (desc->name[0])
400 ret |= env_set_by_index("name", id,
401 desc->name);
402 if (desc->revision[0])
403 ret |= env_set_by_index("rev", id,
404 desc->revision);
405 if (desc->serial[0])
406 ret |= env_set_by_index("serial", id,
407 desc->serial);
Michal Simek394ee242020-08-03 13:01:45 +0200408
409 if (!CONFIG_IS_ENABLED(NET))
410 continue;
411
Michal Simek0bb24e12020-08-03 12:57:05 +0200412 for (i = 0; i < EEPROM_HDR_NO_OF_MAC_ADDR; i++) {
413 if (!desc->mac_addr[i])
414 continue;
415
416 if (is_valid_ethaddr((const u8 *)desc->mac_addr[i]))
417 ret |= eth_env_set_enetaddr_by_index("eth",
418 macid++, desc->mac_addr[i]);
419 }
Michal Simek394ee242020-08-03 13:01:45 +0200420 }
421 }
422
Michal Simekbd07b5d2020-08-12 12:16:49 +0200423 if (ret)
424 printf("%s: Saving run time variables FAILED\n", __func__);
Michal Simek8ba62d22020-07-09 15:57:56 +0200425
Michal Simek705d44a2020-03-31 12:39:37 +0200426 return 0;
427}
Michal Simek67ed85d2020-10-22 11:14:20 +0200428#endif
Michal Simekfe49df92020-10-26 12:26:13 +0100429
Michal Simekc88975e2021-07-23 09:55:59 +0200430static char *board_name = DEVICE_TREE;
431
Michal Simekfe49df92020-10-26 12:26:13 +0100432int __maybe_unused board_fit_config_name_match(const char *name)
433{
Michal Simekc88975e2021-07-23 09:55:59 +0200434 debug("%s: Check %s, default %s\n", __func__, name, board_name);
Michal Simekfe49df92020-10-26 12:26:13 +0100435
Michal Simekc88975e2021-07-23 09:55:59 +0200436 if (!strcmp(name, board_name))
Michal Simekfe49df92020-10-26 12:26:13 +0100437 return 0;
438
439 return -1;
440}
T Karthik Reddyc8fa40a2021-08-10 06:50:20 -0600441
442#if defined(CONFIG_DISPLAY_CPUINFO) && !defined(CONFIG_ARCH_ZYNQ)
443int print_cpuinfo(void)
444{
445 struct udevice *soc;
446 char name[SOC_MAX_STR_SIZE];
447 int ret;
448
449 ret = soc_get(&soc);
450 if (ret) {
451 printf("CPU: UNKNOWN\n");
452 return 0;
453 }
454
455 ret = soc_get_family(soc, name, SOC_MAX_STR_SIZE);
456 if (ret)
457 printf("CPU: %s\n", name);
458
459 ret = soc_get_revision(soc, name, SOC_MAX_STR_SIZE);
460 if (ret)
461 printf("Silicon: %s\n", name);
462
463 return 0;
464}
465#endif
Michal Simekafb28572021-07-23 09:59:59 +0200466
467#if CONFIG_IS_ENABLED(DTB_RESELECT)
468char * __maybe_unused __weak board_name_decode(void)
469{
470 return NULL;
471}
472
473bool __maybe_unused __weak board_detection(void)
474{
475 return false;
476}
477
478int embedded_dtb_select(void)
479{
480 if (board_detection()) {
481 char *board_local_name;
482
483 board_local_name = board_name_decode();
484 if (board_local_name) {
485 board_name = board_local_name;
486 debug("Detected name: %s\n", board_name);
487
488 /* Time to change DTB on fly */
489 /* Both ways should work here */
490 /* fdtdec_resetup(&rescan); */
491 fdtdec_setup();
492 }
493 }
494 return 0;
495}
496#endif