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