blob: afd7cc89bf8e3c4388ddaf04cf1deede73572a48 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Thomas Chou7fdee742015-11-09 14:45:06 +08002/*
3 * (C) Copyright 2005, Psyent Corporation <www.psyent.com>
4 * Scott McNutt <smcnutt@psyent.com>
5 * (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
Thomas Chou7fdee742015-11-09 14:45:06 +08006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/*
12 * BOARD/CPU
13 */
Thomas Chou7fdee742015-11-09 14:45:06 +080014
15/*
16 * SERIAL
17 */
Thomas Chou8e27fd62015-11-19 21:48:15 +080018#define CONFIG_SYS_NS16550_MEM32
Thomas Chou7fdee742015-11-09 14:45:06 +080019
20/*
21 * Flash
22 */
Thomas Chou7fdee742015-11-09 14:45:06 +080023
24/*
Thomas Chou7fdee742015-11-09 14:45:06 +080025 * BOOTP options
26 */
Thomas Chou7fdee742015-11-09 14:45:06 +080027
28/*
Thomas Chou7fdee742015-11-09 14:45:06 +080029 * MEMORY ORGANIZATION
30 * -Monitor at top of sdram.
31 * -The heap is placed below the monitor
32 * -The stack is placed below the heap (&grows down).
33 */
34#define CONFIG_SYS_SDRAM_BASE 0xc8000000
35#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Thomas Chou7fdee742015-11-09 14:45:06 +080036#define CONFIG_MONITOR_IS_IN_RAM
Thomas Chou7fdee742015-11-09 14:45:06 +080037
Thomas Chou7fdee742015-11-09 14:45:06 +080038#endif /* __CONFIG_H */