276cbb5dae2d74a3f043a8c0ff42b37af52dc2fe
[platform/kernel/u-boot.git] / arch / arm / mach-k3 / j721e_init.c
1 // 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 <init.h>
11 #include <spl.h>
12 #include <asm/io.h>
13 #include <asm/armv7_mpu.h>
14 #include <asm/arch/hardware.h>
15 #include <asm/arch/sysfw-loader.h>
16 #include "common.h"
17 #include <asm/arch/sys_proto.h>
18 #include <linux/soc/ti/ti_sci_protocol.h>
19 #include <dm.h>
20 #include <dm/uclass-internal.h>
21 #include <dm/pinctrl.h>
22 #include <dm/root.h>
23 #include <fdtdec.h>
24 #include <mmc.h>
25 #include <remoteproc.h>
26
27 #ifdef CONFIG_K3_LOAD_SYSFW
28 struct fwl_data cbass_hc_cfg0_fwls[] = {
29         { "PCIE0_CFG", 2560, 8 },
30         { "PCIE1_CFG", 2561, 8 },
31         { "USB3SS0_CORE", 2568, 4 },
32         { "USB3SS1_CORE", 2570, 4 },
33         { "EMMC8SS0_CFG", 2576, 4 },
34         { "UFS_HCI0_CFG", 2580, 4 },
35         { "SERDES0", 2584, 1 },
36         { "SERDES1", 2585, 1 },
37 }, cbass_hc0_fwls[] = {
38         { "PCIE0_HP", 2528, 24 },
39         { "PCIE0_LP", 2529, 24 },
40         { "PCIE1_HP", 2530, 24 },
41         { "PCIE1_LP", 2531, 24 },
42 }, cbass_rc_cfg0_fwls[] = {
43         { "EMMCSD4SS0_CFG", 2380, 4 },
44 }, cbass_rc0_fwls[] = {
45         { "GPMC0", 2310, 8 },
46 }, infra_cbass0_fwls[] = {
47         { "PLL_MMR0", 8, 26 },
48         { "CTRL_MMR0", 9, 16 },
49 }, mcu_cbass0_fwls[] = {
50         { "MCU_R5FSS0_CORE0", 1024, 4 },
51         { "MCU_R5FSS0_CORE0_CFG", 1025, 2 },
52         { "MCU_R5FSS0_CORE1", 1028, 4 },
53         { "MCU_FSS0_CFG", 1032, 12 },
54         { "MCU_FSS0_S1", 1033, 8 },
55         { "MCU_FSS0_S0", 1036, 8 },
56         { "MCU_PSROM49152X32", 1048, 1 },
57         { "MCU_MSRAM128KX64", 1050, 8 },
58         { "MCU_CTRL_MMR0", 1200, 8 },
59         { "MCU_PLL_MMR0", 1201, 3 },
60         { "MCU_CPSW0", 1220, 2 },
61 }, wkup_cbass0_fwls[] = {
62         { "WKUP_CTRL_MMR0", 131, 16 },
63 };
64 #endif
65
66 static void ctrl_mmr_unlock(void)
67 {
68         /* Unlock all WKUP_CTRL_MMR0 module registers */
69         mmr_unlock(WKUP_CTRL_MMR0_BASE, 0);
70         mmr_unlock(WKUP_CTRL_MMR0_BASE, 1);
71         mmr_unlock(WKUP_CTRL_MMR0_BASE, 2);
72         mmr_unlock(WKUP_CTRL_MMR0_BASE, 3);
73         mmr_unlock(WKUP_CTRL_MMR0_BASE, 4);
74         mmr_unlock(WKUP_CTRL_MMR0_BASE, 6);
75         mmr_unlock(WKUP_CTRL_MMR0_BASE, 7);
76
77         /* Unlock all MCU_CTRL_MMR0 module registers */
78         mmr_unlock(MCU_CTRL_MMR0_BASE, 0);
79         mmr_unlock(MCU_CTRL_MMR0_BASE, 1);
80         mmr_unlock(MCU_CTRL_MMR0_BASE, 2);
81         mmr_unlock(MCU_CTRL_MMR0_BASE, 3);
82         mmr_unlock(MCU_CTRL_MMR0_BASE, 4);
83
84         /* Unlock all CTRL_MMR0 module registers */
85         mmr_unlock(CTRL_MMR0_BASE, 0);
86         mmr_unlock(CTRL_MMR0_BASE, 1);
87         mmr_unlock(CTRL_MMR0_BASE, 2);
88         mmr_unlock(CTRL_MMR0_BASE, 3);
89         mmr_unlock(CTRL_MMR0_BASE, 5);
90         if (soc_is_j721e())
91                 mmr_unlock(CTRL_MMR0_BASE, 6);
92         mmr_unlock(CTRL_MMR0_BASE, 7);
93 }
94
95 #if defined(CONFIG_K3_LOAD_SYSFW)
96 void k3_mmc_stop_clock(void)
97 {
98         if (spl_boot_device() == BOOT_DEVICE_MMC1) {
99                 struct mmc *mmc = find_mmc_device(0);
100
101                 if (!mmc)
102                         return;
103
104                 mmc->saved_clock = mmc->clock;
105                 mmc_set_clock(mmc, 0, true);
106         }
107 }
108
109 void k3_mmc_restart_clock(void)
110 {
111         if (spl_boot_device() == BOOT_DEVICE_MMC1) {
112                 struct mmc *mmc = find_mmc_device(0);
113
114                 if (!mmc)
115                         return;
116
117                 mmc_set_clock(mmc, mmc->saved_clock, false);
118         }
119 }
120 #endif
121
122 /*
123  * This uninitialized global variable would normal end up in the .bss section,
124  * but the .bss is cleared between writing and reading this variable, so move
125  * it to the .data section.
126  */
127 u32 bootindex __section(".data");
128 static struct rom_extended_boot_data bootdata __section(".data");
129
130 static void store_boot_info_from_rom(void)
131 {
132         bootindex = *(u32 *)(CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX);
133         memcpy(&bootdata, (uintptr_t *)ROM_EXTENDED_BOOT_DATA_INFO,
134                sizeof(struct rom_extended_boot_data));
135 }
136
137 #ifdef CONFIG_SPL_OF_LIST
138 void do_dt_magic(void)
139 {
140         int ret, rescan, mmc_dev = -1;
141         static struct mmc *mmc;
142
143         if (IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT))
144                 do_board_detect();
145
146         /*
147          * Board detection has been done.
148          * Let us see if another dtb wouldn't be a better match
149          * for our board
150          */
151         if (IS_ENABLED(CONFIG_CPU_V7R)) {
152                 ret = fdtdec_resetup(&rescan);
153                 if (!ret && rescan) {
154                         dm_uninit();
155                         dm_init_and_scan(true);
156                 }
157         }
158
159         /*
160          * Because of multi DTB configuration, the MMC device has
161          * to be re-initialized after reconfiguring FDT inorder to
162          * boot from MMC. Do this when boot mode is MMC and ROM has
163          * not loaded SYSFW.
164          */
165         switch (spl_boot_device()) {
166         case BOOT_DEVICE_MMC1:
167                 mmc_dev = 0;
168                 break;
169         case BOOT_DEVICE_MMC2:
170         case BOOT_DEVICE_MMC2_2:
171                 mmc_dev = 1;
172                 break;
173         }
174
175         if (mmc_dev > 0 && !is_rom_loaded_sysfw(&bootdata)) {
176                 ret = mmc_init_device(mmc_dev);
177                 if (!ret) {
178                         mmc = find_mmc_device(mmc_dev);
179                         if (mmc) {
180                                 ret = mmc_init(mmc);
181                                 if (ret) {
182                                         printf("mmc init failed with error: %d\n", ret);
183                                 }
184                         }
185                 }
186         }
187 }
188 #endif
189
190 void board_init_f(ulong dummy)
191 {
192 #if defined(CONFIG_K3_J721E_DDRSS) || defined(CONFIG_K3_LOAD_SYSFW)
193         struct udevice *dev;
194         int ret;
195 #endif
196         /*
197          * Cannot delay this further as there is a chance that
198          * K3_BOOT_PARAM_TABLE_INDEX can be over written by SPL MALLOC section.
199          */
200         store_boot_info_from_rom();
201
202         /* Make all control module registers accessible */
203         ctrl_mmr_unlock();
204
205 #ifdef CONFIG_CPU_V7R
206         disable_linefill_optimization();
207         setup_k3_mpu_regions();
208 #endif
209
210         /* Init DM early */
211         spl_early_init();
212
213 #ifdef CONFIG_K3_LOAD_SYSFW
214         /*
215          * Process pinctrl for the serial0 a.k.a. MCU_UART0 module and continue
216          * regardless of the result of pinctrl. Do this without probing the
217          * device, but instead by searching the device that would request the
218          * given sequence number if probed. The UART will be used by the system
219          * firmware (SYSFW) image for various purposes and SYSFW depends on us
220          * to initialize its pin settings.
221          */
222         ret = uclass_find_device_by_seq(UCLASS_SERIAL, 0, &dev);
223         if (!ret)
224                 pinctrl_select_state(dev, "default");
225
226         /*
227          * Load, start up, and configure system controller firmware. Provide
228          * the U-Boot console init function to the SYSFW post-PM configuration
229          * callback hook, effectively switching on (or over) the console
230          * output.
231          */
232         k3_sysfw_loader(is_rom_loaded_sysfw(&bootdata),
233                         k3_mmc_stop_clock, k3_mmc_restart_clock);
234
235 #ifdef CONFIG_SPL_OF_LIST
236         do_dt_magic();
237 #endif
238
239         /*
240          * Force probe of clk_k3 driver here to ensure basic default clock
241          * configuration is always done.
242          */
243         if (IS_ENABLED(CONFIG_SPL_CLK_K3)) {
244                 ret = uclass_get_device_by_driver(UCLASS_CLK,
245                                                   DM_DRIVER_GET(ti_clk),
246                                                   &dev);
247                 if (ret)
248                         panic("Failed to initialize clk-k3!\n");
249         }
250
251         /* Prepare console output */
252         preloader_console_init();
253
254         /* Disable ROM configured firewalls right after loading sysfw */
255         remove_fwl_configs(cbass_hc_cfg0_fwls, ARRAY_SIZE(cbass_hc_cfg0_fwls));
256         remove_fwl_configs(cbass_hc0_fwls, ARRAY_SIZE(cbass_hc0_fwls));
257         remove_fwl_configs(cbass_rc_cfg0_fwls, ARRAY_SIZE(cbass_rc_cfg0_fwls));
258         remove_fwl_configs(cbass_rc0_fwls, ARRAY_SIZE(cbass_rc0_fwls));
259         remove_fwl_configs(infra_cbass0_fwls, ARRAY_SIZE(infra_cbass0_fwls));
260         remove_fwl_configs(mcu_cbass0_fwls, ARRAY_SIZE(mcu_cbass0_fwls));
261         remove_fwl_configs(wkup_cbass0_fwls, ARRAY_SIZE(wkup_cbass0_fwls));
262 #else
263         /* Prepare console output */
264         preloader_console_init();
265 #endif
266
267         /* Output System Firmware version info */
268         k3_sysfw_print_ver();
269
270         /* Perform EEPROM-based board detection */
271         if (IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT))
272                 do_board_detect();
273
274 #if defined(CONFIG_CPU_V7R) && defined(CONFIG_K3_AVS0)
275         ret = uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(k3_avs),
276                                           &dev);
277         if (ret)
278                 printf("AVS init failed: %d\n", ret);
279 #endif
280
281 #if defined(CONFIG_K3_J721E_DDRSS)
282         ret = uclass_get_device(UCLASS_RAM, 0, &dev);
283         if (ret)
284                 panic("DRAM init failed: %d\n", ret);
285 #endif
286         spl_enable_dcache();
287 }
288
289 u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device)
290 {
291         switch (boot_device) {
292         case BOOT_DEVICE_MMC1:
293                 return MMCSD_MODE_EMMCBOOT;
294         case BOOT_DEVICE_MMC2:
295                 return MMCSD_MODE_FS;
296         default:
297                 return MMCSD_MODE_RAW;
298         }
299 }
300
301 static u32 __get_backup_bootmedia(u32 main_devstat)
302 {
303         u32 bkup_boot = (main_devstat & MAIN_DEVSTAT_BKUP_BOOTMODE_MASK) >>
304                         MAIN_DEVSTAT_BKUP_BOOTMODE_SHIFT;
305
306         switch (bkup_boot) {
307         case BACKUP_BOOT_DEVICE_USB:
308                 return BOOT_DEVICE_DFU;
309         case BACKUP_BOOT_DEVICE_UART:
310                 return BOOT_DEVICE_UART;
311         case BACKUP_BOOT_DEVICE_ETHERNET:
312                 return BOOT_DEVICE_ETHERNET;
313         case BACKUP_BOOT_DEVICE_MMC2:
314         {
315                 u32 port = (main_devstat & MAIN_DEVSTAT_BKUP_MMC_PORT_MASK) >>
316                             MAIN_DEVSTAT_BKUP_MMC_PORT_SHIFT;
317                 if (port == 0x0)
318                         return BOOT_DEVICE_MMC1;
319                 return BOOT_DEVICE_MMC2;
320         }
321         case BACKUP_BOOT_DEVICE_SPI:
322                 return BOOT_DEVICE_SPI;
323         case BACKUP_BOOT_DEVICE_I2C:
324                 return BOOT_DEVICE_I2C;
325         }
326
327         return BOOT_DEVICE_RAM;
328 }
329
330 static u32 __get_primary_bootmedia(u32 main_devstat, u32 wkup_devstat)
331 {
332
333         u32 bootmode = (wkup_devstat & WKUP_DEVSTAT_PRIMARY_BOOTMODE_MASK) >>
334                         WKUP_DEVSTAT_PRIMARY_BOOTMODE_SHIFT;
335
336         bootmode |= (main_devstat & MAIN_DEVSTAT_BOOT_MODE_B_MASK) <<
337                         BOOT_MODE_B_SHIFT;
338
339         if (bootmode == BOOT_DEVICE_OSPI || bootmode == BOOT_DEVICE_QSPI)
340                 bootmode = BOOT_DEVICE_SPI;
341
342         if (bootmode == BOOT_DEVICE_MMC2) {
343                 u32 port = (main_devstat &
344                             MAIN_DEVSTAT_PRIM_BOOTMODE_MMC_PORT_MASK) >>
345                            MAIN_DEVSTAT_PRIM_BOOTMODE_PORT_SHIFT;
346                 if (port == 0x0)
347                         bootmode = BOOT_DEVICE_MMC1;
348         }
349
350         return bootmode;
351 }
352
353 u32 spl_spi_boot_bus(void)
354 {
355         u32 wkup_devstat = readl(CTRLMMR_WKUP_DEVSTAT);
356         u32 main_devstat = readl(CTRLMMR_MAIN_DEVSTAT);
357         u32 bootmode = ((wkup_devstat & WKUP_DEVSTAT_PRIMARY_BOOTMODE_MASK) >>
358                         WKUP_DEVSTAT_PRIMARY_BOOTMODE_SHIFT) |
359                         ((main_devstat & MAIN_DEVSTAT_BOOT_MODE_B_MASK) << BOOT_MODE_B_SHIFT);
360
361         return (bootmode == BOOT_DEVICE_QSPI) ? 1 : 0;
362 }
363
364 u32 spl_boot_device(void)
365 {
366         u32 wkup_devstat = readl(CTRLMMR_WKUP_DEVSTAT);
367         u32 main_devstat;
368
369         if (wkup_devstat & WKUP_DEVSTAT_MCU_OMLY_MASK) {
370                 printf("ERROR: MCU only boot is not yet supported\n");
371                 return BOOT_DEVICE_RAM;
372         }
373
374         /* MAIN CTRL MMR can only be read if MCU ONLY is 0 */
375         main_devstat = readl(CTRLMMR_MAIN_DEVSTAT);
376
377         if (bootindex == K3_PRIMARY_BOOTMODE)
378                 return __get_primary_bootmedia(main_devstat, wkup_devstat);
379         else
380                 return __get_backup_bootmedia(main_devstat);
381 }
382
383 #ifdef CONFIG_SYS_K3_SPL_ATF
384
385 #define J721E_DEV_MCU_RTI0                      262
386 #define J721E_DEV_MCU_RTI1                      263
387 #define J721E_DEV_MCU_ARMSS0_CPU0               250
388 #define J721E_DEV_MCU_ARMSS0_CPU1               251
389
390 void release_resources_for_core_shutdown(void)
391 {
392         struct ti_sci_handle *ti_sci;
393         struct ti_sci_dev_ops *dev_ops;
394         struct ti_sci_proc_ops *proc_ops;
395         int ret;
396         u32 i;
397
398         const u32 put_device_ids[] = {
399                 J721E_DEV_MCU_RTI0,
400                 J721E_DEV_MCU_RTI1,
401         };
402
403         ti_sci = get_ti_sci_handle();
404         dev_ops = &ti_sci->ops.dev_ops;
405         proc_ops = &ti_sci->ops.proc_ops;
406
407         /* Iterate through list of devices to put (shutdown) */
408         for (i = 0; i < ARRAY_SIZE(put_device_ids); i++) {
409                 u32 id = put_device_ids[i];
410
411                 ret = dev_ops->put_device(ti_sci, id);
412                 if (ret)
413                         panic("Failed to put device %u (%d)\n", id, ret);
414         }
415
416         const u32 put_core_ids[] = {
417                 J721E_DEV_MCU_ARMSS0_CPU1,
418                 J721E_DEV_MCU_ARMSS0_CPU0,      /* Handle CPU0 after CPU1 */
419         };
420
421         /* Iterate through list of cores to put (shutdown) */
422         for (i = 0; i < ARRAY_SIZE(put_core_ids); i++) {
423                 u32 id = put_core_ids[i];
424
425                 /*
426                  * Queue up the core shutdown request. Note that this call
427                  * needs to be followed up by an actual invocation of an WFE
428                  * or WFI CPU instruction.
429                  */
430                 ret = proc_ops->proc_shutdown_no_wait(ti_sci, id);
431                 if (ret)
432                         panic("Failed sending core %u shutdown message (%d)\n",
433                               id, ret);
434         }
435 }
436 #endif