]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/uniphier-common.h
Merge branch 'u-boot-marvell/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / include / configs / uniphier-common.h
1 /*
2  * Copyright (C) 2012-2014 Panasonic Corporation
3  *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /* U-boot - Common settings for UniPhier Family */
9
10 #ifndef __CONFIG_UNIPHIER_COMMON_H__
11 #define __CONFIG_UNIPHIER_COMMON_H__
12
13 #if defined(CONFIG_PFC_MICRO_SUPPORT_CARD) &&   \
14                                 defined(CONFIG_DCC_MICRO_SUPPORT_CARD)
15 # error "Both CONFIG_PFC_MICRO_SUPPORT_CARD and CONFIG_DCC_MICRO_SUPPORT_CARD \
16 are defined. Select only one of them."
17 #endif
18
19 /*
20  * Support card address map
21  */
22 #if defined(CONFIG_PFC_MICRO_SUPPORT_CARD)
23 # define CONFIG_SUPPORT_CARD_BASE       0x03f00000
24 # define CONFIG_SUPPORT_CARD_ETHER_BASE (CONFIG_SUPPORT_CARD_BASE + 0x00000000)
25 # define CONFIG_SUPPORT_CARD_LED_BASE   (CONFIG_SUPPORT_CARD_BASE + 0x00090000)
26 # define CONFIG_SUPPORT_CARD_UART_BASE  (CONFIG_SUPPORT_CARD_BASE + 0x000b0000)
27 #endif
28
29 #if defined(CONFIG_DCC_MICRO_SUPPORT_CARD)
30 # define CONFIG_SUPPORT_CARD_BASE       0x08000000
31 # define CONFIG_SUPPORT_CARD_ETHER_BASE (CONFIG_SUPPORT_CARD_BASE + 0x00000000)
32 # define CONFIG_SUPPORT_CARD_LED_BASE   (CONFIG_SUPPORT_CARD_BASE + 0x00401630)
33 # define CONFIG_SUPPORT_CARD_UART_BASE  (CONFIG_SUPPORT_CARD_BASE + 0x00200000)
34 #endif
35
36 #define CONFIG_SYS_NS16550
37 #define CONFIG_SYS_NS16550_COM1         CONFIG_SUPPORT_CARD_UART_BASE
38 #define CONFIG_SYS_NS16550_CLK          12288000
39 #define CONFIG_SYS_NS16550_REG_SIZE     -2
40
41 #define CONFIG_SMC911X_BASE             CONFIG_SUPPORT_CARD_ETHER_BASE
42 #define CONFIG_SMC911X_32_BIT
43
44 #define CONFIG_SYS_UNIPHIER_SERIAL_BASE0 0x54006800
45 #define CONFIG_SYS_UNIPHIER_SERIAL_BASE1 0x54006900
46 #define CONFIG_SYS_UNIPHIER_SERIAL_BASE2 0x54006a00
47 #define CONFIG_SYS_UNIPHIER_SERIAL_BASE3 0x54006b00
48
49 /*-----------------------------------------------------------------------
50  * MMU and Cache Setting
51  *----------------------------------------------------------------------*/
52
53 /* Comment out the following to enable L1 cache */
54 /* #define CONFIG_SYS_ICACHE_OFF */
55 /* #define CONFIG_SYS_DCACHE_OFF */
56
57 /* Comment out the following to enable L2 cache */
58 #define CONFIG_UNIPHIER_L2CACHE_ON
59
60 #define CONFIG_DISPLAY_CPUINFO
61 #define CONFIG_DISPLAY_BOARDINFO
62 #define CONFIG_BOARD_LATE_INIT
63
64 #define CONFIG_SYS_MALLOC_LEN           (4 * 1024 * 1024)
65
66 #define CONFIG_TIMESTAMP
67
68 /* FLASH related */
69 #define CONFIG_MTD_DEVICE
70
71 /*
72  * uncomment the following to disable FLASH related code.
73  */
74 /* #define CONFIG_SYS_NO_FLASH */
75
76 #define CONFIG_FLASH_CFI_DRIVER
77 #define CONFIG_SYS_FLASH_CFI
78
79 #define CONFIG_SYS_MAX_FLASH_SECT       256
80 #define CONFIG_SYS_MONITOR_BASE         0
81 #define CONFIG_SYS_FLASH_BASE           0
82
83 /*
84  * flash_toggle does not work for out supoort card.
85  * We need to use flash_status_poll.
86  */
87 #define CONFIG_SYS_CFI_FLASH_STATUS_POLL
88
89 #define CONFIG_FLASH_SHOW_PROGRESS      45 /* count down from 45/5: 9..1 */
90
91 #if defined(CONFIG_PFC_MICRO_SUPPORT_CARD)
92 # define CONFIG_SYS_MAX_FLASH_BANKS     1
93 # define CONFIG_SYS_FLASH_BANKS_LIST    {0x00000000}
94 # define CONFIG_SYS_FLASH_BANKS_SIZES   {0x02000000}
95 #endif
96
97 #if defined(CONFIG_DCC_MICRO_SUPPORT_CARD)
98 # define CONFIG_SYS_MAX_FLASH_BANKS     1
99 # define CONFIG_SYS_FLASH_BANKS_LIST    {0x04000000}
100 # define CONFIG_SYS_FLASH_BANKS_SIZES   {0x04000000}
101 #endif
102
103 /* serial console configuration */
104 #define CONFIG_BAUDRATE                 115200
105
106 #define CONFIG_SYS_GENERIC_BOARD
107
108 #if !defined(CONFIG_SPL_BUILD)
109 #define CONFIG_USE_ARCH_MEMSET
110 #define CONFIG_USE_ARCH_MEMCPY
111 #endif
112
113 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
114
115 #define CONFIG_CMDLINE_EDITING          /* add command line history     */
116 #define CONFIG_SYS_HUSH_PARSER          /* use "hush" command parser */
117 #define CONFIG_SYS_CBSIZE               1024    /* Console I/O Buffer Size */
118 /* Print Buffer Size */
119 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
120 #define CONFIG_SYS_MAXARGS              16      /* max number of command */
121 /* Boot Argument Buffer Size */
122 #define CONFIG_SYS_BARGSIZE             (CONFIG_SYS_CBSIZE)
123
124 #define CONFIG_CONS_INDEX               1
125
126 /*
127  * For NAND booting the environment is embedded in the U-Boot image. Please take
128  * look at the file board/amcc/canyonlands/u-boot-nand.lds for details.
129  */
130 /* #define CONFIG_ENV_IS_IN_NAND */
131 #define CONFIG_ENV_IS_NOWHERE
132 #define CONFIG_ENV_SIZE                         0x2000
133 #define CONFIG_ENV_OFFSET                       0x0
134 /* #define CONFIG_ENV_OFFSET_REDUND     (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) */
135
136 /* Time clock 1MHz */
137 #define CONFIG_SYS_TIMER_RATE                   1000000
138
139 /*
140  * By default, ARP timeout is 5 sec.
141  * The first ARP request does not seem to work.
142  * So we need to retry ARP request anyway.
143  * We want to shrink the interval until the second ARP request.
144  */
145 #define CONFIG_ARP_TIMEOUT      500UL  /* 0.5 msec */
146
147 /*
148  * Command line configuration.
149  */
150 #include <config_cmd_default.h>
151
152 #define CONFIG_CMD_PING
153 #define CONFIG_CMD_TIME
154 #define CONFIG_CMD_NAND         /* NAND flash suppport */
155
156 #define CONFIG_SYS_MAX_NAND_DEVICE                      1
157 #define CONFIG_SYS_NAND_MAX_CHIPS                       2
158 #define CONFIG_SYS_NAND_ONFI_DETECTION
159
160 #define CONFIG_NAND_DENALI_ECC_SIZE                     1024
161
162 #define CONFIG_SYS_NAND_REGS_BASE                       0x68100000
163 #define CONFIG_SYS_NAND_DATA_BASE                       0x68000000
164
165 #define CONFIG_SYS_NAND_BASE            (CONFIG_SYS_NAND_DATA_BASE + 0x10)
166
167 #define CONFIG_SYS_NAND_USE_FLASH_BBT
168 #define CONFIG_SYS_NAND_BAD_BLOCK_POS                   0
169
170 /* memtest works on */
171 #define CONFIG_SYS_MEMTEST_START        CONFIG_SYS_SDRAM_BASE
172 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_SDRAM_BASE + 0x01000000)
173
174 #define CONFIG_BOOTDELAY                        3
175 #define CONFIG_ZERO_BOOTDELAY_CHECK     /* check for keypress on bootdelay==0 */
176 #define CONFIG_AUTOBOOT_KEYED                   1
177 #define CONFIG_AUTOBOOT_PROMPT  \
178         "Press SPACE to abort autoboot in %d seconds\n", bootdelay
179 #define CONFIG_AUTOBOOT_DELAY_STR               "d"
180 #define CONFIG_AUTOBOOT_STOP_STR                " "
181
182 /*
183  * Network Configuration
184  */
185 #define CONFIG_ETHADDR                  00:21:83:24:00:00
186 #define CONFIG_SERVERIP                 192.168.11.1
187 #define CONFIG_IPADDR                   192.168.11.10
188 #define CONFIG_GATEWAYIP                192.168.11.1
189 #define CONFIG_NETMASK                  255.255.255.0
190
191 #define CONFIG_LOADADDR                 0x84000000
192 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
193 #define CONFIG_BOOTFILE                 "fit.itb"
194
195 #define CONFIG_CMDLINE_EDITING          /* add command line history     */
196
197 #define CONFIG_BOOTCOMMAND              "run $bootmode"
198
199 #define CONFIG_ROOTPATH                 "/nfs/root/path"
200 #define CONFIG_NFSBOOTCOMMAND                                           \
201         "setenv bootargs $bootargs root=/dev/nfs rw "                   \
202         "nfsroot=$serverip:$rootpath "                                  \
203         "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off;" \
204         "tftpboot; bootm;"
205
206 #define CONFIG_BOOTARGS         " user_debug=0x1f init=/sbin/init"
207
208 #define CONFIG_EXTRA_ENV_SETTINGS               \
209         "netdev=eth0\0"                         \
210         "image_offset=0x00080000\0"             \
211         "image_size=0x00f00000\0"               \
212         "verify=n\0"                            \
213         "autostart=yes\0"                       \
214         "norboot=run add_default_bootargs;"                             \
215                 "bootm $image_offset\0"                                 \
216         "nandboot=run add_default_bootargs;"                            \
217                 "nand read $loadaddr $image_offset $image_size;"        \
218                 "bootm\0"                                               \
219         "add_default_bootargs=setenv bootargs $bootargs"                \
220                 " console=ttyS0,$baudrate\0"                            \
221
222 /* FIT support */
223 #define CONFIG_FIT
224 #define CONFIG_FIT_VERBOSE      1 /* enable fit_format_{error,warning}() */
225
226 /* Open Firmware flat tree */
227 #define CONFIG_OF_LIBFDT
228
229 #define CONFIG_HAVE_ARM_SECURE
230
231 /* Memory Size & Mapping */
232 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SDRAM0_BASE
233
234 #if CONFIG_SDRAM0_BASE + CONFIG_SDRAM0_SIZE >= CONFIG_SDRAM1_BASE
235 /* Thre is no memory hole */
236 #define CONFIG_NR_DRAM_BANKS            1
237 #define CONFIG_SYS_SDRAM_SIZE   (CONFIG_SDRAM0_SIZE + CONFIG_SDRAM1_SIZE)
238 #else
239 #define CONFIG_NR_DRAM_BANKS            2
240 #define CONFIG_SYS_SDRAM_SIZE   (CONFIG_SDRAM0_SIZE)
241 #endif
242
243 #define CONFIG_SYS_TEXT_BASE            0x84000000
244
245 #if defined(CONFIG_SPL_BUILD)
246 #define CONFIG_BOARD_POSTCLK_INIT
247 #else
248 #define CONFIG_SKIP_LOWLEVEL_INIT
249 #endif
250
251 #define CONFIG_SYS_SPL_MALLOC_START     (0x0ff00000)
252 #define CONFIG_SYS_SPL_MALLOC_SIZE      (0x00004000)
253
254 #define CONFIG_SYS_INIT_SP_ADDR         (0x0ff08000)
255
256 #define CONFIG_SPL_FRAMEWORK
257 #define CONFIG_SPL_NAND_SUPPORT
258
259 #define CONFIG_SPL_LIBCOMMON_SUPPORT    /* for mem_malloc_init */
260 #define CONFIG_SPL_LIBGENERIC_SUPPORT
261
262 #define CONFIG_SPL_BOARD_INIT
263
264 #define CONFIG_SYS_NAND_U_BOOT_OFFS             0x10000
265
266 #endif /* __CONFIG_UNIPHIER_COMMON_H__ */