blob: 8720eb87a55d5e5a4f71287560922ff23cee7b73 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Felipe Balbi1e4ad742014-11-10 14:02:44 -06002/*
3 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
4 *
5 * Author: Felipe Balbi <balbi@ti.com>
6 *
7 * Based on board/ti/dra7xx/evm.c
Felipe Balbi1e4ad742014-11-10 14:02:44 -06008 */
9
10#include <common.h>
Simon Glass4bfd1f52019-08-01 09:46:43 -060011#include <env.h>
Simon Glass807765b2019-12-28 10:44:54 -070012#include <fdt_support.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060013#include <image.h>
Simon Glass52559322019-11-14 12:57:46 -070014#include <init.h>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060016#include <net.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060017#include <palmas.h>
18#include <sata.h>
Simon Glassb03e0512019-11-14 12:57:24 -070019#include <serial.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060020#include <usb.h>
Caleb Robeyd6eaaae2020-01-02 08:17:25 -060021#include <errno.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060022#include <asm/omap_common.h>
Andreas Dannenberg17c29872016-06-27 09:19:22 -050023#include <asm/omap_sec_common.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060024#include <asm/emif.h>
Lokesh Vutla334bbb32015-06-16 20:36:05 +053025#include <asm/gpio.h>
26#include <asm/arch/gpio.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060027#include <asm/arch/clock.h>
Lokesh Vutlaf91e0c42015-06-04 16:42:41 +053028#include <asm/arch/dra7xx_iodelay.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060029#include <asm/arch/sys_proto.h>
30#include <asm/arch/mmc_host_def.h>
31#include <asm/arch/sata.h>
32#include <asm/arch/gpio.h>
Kishon Vijay Abraham I7c379aa2015-08-19 14:13:19 +053033#include <asm/arch/omap.h>
Kishon Vijay Abraham I7c379aa2015-08-19 14:13:19 +053034#include <usb.h>
35#include <linux/usb/gadget.h>
36#include <dwc3-uboot.h>
37#include <dwc3-omap-uboot.h>
38#include <ti-usb-phy-uboot.h>
Kishon Vijay Abraham Ic413baa2018-01-30 16:01:52 +010039#include <mmc.h>
Tero Kristoe8e683d2019-09-27 19:14:27 +030040#include <dm/uclass.h>
Roger Quadros4d26dc62020-02-10 11:59:24 +020041#include <hang.h>
Felipe Balbi1e4ad742014-11-10 14:02:44 -060042
Kipisz, Steven212f96f2016-02-24 12:30:58 -060043#include "../common/board_detect.h"
Felipe Balbi1e4ad742014-11-10 14:02:44 -060044#include "mux_data.h"
45
Caleb Robeyd6eaaae2020-01-02 08:17:25 -060046#ifdef CONFIG_SUPPORT_EMMC_BOOT
47static int board_bootmode_has_emmc(void);
48#endif
49
Kipisz, Steven212f96f2016-02-24 12:30:58 -060050#define board_is_x15() board_ti_is("BBRDX15_")
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +053051#define board_is_x15_revb1() (board_ti_is("BBRDX15_") && \
Lokesh Vutla70879222017-07-16 19:59:18 +053052 !strncmp("B.10", board_ti_get_rev(), 3))
Lokesh Vutlaf70a4272017-07-16 19:59:19 +053053#define board_is_x15_revc() (board_ti_is("BBRDX15_") && \
54 !strncmp("C.00", board_ti_get_rev(), 3))
Kipisz, Steven212f96f2016-02-24 12:30:58 -060055#define board_is_am572x_evm() board_ti_is("AM572PM_")
Nishanth Menonbf43ce62016-11-25 11:14:19 +053056#define board_is_am572x_evm_reva3() \
57 (board_ti_is("AM572PM_") && \
Lokesh Vutla70879222017-07-16 19:59:18 +053058 !strncmp("A.30", board_ti_get_rev(), 3))
Lokesh Vutla9646b952017-12-29 11:47:52 +053059#define board_is_am574x_idk() board_ti_is("AM574IDK")
Steve Kipiszc020d352016-04-08 17:01:29 -050060#define board_is_am572x_idk() board_ti_is("AM572IDK")
Steve Kipisz4d8397c2016-11-25 11:14:24 +053061#define board_is_am571x_idk() board_ti_is("AM571IDK")
Caleb Robeyb4309842020-01-02 08:17:27 -060062#define board_is_bbai() board_ti_is("BBONE-AI")
Kipisz, Steven212f96f2016-02-24 12:30:58 -060063
Felipe Balbi1e4ad742014-11-10 14:02:44 -060064#ifdef CONFIG_DRIVER_TI_CPSW
65#include <cpsw.h>
66#endif
67
68DECLARE_GLOBAL_DATA_PTR;
69
Roger Quadros37611052017-03-13 15:04:28 +020070#define GPIO_ETH_LCD GPIO_TO_PIN(2, 22)
Lokesh Vutla334bbb32015-06-16 20:36:05 +053071/* GPIO 7_11 */
72#define GPIO_DDR_VTT_EN 203
73
Nishanth Menonfcb18522017-03-13 15:04:30 +020074/* Touch screen controller to identify the LCD */
75#define OSD_TS_FT_BUS_ADDRESS 0
76#define OSD_TS_FT_CHIP_ADDRESS 0x38
77#define OSD_TS_FT_REG_ID 0xA3
78/*
79 * Touchscreen IDs for various OSD panels
80 * Ref: http://www.osddisplays.com/TI/OSD101T2587-53TS_A.1.pdf
81 */
82/* Used on newer osd101t2587 Panels */
83#define OSD_TS_FT_ID_5x46 0x54
84/* Used on older osd101t2045 Panels */
85#define OSD_TS_FT_ID_5606 0x08
86
Kipisz, Steven212f96f2016-02-24 12:30:58 -060087#define SYSINFO_BOARD_NAME_MAX_LEN 45
88
Keerthy385d3632016-11-30 15:02:53 +053089#define TPS65903X_PRIMARY_SECONDARY_PAD2 0xFB
90#define TPS65903X_PAD2_POWERHOLD_MASK 0x20
91
Felipe Balbi1e4ad742014-11-10 14:02:44 -060092const struct omap_sysinfo sysinfo = {
Kipisz, Steven212f96f2016-02-24 12:30:58 -060093 "Board: UNKNOWN(BeagleBoard X15?) REV UNKNOWN\n"
Felipe Balbi1e4ad742014-11-10 14:02:44 -060094};
95
96static const struct dmm_lisa_map_regs beagle_x15_lisa_regs = {
97 .dmm_lisa_map_3 = 0x80740300,
98 .is_ma_present = 0x1
99};
100
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530101static const struct dmm_lisa_map_regs am571x_idk_lisa_regs = {
102 .dmm_lisa_map_3 = 0x80640100,
103 .is_ma_present = 0x1
104};
105
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530106static const struct dmm_lisa_map_regs am574x_idk_lisa_regs = {
107 .dmm_lisa_map_2 = 0xc0600200,
108 .dmm_lisa_map_3 = 0x80600100,
109 .is_ma_present = 0x1
110};
111
Caleb Robeyb4309842020-01-02 08:17:27 -0600112static const struct dmm_lisa_map_regs bbai_lisa_regs = {
113 .dmm_lisa_map_3 = 0x80640100,
114 .is_ma_present = 0x1
115};
116
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600117void emif_get_dmm_regs(const struct dmm_lisa_map_regs **dmm_lisa_regs)
118{
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530119 if (board_is_am571x_idk())
120 *dmm_lisa_regs = &am571x_idk_lisa_regs;
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530121 else if (board_is_am574x_idk())
122 *dmm_lisa_regs = &am574x_idk_lisa_regs;
Caleb Robeyb4309842020-01-02 08:17:27 -0600123 else if (board_is_bbai())
124 *dmm_lisa_regs = &bbai_lisa_regs;
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530125 else
126 *dmm_lisa_regs = &beagle_x15_lisa_regs;
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600127}
128
129static const struct emif_regs beagle_x15_emif1_ddr3_532mhz_emif_regs = {
Keerthyeafd4642016-05-24 11:45:07 +0530130 .sdram_config_init = 0x61851b32,
131 .sdram_config = 0x61851b32,
132 .sdram_config2 = 0x08000000,
133 .ref_ctrl = 0x000040F1,
134 .ref_ctrl_final = 0x00001035,
135 .sdram_tim1 = 0xcccf36ab,
136 .sdram_tim2 = 0x308f7fda,
137 .sdram_tim3 = 0x409f88a8,
138 .read_idle_ctrl = 0x00050000,
139 .zq_config = 0x5007190b,
140 .temp_alert_config = 0x00000000,
141 .emif_ddr_phy_ctlr_1_init = 0x0024400b,
142 .emif_ddr_phy_ctlr_1 = 0x0e24400b,
143 .emif_ddr_ext_phy_ctrl_1 = 0x10040100,
144 .emif_ddr_ext_phy_ctrl_2 = 0x00910091,
145 .emif_ddr_ext_phy_ctrl_3 = 0x00950095,
146 .emif_ddr_ext_phy_ctrl_4 = 0x009b009b,
147 .emif_ddr_ext_phy_ctrl_5 = 0x009e009e,
148 .emif_rd_wr_lvl_rmp_win = 0x00000000,
149 .emif_rd_wr_lvl_rmp_ctl = 0x80000000,
150 .emif_rd_wr_lvl_ctl = 0x00000000,
151 .emif_rd_wr_exec_thresh = 0x00000305
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600152};
153
Lokesh Vutla6213db72015-06-03 14:43:21 +0530154/* Ext phy ctrl regs 1-35 */
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600155static const u32 beagle_x15_emif1_ddr3_ext_phy_ctrl_const_regs[] = {
Lokesh Vutla6213db72015-06-03 14:43:21 +0530156 0x10040100,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530157 0x00910091,
158 0x00950095,
159 0x009B009B,
160 0x009E009E,
161 0x00980098,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600162 0x00340034,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600163 0x00350035,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530164 0x00340034,
165 0x00310031,
166 0x00340034,
167 0x007F007F,
168 0x007F007F,
169 0x007F007F,
170 0x007F007F,
171 0x007F007F,
172 0x00480048,
173 0x004A004A,
174 0x00520052,
175 0x00550055,
176 0x00500050,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600177 0x00000000,
178 0x00600020,
Lokesh Vutla6213db72015-06-03 14:43:21 +0530179 0x40011080,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600180 0x08102040,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530181 0x0,
182 0x0,
183 0x0,
184 0x0,
185 0x0,
Lokesh Vutla496edff2015-06-03 14:43:22 +0530186 0x0,
187 0x0,
188 0x0,
189 0x0,
190 0x0
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600191};
192
193static const struct emif_regs beagle_x15_emif2_ddr3_532mhz_emif_regs = {
Keerthyeafd4642016-05-24 11:45:07 +0530194 .sdram_config_init = 0x61851b32,
195 .sdram_config = 0x61851b32,
196 .sdram_config2 = 0x08000000,
197 .ref_ctrl = 0x000040F1,
198 .ref_ctrl_final = 0x00001035,
199 .sdram_tim1 = 0xcccf36b3,
200 .sdram_tim2 = 0x308f7fda,
201 .sdram_tim3 = 0x407f88a8,
202 .read_idle_ctrl = 0x00050000,
203 .zq_config = 0x5007190b,
204 .temp_alert_config = 0x00000000,
205 .emif_ddr_phy_ctlr_1_init = 0x0024400b,
206 .emif_ddr_phy_ctlr_1 = 0x0e24400b,
207 .emif_ddr_ext_phy_ctrl_1 = 0x10040100,
208 .emif_ddr_ext_phy_ctrl_2 = 0x00910091,
209 .emif_ddr_ext_phy_ctrl_3 = 0x00950095,
210 .emif_ddr_ext_phy_ctrl_4 = 0x009b009b,
211 .emif_ddr_ext_phy_ctrl_5 = 0x009e009e,
212 .emif_rd_wr_lvl_rmp_win = 0x00000000,
213 .emif_rd_wr_lvl_rmp_ctl = 0x80000000,
214 .emif_rd_wr_lvl_ctl = 0x00000000,
215 .emif_rd_wr_exec_thresh = 0x00000305
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600216};
217
218static const u32 beagle_x15_emif2_ddr3_ext_phy_ctrl_const_regs[] = {
Lokesh Vutla6213db72015-06-03 14:43:21 +0530219 0x10040100,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530220 0x00910091,
221 0x00950095,
222 0x009B009B,
223 0x009E009E,
224 0x00980098,
225 0x00340034,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600226 0x00350035,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530227 0x00340034,
228 0x00310031,
229 0x00340034,
230 0x007F007F,
231 0x007F007F,
232 0x007F007F,
233 0x007F007F,
234 0x007F007F,
235 0x00480048,
236 0x004A004A,
237 0x00520052,
238 0x00550055,
239 0x00500050,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600240 0x00000000,
241 0x00600020,
Lokesh Vutla6213db72015-06-03 14:43:21 +0530242 0x40011080,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600243 0x08102040,
Lokesh Vutla11e2b042016-03-08 09:11:35 +0530244 0x0,
245 0x0,
246 0x0,
247 0x0,
248 0x0,
Lokesh Vutla496edff2015-06-03 14:43:22 +0530249 0x0,
250 0x0,
251 0x0,
252 0x0,
253 0x0
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600254};
255
Steve Kipisz209742f2017-08-22 13:52:58 +0530256static const struct emif_regs am571x_emif1_ddr3_666mhz_emif_regs = {
257 .sdram_config_init = 0x61863332,
258 .sdram_config = 0x61863332,
259 .sdram_config2 = 0x08000000,
260 .ref_ctrl = 0x0000514d,
261 .ref_ctrl_final = 0x0000144a,
262 .sdram_tim1 = 0xd333887c,
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530263 .sdram_tim2 = 0x30b37fe3,
264 .sdram_tim3 = 0x409f8ad8,
Steve Kipisz209742f2017-08-22 13:52:58 +0530265 .read_idle_ctrl = 0x00050000,
266 .zq_config = 0x5007190b,
267 .temp_alert_config = 0x00000000,
268 .emif_ddr_phy_ctlr_1_init = 0x0024400f,
269 .emif_ddr_phy_ctlr_1 = 0x0e24400f,
270 .emif_ddr_ext_phy_ctrl_1 = 0x10040100,
271 .emif_ddr_ext_phy_ctrl_2 = 0x00910091,
272 .emif_ddr_ext_phy_ctrl_3 = 0x00950095,
273 .emif_ddr_ext_phy_ctrl_4 = 0x009b009b,
274 .emif_ddr_ext_phy_ctrl_5 = 0x009e009e,
275 .emif_rd_wr_lvl_rmp_win = 0x00000000,
276 .emif_rd_wr_lvl_rmp_ctl = 0x80000000,
277 .emif_rd_wr_lvl_ctl = 0x00000000,
278 .emif_rd_wr_exec_thresh = 0x00000305
279};
280
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530281static const struct emif_regs am574x_emif1_ddr3_666mhz_emif_ecc_regs = {
282 .sdram_config_init = 0x61863332,
283 .sdram_config = 0x61863332,
284 .sdram_config2 = 0x08000000,
285 .ref_ctrl = 0x0000514d,
286 .ref_ctrl_final = 0x0000144a,
287 .sdram_tim1 = 0xd333887c,
288 .sdram_tim2 = 0x30b37fe3,
289 .sdram_tim3 = 0x409f8ad8,
290 .read_idle_ctrl = 0x00050000,
291 .zq_config = 0x5007190b,
292 .temp_alert_config = 0x00000000,
293 .emif_ddr_phy_ctlr_1_init = 0x0024400f,
294 .emif_ddr_phy_ctlr_1 = 0x0e24400f,
295 .emif_ddr_ext_phy_ctrl_1 = 0x10040100,
296 .emif_ddr_ext_phy_ctrl_2 = 0x00910091,
297 .emif_ddr_ext_phy_ctrl_3 = 0x00950095,
298 .emif_ddr_ext_phy_ctrl_4 = 0x009b009b,
299 .emif_ddr_ext_phy_ctrl_5 = 0x009e009e,
300 .emif_rd_wr_lvl_rmp_win = 0x00000000,
301 .emif_rd_wr_lvl_rmp_ctl = 0x80000000,
302 .emif_rd_wr_lvl_ctl = 0x00000000,
303 .emif_rd_wr_exec_thresh = 0x00000305,
304 .emif_ecc_ctrl_reg = 0xD0000001,
305 .emif_ecc_address_range_1 = 0x3FFF0000,
306 .emif_ecc_address_range_2 = 0x00000000
307};
308
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600309void emif_get_reg_dump(u32 emif_nr, const struct emif_regs **regs)
310{
311 switch (emif_nr) {
312 case 1:
Steve Kipisz209742f2017-08-22 13:52:58 +0530313 if (board_is_am571x_idk())
314 *regs = &am571x_emif1_ddr3_666mhz_emif_regs;
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530315 else if (board_is_am574x_idk())
316 *regs = &am574x_emif1_ddr3_666mhz_emif_ecc_regs;
Steve Kipisz209742f2017-08-22 13:52:58 +0530317 else
318 *regs = &beagle_x15_emif1_ddr3_532mhz_emif_regs;
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600319 break;
320 case 2:
Lokesh Vutla7b16de82017-12-29 11:47:54 +0530321 if (board_is_am574x_idk())
322 *regs = &am571x_emif1_ddr3_666mhz_emif_regs;
323 else
324 *regs = &beagle_x15_emif2_ddr3_532mhz_emif_regs;
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600325 break;
326 }
327}
328
329void emif_get_ext_phy_ctrl_const_regs(u32 emif_nr, const u32 **regs, u32 *size)
330{
331 switch (emif_nr) {
332 case 1:
333 *regs = beagle_x15_emif1_ddr3_ext_phy_ctrl_const_regs;
334 *size = ARRAY_SIZE(beagle_x15_emif1_ddr3_ext_phy_ctrl_const_regs);
335 break;
336 case 2:
337 *regs = beagle_x15_emif2_ddr3_ext_phy_ctrl_const_regs;
338 *size = ARRAY_SIZE(beagle_x15_emif2_ddr3_ext_phy_ctrl_const_regs);
339 break;
340 }
341}
342
343struct vcores_data beagle_x15_volts = {
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530344 .mpu.value[OPP_NOM] = VDD_MPU_DRA7_NOM,
345 .mpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_MPU_NOM,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600346 .mpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
347 .mpu.addr = TPS659038_REG_ADDR_SMPS12,
348 .mpu.pmic = &tps659038,
Keerthyeafd4642016-05-24 11:45:07 +0530349 .mpu.abb_tx_done_mask = OMAP_ABB_MPU_TXDONE_MASK,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600350
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530351 .eve.value[OPP_NOM] = VDD_EVE_DRA7_NOM,
352 .eve.value[OPP_OD] = VDD_EVE_DRA7_OD,
353 .eve.value[OPP_HIGH] = VDD_EVE_DRA7_HIGH,
354 .eve.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_DSPEVE_NOM,
355 .eve.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_DSPEVE_OD,
356 .eve.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_DSPEVE_HIGH,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600357 .eve.efuse.reg_bits = DRA752_EFUSE_REGBITS,
358 .eve.addr = TPS659038_REG_ADDR_SMPS45,
359 .eve.pmic = &tps659038,
Nishanth Menone52e3342016-04-21 14:34:25 -0500360 .eve.abb_tx_done_mask = OMAP_ABB_EVE_TXDONE_MASK,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600361
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530362 .gpu.value[OPP_NOM] = VDD_GPU_DRA7_NOM,
363 .gpu.value[OPP_OD] = VDD_GPU_DRA7_OD,
364 .gpu.value[OPP_HIGH] = VDD_GPU_DRA7_HIGH,
365 .gpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_GPU_NOM,
366 .gpu.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_GPU_OD,
367 .gpu.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_GPU_HIGH,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600368 .gpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
369 .gpu.addr = TPS659038_REG_ADDR_SMPS45,
370 .gpu.pmic = &tps659038,
Nishanth Menone52e3342016-04-21 14:34:25 -0500371 .gpu.abb_tx_done_mask = OMAP_ABB_GPU_TXDONE_MASK,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600372
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530373 .core.value[OPP_NOM] = VDD_CORE_DRA7_NOM,
374 .core.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_CORE_NOM,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600375 .core.efuse.reg_bits = DRA752_EFUSE_REGBITS,
376 .core.addr = TPS659038_REG_ADDR_SMPS6,
377 .core.pmic = &tps659038,
378
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530379 .iva.value[OPP_NOM] = VDD_IVA_DRA7_NOM,
380 .iva.value[OPP_OD] = VDD_IVA_DRA7_OD,
381 .iva.value[OPP_HIGH] = VDD_IVA_DRA7_HIGH,
382 .iva.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_IVA_NOM,
383 .iva.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_IVA_OD,
384 .iva.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_IVA_HIGH,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600385 .iva.efuse.reg_bits = DRA752_EFUSE_REGBITS,
386 .iva.addr = TPS659038_REG_ADDR_SMPS45,
387 .iva.pmic = &tps659038,
Nishanth Menone52e3342016-04-21 14:34:25 -0500388 .iva.abb_tx_done_mask = OMAP_ABB_IVA_TXDONE_MASK,
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600389};
390
Keerthyd60198d2016-05-24 11:45:06 +0530391struct vcores_data am572x_idk_volts = {
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530392 .mpu.value[OPP_NOM] = VDD_MPU_DRA7_NOM,
393 .mpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_MPU_NOM,
Keerthyd60198d2016-05-24 11:45:06 +0530394 .mpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
395 .mpu.addr = TPS659038_REG_ADDR_SMPS12,
396 .mpu.pmic = &tps659038,
397 .mpu.abb_tx_done_mask = OMAP_ABB_MPU_TXDONE_MASK,
398
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530399 .eve.value[OPP_NOM] = VDD_EVE_DRA7_NOM,
400 .eve.value[OPP_OD] = VDD_EVE_DRA7_OD,
401 .eve.value[OPP_HIGH] = VDD_EVE_DRA7_HIGH,
402 .eve.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_DSPEVE_NOM,
403 .eve.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_DSPEVE_OD,
404 .eve.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_DSPEVE_HIGH,
Keerthyd60198d2016-05-24 11:45:06 +0530405 .eve.efuse.reg_bits = DRA752_EFUSE_REGBITS,
406 .eve.addr = TPS659038_REG_ADDR_SMPS45,
407 .eve.pmic = &tps659038,
408 .eve.abb_tx_done_mask = OMAP_ABB_EVE_TXDONE_MASK,
409
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530410 .gpu.value[OPP_NOM] = VDD_GPU_DRA7_NOM,
411 .gpu.value[OPP_OD] = VDD_GPU_DRA7_OD,
412 .gpu.value[OPP_HIGH] = VDD_GPU_DRA7_HIGH,
413 .gpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_GPU_NOM,
414 .gpu.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_GPU_OD,
415 .gpu.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_GPU_HIGH,
Keerthyd60198d2016-05-24 11:45:06 +0530416 .gpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
417 .gpu.addr = TPS659038_REG_ADDR_SMPS6,
418 .gpu.pmic = &tps659038,
419 .gpu.abb_tx_done_mask = OMAP_ABB_GPU_TXDONE_MASK,
420
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530421 .core.value[OPP_NOM] = VDD_CORE_DRA7_NOM,
422 .core.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_CORE_NOM,
Keerthyd60198d2016-05-24 11:45:06 +0530423 .core.efuse.reg_bits = DRA752_EFUSE_REGBITS,
424 .core.addr = TPS659038_REG_ADDR_SMPS7,
425 .core.pmic = &tps659038,
426
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530427 .iva.value[OPP_NOM] = VDD_IVA_DRA7_NOM,
428 .iva.value[OPP_OD] = VDD_IVA_DRA7_OD,
429 .iva.value[OPP_HIGH] = VDD_IVA_DRA7_HIGH,
430 .iva.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_IVA_NOM,
431 .iva.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_IVA_OD,
432 .iva.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_IVA_HIGH,
Keerthyd60198d2016-05-24 11:45:06 +0530433 .iva.efuse.reg_bits = DRA752_EFUSE_REGBITS,
434 .iva.addr = TPS659038_REG_ADDR_SMPS8,
435 .iva.pmic = &tps659038,
436 .iva.abb_tx_done_mask = OMAP_ABB_IVA_TXDONE_MASK,
437};
438
Keerthyb12550e2017-05-25 15:37:34 +0530439struct vcores_data am571x_idk_volts = {
440 .mpu.value[OPP_NOM] = VDD_MPU_DRA7_NOM,
441 .mpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_MPU_NOM,
442 .mpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
443 .mpu.addr = TPS659038_REG_ADDR_SMPS12,
444 .mpu.pmic = &tps659038,
445 .mpu.abb_tx_done_mask = OMAP_ABB_MPU_TXDONE_MASK,
446
447 .eve.value[OPP_NOM] = VDD_EVE_DRA7_NOM,
448 .eve.value[OPP_OD] = VDD_EVE_DRA7_OD,
449 .eve.value[OPP_HIGH] = VDD_EVE_DRA7_HIGH,
450 .eve.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_DSPEVE_NOM,
451 .eve.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_DSPEVE_OD,
452 .eve.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_DSPEVE_HIGH,
453 .eve.efuse.reg_bits = DRA752_EFUSE_REGBITS,
454 .eve.addr = TPS659038_REG_ADDR_SMPS45,
455 .eve.pmic = &tps659038,
456 .eve.abb_tx_done_mask = OMAP_ABB_EVE_TXDONE_MASK,
457
458 .gpu.value[OPP_NOM] = VDD_GPU_DRA7_NOM,
459 .gpu.value[OPP_OD] = VDD_GPU_DRA7_OD,
460 .gpu.value[OPP_HIGH] = VDD_GPU_DRA7_HIGH,
461 .gpu.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_GPU_NOM,
462 .gpu.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_GPU_OD,
463 .gpu.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_GPU_HIGH,
464 .gpu.efuse.reg_bits = DRA752_EFUSE_REGBITS,
465 .gpu.addr = TPS659038_REG_ADDR_SMPS6,
466 .gpu.pmic = &tps659038,
467 .gpu.abb_tx_done_mask = OMAP_ABB_GPU_TXDONE_MASK,
468
469 .core.value[OPP_NOM] = VDD_CORE_DRA7_NOM,
470 .core.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_CORE_NOM,
471 .core.efuse.reg_bits = DRA752_EFUSE_REGBITS,
472 .core.addr = TPS659038_REG_ADDR_SMPS7,
473 .core.pmic = &tps659038,
474
475 .iva.value[OPP_NOM] = VDD_IVA_DRA7_NOM,
476 .iva.value[OPP_OD] = VDD_IVA_DRA7_OD,
477 .iva.value[OPP_HIGH] = VDD_IVA_DRA7_HIGH,
478 .iva.efuse.reg[OPP_NOM] = STD_FUSE_OPP_VMIN_IVA_NOM,
479 .iva.efuse.reg[OPP_OD] = STD_FUSE_OPP_VMIN_IVA_OD,
480 .iva.efuse.reg[OPP_HIGH] = STD_FUSE_OPP_VMIN_IVA_HIGH,
481 .iva.efuse.reg_bits = DRA752_EFUSE_REGBITS,
482 .iva.addr = TPS659038_REG_ADDR_SMPS45,
483 .iva.pmic = &tps659038,
484 .iva.abb_tx_done_mask = OMAP_ABB_IVA_TXDONE_MASK,
485};
486
Lokesh Vutlabeb71272016-11-23 12:54:39 +0530487int get_voltrail_opp(int rail_offset)
488{
489 int opp;
490
491 switch (rail_offset) {
492 case VOLT_MPU:
493 opp = DRA7_MPU_OPP;
494 break;
495 case VOLT_CORE:
496 opp = DRA7_CORE_OPP;
497 break;
498 case VOLT_GPU:
499 opp = DRA7_GPU_OPP;
500 break;
501 case VOLT_EVE:
502 opp = DRA7_DSPEVE_OPP;
503 break;
504 case VOLT_IVA:
505 opp = DRA7_IVA_OPP;
506 break;
507 default:
508 opp = OPP_NOM;
509 }
510
511 return opp;
512}
513
514
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600515#ifdef CONFIG_SPL_BUILD
516/* No env to setup for SPL */
517static inline void setup_board_eeprom_env(void) { }
518
519/* Override function to read eeprom information */
520void do_board_detect(void)
521{
522 int rc;
523
524 rc = ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS,
525 CONFIG_EEPROM_CHIP_ADDRESS);
526 if (rc)
527 printf("ti_i2c_eeprom_init failed %d\n", rc);
Caleb Robeyd6eaaae2020-01-02 08:17:25 -0600528
529#ifdef CONFIG_SUPPORT_EMMC_BOOT
530 rc = board_bootmode_has_emmc();
531 if (!rc)
532 rc = ti_emmc_boardid_get();
533 if (rc)
534 printf("ti_emmc_boardid_get failed %d\n", rc);
535#endif
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600536}
537
538#else /* CONFIG_SPL_BUILD */
539
540/* Override function to read eeprom information: actual i2c read done by SPL*/
541void do_board_detect(void)
542{
543 char *bname = NULL;
544 int rc;
545
546 rc = ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS,
547 CONFIG_EEPROM_CHIP_ADDRESS);
548 if (rc)
549 printf("ti_i2c_eeprom_init failed %d\n", rc);
550
Caleb Robeyd6eaaae2020-01-02 08:17:25 -0600551#ifdef CONFIG_SUPPORT_EMMC_BOOT
552 rc = board_bootmode_has_emmc();
553 if (!rc)
554 rc = ti_emmc_boardid_get();
555 if (rc)
556 printf("ti_emmc_boardid_get failed %d\n", rc);
557#endif
558
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600559 if (board_is_x15())
560 bname = "BeagleBoard X15";
561 else if (board_is_am572x_evm())
562 bname = "AM572x EVM";
Lokesh Vutla9646b952017-12-29 11:47:52 +0530563 else if (board_is_am574x_idk())
564 bname = "AM574x IDK";
Steve Kipiszc020d352016-04-08 17:01:29 -0500565 else if (board_is_am572x_idk())
566 bname = "AM572x IDK";
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530567 else if (board_is_am571x_idk())
568 bname = "AM571x IDK";
Caleb Robeyb4309842020-01-02 08:17:27 -0600569 else if (board_is_bbai())
570 bname = "BeagleBone AI";
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600571
572 if (bname)
573 snprintf(sysinfo.board_string, SYSINFO_BOARD_NAME_MAX_LEN,
574 "Board: %s REV %s\n", bname, board_ti_get_rev());
575}
576
577static void setup_board_eeprom_env(void)
578{
579 char *name = "beagle_x15";
580 int rc;
581
582 rc = ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS,
583 CONFIG_EEPROM_CHIP_ADDRESS);
584 if (rc)
585 goto invalid_eeprom;
586
Nishanth Menonbf43ce62016-11-25 11:14:19 +0530587 if (board_is_x15()) {
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +0530588 if (board_is_x15_revb1())
589 name = "beagle_x15_revb1";
Lokesh Vutlaf70a4272017-07-16 19:59:19 +0530590 else if (board_is_x15_revc())
591 name = "beagle_x15_revc";
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +0530592 else
593 name = "beagle_x15";
Nishanth Menonbf43ce62016-11-25 11:14:19 +0530594 } else if (board_is_am572x_evm()) {
595 if (board_is_am572x_evm_reva3())
596 name = "am57xx_evm_reva3";
597 else
598 name = "am57xx_evm";
Lokesh Vutla9646b952017-12-29 11:47:52 +0530599 } else if (board_is_am574x_idk()) {
600 name = "am574x_idk";
Nishanth Menonbf43ce62016-11-25 11:14:19 +0530601 } else if (board_is_am572x_idk()) {
Steve Kipiszc020d352016-04-08 17:01:29 -0500602 name = "am572x_idk";
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530603 } else if (board_is_am571x_idk()) {
604 name = "am571x_idk";
Caleb Robeyb4309842020-01-02 08:17:27 -0600605 } else if (board_is_bbai()) {
606 name = "am5729_beagleboneai";
Nishanth Menonbf43ce62016-11-25 11:14:19 +0530607 } else {
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600608 printf("Unidentified board claims %s in eeprom header\n",
609 board_ti_get_name());
Nishanth Menonbf43ce62016-11-25 11:14:19 +0530610 }
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600611
612invalid_eeprom:
613 set_board_info_env(name);
614}
615
616#endif /* CONFIG_SPL_BUILD */
617
Keerthyd60198d2016-05-24 11:45:06 +0530618void vcores_init(void)
619{
Lokesh Vutla10f430f2017-12-29 11:47:53 +0530620 if (board_is_am572x_idk() || board_is_am574x_idk())
Keerthyd60198d2016-05-24 11:45:06 +0530621 *omap_vcores = &am572x_idk_volts;
Keerthyb12550e2017-05-25 15:37:34 +0530622 else if (board_is_am571x_idk())
623 *omap_vcores = &am571x_idk_volts;
Keerthyd60198d2016-05-24 11:45:06 +0530624 else
625 *omap_vcores = &beagle_x15_volts;
626}
627
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600628void hw_data_init(void)
629{
630 *prcm = &dra7xx_prcm;
Steve Kipisz209742f2017-08-22 13:52:58 +0530631 if (is_dra72x())
632 *dplls_data = &dra72x_dplls;
Lokesh Vutla10f430f2017-12-29 11:47:53 +0530633 else if (is_dra76x())
634 *dplls_data = &dra76x_dplls;
Steve Kipisz209742f2017-08-22 13:52:58 +0530635 else
636 *dplls_data = &dra7xx_dplls;
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600637 *ctrl = &dra7xx_ctrl;
638}
639
Roger Quadros37611052017-03-13 15:04:28 +0200640bool am571x_idk_needs_lcd(void)
641{
642 bool needs_lcd;
643
644 gpio_request(GPIO_ETH_LCD, "nLCD_Detect");
645 if (gpio_get_value(GPIO_ETH_LCD))
646 needs_lcd = false;
647 else
648 needs_lcd = true;
649
650 gpio_free(GPIO_ETH_LCD);
651
652 return needs_lcd;
653}
654
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600655int board_init(void)
656{
657 gpmc_init();
658 gd->bd->bi_boot_params = (CONFIG_SYS_SDRAM_BASE + 0x100);
659
660 return 0;
661}
662
Nishanth Menonfcb18522017-03-13 15:04:30 +0200663void am57x_idk_lcd_detect(void)
664{
665 int r = -ENODEV;
666 char *idk_lcd = "no";
Jean-Jacques Hiblot7eb1f602018-12-07 14:50:50 +0100667 struct udevice *dev;
Nishanth Menonfcb18522017-03-13 15:04:30 +0200668
669 /* Only valid for IDKs */
Caleb Robeyb4309842020-01-02 08:17:27 -0600670 if (board_is_x15() || board_is_am572x_evm() || board_is_bbai())
Nishanth Menonfcb18522017-03-13 15:04:30 +0200671 return;
672
673 /* Only AM571x IDK has gpio control detect.. so check that */
674 if (board_is_am571x_idk() && !am571x_idk_needs_lcd())
675 goto out;
676
Jean-Jacques Hiblot15142442018-12-07 14:50:49 +0100677 r = i2c_get_chip_for_busnum(OSD_TS_FT_BUS_ADDRESS,
678 OSD_TS_FT_CHIP_ADDRESS, 1, &dev);
Nishanth Menonfcb18522017-03-13 15:04:30 +0200679 if (r) {
Jean-Jacques Hiblot15142442018-12-07 14:50:49 +0100680 printf("%s: Failed to get I2C device %d/%d (ret %d)\n",
681 __func__, OSD_TS_FT_BUS_ADDRESS, OSD_TS_FT_CHIP_ADDRESS,
682 r);
Nishanth Menonfcb18522017-03-13 15:04:30 +0200683 /* AM572x IDK has no explicit settings for optional LCD kit */
Jean-Jacques Hiblot15142442018-12-07 14:50:49 +0100684 if (board_is_am571x_idk())
Nishanth Menonfcb18522017-03-13 15:04:30 +0200685 printf("%s: Touch screen detect failed: %d!\n",
686 __func__, r);
Nishanth Menonfcb18522017-03-13 15:04:30 +0200687 goto out;
688 }
689
690 /* Read FT ID */
Jean-Jacques Hiblot15142442018-12-07 14:50:49 +0100691 r = dm_i2c_reg_read(dev, OSD_TS_FT_REG_ID);
692 if (r < 0) {
Nishanth Menonfcb18522017-03-13 15:04:30 +0200693 printf("%s: Touch screen ID read %d:0x%02x[0x%02x] failed:%d\n",
694 __func__, OSD_TS_FT_BUS_ADDRESS, OSD_TS_FT_CHIP_ADDRESS,
695 OSD_TS_FT_REG_ID, r);
696 goto out;
697 }
698
Jean-Jacques Hiblot7eb1f602018-12-07 14:50:50 +0100699 switch (r) {
Nishanth Menonfcb18522017-03-13 15:04:30 +0200700 case OSD_TS_FT_ID_5606:
701 idk_lcd = "osd101t2045";
702 break;
703 case OSD_TS_FT_ID_5x46:
704 idk_lcd = "osd101t2587";
705 break;
706 default:
707 printf("%s: Unidentifed Touch screen ID 0x%02x\n",
Jean-Jacques Hiblot7eb1f602018-12-07 14:50:50 +0100708 __func__, r);
Nishanth Menonfcb18522017-03-13 15:04:30 +0200709 /* we will let default be "no lcd" */
710 }
711out:
Simon Glass382bee52017-08-03 12:22:09 -0600712 env_set("idk_lcd", idk_lcd);
Roger Quadros4d26dc62020-02-10 11:59:24 +0200713
714 /*
715 * On AM571x_IDK, no Display with J51 set to LCD is considered as an
716 * invalid configuration and we prevent boot to get user attention.
717 */
718 if (board_is_am571x_idk() && am571x_idk_needs_lcd() &&
719 !strncmp(idk_lcd, "no", 2)) {
720 printf("%s: Invalid HW configuration: display not detected/supported but J51 is set. Remove J51 to boot without display.\n",
721 __func__);
722 hang();
723 }
724
Nishanth Menonfcb18522017-03-13 15:04:30 +0200725 return;
726}
727
Vignesh Rc3cd5fc2018-11-29 10:57:42 +0100728#if CONFIG_IS_ENABLED(DM_USB) && CONFIG_IS_ENABLED(OF_CONTROL)
729static int device_okay(const char *path)
730{
731 int node;
732
733 node = fdt_path_offset(gd->fdt_blob, path);
734 if (node < 0)
735 return 0;
736
737 return fdtdec_get_is_enabled(gd->fdt_blob, node);
738}
739#endif
740
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600741int board_late_init(void)
742{
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600743 setup_board_eeprom_env();
Keerthy385d3632016-11-30 15:02:53 +0530744 u8 val;
Tero Kristoe8e683d2019-09-27 19:14:27 +0300745 struct udevice *dev;
Kipisz, Steven212f96f2016-02-24 12:30:58 -0600746
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600747 /*
748 * DEV_CTRL.DEV_ON = 1 please - else palmas switches off in 8 seconds
749 * This is the POWERHOLD-in-Low behavior.
750 */
751 palmas_i2c_write_u8(TPS65903X_CHIP_P1, 0xA0, 0x1);
Lokesh Vutla82cca5a2016-11-29 11:58:02 +0530752
753 /*
754 * Default FIT boot on HS devices. Non FIT images are not allowed
755 * on HS devices.
756 */
757 if (get_device_type() == HS_DEVICE)
Simon Glass382bee52017-08-03 12:22:09 -0600758 env_set("boot_fit", "1");
Lokesh Vutla82cca5a2016-11-29 11:58:02 +0530759
Keerthy385d3632016-11-30 15:02:53 +0530760 /*
761 * Set the GPIO7 Pad to POWERHOLD. This has higher priority
762 * over DEV_CTRL.DEV_ON bit. This can be reset in case of
763 * PMIC Power off. So to be on the safer side set it back
764 * to POWERHOLD mode irrespective of the current state.
765 */
766 palmas_i2c_read_u8(TPS65903X_CHIP_P1, TPS65903X_PRIMARY_SECONDARY_PAD2,
767 &val);
768 val = val | TPS65903X_PAD2_POWERHOLD_MASK;
769 palmas_i2c_write_u8(TPS65903X_CHIP_P1, TPS65903X_PRIMARY_SECONDARY_PAD2,
770 val);
771
Semen Protsenko7a2af752017-02-13 19:09:37 +0200772 omap_die_id_serial();
Semen Protsenko8bd29622017-05-22 19:16:41 +0300773 omap_set_fastboot_vars();
Semen Protsenko7a2af752017-02-13 19:09:37 +0200774
Nishanth Menonfcb18522017-03-13 15:04:30 +0200775 am57x_idk_lcd_detect();
Roger Quadros37611052017-03-13 15:04:28 +0200776
Tero Kristoe8e683d2019-09-27 19:14:27 +0300777 /* Just probe the potentially supported cdce913 device */
778 uclass_get_device(UCLASS_CLK, 0, &dev);
779
Caleb Robeyb4309842020-01-02 08:17:27 -0600780 if (board_is_bbai())
781 env_set("console", "ttyS0,115200n8");
782
Roger Quadros37611052017-03-13 15:04:28 +0200783#if !defined(CONFIG_SPL_BUILD)
784 board_ti_set_ethaddr(2);
785#endif
786
Vignesh Rc3cd5fc2018-11-29 10:57:42 +0100787#if CONFIG_IS_ENABLED(DM_USB) && CONFIG_IS_ENABLED(OF_CONTROL)
788 if (device_okay("/ocp/omap_dwc3_1@48880000"))
789 enable_usb_clocks(0);
790 if (device_okay("/ocp/omap_dwc3_2@488c0000"))
791 enable_usb_clocks(1);
792#endif
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600793 return 0;
794}
795
Paul Kocialkowski3ef56e62016-02-27 19:18:56 +0100796void set_muxconf_regs(void)
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600797{
798 do_set_mux32((*ctrl)->control_padconf_core_base,
Lokesh Vutlaf91e0c42015-06-04 16:42:41 +0530799 early_padconf, ARRAY_SIZE(early_padconf));
Caleb Robeyd6eaaae2020-01-02 08:17:25 -0600800
801#ifdef CONFIG_SUPPORT_EMMC_BOOT
802 do_set_mux32((*ctrl)->control_padconf_core_base,
803 emmc_padconf, ARRAY_SIZE(emmc_padconf));
804#endif
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600805}
806
Lokesh Vutlaf91e0c42015-06-04 16:42:41 +0530807#ifdef CONFIG_IODELAY_RECALIBRATION
808void recalibrate_iodelay(void)
809{
Steve Kipiszc020d352016-04-08 17:01:29 -0500810 const struct pad_conf_entry *pconf;
Lokesh Vutla2d7e9e92017-06-05 14:48:16 +0530811 const struct iodelay_cfg_entry *iod, *delta_iod;
812 int pconf_sz, iod_sz, delta_iod_sz = 0;
Nishanth Menon89a38952016-11-25 11:14:22 +0530813 int ret;
Steve Kipiszc020d352016-04-08 17:01:29 -0500814
Lokesh Vutla443b0df2017-12-29 11:47:55 +0530815 if (board_is_am572x_idk()) {
Steve Kipiszc020d352016-04-08 17:01:29 -0500816 pconf = core_padconf_array_essential_am572x_idk;
817 pconf_sz = ARRAY_SIZE(core_padconf_array_essential_am572x_idk);
818 iod = iodelay_cfg_array_am572x_idk;
819 iod_sz = ARRAY_SIZE(iodelay_cfg_array_am572x_idk);
Lokesh Vutla443b0df2017-12-29 11:47:55 +0530820 } else if (board_is_am574x_idk()) {
821 pconf = core_padconf_array_essential_am574x_idk;
822 pconf_sz = ARRAY_SIZE(core_padconf_array_essential_am574x_idk);
823 iod = iodelay_cfg_array_am574x_idk;
824 iod_sz = ARRAY_SIZE(iodelay_cfg_array_am574x_idk);
Steve Kipisz4d8397c2016-11-25 11:14:24 +0530825 } else if (board_is_am571x_idk()) {
826 pconf = core_padconf_array_essential_am571x_idk;
827 pconf_sz = ARRAY_SIZE(core_padconf_array_essential_am571x_idk);
828 iod = iodelay_cfg_array_am571x_idk;
829 iod_sz = ARRAY_SIZE(iodelay_cfg_array_am571x_idk);
Caleb Robeyb4309842020-01-02 08:17:27 -0600830 } else if (board_is_bbai()) {
831 pconf = core_padconf_array_essential_bbai;
832 pconf_sz = ARRAY_SIZE(core_padconf_array_essential_bbai);
833 iod = iodelay_cfg_array_bbai;
834 iod_sz = ARRAY_SIZE(iodelay_cfg_array_bbai);
Steve Kipiszc020d352016-04-08 17:01:29 -0500835 } else {
836 /* Common for X15/GPEVM */
837 pconf = core_padconf_array_essential_x15;
838 pconf_sz = ARRAY_SIZE(core_padconf_array_essential_x15);
Nishanth Menon89a38952016-11-25 11:14:22 +0530839 /* There never was an SR1.0 X15.. So.. */
840 if (omap_revision() == DRA752_ES1_1) {
841 iod = iodelay_cfg_array_x15_sr1_1;
842 iod_sz = ARRAY_SIZE(iodelay_cfg_array_x15_sr1_1);
843 } else {
844 /* Since full production should switch to SR2.0 */
845 iod = iodelay_cfg_array_x15_sr2_0;
846 iod_sz = ARRAY_SIZE(iodelay_cfg_array_x15_sr2_0);
847 }
Steve Kipiszc020d352016-04-08 17:01:29 -0500848 }
849
Nishanth Menon89a38952016-11-25 11:14:22 +0530850 /* Setup I/O isolation */
851 ret = __recalibrate_iodelay_start();
852 if (ret)
853 goto err;
854
855 /* Do the muxing here */
856 do_set_mux32((*ctrl)->control_padconf_core_base, pconf, pconf_sz);
857
858 /* Now do the weird minor deltas that should be safe */
859 if (board_is_x15() || board_is_am572x_evm()) {
Lokesh Vutlaf70a4272017-07-16 19:59:19 +0530860 if (board_is_x15_revb1() || board_is_am572x_evm_reva3() ||
861 board_is_x15_revc()) {
Nishanth Menon89a38952016-11-25 11:14:22 +0530862 pconf = core_padconf_array_delta_x15_sr2_0;
863 pconf_sz = ARRAY_SIZE(core_padconf_array_delta_x15_sr2_0);
864 } else {
865 pconf = core_padconf_array_delta_x15_sr1_1;
866 pconf_sz = ARRAY_SIZE(core_padconf_array_delta_x15_sr1_1);
867 }
868 do_set_mux32((*ctrl)->control_padconf_core_base, pconf, pconf_sz);
869 }
870
Roger Quadros37611052017-03-13 15:04:28 +0200871 if (board_is_am571x_idk()) {
872 if (am571x_idk_needs_lcd()) {
873 pconf = core_padconf_array_vout_am571x_idk;
874 pconf_sz = ARRAY_SIZE(core_padconf_array_vout_am571x_idk);
Lokesh Vutla2d7e9e92017-06-05 14:48:16 +0530875 delta_iod = iodelay_cfg_array_am571x_idk_4port;
876 delta_iod_sz = ARRAY_SIZE(iodelay_cfg_array_am571x_idk_4port);
877
Roger Quadros37611052017-03-13 15:04:28 +0200878 } else {
879 pconf = core_padconf_array_icss1eth_am571x_idk;
880 pconf_sz = ARRAY_SIZE(core_padconf_array_icss1eth_am571x_idk);
881 }
882 do_set_mux32((*ctrl)->control_padconf_core_base, pconf, pconf_sz);
883 }
884
Nishanth Menon89a38952016-11-25 11:14:22 +0530885 /* Setup IOdelay configuration */
886 ret = do_set_iodelay((*ctrl)->iodelay_config_base, iod, iod_sz);
Lokesh Vutla2d7e9e92017-06-05 14:48:16 +0530887 if (delta_iod_sz)
888 ret = do_set_iodelay((*ctrl)->iodelay_config_base, delta_iod,
889 delta_iod_sz);
890
Nishanth Menon89a38952016-11-25 11:14:22 +0530891err:
892 /* Closeup.. remove isolation */
893 __recalibrate_iodelay_end(ret);
Lokesh Vutlaf91e0c42015-06-04 16:42:41 +0530894}
895#endif
896
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900897#if defined(CONFIG_MMC)
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600898int board_mmc_init(bd_t *bis)
899{
900 omap_mmc_init(0, 0, 0, -1, -1);
901 omap_mmc_init(1, 0, 0, -1, -1);
902 return 0;
903}
Kishon Vijay Abraham Ic413baa2018-01-30 16:01:52 +0100904
905static const struct mmc_platform_fixups am57x_es1_1_mmc1_fixups = {
906 .hw_rev = "rev11",
907 .unsupported_caps = MMC_CAP(MMC_HS_200) |
908 MMC_CAP(UHS_SDR104),
909 .max_freq = 96000000,
910};
911
912static const struct mmc_platform_fixups am57x_es1_1_mmc23_fixups = {
913 .hw_rev = "rev11",
914 .unsupported_caps = MMC_CAP(MMC_HS_200) |
915 MMC_CAP(UHS_SDR104) |
916 MMC_CAP(UHS_SDR50),
917 .max_freq = 48000000,
918};
919
920const struct mmc_platform_fixups *platform_fixups_mmc(uint32_t addr)
921{
922 switch (omap_revision()) {
923 case DRA752_ES1_0:
924 case DRA752_ES1_1:
925 if (addr == OMAP_HSMMC1_BASE)
926 return &am57x_es1_1_mmc1_fixups;
927 else
928 return &am57x_es1_1_mmc23_fixups;
929 default:
930 return NULL;
931 }
932}
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600933#endif
934
935#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_OS_BOOT)
936int spl_start_uboot(void)
937{
938 /* break into full u-boot on 'c' */
939 if (serial_tstc() && serial_getc() == 'c')
940 return 1;
941
942#ifdef CONFIG_SPL_ENV_SUPPORT
943 env_init();
Simon Glass310fb142017-08-03 12:22:07 -0600944 env_load();
Simon Glassbfebc8c2017-08-03 12:22:13 -0600945 if (env_get_yesno("boot_os") != 1)
Felipe Balbi1e4ad742014-11-10 14:02:44 -0600946 return 1;
947#endif
948
949 return 0;
950}
951#endif
952
953#ifdef CONFIG_DRIVER_TI_CPSW
954
955/* Delay value to add to calibrated value */
956#define RGMII0_TXCTL_DLY_VAL ((0x3 << 5) + 0x8)
957#define RGMII0_TXD0_DLY_VAL ((0x3 << 5) + 0x8)
958#define RGMII0_TXD1_DLY_VAL ((0x3 << 5) + 0x2)
959#define RGMII0_TXD2_DLY_VAL ((0x4 << 5) + 0x0)
960#define RGMII0_TXD3_DLY_VAL ((0x4 << 5) + 0x0)
961#define VIN2A_D13_DLY_VAL ((0x3 << 5) + 0x8)
962#define VIN2A_D17_DLY_VAL ((0x3 << 5) + 0x8)
963#define VIN2A_D16_DLY_VAL ((0x3 << 5) + 0x2)
964#define VIN2A_D15_DLY_VAL ((0x4 << 5) + 0x0)
965#define VIN2A_D14_DLY_VAL ((0x4 << 5) + 0x0)
966
967static void cpsw_control(int enabled)
968{
969 /* VTP can be added here */
970}
971
972static struct cpsw_slave_data cpsw_slaves[] = {
973 {
974 .slave_reg_ofs = 0x208,
975 .sliver_reg_ofs = 0xd80,
976 .phy_addr = 1,
977 },
978 {
979 .slave_reg_ofs = 0x308,
980 .sliver_reg_ofs = 0xdc0,
981 .phy_addr = 2,
982 },
983};
984
985static struct cpsw_platform_data cpsw_data = {
986 .mdio_base = CPSW_MDIO_BASE,
987 .cpsw_base = CPSW_BASE,
988 .mdio_div = 0xff,
989 .channels = 8,
990 .cpdma_reg_ofs = 0x800,
991 .slaves = 1,
992 .slave_data = cpsw_slaves,
993 .ale_reg_ofs = 0xd00,
994 .ale_entries = 1024,
995 .host_port_reg_ofs = 0x108,
996 .hw_stats_reg_ofs = 0x900,
997 .bd_ram_ofs = 0x2000,
998 .mac_control = (1 << 5),
999 .control = cpsw_control,
1000 .host_port_num = 0,
1001 .version = CPSW_CTRL_VERSION_2,
1002};
1003
Roger Quadros92667e82016-03-18 13:18:12 +02001004static u64 mac_to_u64(u8 mac[6])
1005{
1006 int i;
1007 u64 addr = 0;
1008
1009 for (i = 0; i < 6; i++) {
1010 addr <<= 8;
1011 addr |= mac[i];
1012 }
1013
1014 return addr;
1015}
1016
1017static void u64_to_mac(u64 addr, u8 mac[6])
1018{
1019 mac[5] = addr;
1020 mac[4] = addr >> 8;
1021 mac[3] = addr >> 16;
1022 mac[2] = addr >> 24;
1023 mac[1] = addr >> 32;
1024 mac[0] = addr >> 40;
1025}
1026
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001027int board_eth_init(bd_t *bis)
1028{
1029 int ret;
1030 uint8_t mac_addr[6];
1031 uint32_t mac_hi, mac_lo;
1032 uint32_t ctrl_val;
Roger Quadros92667e82016-03-18 13:18:12 +02001033 int i;
1034 u64 mac1, mac2;
1035 u8 mac_addr1[6], mac_addr2[6];
1036 int num_macs;
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001037
1038 /* try reading mac address from efuse */
1039 mac_lo = readl((*ctrl)->control_core_mac_id_0_lo);
1040 mac_hi = readl((*ctrl)->control_core_mac_id_0_hi);
1041 mac_addr[0] = (mac_hi & 0xFF0000) >> 16;
1042 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
1043 mac_addr[2] = mac_hi & 0xFF;
1044 mac_addr[3] = (mac_lo & 0xFF0000) >> 16;
1045 mac_addr[4] = (mac_lo & 0xFF00) >> 8;
1046 mac_addr[5] = mac_lo & 0xFF;
1047
Simon Glass00caae62017-08-03 12:22:12 -06001048 if (!env_get("ethaddr")) {
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001049 printf("<ethaddr> not set. Validating first E-fuse MAC\n");
1050
Joe Hershberger0adb5b72015-04-08 01:41:04 -05001051 if (is_valid_ethaddr(mac_addr))
Simon Glassfd1e9592017-08-03 12:22:11 -06001052 eth_env_set_enetaddr("ethaddr", mac_addr);
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001053 }
1054
1055 mac_lo = readl((*ctrl)->control_core_mac_id_1_lo);
1056 mac_hi = readl((*ctrl)->control_core_mac_id_1_hi);
1057 mac_addr[0] = (mac_hi & 0xFF0000) >> 16;
1058 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
1059 mac_addr[2] = mac_hi & 0xFF;
1060 mac_addr[3] = (mac_lo & 0xFF0000) >> 16;
1061 mac_addr[4] = (mac_lo & 0xFF00) >> 8;
1062 mac_addr[5] = mac_lo & 0xFF;
1063
Simon Glass00caae62017-08-03 12:22:12 -06001064 if (!env_get("eth1addr")) {
Joe Hershberger0adb5b72015-04-08 01:41:04 -05001065 if (is_valid_ethaddr(mac_addr))
Simon Glassfd1e9592017-08-03 12:22:11 -06001066 eth_env_set_enetaddr("eth1addr", mac_addr);
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001067 }
1068
1069 ctrl_val = readl((*ctrl)->control_core_control_io1) & (~0x33);
1070 ctrl_val |= 0x22;
1071 writel(ctrl_val, (*ctrl)->control_core_control_io1);
1072
Steve Kipisz4d8397c2016-11-25 11:14:24 +05301073 /* The phy address for the AM57xx IDK are different than x15 */
Lokesh Vutla10f430f2017-12-29 11:47:53 +05301074 if (board_is_am572x_idk() || board_is_am571x_idk() ||
1075 board_is_am574x_idk()) {
Steve Kipiszc020d352016-04-08 17:01:29 -05001076 cpsw_data.slave_data[0].phy_addr = 0;
1077 cpsw_data.slave_data[1].phy_addr = 1;
1078 }
1079
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001080 ret = cpsw_register(&cpsw_data);
1081 if (ret < 0)
1082 printf("Error %d registering CPSW switch\n", ret);
1083
Roger Quadros92667e82016-03-18 13:18:12 +02001084 /*
1085 * Export any Ethernet MAC addresses from EEPROM.
1086 * On AM57xx the 2 MAC addresses define the address range
1087 */
1088 board_ti_get_eth_mac_addr(0, mac_addr1);
1089 board_ti_get_eth_mac_addr(1, mac_addr2);
1090
1091 if (is_valid_ethaddr(mac_addr1) && is_valid_ethaddr(mac_addr2)) {
1092 mac1 = mac_to_u64(mac_addr1);
1093 mac2 = mac_to_u64(mac_addr2);
1094
1095 /* must contain an address range */
1096 num_macs = mac2 - mac1 + 1;
1097 /* <= 50 to protect against user programming error */
1098 if (num_macs > 0 && num_macs <= 50) {
1099 for (i = 0; i < num_macs; i++) {
1100 u64_to_mac(mac1 + i, mac_addr);
1101 if (is_valid_ethaddr(mac_addr)) {
Simon Glassfd1e9592017-08-03 12:22:11 -06001102 eth_env_set_enetaddr_by_index("eth",
1103 i + 2,
1104 mac_addr);
Roger Quadros92667e82016-03-18 13:18:12 +02001105 }
1106 }
1107 }
1108 }
1109
Felipe Balbi1e4ad742014-11-10 14:02:44 -06001110 return ret;
1111}
1112#endif
Lokesh Vutla334bbb32015-06-16 20:36:05 +05301113
1114#ifdef CONFIG_BOARD_EARLY_INIT_F
1115/* VTT regulator enable */
1116static inline void vtt_regulator_enable(void)
1117{
1118 if (omap_hw_init_context() == OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL)
1119 return;
1120
1121 gpio_request(GPIO_DDR_VTT_EN, "ddr_vtt_en");
1122 gpio_direction_output(GPIO_DDR_VTT_EN, 1);
1123}
1124
1125int board_early_init_f(void)
1126{
1127 vtt_regulator_enable();
1128 return 0;
1129}
1130#endif
Daniel Allred62a09f02016-05-19 19:10:54 -05001131
1132#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
1133int ft_board_setup(void *blob, bd_t *bd)
1134{
1135 ft_cpu_setup(blob, bd);
1136
1137 return 0;
1138}
1139#endif
Lokesh Vutla7a0ea582016-06-10 09:35:43 +05301140
1141#ifdef CONFIG_SPL_LOAD_FIT
1142int board_fit_config_name_match(const char *name)
1143{
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +05301144 if (board_is_x15()) {
1145 if (board_is_x15_revb1()) {
1146 if (!strcmp(name, "am57xx-beagle-x15-revb1"))
1147 return 0;
Lokesh Vutla8b2551a2017-08-23 11:39:06 +05301148 } else if (board_is_x15_revc()) {
1149 if (!strcmp(name, "am57xx-beagle-x15-revc"))
1150 return 0;
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +05301151 } else if (!strcmp(name, "am57xx-beagle-x15")) {
1152 return 0;
1153 }
1154 } else if (board_is_am572x_evm() &&
1155 !strcmp(name, "am57xx-beagle-x15")) {
Lokesh Vutla7a0ea582016-06-10 09:35:43 +05301156 return 0;
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +05301157 } else if (board_is_am572x_idk() && !strcmp(name, "am572x-idk")) {
Lokesh Vutla7a0ea582016-06-10 09:35:43 +05301158 return 0;
Lokesh Vutlab4185e42017-12-29 11:47:57 +05301159 } else if (board_is_am574x_idk() && !strcmp(name, "am574x-idk")) {
1160 return 0;
Schuyler Patton45e7f7e2016-11-25 11:14:25 +05301161 } else if (board_is_am571x_idk() && !strcmp(name, "am571x-idk")) {
1162 return 0;
Caleb Robeyb4309842020-01-02 08:17:27 -06001163 } else if (board_is_bbai() && !strcmp(name, "am5729-beagleboneai")) {
1164 return 0;
Lokesh Vutlaf7f9f6b2016-11-25 11:14:20 +05301165 }
1166
1167 return -1;
Lokesh Vutla7a0ea582016-06-10 09:35:43 +05301168}
1169#endif
Andreas Dannenberg17c29872016-06-27 09:19:22 -05001170
Andrew F. Davis50580a02019-02-11 08:00:08 -06001171#if CONFIG_IS_ENABLED(FASTBOOT) && !CONFIG_IS_ENABLED(ENV_IS_NOWHERE)
1172int fastboot_set_reboot_flag(void)
1173{
1174 printf("Setting reboot to fastboot flag ...\n");
1175 env_set("dofastboot", "1");
1176 env_save();
1177 return 0;
1178}
1179#endif
1180
Caleb Robeyd6eaaae2020-01-02 08:17:25 -06001181#ifdef CONFIG_SUPPORT_EMMC_BOOT
1182static int board_bootmode_has_emmc(void)
1183{
1184 /* Check that boot mode is same as BBAI */
1185 if (gd->arch.omap_boot_mode != 2)
1186 return -EIO;
1187
1188 return 0;
1189}
1190#endif
1191
Andreas Dannenberg17c29872016-06-27 09:19:22 -05001192#ifdef CONFIG_TI_SECURE_DEVICE
1193void board_fit_image_post_process(void **p_image, size_t *p_size)
1194{
1195 secure_boot_verify_image(p_image, p_size);
1196}
Andrew F. Davis1b597ad2016-11-29 16:33:26 -06001197
1198void board_tee_image_process(ulong tee_image, size_t tee_size)
1199{
1200 secure_tee_install((u32)tee_image);
1201}
1202
1203U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_TEE, board_tee_image_process);
Andreas Dannenberg17c29872016-06-27 09:19:22 -05001204#endif