mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
eaf6ea6a1d
- Make all users of CUSTOM_SYS_INIT_SP_ADDR reference SYS_INIT_SP_ADDR - Introduce HAS_CUSTOM_SYS_INIT_SP_ADDR to allow for setting the stack pointer directly, otherwise we use the common calculation. - On some platforms that were using the standard calculation but did not set CONFIG_SYS_INIT_RAM_SIZE / CONFIG_SYS_INIT_RAM_ADDR, set them. - On a small number of platforms that were not subtracting GENERATED_GBL_DATA_SIZE do so now via the standard calculation. - CONFIG_SYS_INIT_SP_OFFSET is now widely unused, so remove it from most board config header files. Signed-off-by: Tom Rini <trini@konsulko.com>
81 lines
2 KiB
C
81 lines
2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (c) 2015 Purna Chandra Mandal <purna.mandal@microchip.com>
|
|
*
|
|
* Microchip PIC32MZ[DA] Starter Kit.
|
|
*/
|
|
|
|
#ifndef __PIC32MZDASK_CONFIG_H
|
|
#define __PIC32MZDASK_CONFIG_H
|
|
|
|
/* System Configuration */
|
|
|
|
/*--------------------------------------------
|
|
* CPU configuration
|
|
*/
|
|
/* CPU Timer rate */
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ 100000000
|
|
|
|
/*----------------------------------------------------------------------
|
|
* Memory Layout
|
|
*/
|
|
/* Initial RAM for temporary stack, global data */
|
|
#define CONFIG_SYS_INIT_RAM_SIZE 0x10000
|
|
#define CONFIG_SYS_INIT_RAM_ADDR \
|
|
(CONFIG_SYS_SRAM_BASE + CONFIG_SYS_SRAM_SIZE - CONFIG_SYS_INIT_RAM_SIZE)
|
|
|
|
/* SDRAM Configuration (for final code, data, stack, heap) */
|
|
#define CONFIG_SYS_SDRAM_BASE 0x88000000
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN (192 << 10)
|
|
|
|
/* Memory Test */
|
|
|
|
/*----------------------------------------------------------------------
|
|
* Commands
|
|
*/
|
|
|
|
/*------------------------------------------------------------
|
|
* Console Configuration
|
|
*/
|
|
|
|
/*--------------------------------------------------
|
|
* USB Configuration
|
|
*/
|
|
|
|
/* -------------------------------------------------
|
|
* Environment
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------
|
|
* Board boot configuration
|
|
*/
|
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
|
"kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
|
|
"fdt_addr_r=0x89d00000\0" \
|
|
"scriptaddr=0x88300000\0" \
|
|
|
|
#define CONFIG_LEGACY_BOOTCMD_ENV \
|
|
"legacy_bootcmd= " \
|
|
"if load mmc 0 ${scriptaddr} uEnv.txt; then " \
|
|
"env import -tr ${scriptaddr} ${filesize}; " \
|
|
"if test -n \"${bootcmd_uenv}\" ; then " \
|
|
"echo Running bootcmd_uenv ...; " \
|
|
"run bootcmd_uenv; " \
|
|
"fi; " \
|
|
"fi; \0"
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(MMC, mmc, 0) \
|
|
func(USB, usb, 0) \
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
CONFIG_LEGACY_BOOTCMD_ENV \
|
|
BOOTENV
|
|
|
|
#endif /* __PIC32MZDASK_CONFIG_H */
|