mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +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>
98 lines
2.4 KiB
C
98 lines
2.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration for Amlogic Meson 64bits SoCs
|
|
* (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
|
|
*/
|
|
|
|
#ifndef __MESON64_CONFIG_H
|
|
#define __MESON64_CONFIG_H
|
|
|
|
/* Generic Interrupt Controller Definitions */
|
|
#if (defined(CONFIG_MESON_AXG) || defined(CONFIG_MESON_G12A))
|
|
#define GICD_BASE 0xffc01000
|
|
#define GICC_BASE 0xffc02000
|
|
#else /* MESON GXL and GXBB */
|
|
#define GICD_BASE 0xc4301000
|
|
#define GICC_BASE 0xc4302000
|
|
#endif
|
|
|
|
/* For splashscreen */
|
|
#ifdef CONFIG_DM_VIDEO
|
|
#define STDOUT_CFG "vidconsole,serial"
|
|
#else
|
|
#define STDOUT_CFG "serial"
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_KEYBOARD
|
|
#define STDIN_CFG "usbkbd,serial"
|
|
#else
|
|
#define STDIN_CFG "serial"
|
|
#endif
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
|
#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64 MiB */
|
|
|
|
/* ROM USB boot support, auto-execute boot.scr at scriptaddr */
|
|
#define BOOTENV_DEV_ROMUSB(devtypeu, devtypel, instance) \
|
|
"bootcmd_romusb=" \
|
|
"if test \"${boot_source}\" = \"usb\" && " \
|
|
"test -n \"${scriptaddr}\"; then " \
|
|
"echo '(ROM USB boot)'; " \
|
|
"source ${scriptaddr}; " \
|
|
"fi\0"
|
|
|
|
#define BOOTENV_DEV_NAME_ROMUSB(devtypeu, devtypel, instance) \
|
|
"romusb "
|
|
|
|
#ifdef CONFIG_CMD_USB
|
|
#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
|
|
#else
|
|
#define BOOT_TARGET_DEVICES_USB(func)
|
|
#endif
|
|
|
|
#ifdef CONFIG_CMD_NVME
|
|
#define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
|
|
#else
|
|
#define BOOT_TARGET_NVME(func)
|
|
#endif
|
|
|
|
#ifdef CONFIG_CMD_SCSI
|
|
#define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
|
|
#else
|
|
#define BOOT_TARGET_SCSI(func)
|
|
#endif
|
|
|
|
#ifndef BOOT_TARGET_DEVICES
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(ROMUSB, romusb, na) \
|
|
func(MMC, mmc, 0) \
|
|
func(MMC, mmc, 1) \
|
|
func(MMC, mmc, 2) \
|
|
BOOT_TARGET_DEVICES_USB(func) \
|
|
BOOT_TARGET_NVME(func) \
|
|
BOOT_TARGET_SCSI(func) \
|
|
func(PXE, pxe, na) \
|
|
func(DHCP, dhcp, na)
|
|
#endif
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#ifndef CONFIG_EXTRA_ENV_SETTINGS
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"stdin=" STDIN_CFG "\0" \
|
|
"stdout=" STDOUT_CFG "\0" \
|
|
"stderr=" STDOUT_CFG "\0" \
|
|
"kernel_comp_addr_r=0x0d080000\0" \
|
|
"kernel_comp_size=0x2000000\0" \
|
|
"fdt_addr_r=0x08008000\0" \
|
|
"scriptaddr=0x08000000\0" \
|
|
"kernel_addr_r=0x08080000\0" \
|
|
"pxefile_addr_r=0x01080000\0" \
|
|
"fdtoverlay_addr_r=0x01000000\0" \
|
|
"ramdisk_addr_r=0x13000000\0" \
|
|
"fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
|
|
BOOTENV
|
|
#endif
|
|
|
|
|
|
#endif /* __MESON64_CONFIG_H */
|