mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
10f6e4dc3a
This converts the following to Kconfig: CONFIG_SYS_SPL_MALLOC_SIZE CONFIG_SYS_SPL_MALLOC_START We introduce a default value here as well, and CONFIG_SYS_SPL_MALLOC to control if we have a malloc pool or not. Signed-off-by: Tom Rini <trini@konsulko.com>
22 lines
447 B
C
22 lines
447 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
|
|
|
|
#endif /* CONFIG_SPL */
|
|
|
|
#endif /* __IMX7_SPL_CONFIG_H */
|