Merge git://git.denx.de/u-boot-sunxi
[platform/kernel/u-boot.git] / include / configs / ea20.h
1 /*
2  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
3  *
4  * Based on davinci_dvevm.h. Original Copyrights follow:
5  *
6  * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 /*
15  * Board
16  */
17 #define CONFIG_DRIVER_TI_EMAC
18 #define CONFIG_USE_SPIFLASH
19 #define CONFIG_SYS_USE_NAND
20 #define CONFIG_DRIVER_TI_EMAC_USE_RMII
21 #define CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE
22 #define CONFIG_PREBOOT
23
24 /*
25  * SoC Configuration
26  */
27 #define CONFIG_SYS_CLK_FREQ             clk_get(DAVINCI_ARM_CLKID)
28 #define CONFIG_SYS_OSCIN_FREQ           24000000
29 #define CONFIG_SYS_TIMERBASE            DAVINCI_TIMER0_BASE
30 #define CONFIG_SYS_HZ_CLOCK             clk_get(DAVINCI_AUXCLK_CLKID)
31 #define CONFIG_SKIP_LOWLEVEL_INIT
32 #define CONFIG_DA8XX_GPIO
33
34 /*
35  * Memory Info
36  */
37 #define CONFIG_SYS_MALLOC_LEN   (0x10000 + 4*1024*1024) /* malloc() len */
38 #define PHYS_SDRAM_1            DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
39 #define PHYS_SDRAM_1_SIZE       (64 << 20) /* SDRAM size 64MB */
40 #define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
41
42 /* memtest start addr */
43 #define CONFIG_SYS_MEMTEST_START        (PHYS_SDRAM_1 + 0x2000000)
44
45 /* memtest will be run on 16MB */
46 #define CONFIG_SYS_MEMTEST_END  (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
47
48 #define CONFIG_NR_DRAM_BANKS    1 /* we have 1 bank of DRAM */
49
50 /*
51  * Serial Driver info
52  */
53 #define CONFIG_SYS_NS16550_SERIAL
54 #define CONFIG_SYS_NS16550_REG_SIZE     -4      /* NS16550 register size */
55 #define CONFIG_SYS_NS16550_COM1 DAVINCI_UART0_BASE /* Base address of UART0 */
56 #define CONFIG_SYS_NS16550_CLK  clk_get(DAVINCI_UART2_CLKID)
57
58 #define CONFIG_SYS_SPI_BASE             DAVINCI_SPI1_BASE
59 #define CONFIG_SYS_SPI_CLK              clk_get(DAVINCI_SPI1_CLKID)
60 #define CONFIG_SF_DEFAULT_SPEED         30000000
61 #define CONFIG_ENV_SPI_MAX_HZ   CONFIG_SF_DEFAULT_SPEED
62
63 /*
64  * I2C Configuration
65  */
66 #define CONFIG_SYS_I2C
67 #define CONFIG_SYS_I2C_DAVINCI
68 #define CONFIG_SYS_DAVINCI_I2C_SPEED            100000
69 #define CONFIG_SYS_DAVINCI_I2C_SLAVE   10 /* Bogus, master-only in U-Boot */
70
71 /*
72  * Network & Ethernet Configuration
73  */
74 #ifdef CONFIG_DRIVER_TI_EMAC
75 #define CONFIG_MII
76 #define CONFIG_BOOTP_DNS2
77 #define CONFIG_BOOTP_SEND_HOSTNAME
78 #define CONFIG_NET_RETRY_COUNT  10
79 #endif
80
81 #ifdef CONFIG_USE_SPIFLASH
82 #define CONFIG_ENV_SIZE                 (8 << 10)
83 #define CONFIG_ENV_OFFSET               0x80000
84 #define CONFIG_ENV_SECT_SIZE            (64 << 10)
85 #endif
86
87 #if defined(CONFIG_VIDEO)
88 #define CONFIG_VIDEO_DA8XX
89 #define CONFIG_SPLASH_SCREEN_ALIGN
90 #define CONFIG_VIDEO_LOGO
91 #define CONFIG_VIDEO_BMP_RLE8
92 #define CONFIG_VIDEO_BMP_LOGO
93 #endif
94
95 /*
96  * U-Boot general configuration
97  */
98 #define CONFIG_BOOTFILE         "uImage" /* Boot file name */
99 #define CONFIG_SYS_CBSIZE       1024 /* Console I/O Buffer Size */
100 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
101 #define CONFIG_SYS_LOAD_ADDR    (PHYS_SDRAM_1 + 0x700000)
102 #define CONFIG_MX_CYCLIC
103
104 /*
105  * Linux Information
106  */
107 #define LINUX_BOOT_PARAM_ADDR   (PHYS_SDRAM_1 + 0x100)
108 #define CONFIG_CMDLINE_TAG
109 #define CONFIG_SETUP_MEMORY_TAGS
110
111 #ifdef CONFIG_CMD_BDI
112 #define CONFIG_CLOCKS
113 #endif
114
115 #ifndef CONFIG_DRIVER_TI_EMAC
116 #endif
117
118 /* NAND Setup */
119 #ifdef CONFIG_SYS_USE_NAND
120 #define CONFIG_MTD_DEVICE
121 #define CONFIG_MTD_PARTITIONS
122
123 #define CONFIG_NAND_DAVINCI
124 #define CONFIG_SYS_NAND_PAGE_2K
125 #define CONFIG_SYS_NAND_NO_SUBPAGE
126 #define CONFIG_SYS_NAND_CS              2
127 #define CONFIG_SYS_NAND_BASE            DAVINCI_ASYNC_EMIF_DATA_CE2_BASE
128 #undef CONFIG_SYS_NAND_HW_ECC
129 #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
130 #define CONFIG_SYS_NAND_USE_FLASH_BBT
131 #define CONFIG_SYS_MAX_NAND_DEVICE      1 /* Max number of NAND devices */
132 #endif
133
134 /* SPI Flash */
135 #ifdef CONFIG_USE_SPIFLASH
136 #endif
137
138 #if !defined(CONFIG_SYS_USE_NAND) && \
139         !defined(CONFIG_USE_NOR) && \
140         !defined(CONFIG_USE_SPIFLASH)
141 #define CONFIG_ENV_SIZE         (16 << 10)
142 #endif
143
144 /* additions for new relocation code, must added to all boards */
145 #define CONFIG_SYS_SDRAM_BASE           0xc0000000
146 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
147                                         GENERATED_GBL_DATA_SIZE)
148 /*
149  * Default environment and default scripts
150  * to update uboot and load kernel
151  */
152
153 #define CONFIG_HOSTNAME "ea20"
154 #define CONFIG_EXTRA_ENV_SETTINGS                               \
155         "as=3\0"                                                        \
156         "netdev=eth0\0"                                         \
157         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
158                 "nfsroot=${serverip}:${rootpath}\0"                     \
159         "rfsbargs=setenv bootargs root=/dev/nfs rw "                    \
160         "nfsroot=${serverip}:${rfsbpath}\0"                             \
161         "testrfsargs=setenv bootargs root=/dev/nfs rw "         \
162         "nfsroot=${serverip}:${testrfspath}\0"                          \
163         "ramargs=setenv bootargs root=/dev/ram rw initrd="              \
164         "0x${ramdisk_addr_r},4M\0"                                      \
165         "mtdids=nand0=davinci_nand.0\0"                         \
166         "serverip=192.168.5.249\0"                                      \
167         "ipaddr=192.168.5.248\0"                                        \
168         "rootpath=/opt/eldk/arm\0"                                      \
169         "splashpos=230,180\0"                                           \
170         "testrfspath=/opt/eldk/test_arm\0"                              \
171         "nandargs=setenv bootargs rootfstype=ubifs ro chk_data_crc "    \
172         "ubi.mtd=${as} root=ubi0:rootfs\0"                              \
173         "nandrwargs=setenv bootargs rootfstype=ubifs rw chk_data_crc "  \
174         "ubi.mtd=${as} root=ubi0:rootfs\0"                              \
175         "addip_sta=setenv bootargs ${bootargs} "                        \
176                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
177                 ":${hostname}:${netdev}:off panic=1\0"                  \
178         "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0"               \
179         "addip=if test -n ${ipdyn};then run addip_dyn;"         \
180                 "else run addip_sta;fi\0"                               \
181         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
182         "addtty=setenv bootargs ${bootargs}"                            \
183                 " console=${consoledev},${baudrate}n8\0"                \
184         "addmisc=setenv bootargs ${bootargs} ${misc}\0"         \
185         "addmem=setenv bootargs ${bootargs} mem=${memory}\0"            \
186         "consoledev=ttyS0\0"                                            \
187         "loadaddr=c0000014\0"                                           \
188         "memory=32M\0"                                                  \
189         "kernel_addr_r=c0700000\0"                                      \
190         "hostname=" CONFIG_HOSTNAME "\0"                        \
191         "bootfile=" CONFIG_HOSTNAME "/uImage\0"         \
192         "ramdisk_file=" CONFIG_HOSTNAME "/image.ext2\0" \
193         "flash_self=run ramargs addip addtty addmtd addmisc addmem;"    \
194                         "bootm ${kernel_addr_r}\0"                      \
195         "flash_nfs=run nfsargs addip addtty addmtd addmisc addmem;"     \
196                 "bootm ${kernel_addr}\0"                                \
197         "net_nfs=tftp ${kernel_addr_r} ${bootfile}; "                   \
198                 "run nfsargs addip addtty addmtd addmisc addmem;"       \
199                 "bootm ${kernel_addr_r}\0"                              \
200         "net_rfsb=tftp ${kernel_addr_r} ${bootfile}; "                  \
201                 "run rfsbargs addip addtty addmtd addmisc addmem; "     \
202                 "bootm ${kernel_addr_r}\0"                              \
203         "net_testrfs=tftp ${kernel_addr_r} ${bootfile}; "               \
204                 "run testrfsargs addip addtty addmtd addmisc addmem; "  \
205                 "bootm ${kernel_addr_r}\0"                              \
206         "net_self_load=tftp ${kernel_addr_r} ${bootfile};"              \
207                 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0"             \
208         "nand_nand=ubi part nand0,${as};ubifsmount ubi:rootfs;"         \
209                 "ubifsload ${kernel_addr_r} /boot/uImage;"              \
210                 "ubifsumount; run nandargs addip addtty "               \
211                 "addmtd addmisc addmem;clrlogo;"                        \
212                 "bootm ${kernel_addr_r}\0"                              \
213         "nand_nandrw=ubi part nand0,${as};ubifsmount ubi:rootfs;"       \
214                 "ubifsload ${kernel_addr_r} /boot/uImage;"              \
215                 "ubifsumount; run nandrwargs addip addtty "             \
216                 "addmtd addmisc addmem;clrlogo;"                        \
217                 "bootm ${kernel_addr_r}\0"                              \
218         "net_nandrw=tftp ${kernel_addr_r} ${bootfile}; run nandrwargs"  \
219                 " addip addtty addmtd addmisc addmem;"                  \
220                 "clrlogo;bootm ${kernel_addr_r}\0"                      \
221         "u-boot=" CONFIG_HOSTNAME "/u-boot.bin\0"               \
222         "load_magic=if sf probe 0;then sf "                             \
223                 "read c0000000 0x10000 0x60000;fi\0"                    \
224         "load_nand=ubi part nand0,${as};ubifsmount ubi:rootfs;"         \
225                 "if ubifsload c0000014 /boot/u-boot.bin;"               \
226                 "then mw c0000008 ${filesize};else echo Error reading"  \
227                 " u-boot from nand!;fi\0"                               \
228         "load_net=if sf probe 0;then sf read c0000000 0x10000 " \
229                 "0x60000;tftp c0000014 ${u-boot};"                      \
230                 "mw c0000008 ${filesize};fi\0"                          \
231         "upd=if sf probe 0;then sf erase 10000 60000;"                  \
232                 "sf write c0000000 10000 60000;fi\0"                    \
233         "ublupdate=if tftp C0700000 ${ublname};then sf probe 0; "       \
234                 "sf erase 0 10000;"                                     \
235                 "sf write 0xc0700000 0 ${filesize};fi\0"                \
236         "ubootupd_net=if run load_net;then echo Updating u-boot;"       \
237                 "if run upd; then echo U-Boot updated;"         \
238                         "else echo Error updating u-boot !;"            \
239                         "echo Board without bootloader !!;"             \
240                 "fi;"                                                   \
241                 "else echo U-Boot not downloaded..exiting;fi\0" \
242         "ubootupd_nand=echo run load_magic,run load_nand,run upd;\0"    \
243         "bootcmd=run net_testrfs\0"
244
245 #include <asm/arch/hardware.h>
246
247 #endif /* __CONFIG_H */