2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-06-10 18:18:22 +00:00
|
|
|
/*
|
2018-10-25 14:41:37 +00:00
|
|
|
* Configuration for Amlogic Meson 64bits SoCs
|
2016-06-10 18:18:22 +00:00
|
|
|
* (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2018-10-25 14:41:37 +00:00
|
|
|
#ifndef __MESON64_CONFIG_H
|
|
|
|
#define __MESON64_CONFIG_H
|
|
|
|
|
|
|
|
/* Generic Interrupt Controller Definitions */
|
2019-12-26 11:33:52 +00:00
|
|
|
#if (defined(CONFIG_MESON_AXG) || defined(CONFIG_MESON_G12A))
|
2018-09-05 13:56:12 +00:00
|
|
|
#define GICD_BASE 0xffc01000
|
|
|
|
#define GICC_BASE 0xffc02000
|
|
|
|
#else /* MESON GXL and GXBB */
|
2018-10-25 14:41:37 +00:00
|
|
|
#define GICD_BASE 0xc4301000
|
|
|
|
#define GICC_BASE 0xc4302000
|
2018-09-05 13:56:12 +00:00
|
|
|
#endif
|
2016-06-10 18:18:22 +00:00
|
|
|
|
2018-07-26 09:45:46 +00:00
|
|
|
/* 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
|
|
|
|
|
2016-06-10 18:18:22 +00:00
|
|
|
#define CONFIG_CPU_ARMV8
|
|
|
|
#define CONFIG_REMAKE_ELF
|
|
|
|
#define CONFIG_SYS_MAXARGS 32
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN (32 << 20)
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x20000000
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE
|
2018-10-25 14:41:37 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64 MiB */
|
2016-06-10 18:18:22 +00:00
|
|
|
|
2018-07-27 12:10:00 +00:00
|
|
|
/* 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 "
|
|
|
|
|
2018-06-14 11:43:38 +00:00
|
|
|
#ifdef CONFIG_CMD_USB
|
|
|
|
#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
|
|
|
|
#else
|
|
|
|
#define BOOT_TARGET_DEVICES_USB(func)
|
|
|
|
#endif
|
|
|
|
|
2021-02-26 14:17:36 +00:00
|
|
|
#ifdef CONFIG_CMD_NVME
|
|
|
|
#define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
|
|
|
|
#else
|
|
|
|
#define BOOT_TARGET_NVME(func)
|
|
|
|
#endif
|
|
|
|
|
2018-10-25 14:41:37 +00:00
|
|
|
#ifndef BOOT_TARGET_DEVICES
|
2017-01-15 19:22:30 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
2018-07-27 12:10:00 +00:00
|
|
|
func(ROMUSB, romusb, na) \
|
2017-04-15 19:30:39 +00:00
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(MMC, mmc, 2) \
|
2018-06-14 11:43:38 +00:00
|
|
|
BOOT_TARGET_DEVICES_USB(func) \
|
2021-02-26 14:17:36 +00:00
|
|
|
BOOT_TARGET_NVME(func) \
|
2017-05-05 21:11:26 +00:00
|
|
|
func(PXE, pxe, na) \
|
2017-01-15 19:22:30 +00:00
|
|
|
func(DHCP, dhcp, na)
|
2018-10-25 14:41:37 +00:00
|
|
|
#endif
|
2017-01-15 19:22:30 +00:00
|
|
|
|
2020-11-02 03:07:06 +00:00
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2018-10-25 14:41:37 +00:00
|
|
|
#ifndef CONFIG_EXTRA_ENV_SETTINGS
|
2017-01-15 19:22:30 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2018-07-26 09:45:46 +00:00
|
|
|
"stdin=" STDIN_CFG "\0" \
|
|
|
|
"stdout=" STDOUT_CFG "\0" \
|
|
|
|
"stderr=" STDOUT_CFG "\0" \
|
2021-05-27 06:43:51 +00:00
|
|
|
"kernel_comp_addr_r=0x0d080000\0" \
|
|
|
|
"kernel_comp_size=0x2000000\0" \
|
2018-10-24 14:27:51 +00:00
|
|
|
"fdt_addr_r=0x08008000\0" \
|
|
|
|
"scriptaddr=0x08000000\0" \
|
|
|
|
"kernel_addr_r=0x08080000\0" \
|
2017-01-15 19:22:30 +00:00
|
|
|
"pxefile_addr_r=0x01080000\0" \
|
2021-02-10 14:22:13 +00:00
|
|
|
"fdtoverlay_addr_r=0x01000000\0" \
|
2017-04-14 18:04:46 +00:00
|
|
|
"ramdisk_addr_r=0x13000000\0" \
|
2018-10-19 10:00:51 +00:00
|
|
|
"fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
|
2017-01-15 19:22:30 +00:00
|
|
|
BOOTENV
|
2018-10-25 14:41:37 +00:00
|
|
|
#endif
|
2017-01-15 19:22:30 +00:00
|
|
|
|
2017-04-14 17:54:40 +00:00
|
|
|
|
2018-10-25 14:41:37 +00:00
|
|
|
#endif /* __MESON64_CONFIG_H */
|