]>
Commit | Line | Data |
---|---|---|
c1393bb3 VPP |
1 | /* |
2 | * Copyright (C) 2012 Bluegiga Technologies Oy | |
3 | * | |
4 | * Authors: | |
5 | * Veli-Pekka Peltola <[email protected]> | |
6 | * Lauri Hintsala <[email protected]> | |
7 | * | |
8 | * Based on m28evk.h: | |
9 | * Copyright (C) 2011 Marek Vasut <[email protected]> | |
10 | * on behalf of DENX Software Engineering GmbH | |
11 | * | |
1a459660 | 12 | * SPDX-License-Identifier: GPL-2.0+ |
c1393bb3 | 13 | */ |
5434caf5 MV |
14 | #ifndef __CONFIGS_APX4DEVKIT_H__ |
15 | #define __CONFIGS_APX4DEVKIT_H__ | |
c1393bb3 | 16 | |
5434caf5 | 17 | /* System configurations */ |
c1393bb3 | 18 | #define CONFIG_MX28 /* i.MX28 SoC */ |
c1393bb3 VPP |
19 | #define CONFIG_MACH_TYPE MACH_TYPE_APX4DEVKIT |
20 | ||
c1393bb3 | 21 | /* U-Boot Commands */ |
c1393bb3 | 22 | |
c1393bb3 | 23 | #define CONFIG_CMD_NAND |
c1393bb3 | 24 | |
5434caf5 | 25 | /* Memory configuration */ |
c1393bb3 VPP |
26 | #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */ |
27 | #define PHYS_SDRAM_1 0x40000000 /* Base address */ | |
28 | #define PHYS_SDRAM_1_SIZE 0x20000000 /* Max 512 MB RAM */ | |
c1393bb3 VPP |
29 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
30 | ||
5434caf5 | 31 | /* Environment */ |
c1393bb3 | 32 | #define CONFIG_ENV_OVERWRITE |
c1393bb3 VPP |
33 | #define CONFIG_ENV_IS_IN_NAND |
34 | ||
5434caf5 MV |
35 | /* Environment is in MMC */ |
36 | #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC) | |
c1393bb3 VPP |
37 | #define CONFIG_ENV_OFFSET (256 * 1024) |
38 | #define CONFIG_ENV_SIZE (16 * 1024) | |
39 | #define CONFIG_SYS_MMC_ENV_DEV 0 | |
40 | #endif | |
41 | ||
5434caf5 MV |
42 | /* Environment is in NAND */ |
43 | #if defined(CONFIG_CMD_NAND) && defined(CONFIG_ENV_IS_IN_NAND) | |
c1393bb3 VPP |
44 | #define CONFIG_ENV_SECT_SIZE (128 * 1024) |
45 | #define CONFIG_ENV_SIZE (128 * 1024) | |
46 | #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE | |
47 | #define CONFIG_ENV_RANGE (384 * 1024) | |
48 | #define CONFIG_ENV_OFFSET 0x120000 | |
49 | #define CONFIG_ENV_OFFSET_REDUND \ | |
50 | (CONFIG_ENV_OFFSET + CONFIG_ENV_RANGE) | |
51 | #endif | |
52 | ||
5434caf5 | 53 | /* UBI and NAND partitioning */ |
c1393bb3 | 54 | #ifdef CONFIG_CMD_NAND |
c1393bb3 VPP |
55 | #define CONFIG_CMD_UBIFS |
56 | #define CONFIG_CMD_MTDPARTS | |
57 | #define CONFIG_RBTREE | |
58 | #define CONFIG_LZO | |
59 | #define CONFIG_MTD_DEVICE | |
60 | #define CONFIG_MTD_PARTITIONS | |
61 | #define MTDIDS_DEFAULT "nand0=gpmi-nand" | |
62 | #define MTDPARTS_DEFAULT \ | |
63 | "mtdparts=gpmi-nand:128k(bootstrap),1024k(boot),768k(env),-(root)" | |
64 | #else | |
65 | #define MTDPARTS_DEFAULT "" | |
66 | #endif | |
67 | ||
5434caf5 | 68 | /* FEC Ethernet on SoC */ |
c1393bb3 | 69 | #ifdef CONFIG_CMD_NET |
5434caf5 | 70 | #define CONFIG_FEC_MXC |
c1393bb3 | 71 | #define CONFIG_ETHPRIME "FEC" |
c1393bb3 VPP |
72 | #define CONFIG_FEC_MXC_PHYADDR 0 |
73 | #define IMX_FEC_BASE MXS_ENET0_BASE | |
c1393bb3 VPP |
74 | #endif |
75 | ||
76 | /* USB */ | |
77 | #ifdef CONFIG_CMD_USB | |
afa87210 MV |
78 | #define CONFIG_EHCI_MXS_PORT1 |
79 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 | |
c1393bb3 VPP |
80 | #endif |
81 | ||
c1393bb3 | 82 | /* Boot Linux */ |
c1393bb3 VPP |
83 | #define CONFIG_BOOTFILE "uImage" |
84 | #define CONFIG_BOOTCOMMAND "run bootcmd_nand" | |
85 | #define CONFIG_LOADADDR 0x41000000 | |
86 | #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR | |
87 | #define CONFIG_SERIAL_TAG | |
88 | #define CONFIG_REVISION_TAG | |
89 | ||
90 | /* Extra Environments */ | |
91 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
92 | "mtdparts=" MTDPARTS_DEFAULT "\0" \ | |
93 | "verify=no\0" \ | |
94 | "bootcmd=run bootcmd_nand\0" \ | |
95 | "kernelargs=console=tty0 console=ttyAMA0,115200 consoleblank=0\0" \ | |
96 | "bootargs_nand=" \ | |
97 | "setenv bootargs ${kernelargs} ubi.mtd=3,2048 " \ | |
98 | "root=ubi0:rootfs rootfstype=ubifs ${mtdparts} rw\0" \ | |
99 | "bootcmd_nand=" \ | |
100 | "run bootargs_nand && ubi part root 2048 && " \ | |
949a7710 | 101 | "ubifsmount ubi:rootfs && ubifsload 41000000 boot/uImage && " \ |
c1393bb3 VPP |
102 | "bootm 41000000\0" \ |
103 | "bootargs_mmc=" \ | |
104 | "setenv bootargs ${kernelargs} " \ | |
105 | "root=/dev/mmcblk0p2 rootwait ${mtdparts} rw\0" \ | |
106 | "bootcmd_mmc=" \ | |
107 | "run bootargs_mmc && mmc rescan && " \ | |
108 | "ext2load mmc 0:2 41000000 boot/uImage && bootm 41000000\0" \ | |
109 | "" | |
110 | ||
5434caf5 MV |
111 | /* The rest of the configuration is shared */ |
112 | #include <configs/mxs.h> | |
113 | ||
114 | #endif /* __CONFIGS_APX4DEVKIT_H__ */ |