]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/apx4devkit.h
avr32: delete non generic board mimc200
[karo-tx-uboot.git] / include / configs / apx4devkit.h
1 /*
2  * Copyright (C) 2012 Bluegiga Technologies Oy
3  *
4  * Authors:
5  * Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>
6  * Lauri Hintsala <lauri.hintsala@bluegiga.com>
7  *
8  * Based on m28evk.h:
9  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
10  * on behalf of DENX Software Engineering GmbH
11  *
12  * SPDX-License-Identifier:     GPL-2.0+
13  */
14 #ifndef __CONFIGS_APX4DEVKIT_H__
15 #define __CONFIGS_APX4DEVKIT_H__
16
17 /* System configurations */
18 #define MACH_TYPE_APX4DEVKIT    3712
19 #define CONFIG_MACH_TYPE        MACH_TYPE_APX4DEVKIT
20
21 /* U-Boot Commands */
22 #define CONFIG_SYS_NO_FLASH
23 #include <config_cmd_default.h>
24 #define CONFIG_DISPLAY_CPUINFO
25 #define CONFIG_DOS_PARTITION
26
27 #define CONFIG_CMD_CACHE
28 #define CONFIG_CMD_DATE
29 #define CONFIG_CMD_DHCP
30 #define CONFIG_CMD_EXT2
31 #define CONFIG_CMD_FAT
32 #define CONFIG_CMD_I2C
33 #define CONFIG_CMD_MII
34 #define CONFIG_CMD_MMC
35 #define CONFIG_CMD_NAND
36 #define CONFIG_CMD_NFS
37 #define CONFIG_CMD_PING
38 #define CONFIG_CMD_SAVEENV
39 #define CONFIG_CMD_USB
40
41 /* Memory configuration */
42 #define CONFIG_NR_DRAM_BANKS            1               /* 1 bank of DRAM */
43 #define PHYS_SDRAM_1                    0x40000000      /* Base address */
44 #define PHYS_SDRAM_1_SIZE               0x20000000      /* Max 512 MB RAM */
45 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
46
47
48 /* Environment */
49 #define CONFIG_ENV_OVERWRITE
50 #define CONFIG_ENV_IS_IN_NAND
51
52 /* Environment is in MMC */
53 #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
54 #define CONFIG_ENV_OFFSET               (256 * 1024)
55 #define CONFIG_ENV_SIZE                 (16 * 1024)
56 #define CONFIG_SYS_MMC_ENV_DEV          0
57 #endif
58
59 /* Environment is in NAND */
60 #if defined(CONFIG_CMD_NAND) && defined(CONFIG_ENV_IS_IN_NAND)
61 #define CONFIG_ENV_SECT_SIZE            (128 * 1024)
62 #define CONFIG_ENV_SIZE                 (128 * 1024)
63 #define CONFIG_ENV_SIZE_REDUND          CONFIG_ENV_SIZE
64 #define CONFIG_ENV_RANGE                (384 * 1024)
65 #define CONFIG_ENV_OFFSET               0x120000
66 #define CONFIG_ENV_OFFSET_REDUND        \
67                 (CONFIG_ENV_OFFSET + CONFIG_ENV_RANGE)
68 #endif
69
70 /* UBI and NAND partitioning */
71 #ifdef CONFIG_CMD_NAND
72 #define CONFIG_CMD_UBI
73 #define CONFIG_CMD_UBIFS
74 #define CONFIG_CMD_MTDPARTS
75 #define CONFIG_RBTREE
76 #define CONFIG_LZO
77 #define CONFIG_MTD_DEVICE
78 #define CONFIG_MTD_PARTITIONS
79 #define MTDIDS_DEFAULT                  "nand0=gpmi-nand"
80 #define MTDPARTS_DEFAULT \
81         "mtdparts=gpmi-nand:128k(bootstrap),1024k(boot),768k(env),-(root)"
82 #else
83 #define MTDPARTS_DEFAULT                ""
84 #endif
85
86 /* FEC Ethernet on SoC */
87 #ifdef CONFIG_CMD_NET
88 #define CONFIG_FEC_MXC
89 #define CONFIG_ETHPRIME                 "FEC"
90 #define CONFIG_FEC_MXC_PHYADDR          0
91 #define IMX_FEC_BASE                    MXS_ENET0_BASE
92 #endif
93
94 /* USB */
95 #ifdef CONFIG_CMD_USB
96 #define CONFIG_EHCI_MXS_PORT1
97 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
98 #define CONFIG_USB_STORAGE
99 #endif
100
101
102 /* RTC */
103 #ifdef CONFIG_CMD_DATE
104 #define CONFIG_RTC_PCF8563
105 #define CONFIG_SYS_I2C_RTC_ADDR         0x51
106 #endif
107
108 /* Boot Linux */
109 #define CONFIG_BOOTDELAY                1
110 #define CONFIG_BOOTFILE                 "uImage"
111 #define CONFIG_BOOTCOMMAND              "run bootcmd_nand"
112 #define CONFIG_LOADADDR                 0x41000000
113 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
114 #define CONFIG_SERIAL_TAG
115 #define CONFIG_REVISION_TAG
116
117 /* Extra Environments */
118 #define CONFIG_EXTRA_ENV_SETTINGS \
119         "mtdparts=" MTDPARTS_DEFAULT "\0" \
120         "verify=no\0" \
121         "bootcmd=run bootcmd_nand\0" \
122         "kernelargs=console=tty0 console=ttyAMA0,115200 consoleblank=0\0" \
123         "bootargs_nand=" \
124                 "setenv bootargs ${kernelargs} ubi.mtd=3,2048 " \
125                 "root=ubi0:rootfs rootfstype=ubifs ${mtdparts} rw\0" \
126         "bootcmd_nand=" \
127                 "run bootargs_nand && ubi part root 2048 && " \
128                 "ubifsmount ubi:rootfs && ubifsload 41000000 boot/uImage && " \
129                 "bootm 41000000\0" \
130         "bootargs_mmc=" \
131                 "setenv bootargs ${kernelargs} " \
132                 "root=/dev/mmcblk0p2 rootwait ${mtdparts} rw\0" \
133         "bootcmd_mmc=" \
134                 "run bootargs_mmc && mmc rescan && " \
135                 "ext2load mmc 0:2 41000000 boot/uImage && bootm 41000000\0" \
136 ""
137
138 /* The rest of the configuration is shared */
139 #include <configs/mxs.h>
140
141 #endif /* __CONFIGS_APX4DEVKIT_H__ */