mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-23 11:33:32 +00:00
22 lines
458 B
C
22 lines
458 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONFIG_H
|
||
|
#define __CONFIG_H
|
||
|
|
||
|
#include <linux/sizes.h>
|
||
|
|
||
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
||
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
|
||
|
|
||
|
#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
|
||
|
|
||
|
#define CONFIG_SYS_MALLOC_LEN SZ_8M
|
||
|
|
||
|
/* Environment options */
|
||
|
#define CONFIG_ENV_SIZE SZ_4K
|
||
|
|
||
|
#endif /* __CONFIG_H */
|