blob: 04ce88c9dd9ad3022889baf2a509035f3f147555 [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#define CONFIG_SYS_MAX_FLASH_SECT 1024
Thomas Chou7fdee742015-11-09 14:45:06 +080024
25/*
26 * NET options
27 */
28#define CONFIG_SYS_RX_ETH_BUFFER 0
Thomas Chou7fdee742015-11-09 14:45:06 +080029#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
Thomas Chou7fdee742015-11-09 14:45:06 +080030
31/*
32 * BOOTP options
33 */
34#define CONFIG_BOOTP_BOOTFILESIZE
Thomas Chou7fdee742015-11-09 14:45:06 +080035
36/*
Thomas Chou7fdee742015-11-09 14:45:06 +080037 * MEMORY ORGANIZATION
38 * -Monitor at top of sdram.
39 * -The heap is placed below the monitor
40 * -The stack is placed below the heap (&grows down).
41 */
42#define CONFIG_SYS_SDRAM_BASE 0xc8000000
43#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Thomas Chou7fdee742015-11-09 14:45:06 +080044#define CONFIG_MONITOR_IS_IN_RAM
Marek Vasut307c7152015-12-15 03:09:23 +010045#define CONFIG_SYS_MONITOR_LEN 0x80000 /* Reserve 512k */
Thomas Chou7fdee742015-11-09 14:45:06 +080046#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_SDRAM_BASE + \
47 CONFIG_SYS_SDRAM_SIZE - \
48 CONFIG_SYS_MONITOR_LEN)
Thomas Chou7fdee742015-11-09 14:45:06 +080049
50/*
Marek Vasuta979a6d2015-12-15 03:09:22 +010051 * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above
52 * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the
53 * reset address, no? This will keep the environment in user region
54 * of flash. NOTE: the monitor length must be multiple of sector size
55 * (which is common practice).
56 */
Marek Vasuta979a6d2015-12-15 03:09:22 +010057
Thomas Chou7fdee742015-11-09 14:45:06 +080058
59#endif /* __CONFIG_H */