2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-02-11 15:47:20 -08:00
|
|
|
/*
|
2017-10-23 09:53:58 +02:00
|
|
|
* Copyright (C) 2016, STMicroelectronics - All Rights Reserved
|
|
|
|
* Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
|
2016-02-11 15:47:20 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2020-02-03 15:10:40 +01:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
/* For booting Linux, use the first 6MB of memory */
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_BOOTMAPSZ SZ_4M + SZ_2M
|
2020-02-03 15:10:40 +01:00
|
|
|
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_FLASH_BASE 0x08000000
|
2017-05-28 12:55:10 -07:00
|
|
|
|
2016-02-11 15:47:20 -08:00
|
|
|
/*
|
|
|
|
* Configuration of the external SDRAM memory
|
|
|
|
*/
|
|
|
|
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_HZ_CLOCK 1000000 /* Timer is clocked at 1MHz */
|
2016-02-11 15:47:20 -08:00
|
|
|
|
2019-02-21 10:07:54 +01:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
2022-12-04 10:03:50 -05:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2019-02-21 10:07:54 +01:00
|
|
|
"kernel_addr_r=0xC0008000\0" \
|
2022-04-27 13:53:58 +02:00
|
|
|
"fdtfile="CONFIG_DEFAULT_DEVICE_TREE".dtb\0" \
|
2020-02-03 15:10:39 +01:00
|
|
|
"fdt_addr_r=0xC0408000\0" \
|
|
|
|
"scriptaddr=0xC0418000\0" \
|
|
|
|
"pxefile_addr_r=0xC0428000\0" \
|
|
|
|
"ramdisk_addr_r=0xC0438000\0" \
|
2019-02-21 10:07:54 +01:00
|
|
|
BOOTENV
|
2016-02-11 15:47:20 -08:00
|
|
|
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_UBOOT_BASE (CFG_SYS_FLASH_BASE + \
|
2022-05-27 15:18:06 -04:00
|
|
|
CONFIG_SPL_PAD_TO)
|
2017-05-28 12:55:13 -07:00
|
|
|
|
2016-02-11 15:47:20 -08:00
|
|
|
#endif /* __CONFIG_H */
|