mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
6600b355c7
This converts the following to Kconfig: CONFIG_SPL_BSS_START_ADDR Signed-off-by: Tom Rini <trini@konsulko.com>
25 lines
558 B
C
25 lines
558 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* SPL definitions for the i.MX7 SPL
|
|
*
|
|
* (C) Copyright 2017 CompuLab, Ltd. http://www.compulab.com
|
|
*
|
|
* Author: Uri Mashiach <uri.mashiach@compulab.co.il>
|
|
*/
|
|
|
|
#ifndef __IMX7_SPL_CONFIG_H
|
|
#define __IMX7_SPL_CONFIG_H
|
|
|
|
#ifdef CONFIG_SPL
|
|
|
|
/* MMC support */
|
|
#if defined(CONFIG_SPL_MMC)
|
|
#define CONFIG_SYS_MONITOR_LEN 409600 /* 400 KB */
|
|
#endif
|
|
|
|
#define CONFIG_SYS_SPL_MALLOC_START 0x88300000
|
|
#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */
|
|
|
|
#endif /* CONFIG_SPL */
|
|
|
|
#endif /* __IMX7_SPL_CONFIG_H */
|