blob: 8d562e4cbeab078dbef0014831866a2cf952dafd [file] [log] [blame]
Lokesh Vutlaa2285322019-06-13 10:29:42 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * J721E: SoC specific initialization
4 *
5 * Copyright (C) 2018-2019 Texas Instruments Incorporated - http://www.ti.com/
6 * Lokesh Vutla <lokeshvutla@ti.com>
7 */
8
9#include <common.h>
10#include <spl.h>
11#include <asm/io.h>
12#include <asm/armv7_mpu.h>
Lokesh Vutla6edde292019-06-13 10:29:43 +053013#include <asm/arch/hardware.h>
Andreas Dannenberg5e1782c2019-06-13 10:29:47 +053014#include <asm/arch/sysfw-loader.h>
Lokesh Vutlaa2285322019-06-13 10:29:42 +053015#include "common.h"
Lokesh Vutla96c11f42019-06-13 10:29:46 +053016#include <asm/arch/sys_proto.h>
17#include <linux/soc/ti/ti_sci_protocol.h>
Andreas Dannenberg5e1782c2019-06-13 10:29:47 +053018#include <dm.h>
19#include <dm/uclass-internal.h>
20#include <dm/pinctrl.h>
Lokesh Vutlaa2285322019-06-13 10:29:42 +053021
22#ifdef CONFIG_SPL_BUILD
Andreas Dannenberg660aa462019-06-13 10:29:44 +053023static void mmr_unlock(u32 base, u32 partition)
24{
25 /* Translate the base address */
26 phys_addr_t part_base = base + partition * CTRL_MMR0_PARTITION_SIZE;
27
28 /* Unlock the requested partition if locked using two-step sequence */
29 writel(CTRLMMR_LOCK_KICK0_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK0);
30 writel(CTRLMMR_LOCK_KICK1_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK1);
31}
32
33static void ctrl_mmr_unlock(void)
34{
35 /* Unlock all WKUP_CTRL_MMR0 module registers */
36 mmr_unlock(WKUP_CTRL_MMR0_BASE, 0);
37 mmr_unlock(WKUP_CTRL_MMR0_BASE, 1);
38 mmr_unlock(WKUP_CTRL_MMR0_BASE, 2);
39 mmr_unlock(WKUP_CTRL_MMR0_BASE, 3);
40 mmr_unlock(WKUP_CTRL_MMR0_BASE, 4);
41 mmr_unlock(WKUP_CTRL_MMR0_BASE, 6);
42 mmr_unlock(WKUP_CTRL_MMR0_BASE, 7);
43
44 /* Unlock all MCU_CTRL_MMR0 module registers */
45 mmr_unlock(MCU_CTRL_MMR0_BASE, 0);
46 mmr_unlock(MCU_CTRL_MMR0_BASE, 1);
47 mmr_unlock(MCU_CTRL_MMR0_BASE, 2);
48 mmr_unlock(MCU_CTRL_MMR0_BASE, 3);
49 mmr_unlock(MCU_CTRL_MMR0_BASE, 4);
50
51 /* Unlock all CTRL_MMR0 module registers */
52 mmr_unlock(CTRL_MMR0_BASE, 0);
53 mmr_unlock(CTRL_MMR0_BASE, 1);
54 mmr_unlock(CTRL_MMR0_BASE, 2);
55 mmr_unlock(CTRL_MMR0_BASE, 3);
56 mmr_unlock(CTRL_MMR0_BASE, 4);
57 mmr_unlock(CTRL_MMR0_BASE, 5);
58 mmr_unlock(CTRL_MMR0_BASE, 6);
59 mmr_unlock(CTRL_MMR0_BASE, 7);
60}
61
Andreas Dannenbergb8267412019-06-13 10:29:45 +053062/*
63 * This uninitialized global variable would normal end up in the .bss section,
64 * but the .bss is cleared between writing and reading this variable, so move
65 * it to the .data section.
66 */
67u32 bootindex __attribute__((section(".data")));
68
69static void store_boot_index_from_rom(void)
70{
71 bootindex = *(u32 *)(CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX);
72}
73
Lokesh Vutlaa2285322019-06-13 10:29:42 +053074void board_init_f(ulong dummy)
75{
Lokesh Vutlaedfb5de2019-10-07 19:26:38 +053076#if defined(CONFIG_K3_J721E_DDRSS) || defined(CONFIG_K3_LOAD_SYSFW)
Andreas Dannenberg5e1782c2019-06-13 10:29:47 +053077 struct udevice *dev;
78 int ret;
79#endif
Lokesh Vutlaa2285322019-06-13 10:29:42 +053080 /*
Andreas Dannenbergb8267412019-06-13 10:29:45 +053081 * Cannot delay this further as there is a chance that
82 * K3_BOOT_PARAM_TABLE_INDEX can be over written by SPL MALLOC section.
Lokesh Vutlaa2285322019-06-13 10:29:42 +053083 */
Andreas Dannenbergb8267412019-06-13 10:29:45 +053084 store_boot_index_from_rom();
Lokesh Vutlaa2285322019-06-13 10:29:42 +053085
Andreas Dannenberg660aa462019-06-13 10:29:44 +053086 /* Make all control module registers accessible */
87 ctrl_mmr_unlock();
88
Lokesh Vutlaa2285322019-06-13 10:29:42 +053089#ifdef CONFIG_CPU_V7R
Lokesh Vutla5fbd6fe2019-12-31 15:49:55 +053090 disable_linefill_optimization();
Lokesh Vutlaa2285322019-06-13 10:29:42 +053091 setup_k3_mpu_regions();
92#endif
93
94 /* Init DM early */
95 spl_early_init();
96
Andreas Dannenberg5e1782c2019-06-13 10:29:47 +053097#ifdef CONFIG_K3_LOAD_SYSFW
98 /*
99 * Process pinctrl for the serial0 a.k.a. MCU_UART0 module and continue
100 * regardless of the result of pinctrl. Do this without probing the
101 * device, but instead by searching the device that would request the
102 * given sequence number if probed. The UART will be used by the system
103 * firmware (SYSFW) image for various purposes and SYSFW depends on us
104 * to initialize its pin settings.
105 */
106 ret = uclass_find_device_by_seq(UCLASS_SERIAL, 0, true, &dev);
107 if (!ret)
108 pinctrl_select_state(dev, "default");
109
110 /*
111 * Load, start up, and configure system controller firmware. Provide
112 * the U-Boot console init function to the SYSFW post-PM configuration
113 * callback hook, effectively switching on (or over) the console
114 * output.
115 */
116 k3_sysfw_loader(preloader_console_init);
117#else
Lokesh Vutlaa2285322019-06-13 10:29:42 +0530118 /* Prepare console output */
119 preloader_console_init();
Andreas Dannenberg5e1782c2019-06-13 10:29:47 +0530120#endif
Lokesh Vutlaedfb5de2019-10-07 19:26:38 +0530121
Andreas Dannenbergd036a212020-01-07 13:15:54 +0530122 /* Perform EEPROM-based board detection */
123 do_board_detect();
124
Keerthy0b01f662019-10-24 15:00:53 +0530125#if defined(CONFIG_CPU_V7R) && defined(CONFIG_K3_AVS0)
126 ret = uclass_get_device_by_driver(UCLASS_MISC, DM_GET_DRIVER(k3_avs),
127 &dev);
128 if (ret)
129 printf("AVS init failed: %d\n", ret);
130#endif
131
Lokesh Vutlaedfb5de2019-10-07 19:26:38 +0530132#if defined(CONFIG_K3_J721E_DDRSS)
133 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
134 if (ret)
135 panic("DRAM init failed: %d\n", ret);
136#endif
Lokesh Vutlaa2285322019-06-13 10:29:42 +0530137}
Lokesh Vutla6edde292019-06-13 10:29:43 +0530138
139u32 spl_boot_mode(const u32 boot_device)
140{
141 switch (boot_device) {
142 case BOOT_DEVICE_MMC1:
143 return MMCSD_MODE_EMMCBOOT;
144 case BOOT_DEVICE_MMC2:
145 return MMCSD_MODE_FS;
146 default:
147 return MMCSD_MODE_RAW;
148 }
149}
150
151static u32 __get_primary_bootmedia(u32 main_devstat, u32 wkup_devstat)
152{
153
154 u32 bootmode = (wkup_devstat & WKUP_DEVSTAT_PRIMARY_BOOTMODE_MASK) >>
155 WKUP_DEVSTAT_PRIMARY_BOOTMODE_SHIFT;
156
157 bootmode |= (main_devstat & MAIN_DEVSTAT_BOOT_MODE_B_MASK) <<
158 BOOT_MODE_B_SHIFT;
159
160 if (bootmode == BOOT_DEVICE_OSPI || bootmode == BOOT_DEVICE_QSPI)
161 bootmode = BOOT_DEVICE_SPI;
162
163 if (bootmode == BOOT_DEVICE_MMC2) {
164 u32 port = (main_devstat &
165 MAIN_DEVSTAT_PRIM_BOOTMODE_MMC_PORT_MASK) >>
166 MAIN_DEVSTAT_PRIM_BOOTMODE_PORT_SHIFT;
167 if (port == 0x0)
168 bootmode = BOOT_DEVICE_MMC1;
169 }
170
171 return bootmode;
172}
173
174u32 spl_boot_device(void)
175{
176 u32 wkup_devstat = readl(CTRLMMR_WKUP_DEVSTAT);
177 u32 main_devstat;
178
179 if (wkup_devstat & WKUP_DEVSTAT_MCU_OMLY_MASK) {
180 printf("ERROR: MCU only boot is not yet supported\n");
181 return BOOT_DEVICE_RAM;
182 }
183
184 /* MAIN CTRL MMR can only be read if MCU ONLY is 0 */
185 main_devstat = readl(CTRLMMR_MAIN_DEVSTAT);
186
187 /* ToDo: Add support for backup boot media */
188 return __get_primary_bootmedia(main_devstat, wkup_devstat);
189}
Lokesh Vutlaa2285322019-06-13 10:29:42 +0530190#endif
Lokesh Vutla96c11f42019-06-13 10:29:46 +0530191
192#ifdef CONFIG_SYS_K3_SPL_ATF
193
194#define J721E_DEV_MCU_RTI0 262
195#define J721E_DEV_MCU_RTI1 263
196#define J721E_DEV_MCU_ARMSS0_CPU0 250
197#define J721E_DEV_MCU_ARMSS0_CPU1 251
198
199void release_resources_for_core_shutdown(void)
200{
201 struct ti_sci_handle *ti_sci;
202 struct ti_sci_dev_ops *dev_ops;
203 struct ti_sci_proc_ops *proc_ops;
204 int ret;
205 u32 i;
206
207 const u32 put_device_ids[] = {
208 J721E_DEV_MCU_RTI0,
209 J721E_DEV_MCU_RTI1,
210 };
211
212 ti_sci = get_ti_sci_handle();
213 dev_ops = &ti_sci->ops.dev_ops;
214 proc_ops = &ti_sci->ops.proc_ops;
215
216 /* Iterate through list of devices to put (shutdown) */
217 for (i = 0; i < ARRAY_SIZE(put_device_ids); i++) {
218 u32 id = put_device_ids[i];
219
220 ret = dev_ops->put_device(ti_sci, id);
221 if (ret)
222 panic("Failed to put device %u (%d)\n", id, ret);
223 }
224
225 const u32 put_core_ids[] = {
226 J721E_DEV_MCU_ARMSS0_CPU1,
227 J721E_DEV_MCU_ARMSS0_CPU0, /* Handle CPU0 after CPU1 */
228 };
229
230 /* Iterate through list of cores to put (shutdown) */
231 for (i = 0; i < ARRAY_SIZE(put_core_ids); i++) {
232 u32 id = put_core_ids[i];
233
234 /*
235 * Queue up the core shutdown request. Note that this call
236 * needs to be followed up by an actual invocation of an WFE
237 * or WFI CPU instruction.
238 */
239 ret = proc_ops->proc_shutdown_no_wait(ti_sci, id);
240 if (ret)
241 panic("Failed sending core %u shutdown message (%d)\n",
242 id, ret);
243 }
244}
245#endif