mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
e52fca2236
This converts the following to Kconfig: CONFIG_MONITOR_IS_IN_RAM As part of this, reword some of the documentation slightly to reflect that this is in Kconfig and not a define now. Signed-off-by: Tom Rini <trini@konsulko.com>
36 lines
579 B
C
36 lines
579 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2005, Psyent Corporation <www.psyent.com>
|
|
* Scott McNutt <smcnutt@psyent.com>
|
|
* (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
/*
|
|
* BOARD/CPU
|
|
*/
|
|
|
|
/*
|
|
* SERIAL
|
|
*/
|
|
|
|
/*
|
|
* Flash
|
|
*/
|
|
|
|
/*
|
|
* BOOTP options
|
|
*/
|
|
|
|
/*
|
|
* MEMORY ORGANIZATION
|
|
* -Monitor at top of sdram.
|
|
* -The heap is placed below the monitor
|
|
* -The stack is placed below the heap (&grows down).
|
|
*/
|
|
#define CFG_SYS_SDRAM_BASE 0xc8000000
|
|
#define CFG_SYS_SDRAM_SIZE 0x08000000
|
|
|
|
#endif /* __CONFIG_H */
|