2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-02-11 23:47:20 +00:00
|
|
|
/*
|
2017-10-23 07:53:58 +00:00
|
|
|
* Copyright (C) 2016, STMicroelectronics - All Rights Reserved
|
|
|
|
* Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
|
2016-02-11 23:47:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2020-02-03 14:10:40 +00:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
/* For booting Linux, use the first 6MB of memory */
|
|
|
|
#define CONFIG_SYS_BOOTMAPSZ SZ_4M + SZ_2M
|
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
#define CONFIG_SYS_FLASH_BASE 0x08000000
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x20050000
|
2017-05-28 19:55:10 +00:00
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
/*
|
|
|
|
* Configuration of the external SDRAM memory
|
|
|
|
*/
|
|
|
|
|
2016-03-09 23:18:14 +00:00
|
|
|
#define CONFIG_SYS_MAX_FLASH_SECT 8
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_BANKS 1
|
2016-02-11 23:47:20 +00:00
|
|
|
|
2017-01-22 15:04:27 +00:00
|
|
|
#define CONFIG_DW_GMAC_DEFAULT_DMA_PBL (8)
|
|
|
|
#define CONFIG_DW_ALTDESCRIPTOR
|
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
#define CONFIG_SYS_HZ_CLOCK 1000000 /* Timer is clocked at 1MHz */
|
|
|
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
2019-02-21 09:07:54 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"kernel_addr_r=0xC0008000\0" \
|
|
|
|
"fdtfile=stm32f746-disco.dtb\0" \
|
2020-02-03 14:10:39 +00:00
|
|
|
"fdt_addr_r=0xC0408000\0" \
|
|
|
|
"scriptaddr=0xC0418000\0" \
|
|
|
|
"pxefile_addr_r=0xC0428000\0" \
|
|
|
|
"ramdisk_addr_r=0xC0438000\0" \
|
2019-02-21 09:07:54 +00:00
|
|
|
BOOTENV
|
2016-02-11 23:47:20 +00:00
|
|
|
|
2017-05-28 19:55:10 +00:00
|
|
|
/* For SPL */
|
|
|
|
#ifdef CONFIG_SUPPORT_SPL
|
|
|
|
#define CONFIG_SPL_STACK CONFIG_SYS_INIT_SP_ADDR
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
|
|
|
|
#define CONFIG_SYS_SPL_LEN 0x00008000
|
2017-05-28 19:55:14 +00:00
|
|
|
#define CONFIG_SYS_UBOOT_START 0x080083FD
|
2017-05-28 19:55:10 +00:00
|
|
|
#define CONFIG_SYS_UBOOT_BASE (CONFIG_SYS_FLASH_BASE + \
|
|
|
|
CONFIG_SYS_SPL_LEN)
|
2017-05-28 19:55:13 +00:00
|
|
|
|
|
|
|
/* DT blob (fdt) address */
|
|
|
|
#define CONFIG_SYS_FDT_BASE (CONFIG_SYS_FLASH_BASE + \
|
|
|
|
0x1C0000)
|
2017-05-28 19:55:10 +00:00
|
|
|
#endif
|
|
|
|
/* For SPL ends */
|
|
|
|
|
2018-03-02 14:59:28 +00:00
|
|
|
/* For splashcreen */
|
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
#endif /* __CONFIG_H */
|