blob: 66ecb168a0a0e49d59283a4c25916b342dadd149 [file] [log] [blame]
Ley Foon Tan380477f2019-11-27 15:55:31 +08001/* SPDX-License-Identifier: GPL-2.0
2 *
3 * Copyright (C) 2017-2019 Intel Corporation <www.intel.com>
4 *
5 */
6
7#ifndef __CONFIG_SOCFPGA_SOC64_COMMON_H__
8#define __CONFIG_SOCFPGA_SOC64_COMMON_H__
9
Siew Chin Limbdba67b2021-08-10 11:26:27 +080010#include <asm/arch/base_addr_soc64.h>
Siew Chin Lim8f337f32021-03-24 13:11:34 +080011#include <asm/arch/handoff_soc64.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060012#include <linux/stringify.h>
Ley Foon Tan380477f2019-11-27 15:55:31 +080013
14/*
15 * U-Boot general configurations
16 */
Ley Foon Tan380477f2019-11-27 15:55:31 +080017/* sysmgr.boot_scratch_cold4 & 5 (64bit) will be used for PSCI_CPU_ON call */
18#define CPU_RELEASE_ADDR 0xFFD12210
Ley Foon Tan380477f2019-11-27 15:55:31 +080019
20/*
21 * U-Boot console configurations
22 */
Ley Foon Tan380477f2019-11-27 15:55:31 +080023
24/* Extend size of kernel image for uncompression */
Ley Foon Tan380477f2019-11-27 15:55:31 +080025
26/*
27 * U-Boot run time memory configurations
28 */
Tom Rini65cc0e22022-11-16 13:10:41 -050029#define CFG_SYS_INIT_RAM_ADDR 0xFFE00000
30#define CFG_SYS_INIT_RAM_SIZE 0x40000
Ley Foon Tan380477f2019-11-27 15:55:31 +080031
32/*
33 * U-Boot environment configurations
34 */
Ley Foon Tan380477f2019-11-27 15:55:31 +080035
36/*
Siew Chin Lim6bf12492021-03-01 20:04:14 +080037 * Environment variable
Ley Foon Tan380477f2019-11-27 15:55:31 +080038 */
Tom Rini0613c362022-12-04 10:03:50 -050039#define CFG_EXTRA_ENV_SETTINGS \
Ley Foon Tan380477f2019-11-27 15:55:31 +080040 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Chee Hong Ang200846f2020-12-24 18:20:57 +080041 "bootfile=" CONFIG_BOOTFILE "\0" \
Ley Foon Tan380477f2019-11-27 15:55:31 +080042 "fdt_addr=8000000\0" \
Ley Foon Tana76b7112019-11-27 15:55:32 +080043 "fdtimage=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
Ley Foon Tan380477f2019-11-27 15:55:31 +080044 "mmcroot=/dev/mmcblk0p2\0" \
45 "mmcboot=setenv bootargs " CONFIG_BOOTARGS \
46 " root=${mmcroot} rw rootwait;" \
47 "booti ${loadaddr} - ${fdt_addr}\0" \
48 "mmcload=mmc rescan;" \
49 "load mmc 0:1 ${loadaddr} ${bootfile};" \
50 "load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
Chee Hong Ang200846f2020-12-24 18:20:57 +080051 "mmcfitboot=setenv bootargs " CONFIG_BOOTARGS \
52 " root=${mmcroot} rw rootwait;" \
53 "bootm ${loadaddr}\0" \
54 "mmcfitload=mmc rescan;" \
55 "load mmc 0:1 ${loadaddr} ${bootfile}\0" \
Ley Foon Tan380477f2019-11-27 15:55:31 +080056 "linux_qspi_enable=if sf probe; then " \
57 "echo Enabling QSPI at Linux DTB...;" \
58 "fdt addr ${fdt_addr}; fdt resize;" \
59 "fdt set /soc/spi@ff8d2000 status okay;" \
60 "fdt set /soc/clkmgr/clocks/qspi_clk clock-frequency " \
61 " ${qspi_clock}; fi; \0" \
62 "scriptaddr=0x02100000\0" \
63 "scriptfile=u-boot.scr\0" \
64 "fatscript=if fatload mmc 0:1 ${scriptaddr} ${scriptfile};" \
65 "then source ${scriptaddr}; fi\0" \
66 "socfpga_legacy_reset_compat=1\0"
67
68/*
Ley Foon Tan380477f2019-11-27 15:55:31 +080069 * External memory configurations
70 */
71#define PHYS_SDRAM_1 0x0
72#define PHYS_SDRAM_1_SIZE (1 * 1024 * 1024 * 1024)
Tom Riniaa6e94d2022-11-16 13:10:37 -050073#define CFG_SYS_SDRAM_BASE 0
Ley Foon Tan380477f2019-11-27 15:55:31 +080074
75/*
76 * Serial / UART configurations
77 */
Tom Rini91092132022-11-16 13:10:28 -050078#define CFG_SYS_NS16550_CLK 100000000
Ley Foon Tan380477f2019-11-27 15:55:31 +080079
80/*
Ley Foon Tan380477f2019-11-27 15:55:31 +080081 * SDMMC configurations
82 */
Ley Foon Tan380477f2019-11-27 15:55:31 +080083/*
84 * Flash configurations
85 */
Ley Foon Tan380477f2019-11-27 15:55:31 +080086
Ley Foon Tan380477f2019-11-27 15:55:31 +080087/*
88 * L4 Watchdog
89 */
Ley Foon Tana76b7112019-11-27 15:55:32 +080090#ifdef CONFIG_TARGET_SOCFPGA_STRATIX10
Ley Foon Tan380477f2019-11-27 15:55:31 +080091#ifndef __ASSEMBLY__
92unsigned int cm_get_l4_sys_free_clk_hz(void);
Tom Rini42119de2022-12-04 10:03:39 -050093#define CFG_DW_WDT_CLOCK_KHZ (cm_get_l4_sys_free_clk_hz() / 1000)
Ley Foon Tan380477f2019-11-27 15:55:31 +080094#endif
Ley Foon Tana76b7112019-11-27 15:55:32 +080095#else
Tom Rini42119de2022-12-04 10:03:39 -050096#define CFG_DW_WDT_CLOCK_KHZ 100000
Ley Foon Tana76b7112019-11-27 15:55:32 +080097#endif
Ley Foon Tan380477f2019-11-27 15:55:31 +080098
99/*
100 * SPL memory layout
101 *
102 * On chip RAM
103 * 0xFFE0_0000 ...... Start of OCRAM
104 * SPL code, rwdata
105 * empty space
106 * 0xFFEx_xxxx ...... Top of stack (grows down)
107 * 0xFFEy_yyyy ...... Global Data
108 * 0xFFEz_zzzz ...... Malloc prior relocation (size CONFIG_SYS_MALLOC_F_LEN)
109 * 0xFFE3_F000 ...... Hardware handdoff blob (size 4KB)
110 * 0xFFE3_FFFF ...... End of OCRAM
111 *
112 * SDRAM
113 * 0x0000_0000 ...... Start of SDRAM_1
114 * unused / empty space for image loading
115 * Size 64MB ...... MALLOC (size CONFIG_SYS_SPL_MALLOC_SIZE)
116 * Size 1MB ...... BSS (size CONFIG_SPL_BSS_MAX_SIZE)
117 * 0x8000_0000 ...... End of SDRAM_1 (assume 2GB)
118 *
119 */
Ley Foon Tan380477f2019-11-27 15:55:31 +0800120
Ley Foon Tan380477f2019-11-27 15:55:31 +0800121#endif /* __CONFIG_SOCFPGA_SOC64_COMMON_H__ */