blob: 3109c9a2acaccd9349e4a2088640083c26c6b274 [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{
94#ifdef CONFIG_TARGET_AM654_A53_EVM
95 if (!strcmp(name, "k3-am654-base-board"))
96 return 0;
97#endif
98
99 return -1;
100}
101#endif
Lokesh Vutla79de9ef2019-03-08 11:47:35 +0530102
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100103#ifdef CONFIG_TI_I2C_BOARD_DETECT
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500104int do_board_detect(void)
105{
106 int ret;
107
108 ret = ti_i2c_eeprom_am6_get_base(CONFIG_EEPROM_BUS_ADDRESS,
109 CONFIG_EEPROM_CHIP_ADDRESS);
110 if (ret)
111 pr_err("Reading on-board EEPROM at 0x%02x failed %d\n",
112 CONFIG_EEPROM_CHIP_ADDRESS, ret);
113
114 return ret;
115}
116
Lokesh Vutla1ffb8c12019-09-27 13:32:12 +0530117int checkboard(void)
118{
119 struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
120
121 if (do_board_detect())
122 /* EEPROM not populated */
123 printf("Board: %s rev %s\n", "AM6-COMPROCEVM", "E3");
124 else
125 printf("Board: %s rev %s\n", ep->name, ep->version);
126
127 return 0;
128}
129
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500130static void setup_board_eeprom_env(void)
131{
132 char *name = "am65x";
133
134 if (do_board_detect())
135 goto invalid_eeprom;
136
137 if (board_is_am65x_base_board())
138 name = "am65x";
139 else
140 printf("Unidentified board claims %s in eeprom header\n",
141 board_ti_get_name());
142
143invalid_eeprom:
144 set_board_info_env_am6(name);
Nishanth Menon002ec6e2024-02-12 13:47:21 -0600145 ti_set_fdt_env(NULL, NULL);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500146}
147
148static int init_daughtercard_det_gpio(char *gpio_name, struct gpio_desc *desc)
149{
150 int ret;
151
152 memset(desc, 0, sizeof(*desc));
153
154 ret = dm_gpio_lookup_name(gpio_name, desc);
155 if (ret < 0)
156 return ret;
157
158 /* Request GPIO, simply re-using the name as label */
159 ret = dm_gpio_request(desc, gpio_name);
160 if (ret < 0)
161 return ret;
162
163 return dm_gpio_set_dir_flags(desc, GPIOD_IS_IN);
164}
165
166static int probe_daughtercards(void)
167{
168 struct ti_am6_eeprom ep;
169 struct gpio_desc board_det_gpios[AM65X_EVM_BRD_DET_COUNT];
170 char mac_addr[DAUGHTER_CARD_NO_OF_MAC_ADDR][TI_EEPROM_HDR_ETH_ALEN];
171 u8 mac_addr_cnt;
172 char name_overlays[1024] = { 0 };
173 int i, j;
174 int ret;
175
176 /*
177 * Daughter card presence detection signal name to GPIO (via I2C I/O
178 * expander @ address 0x38) name and EEPROM I2C address mapping.
179 */
180 const struct {
181 char *gpio_name;
182 u8 i2c_addr;
183 } slot_map[AM65X_EVM_BRD_DET_COUNT] = {
184 { "gpio@38_0", 0x52, }, /* AM65X_EVM_APP_BRD_DET */
185 { "gpio@38_1", 0x55, }, /* AM65X_EVM_LCD_BRD_DET */
186 { "gpio@38_2", 0x54, }, /* AM65X_EVM_SERDES_BRD_DET */
187 { "gpio@38_3", 0x53, }, /* AM65X_EVM_HDMI_GPMC_BRD_DET */
188 };
189
190 /* Declaration of daughtercards to probe */
191 const struct {
192 u8 slot_index; /* Slot the card is installed */
193 char *card_name; /* EEPROM-programmed card name */
194 char *dtbo_name; /* Device tree overlay to apply */
195 u8 eth_offset; /* ethXaddr MAC address index offset */
196 } cards[] = {
197 {
198 AM65X_EVM_APP_BRD_DET,
199 "AM6-GPAPPEVM",
200 "k3-am654-gp.dtbo",
201 0,
202 },
203 {
204 AM65X_EVM_APP_BRD_DET,
205 "AM6-IDKAPPEVM",
206 "k3-am654-idk.dtbo",
207 3,
208 },
209 {
210 AM65X_EVM_SERDES_BRD_DET,
211 "SER-PCIE2LEVM",
212 "k3-am654-pcie-usb2.dtbo",
213 0,
214 },
215 {
216 AM65X_EVM_SERDES_BRD_DET,
217 "SER-PCIEUSBEVM",
218 "k3-am654-pcie-usb3.dtbo",
219 0,
220 },
221 {
222 AM65X_EVM_LCD_BRD_DET,
223 "OLDI-LCD1EVM",
224 "k3-am654-evm-oldi-lcd1evm.dtbo",
225 0,
226 },
227 };
228
229 /*
230 * Initialize GPIO used for daughtercard slot presence detection and
231 * keep the resulting handles in local array for easier access.
232 */
233 for (i = 0; i < AM65X_EVM_BRD_DET_COUNT; i++) {
234 ret = init_daughtercard_det_gpio(slot_map[i].gpio_name,
235 &board_det_gpios[i]);
236 if (ret < 0)
237 return ret;
238 }
239
240 for (i = 0; i < ARRAY_SIZE(cards); i++) {
241 /* Obtain card-specific slot index and associated I2C address */
242 u8 slot_index = cards[i].slot_index;
243 u8 i2c_addr = slot_map[slot_index].i2c_addr;
244
245 /*
246 * The presence detection signal is active-low, hence skip
247 * over this card slot if anything other than 0 is returned.
248 */
249 ret = dm_gpio_get_value(&board_det_gpios[slot_index]);
250 if (ret < 0)
251 return ret;
252 else if (ret)
253 continue;
254
255 /* Get and parse the daughter card EEPROM record */
256 ret = ti_i2c_eeprom_am6_get(CONFIG_EEPROM_BUS_ADDRESS, i2c_addr,
257 &ep,
258 (char **)mac_addr,
259 DAUGHTER_CARD_NO_OF_MAC_ADDR,
260 &mac_addr_cnt);
261 if (ret) {
262 pr_err("Reading daughtercard EEPROM at 0x%02x failed %d\n",
263 i2c_addr, ret);
264 /*
265 * Even this is pretty serious let's just skip over
266 * this particular daughtercard, rather than ending
267 * the probing process altogether.
268 */
269 continue;
270 }
271
272 /* Only process the parsed data if we found a match */
273 if (strncmp(ep.name, cards[i].card_name, sizeof(ep.name)))
274 continue;
275
Lokesh Vutla1ffb8c12019-09-27 13:32:12 +0530276 printf("Detected: %s rev %s\n", ep.name, ep.version);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500277
278 /*
279 * Populate any MAC addresses from daughtercard into the U-Boot
280 * environment, starting with a card-specific offset so we can
281 * have multiple cards contribute to the MAC pool in a well-
282 * defined manner.
283 */
284 for (j = 0; j < mac_addr_cnt; j++) {
285 if (!is_valid_ethaddr((u8 *)mac_addr[j]))
286 continue;
287
288 eth_env_set_enetaddr_by_index("eth",
289 cards[i].eth_offset + j,
290 (uchar *)mac_addr[j]);
291 }
292
Aswath Govindrajua698af22020-11-20 21:18:53 +0530293 /*
294 * It has been observed that setting SERDES0 lane mux to USB prevents USB
295 * 2.0 operation on USB0. Setting SERDES0 lane mux to non-USB when USB0 is
296 * used in USB 2.0 only mode solves this issue. For USB3.0+2.0 operation
297 * this issue is not present.
298 *
299 * Implement this workaround by writing 1 to LANE_FUNC_SEL field in
300 * CTRLMMR_SERDES0_CTRL register.
301 */
302 if (!strncmp(ep.name, "SER-PCIE2LEVM", sizeof(ep.name)))
303 writel(PCIE_LANE0, CTRLMMR_SERDES0_CTRL);
304
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500305 /* Skip if no overlays are to be added */
306 if (!strlen(cards[i].dtbo_name))
307 continue;
308
309 /*
310 * Make sure we are not running out of buffer space by checking
311 * if we can fit the new overlay, a trailing space to be used
312 * as a separator, plus the terminating zero.
313 */
314 if (strlen(name_overlays) + strlen(cards[i].dtbo_name) + 2 >
315 sizeof(name_overlays))
316 return -ENOMEM;
317
318 /* Append to our list of overlays */
319 strcat(name_overlays, cards[i].dtbo_name);
320 strcat(name_overlays, " ");
321 }
322
323 /* Apply device tree overlay(s) to the U-Boot environment, if any */
324 if (strlen(name_overlays))
325 return env_set("name_overlays", name_overlays);
326
327 return 0;
328}
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100329#endif
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500330
331int board_late_init(void)
332{
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100333 if (IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT)) {
334 struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500335
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100336 setup_board_eeprom_env();
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500337
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100338 /*
339 * The first MAC address for ethernet a.k.a. ethernet0 comes from
340 * efuse populated via the am654 gigabit eth switch subsystem driver.
341 * All the other ones are populated via EEPROM, hence continue with
342 * an index of 1.
343 */
344 board_ti_am6_set_ethaddr(1, ep->mac_addr_cnt);
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500345
Christian Gmeiner955bc4f2022-02-15 07:47:55 +0100346 /* Check for and probe any plugged-in daughtercards */
347 probe_daughtercards();
348 }
Andreas Dannenberg63f5c852019-06-04 18:08:26 -0500349
350 return 0;
351}