blob: 07073a5940b153facc1879e4a76055bd47960043 [file] [log] [blame]
Lokesh Vutla029f9212018-08-27 15:59:06 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Board specific initialization for AM654 EVM
4 *
Nishanth Menoneaa39c62023-11-01 15:56:03 -05005 * Copyright (C) 2017-2018 Texas Instruments Incorporated - https://www.ti.com/
Lokesh Vutla029f9212018-08-27 15:59:06 +05306 * Lokesh Vutla <lokeshvutla@ti.com>
7 *
8 */
9
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050010#include <dm.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <fdt_support.h>
12#include <image.h>
Simon Glass6980b6b2019-11-14 12:57:45 -070013#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <net.h>
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050015#include <asm/arch/hardware.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050017#include <asm/gpio.h>
Lokesh Vutla029f9212018-08-27 15:59:06 +053018#include <asm/io.h>
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050019#include <asm/omap_common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060020#include <env.h>
Lokesh Vutla029f9212018-08-27 15:59:06 +053021#include <spl.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060022#include <linux/printk.h>
Lokesh Vutla029f9212018-08-27 15:59:06 +053023
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050024#include "../common/board_detect.h"
Nishanth Menon002ec6e2024-02-12 13:47:21 -060025#include "../common/fdt_ops.h"
Andreas Dannenberg63f5c852019-06-04 18:08:26 -050026
27#define board_is_am65x_base_board() board_ti_is("AM6-COMPROCEVM")
28
29/* Daughter card presence detection signals */
30enum {
31 AM65X_EVM_APP_BRD_DET,
32 AM65X_EVM_LCD_BRD_DET,
33 AM65X_EVM_SERDES_BRD_DET,
34 AM65X_EVM_HDMI_GPMC_BRD_DET,
35 AM65X_EVM_BRD_DET_COUNT,
36};
37
38/* Max number of MAC addresses that are parsed/processed per daughter card */
39#define DAUGHTER_CARD_NO_OF_MAC_ADDR 8
40
Aswath Govindrajua698af22020-11-20 21:18:53 +053041/* Regiter that controls the SERDES0 lane and clock assignment */
42#define CTRLMMR_SERDES0_CTRL 0x00104080
43#define PCIE_LANE0 0x1
44
Lokesh Vutla029f9212018-08-27 15:59:06 +053045DECLARE_GLOBAL_DATA_PTR;
46
47int board_init(void)
48{
49 return 0;
50}
51
52int dram_init(void)
53{
54#ifdef CONFIG_PHYS_64BIT
55 gd->ram_size = 0x100000000;
56#else
57 gd->ram_size = 0x80000000;
58#endif
59
60 return 0;
61}
62
Heinrich Schuchardt51a9aac2023-08-12 20:16:58 +020063phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
Lokesh Vutla029f9212018-08-27 15:59:06 +053064{
65#ifdef CONFIG_PHYS_64BIT
66 /* Limit RAM used by U-Boot to the DDR low region */
67 if (gd->ram_top > 0x100000000)
68 return 0x100000000;
69#endif
70
71 return gd->ram_top;
72}
73
74int dram_init_banksize(void)
75{
76 /* Bank 0 declares the memory available in the DDR low region */
Andrew Davisff64dc22023-11-30 08:49:11 -060077 gd->bd->bi_dram[0].start = 0x80000000;
Lokesh Vutla029f9212018-08-27 15:59:06 +053078 gd->bd->bi_dram[0].size = 0x80000000;
Jan Kiszka7ce99f72020-05-18 07:57:22 +020079 gd->ram_size = 0x80000000;
Lokesh Vutla029f9212018-08-27 15:59:06 +053080
81#ifdef CONFIG_PHYS_64BIT
82 /* Bank 1 declares the memory available in the DDR high region */
Andrew Davisff64dc22023-11-30 08:49:11 -060083 gd->bd->bi_dram[1].start = 0x880000000;
Lokesh Vutla029f9212018-08-27 15:59:06 +053084 gd->bd->bi_dram[1].size = 0x80000000;
Jan Kiszka7ce99f72020-05-18 07:57:22 +020085 gd->ram_size = 0x100000000;
Lokesh Vutla029f9212018-08-27 15:59:06 +053086#endif
87
88 return 0;
89}
Lokesh Vutla8bfaf012018-08-27 15:59:08 +053090
91#ifdef CONFIG_SPL_LOAD_FIT
92int board_fit_config_name_match(const char *name)
93{
MD Danish Anwar7f25a8c2024-04-16 14:50:17 +053094 if (IS_ENABLED(CONFIG_TI_ICSSG_PRUETH) &&
95 strcmp(name, "k3-am654-icssg2") == 0)
96 return 0;
97
98 if (IS_ENABLED(CONFIG_TARGET_AM654_A53_EVM) &&
99 strcmp(name, "k3-am654-base-board") == 0)
Lokesh Vutla8bfaf012018-08-27 15:59:08 +0530100 return 0;
Lokesh Vutla8bfaf012018-08-27 15:59:08 +0530101
102 return -1;
103}
104#endif
Lokesh Vutla79de9ef2019-03-08 11:47:35 +0530105
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100106#ifdef CONFIG_TI_I2C_BOARD_DETECT
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500107int do_board_detect(void)
108{
109 int ret;
110
111 ret = ti_i2c_eeprom_am6_get_base(CONFIG_EEPROM_BUS_ADDRESS,
112 CONFIG_EEPROM_CHIP_ADDRESS);
113 if (ret)
114 pr_err("Reading on-board EEPROM at 0x%02x failed %d\n",
115 CONFIG_EEPROM_CHIP_ADDRESS, ret);
116
117 return ret;
118}
119
Lokesh Vutla1ffb8c12019-09-27 13:32:12 +0530120int checkboard(void)
121{
122 struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
123
124 if (do_board_detect())
125 /* EEPROM not populated */
126 printf("Board: %s rev %s\n", "AM6-COMPROCEVM", "E3");
127 else
128 printf("Board: %s rev %s\n", ep->name, ep->version);
129
130 return 0;
131}
132
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500133static void setup_board_eeprom_env(void)
134{
135 char *name = "am65x";
136
137 if (do_board_detect())
138 goto invalid_eeprom;
139
140 if (board_is_am65x_base_board())
141 name = "am65x";
142 else
143 printf("Unidentified board claims %s in eeprom header\n",
144 board_ti_get_name());
145
146invalid_eeprom:
147 set_board_info_env_am6(name);
Nishanth Menon002ec6e2024-02-12 13:47:21 -0600148 ti_set_fdt_env(NULL, NULL);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500149}
150
151static int init_daughtercard_det_gpio(char *gpio_name, struct gpio_desc *desc)
152{
153 int ret;
154
155 memset(desc, 0, sizeof(*desc));
156
157 ret = dm_gpio_lookup_name(gpio_name, desc);
158 if (ret < 0)
159 return ret;
160
161 /* Request GPIO, simply re-using the name as label */
162 ret = dm_gpio_request(desc, gpio_name);
163 if (ret < 0)
164 return ret;
165
166 return dm_gpio_set_dir_flags(desc, GPIOD_IS_IN);
167}
168
169static int probe_daughtercards(void)
170{
171 struct ti_am6_eeprom ep;
172 struct gpio_desc board_det_gpios[AM65X_EVM_BRD_DET_COUNT];
173 char mac_addr[DAUGHTER_CARD_NO_OF_MAC_ADDR][TI_EEPROM_HDR_ETH_ALEN];
174 u8 mac_addr_cnt;
175 char name_overlays[1024] = { 0 };
176 int i, j;
177 int ret;
178
179 /*
180 * Daughter card presence detection signal name to GPIO (via I2C I/O
181 * expander @ address 0x38) name and EEPROM I2C address mapping.
182 */
183 const struct {
184 char *gpio_name;
185 u8 i2c_addr;
186 } slot_map[AM65X_EVM_BRD_DET_COUNT] = {
187 { "gpio@38_0", 0x52, }, /* AM65X_EVM_APP_BRD_DET */
188 { "gpio@38_1", 0x55, }, /* AM65X_EVM_LCD_BRD_DET */
189 { "gpio@38_2", 0x54, }, /* AM65X_EVM_SERDES_BRD_DET */
190 { "gpio@38_3", 0x53, }, /* AM65X_EVM_HDMI_GPMC_BRD_DET */
191 };
192
193 /* Declaration of daughtercards to probe */
194 const struct {
195 u8 slot_index; /* Slot the card is installed */
196 char *card_name; /* EEPROM-programmed card name */
197 char *dtbo_name; /* Device tree overlay to apply */
198 u8 eth_offset; /* ethXaddr MAC address index offset */
199 } cards[] = {
200 {
201 AM65X_EVM_APP_BRD_DET,
202 "AM6-GPAPPEVM",
203 "k3-am654-gp.dtbo",
204 0,
205 },
206 {
207 AM65X_EVM_APP_BRD_DET,
208 "AM6-IDKAPPEVM",
209 "k3-am654-idk.dtbo",
210 3,
211 },
212 {
213 AM65X_EVM_SERDES_BRD_DET,
214 "SER-PCIE2LEVM",
215 "k3-am654-pcie-usb2.dtbo",
216 0,
217 },
218 {
219 AM65X_EVM_SERDES_BRD_DET,
220 "SER-PCIEUSBEVM",
221 "k3-am654-pcie-usb3.dtbo",
222 0,
223 },
224 {
225 AM65X_EVM_LCD_BRD_DET,
226 "OLDI-LCD1EVM",
227 "k3-am654-evm-oldi-lcd1evm.dtbo",
228 0,
229 },
230 };
231
232 /*
233 * Initialize GPIO used for daughtercard slot presence detection and
234 * keep the resulting handles in local array for easier access.
235 */
236 for (i = 0; i < AM65X_EVM_BRD_DET_COUNT; i++) {
237 ret = init_daughtercard_det_gpio(slot_map[i].gpio_name,
238 &board_det_gpios[i]);
239 if (ret < 0)
240 return ret;
241 }
242
243 for (i = 0; i < ARRAY_SIZE(cards); i++) {
244 /* Obtain card-specific slot index and associated I2C address */
245 u8 slot_index = cards[i].slot_index;
246 u8 i2c_addr = slot_map[slot_index].i2c_addr;
247
248 /*
249 * The presence detection signal is active-low, hence skip
250 * over this card slot if anything other than 0 is returned.
251 */
252 ret = dm_gpio_get_value(&board_det_gpios[slot_index]);
253 if (ret < 0)
254 return ret;
255 else if (ret)
256 continue;
257
258 /* Get and parse the daughter card EEPROM record */
259 ret = ti_i2c_eeprom_am6_get(CONFIG_EEPROM_BUS_ADDRESS, i2c_addr,
260 &ep,
261 (char **)mac_addr,
262 DAUGHTER_CARD_NO_OF_MAC_ADDR,
263 &mac_addr_cnt);
264 if (ret) {
265 pr_err("Reading daughtercard EEPROM at 0x%02x failed %d\n",
266 i2c_addr, ret);
267 /*
268 * Even this is pretty serious let's just skip over
269 * this particular daughtercard, rather than ending
270 * the probing process altogether.
271 */
272 continue;
273 }
274
275 /* Only process the parsed data if we found a match */
276 if (strncmp(ep.name, cards[i].card_name, sizeof(ep.name)))
277 continue;
278
Lokesh Vutla1ffb8c12019-09-27 13:32:12 +0530279 printf("Detected: %s rev %s\n", ep.name, ep.version);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500280
281 /*
282 * Populate any MAC addresses from daughtercard into the U-Boot
283 * environment, starting with a card-specific offset so we can
284 * have multiple cards contribute to the MAC pool in a well-
285 * defined manner.
286 */
287 for (j = 0; j < mac_addr_cnt; j++) {
288 if (!is_valid_ethaddr((u8 *)mac_addr[j]))
289 continue;
290
291 eth_env_set_enetaddr_by_index("eth",
292 cards[i].eth_offset + j,
293 (uchar *)mac_addr[j]);
294 }
295
Aswath Govindrajua698af22020-11-20 21:18:53 +0530296 /*
297 * It has been observed that setting SERDES0 lane mux to USB prevents USB
298 * 2.0 operation on USB0. Setting SERDES0 lane mux to non-USB when USB0 is
299 * used in USB 2.0 only mode solves this issue. For USB3.0+2.0 operation
300 * this issue is not present.
301 *
302 * Implement this workaround by writing 1 to LANE_FUNC_SEL field in
303 * CTRLMMR_SERDES0_CTRL register.
304 */
305 if (!strncmp(ep.name, "SER-PCIE2LEVM", sizeof(ep.name)))
306 writel(PCIE_LANE0, CTRLMMR_SERDES0_CTRL);
307
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500308 /* Skip if no overlays are to be added */
309 if (!strlen(cards[i].dtbo_name))
310 continue;
311
312 /*
313 * Make sure we are not running out of buffer space by checking
314 * if we can fit the new overlay, a trailing space to be used
315 * as a separator, plus the terminating zero.
316 */
317 if (strlen(name_overlays) + strlen(cards[i].dtbo_name) + 2 >
318 sizeof(name_overlays))
319 return -ENOMEM;
320
321 /* Append to our list of overlays */
322 strcat(name_overlays, cards[i].dtbo_name);
323 strcat(name_overlays, " ");
324 }
325
326 /* Apply device tree overlay(s) to the U-Boot environment, if any */
327 if (strlen(name_overlays))
328 return env_set("name_overlays", name_overlays);
329
330 return 0;
331}
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100332#endif
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500333
334int board_late_init(void)
335{
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100336 if (IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT)) {
337 struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500338
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100339 setup_board_eeprom_env();
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500340
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100341 /*
342 * The first MAC address for ethernet a.k.a. ethernet0 comes from
343 * efuse populated via the am654 gigabit eth switch subsystem driver.
344 * All the other ones are populated via EEPROM, hence continue with
345 * an index of 1.
346 */
347 board_ti_am6_set_ethaddr(1, ep->mac_addr_cnt);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500348
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100349 /* Check for and probe any plugged-in daughtercards */
350 probe_daughtercards();
351 }
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500352
353 return 0;
354}