]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
e5841e12 LP |
2 | /* |
3 | * Copyright (C) 2011-2012 | |
4 | * Gerald Kerma <[email protected]> | |
3fdf7596 | 5 | * Luka Perkov <[email protected]> |
e5841e12 LP |
6 | */ |
7 | ||
8 | #ifndef _CONFIG_IB62x0_H | |
9 | #define _CONFIG_IB62x0_H | |
10 | ||
e5841e12 LP |
11 | /* |
12 | * High level configuration options | |
13 | */ | |
14 | #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ | |
e5841e12 LP |
15 | #define CONFIG_KW88F6281 /* SOC Name */ |
16 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ | |
17 | ||
e5841e12 LP |
18 | #include "mv-common.h" |
19 | ||
e5841e12 LP |
20 | /* |
21 | * Environment variables configuration | |
22 | */ | |
e5841e12 LP |
23 | |
24 | /* | |
25 | * Default environment variables | |
26 | */ | |
27 | #define CONFIG_BOOTCOMMAND \ | |
28 | "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ | |
29 | "ubi part root; " \ | |
57226221 | 30 | "ubifsmount ubi:rootfs; " \ |
e5841e12 | 31 | "ubifsload 0x800000 ${kernel}; " \ |
57226221 LP |
32 | "ubifsload 0x700000 ${fdt}; " \ |
33 | "ubifsumount; " \ | |
34 | "fdt addr 0x700000; fdt resize; fdt chosen; " \ | |
35 | "bootz 0x800000 - 0x700000" | |
36 | ||
57226221 | 37 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
e5841e12 LP |
38 | "console=console=ttyS0,115200\0" \ |
39 | "mtdids=nand0=orion_nand\0" \ | |
43ede0bc | 40 | "mtdparts="CONFIG_MTDPARTS_DEFAULT \ |
57226221 LP |
41 | "kernel=/boot/zImage\0" \ |
42 | "fdt=/boot/ib62x0.dtb\0" \ | |
43 | "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" | |
e5841e12 LP |
44 | |
45 | /* | |
46 | * Ethernet driver configuration | |
47 | */ | |
48 | #ifdef CONFIG_CMD_NET | |
49 | #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ | |
50 | #define CONFIG_PHY_BASE_ADR 0 | |
51 | #undef CONFIG_RESET_PHY_R | |
52 | #endif /* CONFIG_CMD_NET */ | |
53 | ||
54 | /* | |
55 | * SATA driver configuration | |
56 | */ | |
fc843a02 | 57 | #ifdef CONFIG_IDE |
e5841e12 LP |
58 | #define __io |
59 | #define CONFIG_IDE_PREINIT | |
e5841e12 LP |
60 | #define CONFIG_MVSATA_IDE_USE_PORT0 |
61 | #define CONFIG_MVSATA_IDE_USE_PORT1 | |
62 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET | |
63 | #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET | |
fc843a02 | 64 | #endif /* CONFIG_IDE */ |
e5841e12 LP |
65 | |
66 | /* | |
67 | * RTC driver configuration | |
68 | */ | |
69 | #ifdef CONFIG_CMD_DATE | |
70 | #define CONFIG_RTC_MV | |
71 | #endif /* CONFIG_CMD_DATE */ | |
72 | ||
e5841e12 | 73 | #endif /* _CONFIG_IB62x0_H */ |