mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
c45568cc4e
This converts the following to Kconfig: CONFIG_SYS_BOOTM_LEN As part of this, rework error handling in boot/bootm.c so that we pass the buffer size to handle_decomp_error as CONFIG_SYS_BOOTM_LEN will not be available to host tools but we do know the size that we passed to malloc(). Cc: Soeren Moch <smoch@web.de> Signed-off-by: Tom Rini <trini@konsulko.com>
64 lines
1,015 B
C
64 lines
1,015 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
|
|
*/
|
|
|
|
#ifndef _MALTA_CONFIG_H
|
|
#define _MALTA_CONFIG_H
|
|
|
|
/*
|
|
* System configuration
|
|
*/
|
|
#define CONFIG_MALTA
|
|
|
|
#define CONFIG_MEMSIZE_IN_BYTES
|
|
|
|
#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
|
|
|
|
/*
|
|
* CPU Configuration
|
|
*/
|
|
#define CONFIG_SYS_MHZ 250 /* arbitrary value */
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000)
|
|
|
|
/*
|
|
* Memory map
|
|
*/
|
|
|
|
#ifdef CONFIG_64BIT
|
|
# define CONFIG_SYS_SDRAM_BASE 0xffffffff80000000
|
|
#else
|
|
# define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
#endif
|
|
#define CONFIG_SYS_MEM_SIZE (256 * 1024 * 1024)
|
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET 0x400000
|
|
|
|
/*
|
|
* Serial driver
|
|
*/
|
|
#define CONFIG_SYS_NS16550_PORT_MAPPED
|
|
|
|
/*
|
|
* Flash configuration
|
|
*/
|
|
#ifdef CONFIG_64BIT
|
|
# define CONFIG_SYS_FLASH_BASE 0xffffffffbe000000
|
|
#else
|
|
# define CONFIG_SYS_FLASH_BASE 0xbe000000
|
|
#endif
|
|
#define CONFIG_SYS_MAX_FLASH_SECT 128
|
|
|
|
/*
|
|
* Environment
|
|
*/
|
|
|
|
/*
|
|
* IDE/ATA
|
|
*/
|
|
|
|
/*
|
|
* Commands
|
|
*/
|
|
|
|
#endif /* _MALTA_CONFIG_H */
|