xref: /OK3568_Linux_fs/u-boot/include/configs/ib62x0.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Copyright (C) 2011-2012
3  * Gerald Kerma <dreagle@doukki.net>
4  * Luka Perkov <luka@openwrt.org>
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #ifndef _CONFIG_IB62x0_H
10 #define _CONFIG_IB62x0_H
11 
12 /*
13  * High level configuration options
14  */
15 #define CONFIG_FEROCEON_88FR131		/* CPU Core subversion */
16 #define CONFIG_KW88F6281		/* SOC Name */
17 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
18 
19 /* Add target to build it automatically upon "make" */
20 #define CONFIG_BUILD_TARGET     "u-boot.kwb"
21 
22 /*
23  * Compression configuration
24  */
25 #define CONFIG_BZIP2
26 
27 /*
28  * Commands configuration
29  */
30 
31 /*
32  * mv-common.h should be defined after CMD configs since it used them
33  * to enable certain macros
34  */
35 #include "mv-common.h"
36 
37 /*
38  * Environment variables configuration
39  */
40 #ifdef CONFIG_CMD_NAND
41 #define CONFIG_ENV_SECT_SIZE	0x20000
42 #endif
43 #define CONFIG_ENV_SIZE		0x20000
44 #define CONFIG_ENV_OFFSET	0xe0000
45 
46 /*
47  * Default environment variables
48  */
49 #define CONFIG_BOOTCOMMAND \
50 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
51 	"ubi part root; "						\
52 	"ubifsmount ubi:rootfs; "					\
53 	"ubifsload 0x800000 ${kernel}; "				\
54 	"ubifsload 0x700000 ${fdt}; "					\
55 	"ubifsumount; "							\
56 	"fdt addr 0x700000; fdt resize; fdt chosen; "			\
57 	"bootz 0x800000 - 0x700000"
58 
59 #define CONFIG_MTDPARTS \
60 	"mtdparts=orion_nand:"						\
61 	"0xe0000@0x0(uboot),"						\
62 	"0x20000@0xe0000(uboot_env),"					\
63 	"-@0x100000(root)\0"
64 
65 #define CONFIG_EXTRA_ENV_SETTINGS \
66 	"console=console=ttyS0,115200\0"				\
67 	"mtdids=nand0=orion_nand\0"					\
68 	"mtdparts="CONFIG_MTDPARTS					\
69 	"kernel=/boot/zImage\0"						\
70 	"fdt=/boot/ib62x0.dtb\0"					\
71 	"bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
72 
73 /*
74  * Ethernet driver configuration
75  */
76 #ifdef CONFIG_CMD_NET
77 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
78 #define CONFIG_PHY_BASE_ADR	0
79 #undef CONFIG_RESET_PHY_R
80 #endif /* CONFIG_CMD_NET */
81 
82 /*
83  * SATA driver configuration
84  */
85 #ifdef CONFIG_IDE
86 #define __io
87 #define CONFIG_IDE_PREINIT
88 #define CONFIG_MVSATA_IDE_USE_PORT0
89 #define CONFIG_MVSATA_IDE_USE_PORT1
90 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
91 #define CONFIG_SYS_ATA_IDE1_OFFSET	MV_SATA_PORT1_OFFSET
92 #endif /* CONFIG_IDE */
93 
94 /*
95  * RTC driver configuration
96  */
97 #ifdef CONFIG_CMD_DATE
98 #define CONFIG_RTC_MV
99 #endif /* CONFIG_CMD_DATE */
100 
101 #endif /* _CONFIG_IB62x0_H */
102