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