]> git.sur5r.net Git - u-boot/blob - include/configs/nios2-generic.h
nios2: zap nios2-generic board dir
[u-boot] / include / configs / nios2-generic.h
1 /*
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  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 /*
13  * BOARD/CPU
14  */
15 #define CONFIG_DISPLAY_CPUINFO
16 #define CONFIG_DISPLAY_BOARDINFO_LATE
17
18 /*
19  * SERIAL
20  */
21 #define CONFIG_BAUDRATE                 115200
22 #define CONFIG_SYS_CONSOLE_INFO_QUIET   /* Suppress console info */
23
24 /*
25  * 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 /*
37  * 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 /*
45  * FDT options
46  */
47 #define CONFIG_OF_LIBFDT
48 #define CONFIG_OF_BOARD_SETUP
49 #define CONFIG_LMB
50
51 /*
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
60 #define CONFIG_ENV_SIZE                 0x20000 /* 128k, 1 sector */
61 #define CONFIG_ENV_OVERWRITE            /* Serial change Ok     */
62 #define CONFIG_ENV_ADDR                 0xe2840000
63
64 /*
65  * MEMORY ORGANIZATION
66  * -Monitor at top of sdram.
67  * -The heap is placed below the monitor
68  * -The stack is placed below the heap (&grows down).
69  */
70 #define CONFIG_SYS_SDRAM_BASE           0xD0000000
71 #define CONFIG_SYS_SDRAM_SIZE           0x08000000
72 #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)
77 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 0x20000)
78 #define CONFIG_SYS_MALLOC_BASE          (CONFIG_SYS_MONITOR_BASE - \
79                                          CONFIG_SYS_MALLOC_LEN)
80 #define CONFIG_SYS_INIT_SP              CONFIG_SYS_MALLOC_BASE
81
82 /*
83  * MISC
84  */
85 #define CONFIG_SYS_LONGHELP             /* Provide extended help */
86 #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
96 #define CONFIG_CMD_GPIO
97
98 #endif /* __CONFIG_H */