blob: b692806352c89a30d0fbb43b51d641ecea377b74 [file] [log] [blame]
Lokesh Vutlaed0e6052018-08-27 15:57:09 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
Andrew F. Davis9b322db2020-01-10 14:35:20 -05003 * AM6: SoC specific initialization
Lokesh Vutlaed0e6052018-08-27 15:57:09 +05304 *
5 * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Lokesh Vutla <lokeshvutla@ti.com>
7 */
8
9#include <common.h>
Lokesh Vutlae0064602018-08-27 15:57:11 +053010#include <asm/io.h>
Lokesh Vutlaed0e6052018-08-27 15:57:09 +053011#include <spl.h>
Lokesh Vutlae0064602018-08-27 15:57:11 +053012#include <asm/arch/hardware.h>
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -050013#include <asm/arch/sysfw-loader.h>
Andreas Dannenberg03facc72019-06-04 18:08:26 -050014#include <asm/arch/sys_proto.h>
Lokesh Vutla23f7b1a2018-11-02 19:51:03 +053015#include "common.h"
Lokesh Vutla59ebf4a2018-11-02 19:51:06 +053016#include <dm.h>
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -050017#include <dm/uclass-internal.h>
18#include <dm/pinctrl.h>
Andreas Dannenbergf9380a72019-06-07 19:24:42 +053019#include <linux/soc/ti/ti_sci_protocol.h>
Faiz Abbasd45ffb72020-02-26 13:44:36 +053020#include <mmc.h>
Lokesh Vutlaed0e6052018-08-27 15:57:09 +053021
22#ifdef CONFIG_SPL_BUILD
Andrew F. Davisea70da12020-01-10 14:35:21 -050023#ifdef CONFIG_K3_LOAD_SYSFW
24#ifdef CONFIG_TI_SECURE_DEVICE
25struct fwl_data main_cbass_fwls[] = {
26 { "MMCSD1_CFG", 2057, 1 },
27 { "MMCSD0_CFG", 2058, 1 },
28 { "USB3SS0_SLV0", 2176, 2 },
29 { "PCIE0_SLV", 2336, 8 },
30 { "PCIE1_SLV", 2337, 8 },
31 { "PCIE0_CFG", 2688, 1 },
32 { "PCIE1_CFG", 2689, 1 },
33}, mcu_cbass_fwls[] = {
34 { "MCU_ARMSS0_CORE0_SLV", 1024, 1 },
35 { "MCU_ARMSS0_CORE1_SLV", 1028, 1 },
36 { "MCU_FSS0_S1", 1033, 8 },
37 { "MCU_FSS0_S0", 1036, 8 },
38 { "MCU_CPSW0", 1220, 1 },
39};
40#endif
41#endif
42
Andreas Dannenbergc68721d2018-08-27 15:57:12 +053043static void mmr_unlock(u32 base, u32 partition)
44{
45 /* Translate the base address */
46 phys_addr_t part_base = base + partition * CTRL_MMR0_PARTITION_SIZE;
47
48 /* Unlock the requested partition if locked using two-step sequence */
49 writel(CTRLMMR_LOCK_KICK0_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK0);
50 writel(CTRLMMR_LOCK_KICK1_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK1);
51}
52
53static void ctrl_mmr_unlock(void)
54{
55 /* Unlock all WKUP_CTRL_MMR0 module registers */
56 mmr_unlock(WKUP_CTRL_MMR0_BASE, 0);
57 mmr_unlock(WKUP_CTRL_MMR0_BASE, 1);
58 mmr_unlock(WKUP_CTRL_MMR0_BASE, 2);
59 mmr_unlock(WKUP_CTRL_MMR0_BASE, 3);
60 mmr_unlock(WKUP_CTRL_MMR0_BASE, 6);
61 mmr_unlock(WKUP_CTRL_MMR0_BASE, 7);
62
63 /* Unlock all MCU_CTRL_MMR0 module registers */
64 mmr_unlock(MCU_CTRL_MMR0_BASE, 0);
65 mmr_unlock(MCU_CTRL_MMR0_BASE, 1);
66 mmr_unlock(MCU_CTRL_MMR0_BASE, 2);
67 mmr_unlock(MCU_CTRL_MMR0_BASE, 6);
68
69 /* Unlock all CTRL_MMR0 module registers */
70 mmr_unlock(CTRL_MMR0_BASE, 0);
71 mmr_unlock(CTRL_MMR0_BASE, 1);
72 mmr_unlock(CTRL_MMR0_BASE, 2);
73 mmr_unlock(CTRL_MMR0_BASE, 3);
74 mmr_unlock(CTRL_MMR0_BASE, 6);
75 mmr_unlock(CTRL_MMR0_BASE, 7);
76}
77
Andrew F. Davis407a2192019-04-12 12:54:42 -040078/*
79 * This uninitialized global variable would normal end up in the .bss section,
80 * but the .bss is cleared between writing and reading this variable, so move
81 * it to the .data section.
82 */
83u32 bootindex __attribute__((section(".data")));
84
Lokesh Vutlae0064602018-08-27 15:57:11 +053085static void store_boot_index_from_rom(void)
86{
Andrew F. Davis407a2192019-04-12 12:54:42 -040087 bootindex = *(u32 *)(CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX);
Lokesh Vutlae0064602018-08-27 15:57:11 +053088}
89
Faiz Abbasd45ffb72020-02-26 13:44:36 +053090#if defined(CONFIG_K3_LOAD_SYSFW)
91void k3_mmc_stop_clock(void)
92{
93 if (spl_boot_device() == BOOT_DEVICE_MMC1) {
94 struct mmc *mmc = find_mmc_device(0);
95
96 if (!mmc)
97 return;
98
99 mmc->saved_clock = mmc->clock;
100 mmc_set_clock(mmc, 0, true);
101 }
102}
103
104void k3_mmc_restart_clock(void)
105{
106 if (spl_boot_device() == BOOT_DEVICE_MMC1) {
107 struct mmc *mmc = find_mmc_device(0);
108
109 if (!mmc)
110 return;
111
112 mmc_set_clock(mmc, mmc->saved_clock, false);
113 }
114}
115#endif
116
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530117void board_init_f(ulong dummy)
118{
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -0500119#if defined(CONFIG_K3_LOAD_SYSFW) || defined(CONFIG_K3_AM654_DDRSS)
Lokesh Vutla59ebf4a2018-11-02 19:51:06 +0530120 struct udevice *dev;
121 int ret;
122#endif
Lokesh Vutlae0064602018-08-27 15:57:11 +0530123 /*
124 * Cannot delay this further as there is a chance that
125 * K3_BOOT_PARAM_TABLE_INDEX can be over written by SPL MALLOC section.
126 */
127 store_boot_index_from_rom();
128
Andreas Dannenbergc68721d2018-08-27 15:57:12 +0530129 /* Make all control module registers accessible */
130 ctrl_mmr_unlock();
131
Lokesh Vutla23f7b1a2018-11-02 19:51:03 +0530132#ifdef CONFIG_CPU_V7R
Lokesh Vutla40109f42019-12-31 15:49:55 +0530133 disable_linefill_optimization();
Lokesh Vutla23f7b1a2018-11-02 19:51:03 +0530134 setup_k3_mpu_regions();
135#endif
136
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530137 /* Init DM early in-order to invoke system controller */
138 spl_early_init();
139
Andreas Dannenberg96dd2232018-12-04 22:29:47 -0600140#ifdef CONFIG_K3_EARLY_CONS
141 /*
142 * Allow establishing an early console as required for example when
143 * doing a UART-based boot. Note that this console may not "survive"
144 * through a SYSFW PM-init step and will need a re-init in some way
145 * due to changing module clock frequencies.
146 */
147 early_console_init();
148#endif
149
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -0500150#ifdef CONFIG_K3_LOAD_SYSFW
151 /*
152 * Process pinctrl for the serial0 a.k.a. WKUP_UART0 module and continue
153 * regardless of the result of pinctrl. Do this without probing the
154 * device, but instead by searching the device that would request the
155 * given sequence number if probed. The UART will be used by the system
156 * firmware (SYSFW) image for various purposes and SYSFW depends on us
157 * to initialize its pin settings.
158 */
159 ret = uclass_find_device_by_seq(UCLASS_SERIAL, 0, true, &dev);
160 if (!ret)
161 pinctrl_select_state(dev, "default");
162
163 /*
Lokesh Vutla6e44aeb2020-03-10 16:50:58 +0530164 * Load, start up, and configure system controller firmware while
165 * also populating the SYSFW post-PM configuration callback hook.
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -0500166 */
Faiz Abbasd45ffb72020-02-26 13:44:36 +0530167 k3_sysfw_loader(k3_mmc_stop_clock, k3_mmc_restart_clock);
168
169 /* Prepare console output */
170 preloader_console_init();
Andrew F. Davisea70da12020-01-10 14:35:21 -0500171
172 /* Disable ROM configured firewalls right after loading sysfw */
173#ifdef CONFIG_TI_SECURE_DEVICE
174 remove_fwl_configs(main_cbass_fwls, ARRAY_SIZE(main_cbass_fwls));
175 remove_fwl_configs(mcu_cbass_fwls, ARRAY_SIZE(mcu_cbass_fwls));
176#endif
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -0500177#else
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530178 /* Prepare console output */
179 preloader_console_init();
Andreas Dannenbergc222e3d2019-06-04 17:55:50 -0500180#endif
Lokesh Vutla59ebf4a2018-11-02 19:51:06 +0530181
Lokesh Vutla6e44aeb2020-03-10 16:50:58 +0530182 /* Output System Firmware version info */
183 k3_sysfw_print_ver();
184
Andreas Dannenberg03facc72019-06-04 18:08:26 -0500185 /* Perform EEPROM-based board detection */
186 do_board_detect();
187
Keerthy27380cb2019-10-24 15:00:52 +0530188#if defined(CONFIG_CPU_V7R) && defined(CONFIG_K3_AVS0)
189 ret = uclass_get_device_by_driver(UCLASS_MISC, DM_GET_DRIVER(k3_avs),
190 &dev);
191 if (ret)
192 printf("AVS init failed: %d\n", ret);
193#endif
194
Lokesh Vutla59ebf4a2018-11-02 19:51:06 +0530195#ifdef CONFIG_K3_AM654_DDRSS
196 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
Andreas Dannenberg3e9b9c12019-03-11 15:15:43 -0500197 if (ret)
198 panic("DRAM init failed: %d\n", ret);
Lokesh Vutla59ebf4a2018-11-02 19:51:06 +0530199#endif
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530200}
201
Harald Seilere9759062020-04-15 11:33:30 +0200202u32 spl_mmc_boot_mode(const u32 boot_device)
Andrew F. Davis81089a52018-10-03 10:03:23 -0500203{
204#if defined(CONFIG_SUPPORT_EMMC_BOOT)
205 u32 devstat = readl(CTRLMMR_MAIN_DEVSTAT);
Andrew F. Davis81089a52018-10-03 10:03:23 -0500206
207 u32 bootmode = (devstat & CTRLMMR_MAIN_DEVSTAT_BOOTMODE_MASK) >>
208 CTRLMMR_MAIN_DEVSTAT_BOOTMODE_SHIFT;
209
210 /* eMMC boot0 mode is only supported for primary boot */
211 if (bootindex == K3_PRIMARY_BOOTMODE &&
212 bootmode == BOOT_DEVICE_MMC1)
213 return MMCSD_MODE_EMMCBOOT;
214#endif
215
216 /* Everything else use filesystem if available */
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800217#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Andrew F. Davis81089a52018-10-03 10:03:23 -0500218 return MMCSD_MODE_FS;
219#else
220 return MMCSD_MODE_RAW;
221#endif
222}
223
Lokesh Vutlae0064602018-08-27 15:57:11 +0530224static u32 __get_backup_bootmedia(u32 devstat)
225{
226 u32 bkup_boot = (devstat & CTRLMMR_MAIN_DEVSTAT_BKUP_BOOTMODE_MASK) >>
227 CTRLMMR_MAIN_DEVSTAT_BKUP_BOOTMODE_SHIFT;
228
229 switch (bkup_boot) {
230 case BACKUP_BOOT_DEVICE_USB:
231 return BOOT_DEVICE_USB;
232 case BACKUP_BOOT_DEVICE_UART:
233 return BOOT_DEVICE_UART;
234 case BACKUP_BOOT_DEVICE_ETHERNET:
235 return BOOT_DEVICE_ETHERNET;
236 case BACKUP_BOOT_DEVICE_MMC2:
Andrew F. Davisb5700ef2018-10-03 10:03:22 -0500237 {
238 u32 port = (devstat & CTRLMMR_MAIN_DEVSTAT_BKUP_MMC_PORT_MASK) >>
239 CTRLMMR_MAIN_DEVSTAT_BKUP_MMC_PORT_SHIFT;
240 if (port == 0x0)
241 return BOOT_DEVICE_MMC1;
Lokesh Vutlae0064602018-08-27 15:57:11 +0530242 return BOOT_DEVICE_MMC2;
Andrew F. Davisb5700ef2018-10-03 10:03:22 -0500243 }
Lokesh Vutlae0064602018-08-27 15:57:11 +0530244 case BACKUP_BOOT_DEVICE_SPI:
245 return BOOT_DEVICE_SPI;
246 case BACKUP_BOOT_DEVICE_HYPERFLASH:
247 return BOOT_DEVICE_HYPERFLASH;
248 case BACKUP_BOOT_DEVICE_I2C:
249 return BOOT_DEVICE_I2C;
250 };
251
252 return BOOT_DEVICE_RAM;
253}
254
255static u32 __get_primary_bootmedia(u32 devstat)
256{
Andrew F. Davisb5700ef2018-10-03 10:03:22 -0500257 u32 bootmode = (devstat & CTRLMMR_MAIN_DEVSTAT_BOOTMODE_MASK) >>
258 CTRLMMR_MAIN_DEVSTAT_BOOTMODE_SHIFT;
Lokesh Vutlae0064602018-08-27 15:57:11 +0530259
260 if (bootmode == BOOT_DEVICE_OSPI || bootmode == BOOT_DEVICE_QSPI)
261 bootmode = BOOT_DEVICE_SPI;
262
Andrew F. Davisb5700ef2018-10-03 10:03:22 -0500263 if (bootmode == BOOT_DEVICE_MMC2) {
264 u32 port = (devstat & CTRLMMR_MAIN_DEVSTAT_MMC_PORT_MASK) >>
265 CTRLMMR_MAIN_DEVSTAT_MMC_PORT_SHIFT;
266 if (port == 0x0)
267 bootmode = BOOT_DEVICE_MMC1;
268 } else if (bootmode == BOOT_DEVICE_MMC1) {
269 u32 port = (devstat & CTRLMMR_MAIN_DEVSTAT_EMMC_PORT_MASK) >>
270 CTRLMMR_MAIN_DEVSTAT_EMMC_PORT_SHIFT;
271 if (port == 0x1)
272 bootmode = BOOT_DEVICE_MMC2;
273 }
274
Lokesh Vutlae0064602018-08-27 15:57:11 +0530275 return bootmode;
276}
277
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530278u32 spl_boot_device(void)
279{
Lokesh Vutlae0064602018-08-27 15:57:11 +0530280 u32 devstat = readl(CTRLMMR_MAIN_DEVSTAT);
Lokesh Vutlae0064602018-08-27 15:57:11 +0530281
282 if (bootindex == K3_PRIMARY_BOOTMODE)
283 return __get_primary_bootmedia(devstat);
284 else
285 return __get_backup_bootmedia(devstat);
Lokesh Vutlaed0e6052018-08-27 15:57:09 +0530286}
287#endif
288
Andreas Dannenbergf9380a72019-06-07 19:24:42 +0530289#ifdef CONFIG_SYS_K3_SPL_ATF
290
291#define AM6_DEV_MCU_RTI0 134
292#define AM6_DEV_MCU_RTI1 135
293#define AM6_DEV_MCU_ARMSS0_CPU0 159
294#define AM6_DEV_MCU_ARMSS0_CPU1 245
295
296void release_resources_for_core_shutdown(void)
297{
Lokesh Vutla78e51212019-09-09 12:47:38 +0530298 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
299 struct ti_sci_dev_ops *dev_ops = &ti_sci->ops.dev_ops;
300 struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops;
Andreas Dannenbergf9380a72019-06-07 19:24:42 +0530301 int ret;
302 u32 i;
303
304 const u32 put_device_ids[] = {
305 AM6_DEV_MCU_RTI0,
306 AM6_DEV_MCU_RTI1,
307 };
308
Andreas Dannenbergf9380a72019-06-07 19:24:42 +0530309 /* Iterate through list of devices to put (shutdown) */
310 for (i = 0; i < ARRAY_SIZE(put_device_ids); i++) {
311 u32 id = put_device_ids[i];
312
313 ret = dev_ops->put_device(ti_sci, id);
314 if (ret)
315 panic("Failed to put device %u (%d)\n", id, ret);
316 }
317
318 const u32 put_core_ids[] = {
319 AM6_DEV_MCU_ARMSS0_CPU1,
320 AM6_DEV_MCU_ARMSS0_CPU0, /* Handle CPU0 after CPU1 */
321 };
322
323 /* Iterate through list of cores to put (shutdown) */
324 for (i = 0; i < ARRAY_SIZE(put_core_ids); i++) {
325 u32 id = put_core_ids[i];
326
327 /*
328 * Queue up the core shutdown request. Note that this call
329 * needs to be followed up by an actual invocation of an WFE
330 * or WFI CPU instruction.
331 */
332 ret = proc_ops->proc_shutdown_no_wait(ti_sci, id);
333 if (ret)
334 panic("Failed sending core %u shutdown message (%d)\n",
335 id, ret);
336 }
337}
338#endif