7287a779bc7e880832fa071b254b9528c66eebd6
[platform/kernel/u-boot.git] / include / configs / flea3.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2011, Stefano Babic <sbabic@denx.de>
4  *
5  * (C) Copyright 2008-2010 Freescale Semiconductor, Inc.
6  *
7  * Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
8  *
9  * Configuration for the flea3 board.
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #include <asm/arch/imx-regs.h>
16
17  /* High Level Configuration Options */
18 #define CONFIG_MX35
19
20 #define CONFIG_MACH_TYPE                MACH_TYPE_FLEA3
21
22 /* Set TEXT at the beginning of the NOR flash */
23
24 /* This is required to setup the ESDC controller */
25
26 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
27 #define CONFIG_REVISION_TAG
28 #define CONFIG_SETUP_MEMORY_TAGS
29 #define CONFIG_INITRD_TAG
30
31 /*
32  * Size of malloc() pool
33  */
34 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 1024 * 1024)
35
36 /*
37  * Hardware drivers
38  */
39 #define CONFIG_SYS_SPD_BUS_NUM          2 /* I2C3 */
40
41 /*
42  * UART (console)
43  */
44 #define CONFIG_MXC_UART_BASE    UART3_BASE
45
46 /*
47  * Command definition
48  */
49
50 #define CONFIG_NET_RETRY_COUNT  100
51
52 /*
53  * Ethernet on SOC (FEC)
54  */
55 #define CONFIG_FEC_MXC
56 #define IMX_FEC_BASE    FEC_BASE_ADDR
57 #define CONFIG_FEC_MXC_PHYADDR  0x1
58
59 #define CONFIG_ARP_TIMEOUT      200UL
60
61 /*
62  * Miscellaneous configurable options
63  */
64
65 #define CONFIG_SYS_CBSIZE       512     /* Console I/O Buffer Size */
66 /* Print Buffer Size */
67 #define CONFIG_SYS_MAXARGS      32      /* max number of command args */
68
69 /*
70  * Physical Memory Map
71  */
72 #define PHYS_SDRAM_1            CSD0_BASE_ADDR
73 #define PHYS_SDRAM_1_SIZE       (128 * 1024 * 1024)
74
75 #define CONFIG_SYS_SDRAM_BASE           CSD0_BASE_ADDR
76 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR + 0x10000)
77 #define CONFIG_SYS_INIT_RAM_SIZE                (IRAM_SIZE / 2)
78 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_SIZE - \
79                                         GENERATED_GBL_DATA_SIZE)
80 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
81                                         CONFIG_SYS_GBL_DATA_OFFSET)
82
83 /*
84  * MTD Command for mtdparts
85  */
86
87 /*
88  * FLASH and environment organization
89  */
90 #define CONFIG_SYS_FLASH_BASE           CS0_BASE_ADDR
91 #define CONFIG_SYS_MAX_FLASH_BANKS 1    /* max number of memory banks */
92 #define CONFIG_SYS_MAX_FLASH_SECT 512   /* max number of sectors on one chip */
93 /* Monitor at beginning of flash */
94 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
95 #define CONFIG_SYS_MONITOR_LEN          (512 * 1024)
96
97 /* Address and size of Redundant Environment Sector     */
98
99 /*
100  * CFI FLASH driver setup
101  */
102
103 /* A non-standard buffered write algorithm */
104
105 /*
106  * NAND FLASH driver setup
107  */
108 #define CONFIG_MXC_NAND_REGS_BASE       (NFC_BASE_ADDR)
109 #define CONFIG_SYS_MAX_NAND_DEVICE      1
110 #define CONFIG_SYS_NAND_BASE            (NFC_BASE_ADDR)
111 #define CONFIG_MXC_NAND_HWECC
112 #define CONFIG_SYS_NAND_LARGEPAGE
113
114 /*
115  * Default environment and default scripts
116  * to update uboot and load kernel
117  */
118
119 #define CONFIG_HOSTNAME "flea3"
120 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
121         "netdev=eth0\0"                                                 \
122         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
123                 "nfsroot=${serverip}:${rootpath}\0"                     \
124         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
125         "addip_sta=setenv bootargs ${bootargs} "                        \
126                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
127                 ":${hostname}:${netdev}:off panic=1\0"                  \
128         "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0"               \
129         "addip=if test -n ${ipdyn};then run addip_dyn;"                 \
130                 "else run addip_sta;fi\0"                               \
131         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
132         "addtty=setenv bootargs ${bootargs}"                            \
133                 " console=ttymxc2,${baudrate}\0"                        \
134         "addmisc=setenv bootargs ${bootargs} ${misc}\0"                 \
135         "loadaddr=80800000\0"                                           \
136         "kernel_addr_r=80800000\0"                                      \
137         "hostname=" CONFIG_HOSTNAME "\0"                        \
138         "bootfile=" CONFIG_HOSTNAME "/uImage\0"         \
139         "ramdisk_file=" CONFIG_HOSTNAME "/uRamdisk\0"   \
140         "flash_self=run ramargs addip addtty addmtd addmisc;"           \
141                 "bootm ${kernel_addr} ${ramdisk_addr}\0"                \
142         "flash_nfs=run nfsargs addip addtty addmtd addmisc;"            \
143                 "bootm ${kernel_addr}\0"                                \
144         "net_nfs=tftp ${kernel_addr_r} ${bootfile}; "                   \
145                 "run nfsargs addip addtty addmtd addmisc;"              \
146                 "bootm ${kernel_addr_r}\0"                              \
147         "net_self_load=tftp ${kernel_addr_r} ${bootfile};"              \
148                 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0"             \
149         "net_self=if run net_self_load;then "                           \
150                 "run ramargs addip addtty addmtd addmisc;"              \
151                 "bootm ${kernel_addr_r} ${ramdisk_addr_r};"             \
152                 "else echo Images not loades;fi\0"                      \
153         "u-boot=" CONFIG_HOSTNAME "/u-boot.bin\0"               \
154         "load=tftp ${loadaddr} ${u-boot}\0"                             \
155         "uboot_addr=" __stringify(CONFIG_SYS_MONITOR_BASE) "\0"         \
156         "update=protect off ${uboot_addr} +80000;"                      \
157                 "erase ${uboot_addr} +80000;"                           \
158                 "cp.b ${loadaddr} ${uboot_addr} ${filesize}\0"          \
159         "upd=if run load;then echo Updating u-boot;if run update;"      \
160                 "then echo U-Boot updated;"                             \
161                         "else echo Error updating u-boot !;"            \
162                         "echo Board without bootloader !!;"             \
163                 "fi;"                                                   \
164                 "else echo U-Boot not downloaded..exiting;fi\0"         \
165         "bootcmd=run net_nfs\0"
166
167 #endif                          /* __CONFIG_H */