blob: 8cff3ded1cc0564b1e086caf5fed3f9d38ba8fb1 [file] [log] [blame]
Thomas Chou7ffbbf52010-04-21 08:40:59 +08001/*
2 * (C) Copyright 2005, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 * (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
5 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02006 * SPDX-License-Identifier: GPL-2.0+
Thomas Chou7ffbbf52010-04-21 08:40:59 +08007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
12/*
13 * BOARD/CPU
14 */
Thomas Choucce3e752014-08-22 11:36:47 +080015#define CONFIG_DISPLAY_CPUINFO
Thomas Chou36b9c9a2015-10-14 08:43:31 +080016#define CONFIG_DISPLAY_BOARDINFO_LATE
Thomas Chou7ffbbf52010-04-21 08:40:59 +080017
18/*
19 * SERIAL
20 */
Thomas Chou6917a5d2015-10-21 21:26:54 +080021#define CONFIG_BAUDRATE 115200
Thomas Chou7ffbbf52010-04-21 08:40:59 +080022#define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console info */
23
24/*
Thomas Chou4d7d92f2015-10-23 14:55:36 +080025 * CFI Flash
26 */
27#define CONFIG_SYS_FLASH_BASE 0xe0000000
28#define CONFIG_FLASH_CFI_DRIVER
29#define CONFIG_SYS_CFI_FLASH_STATUS_POLL /* fix amd flash issue */
30#define CONFIG_SYS_FLASH_CFI
31#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
32#define CONFIG_SYS_FLASH_PROTECTION
33#define CONFIG_SYS_MAX_FLASH_BANKS 1
34#define CONFIG_SYS_MAX_FLASH_SECT 512
35
36/*
Thomas Chou7ffbbf52010-04-21 08:40:59 +080037 * BOOTP options
38 */
39#define CONFIG_BOOTP_BOOTFILESIZE
40#define CONFIG_BOOTP_BOOTPATH
41#define CONFIG_BOOTP_GATEWAY
42#define CONFIG_BOOTP_HOSTNAME
43
44/*
Thomas Chou44d3cf42015-08-26 21:24:35 +080045 * FDT options
Thomas Chou7ffbbf52010-04-21 08:40:59 +080046 */
Thomas Chou2f8e2562014-08-30 17:45:23 +080047#define CONFIG_OF_LIBFDT
48#define CONFIG_OF_BOARD_SETUP
49#define CONFIG_LMB
50
Thomas Chou7ffbbf52010-04-21 08:40:59 +080051/*
52 * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above
53 * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the
54 * reset address, no? This will keep the environment in user region
55 * of flash. NOTE: the monitor length must be multiple of sector size
56 * (which is common practice).
57 */
58#define CONFIG_ENV_IS_IN_FLASH
59
Thomas Chou4d7d92f2015-10-23 14:55:36 +080060#define CONFIG_ENV_SIZE 0x20000 /* 128k, 1 sector */
Thomas Chou7ffbbf52010-04-21 08:40:59 +080061#define CONFIG_ENV_OVERWRITE /* Serial change Ok */
Thomas Chou4d7d92f2015-10-23 14:55:36 +080062#define CONFIG_ENV_ADDR 0xe2840000
Thomas Chou7ffbbf52010-04-21 08:40:59 +080063
64/*
65 * MEMORY ORGANIZATION
Thomas Choufe06c182012-04-23 10:55:02 +080066 * -Monitor at top of sdram.
67 * -The heap is placed below the monitor
68 * -The stack is placed below the heap (&grows down).
Thomas Chou7ffbbf52010-04-21 08:40:59 +080069 */
Thomas Chou4d7d92f2015-10-23 14:55:36 +080070#define CONFIG_SYS_SDRAM_BASE 0xD0000000
71#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Thomas Chou7ffbbf52010-04-21 08:40:59 +080072#define CONFIG_MONITOR_IS_IN_RAM
73#define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256k */
74#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_SDRAM_BASE + \
75 CONFIG_SYS_SDRAM_SIZE - \
76 CONFIG_SYS_MONITOR_LEN)
Thomas Chou7ffbbf52010-04-21 08:40:59 +080077#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 0x20000)
78#define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - \
79 CONFIG_SYS_MALLOC_LEN)
Thomas Choufe06c182012-04-23 10:55:02 +080080#define CONFIG_SYS_INIT_SP CONFIG_SYS_MALLOC_BASE
Thomas Chou7ffbbf52010-04-21 08:40:59 +080081
82/*
83 * MISC
84 */
85#define CONFIG_SYS_LONGHELP /* Provide extended help */
Thomas Chou7ffbbf52010-04-21 08:40:59 +080086#define CONFIG_SYS_CBSIZE 256 /* Console I/O buf size */
87#define CONFIG_SYS_MAXARGS 16 /* Max command args */
88#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Bootarg buf size */
89#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
90 sizeof(CONFIG_SYS_PROMPT) + \
91 16) /* Print buf size */
92#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
93#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
94#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - 0x20000)
95#define CONFIG_CMDLINE_EDITING
Thomas Choufb1a4bf2015-10-21 21:33:45 +080096#define CONFIG_CMD_GPIO
Thomas Chou7ffbbf52010-04-21 08:40:59 +080097
Thomas Chou7ffbbf52010-04-21 08:40:59 +080098#endif /* __CONFIG_H */