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
|
|
|
|
|
|
|
|
#define CONFIG_SYS_FLASH_BASE 0x08000000
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x20050000
|
2017-05-28 19:55:10 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SUPPORT_SPL
|
2017-05-28 19:55:14 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x08008000
|
2017-05-28 19:55:10 +00:00
|
|
|
#else
|
2017-05-28 19:55:14 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0xC0400000
|
|
|
|
#define CONFIG_LOADADDR 0xC0400000
|
2017-05-28 19:55:10 +00:00
|
|
|
#endif
|
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
|
|
|
|
2016-03-09 23:18:14 +00:00
|
|
|
#define CONFIG_STM32_FLASH
|
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
|
2017-01-22 15:04:29 +00:00
|
|
|
#define CONFIG_PHY_SMSC
|
2017-01-22 15:04:27 +00:00
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
#define CONFIG_SYS_HZ_CLOCK 1000000 /* Timer is clocked at 1MHz */
|
|
|
|
|
|
|
|
#define CONFIG_CMDLINE_TAG
|
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS
|
|
|
|
#define CONFIG_INITRD_TAG
|
|
|
|
#define CONFIG_REVISION_TAG
|
|
|
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
2017-01-22 15:04:27 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024)
|
2016-02-11 23:47:20 +00:00
|
|
|
|
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" \
|
|
|
|
"fdt_addr_r=0xC0500000\0" \
|
|
|
|
"scriptaddr=0xC0008000\0" \
|
|
|
|
"pxefile_addr_r=0xC0008000\0" \
|
|
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2019-09-16 08:56:51 +00:00
|
|
|
"ramdisk_addr_r=0xC0600000\0" \
|
2019-02-21 09:07:54 +00:00
|
|
|
BOOTENV
|
2016-02-11 23:47:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Command line configuration.
|
|
|
|
*/
|
2017-04-10 22:03:00 +00:00
|
|
|
#define CONFIG_BOARD_LATE_INIT
|
2017-04-10 22:03:02 +00:00
|
|
|
#define CONFIG_DISPLAY_BOARDINFO
|
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 */
|
|
|
|
#ifdef CONFIG_DM_VIDEO
|
|
|
|
#define CONFIG_VIDEO_BMP_RLE8
|
|
|
|
#define CONFIG_BMP_16BPP
|
|
|
|
#define CONFIG_BMP_24BPP
|
|
|
|
#define CONFIG_BMP_32BPP
|
|
|
|
#define CONFIG_SPLASH_SCREEN
|
|
|
|
#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
|
|
#endif
|
|
|
|
|
2016-02-11 23:47:20 +00:00
|
|
|
#endif /* __CONFIG_H */
|