blob: 9db0f0efb15051617ee918712f84c92d585a3996 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Thomas Chou7ffbbf52010-04-21 08:40:59 +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 Chou7ffbbf52010-04-21 08:40:59 +08006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/*
12 * BOARD/CPU
13 */
Thomas Chou7ffbbf52010-04-21 08:40:59 +080014
15/*
16 * SERIAL
17 */
Thomas Chou7ffbbf52010-04-21 08:40:59 +080018
19/*
Thomas Chou4d7d92f2015-10-23 14:55:36 +080020 * CFI Flash
21 */
Thomas Chou4d7d92f2015-10-23 14:55:36 +080022#define CONFIG_SYS_CFI_FLASH_STATUS_POLL /* fix amd flash issue */
Thomas Chou4d7d92f2015-10-23 14:55:36 +080023#define CONFIG_SYS_MAX_FLASH_SECT 512
24
25/*
Thomas Chou7ffbbf52010-04-21 08:40:59 +080026 * MEMORY ORGANIZATION
Thomas Choufe06c182012-04-23 10:55:02 +080027 * -Monitor at top of sdram.
28 * -The heap is placed below the monitor
29 * -The stack is placed below the heap (&grows down).
Thomas Chou7ffbbf52010-04-21 08:40:59 +080030 */
Thomas Chou4d7d92f2015-10-23 14:55:36 +080031#define CONFIG_SYS_SDRAM_BASE 0xD0000000
32#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Thomas Chou7ffbbf52010-04-21 08:40:59 +080033#define CONFIG_MONITOR_IS_IN_RAM
Marek Vasut307c7152015-12-15 03:09:23 +010034#define CONFIG_SYS_MONITOR_LEN 0x80000 /* Reserve 512k */
Thomas Chou7ffbbf52010-04-21 08:40:59 +080035
Thomas Chou7ffbbf52010-04-21 08:40:59 +080036#endif /* __CONFIG_H */