blob: 4838bfd4f137c27902f513be65a9490bcb736a25 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Pavel Machek5095ee02014-09-08 14:08:45 +02002/*
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
Pavel Machek5095ee02014-09-08 14:08:45 +02004 */
Dinh Nguyen48275c92015-12-03 16:05:59 -06005#ifndef __CONFIG_SOCFPGA_COMMON_H__
6#define __CONFIG_SOCFPGA_COMMON_H__
Pavel Machek5095ee02014-09-08 14:08:45 +02007
Simon Glass1af3c7f2020-05-10 11:40:09 -06008#include <linux/stringify.h>
9
Pavel Machek5095ee02014-09-08 14:08:45 +020010/*
Pavel Machek5095ee02014-09-08 14:08:45 +020011 * Memory configurations
12 */
Pavel Machek5095ee02014-09-08 14:08:45 +020013#define PHYS_SDRAM_1 0x0
Ley Foon Tan1b259402017-04-26 02:44:46 +080014#if defined(CONFIG_TARGET_SOCFPGA_GEN5)
Tom Rini65cc0e22022-11-16 13:10:41 -050015#define CFG_SYS_INIT_RAM_ADDR 0xFFFF0000
16#define CFG_SYS_INIT_RAM_SIZE SOCFPGA_PHYS_OCRAM_SIZE
Ley Foon Tan1b259402017-04-26 02:44:46 +080017#elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10)
Tom Rini65cc0e22022-11-16 13:10:41 -050018#define CFG_SYS_INIT_RAM_ADDR 0xFFE00000
Simon Goldschmidt4399e482019-04-09 21:02:04 +020019/* SPL memory allocation configuration, this is for FAT implementation */
Tom Rini65cc0e22022-11-16 13:10:41 -050020#define CFG_SYS_INIT_RAM_SIZE (SOCFPGA_PHYS_OCRAM_SIZE - \
Simon Glass82e26e02023-09-26 08:14:16 -060021 CONFIG_SPL_SYS_MALLOC_SIZE)
Ley Foon Tan1b259402017-04-26 02:44:46 +080022#endif
Stefan Roesef457c522018-10-30 10:00:22 +010023
24/*
25 * Some boards (e.g. socfpga_sr1500) use 8 bytes at the end of the internal
26 * SRAM as bootcounter storage. Make sure to not put the stack directly
27 * at this address to not overwrite the bootcounter by checking, if the
28 * bootcounter address is located in the internal SRAM.
29 */
Tom Rini65cc0e22022-11-16 13:10:41 -050030#if ((CONFIG_SYS_BOOTCOUNT_ADDR > CFG_SYS_INIT_RAM_ADDR) && \
31 (CONFIG_SYS_BOOTCOUNT_ADDR < (CFG_SYS_INIT_RAM_ADDR + \
32 CFG_SYS_INIT_RAM_SIZE)))
Stefan Roesef457c522018-10-30 10:00:22 +010033#endif
Pavel Machek5095ee02014-09-08 14:08:45 +020034
Simon Goldschmidt4399e482019-04-09 21:02:04 +020035/*
36 * U-Boot stack setup: if SPL post-reloc uses DDR stack, use it in pre-reloc
37 * phase of U-Boot, too. This prevents overwriting SPL data if stack/heap usage
38 * in U-Boot pre-reloc is higher than in SPL.
39 */
Simon Goldschmidt4399e482019-04-09 21:02:04 +020040
Tom Riniaa6e94d2022-11-16 13:10:37 -050041#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1
Pavel Machek5095ee02014-09-08 14:08:45 +020042
43/*
44 * U-Boot general configurations
45 */
Pavel Machek5095ee02014-09-08 14:08:45 +020046 /* Print buffer size */
Pavel Machek5095ee02014-09-08 14:08:45 +020047
48/*
49 * Cache
50 */
Tom Rini65cc0e22022-11-16 13:10:41 -050051#define CFG_SYS_PL310_BASE SOCFPGA_MPUL2_ADDRESS
Pavel Machek5095ee02014-09-08 14:08:45 +020052
53/*
Pavel Machek5095ee02014-09-08 14:08:45 +020054 * L4 OSC1 Timer 0
55 */
Marek Vasut331c3722018-08-18 16:00:31 +020056#ifndef CONFIG_TIMER
Tom Rini65cc0e22022-11-16 13:10:41 -050057#define CFG_SYS_TIMERBASE SOCFPGA_OSC1TIMER0_ADDRESS
58#define CFG_SYS_TIMER_COUNTER (CFG_SYS_TIMERBASE + 0x4)
59#ifndef CFG_SYS_TIMER_RATE
60#define CFG_SYS_TIMER_RATE 25000000
Marek Vasut331c3722018-08-18 16:00:31 +020061#endif
Marek Vasutc808ab42020-02-15 14:10:02 +010062#endif
Pavel Machek5095ee02014-09-08 14:08:45 +020063
64/*
65 * L4 Watchdog
66 */
Tom Rini42119de2022-12-04 10:03:39 -050067#define CFG_DW_WDT_CLOCK_KHZ 25000
Pavel Machek5095ee02014-09-08 14:08:45 +020068
69/*
Marek Vasutc339ea52015-12-20 04:00:46 +010070 * NAND Support
71 */
72#ifdef CONFIG_NAND_DENALI
Tom Rini4e590942022-11-12 17:36:51 -050073#define CFG_SYS_NAND_REGS_BASE SOCFPGA_NANDREGS_ADDRESS
74#define CFG_SYS_NAND_DATA_BASE SOCFPGA_NANDDATA_ADDRESS
Marek Vasutc339ea52015-12-20 04:00:46 +010075#endif
76
77/*
Marek Vasut20cadbb2014-10-24 23:34:25 +020078 * USB
79 */
Marek Vasut20cadbb2014-10-24 23:34:25 +020080
81/*
Marek Vasut0223a952014-11-04 04:25:09 +010082 * USB Gadget (DFU, UMS)
83 */
84#if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE)
Marek Vasut0223a952014-11-04 04:25:09 +010085#define DFU_DEFAULT_POLL_TIMEOUT 300
Marek Vasut0223a952014-11-04 04:25:09 +010086#endif
87
88/*
Pavel Machek5095ee02014-09-08 14:08:45 +020089 * U-Boot environment
90 */
Pavel Machek5095ee02014-09-08 14:08:45 +020091
Chin Liang See79cc48e2015-12-21 21:02:45 +080092/* Environment for SDMMC boot */
Chin Liang See79cc48e2015-12-21 21:02:45 +080093
Chin Liang Seeec8b7522016-02-24 16:50:22 +080094/* Environment for QSPI boot */
Chin Liang Seeec8b7522016-02-24 16:50:22 +080095
Pavel Machek5095ee02014-09-08 14:08:45 +020096/*
97 * SPL
Marek Vasut34584d12014-10-16 12:25:40 +020098 *
Tien Fong Chee421a21c2017-12-05 15:58:04 +080099 * SRAM Memory layout for gen 5:
Marek Vasut34584d12014-10-16 12:25:40 +0200100 *
101 * 0xFFFF_0000 ...... Start of SRAM
102 * 0xFFFF_xxxx ...... Top of stack (grows down)
Simon Goldschmidt798baf72019-04-09 21:02:03 +0200103 * 0xFFFF_yyyy ...... Global Data
104 * 0xFFFF_zzzz ...... Malloc area
105 * 0xFFFF_FFFF ...... End of SRAM
Tien Fong Chee421a21c2017-12-05 15:58:04 +0800106 *
107 * SRAM Memory layout for Arria 10:
108 * 0xFFE0_0000 ...... Start of SRAM (bottom)
109 * 0xFFEx_xxxx ...... Top of stack (grows down to bottom)
110 * 0xFFEy_yyyy ...... Global Data
111 * 0xFFEz_zzzz ...... Malloc area (grows up to top)
112 * 0xFFE3_FFFF ...... End of SRAM (top)
Pavel Machek5095ee02014-09-08 14:08:45 +0200113 */
Pavel Machek5095ee02014-09-08 14:08:45 +0200114
Marek Vasut346d6f52015-07-21 07:50:03 +0200115/* SPL QSPI boot support */
Marek Vasut346d6f52015-07-21 07:50:03 +0200116
Marek Vasutc339ea52015-12-20 04:00:46 +0100117/* SPL NAND boot support */
Marek Vasutc339ea52015-12-20 04:00:46 +0100118
Dalon Westergreen451e8242017-04-13 07:30:29 -0700119/* Extra Environment */
120#ifndef CONFIG_SPL_BUILD
Dalon Westergreen451e8242017-04-13 07:30:29 -0700121
Simon Goldschmidt1c7fa792018-01-25 07:18:27 +0100122#ifdef CONFIG_CMD_DHCP
123#define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
124#else
125#define BOOT_TARGET_DEVICES_DHCP(func)
126#endif
127
Joe Hershberger86271b32018-04-13 15:26:40 -0500128#if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
Dalon Westergreen451e8242017-04-13 07:30:29 -0700129#define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
130#else
131#define BOOT_TARGET_DEVICES_PXE(func)
132#endif
133
134#ifdef CONFIG_CMD_MMC
135#define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
136#else
137#define BOOT_TARGET_DEVICES_MMC(func)
138#endif
139
140#define BOOT_TARGET_DEVICES(func) \
141 BOOT_TARGET_DEVICES_MMC(func) \
142 BOOT_TARGET_DEVICES_PXE(func) \
Simon Goldschmidt1c7fa792018-01-25 07:18:27 +0100143 BOOT_TARGET_DEVICES_DHCP(func)
Dalon Westergreen451e8242017-04-13 07:30:29 -0700144
145#include <config_distro_bootcmd.h>
146
Tom Rini0613c362022-12-04 10:03:50 -0500147#ifndef CFG_EXTRA_ENV_SETTINGS
148#define CFG_EXTRA_ENV_SETTINGS \
Dalon Westergreen451e8242017-04-13 07:30:29 -0700149 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
150 "bootm_size=0xa000000\0" \
151 "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
152 "fdt_addr_r=0x02000000\0" \
153 "scriptaddr=0x02100000\0" \
154 "pxefile_addr_r=0x02200000\0" \
155 "ramdisk_addr_r=0x02300000\0" \
Simon Goldschmidt4b2e32e2019-03-01 20:12:31 +0100156 "socfpga_legacy_reset_compat=1\0" \
Dalon Westergreen451e8242017-04-13 07:30:29 -0700157 BOOTENV
158
159#endif
160#endif
161
Dinh Nguyen48275c92015-12-03 16:05:59 -0600162#endif /* __CONFIG_SOCFPGA_COMMON_H__ */