2022-11-05 04:24:00 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Marvell International Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_MVEBU_ALLEYCAY_5_H
|
|
|
|
#define _CONFIG_MVEBU_ALLEYCAY_5_H
|
|
|
|
|
|
|
|
#include <asm/arch/soc.h>
|
|
|
|
|
|
|
|
/* additions for new ARM relocation support */
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x200000000
|
2022-11-05 04:24:00 +00:00
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, \
|
2022-11-05 04:24:00 +00:00
|
|
|
115200, 230400, 460800, 921600 }
|
|
|
|
|
|
|
|
/* Default Env vars */
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(USB, usb, 0) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2022-12-04 15:03:50 +00:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2022-11-05 04:24:00 +00:00
|
|
|
BOOTENV \
|
|
|
|
"kernel_addr_r=0x202000000\0" \
|
|
|
|
"fdt_addr_r=0x201000000\0" \
|
|
|
|
"ramdisk_addr_r=0x206000000\0" \
|
|
|
|
"fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_TCLK 325000000
|
2022-11-05 04:24:00 +00:00
|
|
|
|
|
|
|
#endif /* _CONFIG_MVEBU_ALLEYCAY_5_H */
|