xref: /openbmc/u-boot/include/configs/ib62x0.h (revision d754254f)
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 #define CONFIG_SYS_MVFS
31 
32 /*
33  * mv-common.h should be defined after CMD configs since it used them
34  * to enable certain macros
35  */
36 #include "mv-common.h"
37 
38 /*
39  * Environment variables configuration
40  */
41 #ifdef CONFIG_CMD_NAND
42 #define CONFIG_ENV_IS_IN_NAND
43 #define CONFIG_ENV_SECT_SIZE	0x20000
44 #else
45 #define CONFIG_ENV_IS_NOWHERE
46 #endif
47 #define CONFIG_ENV_SIZE		0x20000
48 #define CONFIG_ENV_OFFSET	0xe0000
49 
50 /*
51  * Default environment variables
52  */
53 #define CONFIG_BOOTCOMMAND \
54 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
55 	"ubi part root; "						\
56 	"ubifsmount ubi:rootfs; "					\
57 	"ubifsload 0x800000 ${kernel}; "				\
58 	"ubifsload 0x700000 ${fdt}; "					\
59 	"ubifsumount; "							\
60 	"fdt addr 0x700000; fdt resize; fdt chosen; "			\
61 	"bootz 0x800000 - 0x700000"
62 
63 #define CONFIG_MTDPARTS \
64 	"mtdparts=orion_nand:"						\
65 	"0xe0000@0x0(uboot),"						\
66 	"0x20000@0xe0000(uboot_env),"					\
67 	"-@0x100000(root)\0"
68 
69 #define CONFIG_EXTRA_ENV_SETTINGS \
70 	"console=console=ttyS0,115200\0"				\
71 	"mtdids=nand0=orion_nand\0"					\
72 	"mtdparts="CONFIG_MTDPARTS					\
73 	"kernel=/boot/zImage\0"						\
74 	"fdt=/boot/ib62x0.dtb\0"					\
75 	"bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
76 
77 /*
78  * Ethernet driver configuration
79  */
80 #ifdef CONFIG_CMD_NET
81 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
82 #define CONFIG_PHY_BASE_ADR	0
83 #undef CONFIG_RESET_PHY_R
84 #endif /* CONFIG_CMD_NET */
85 
86 /*
87  * SATA driver configuration
88  */
89 #ifdef CONFIG_IDE
90 #define __io
91 #define CONFIG_IDE_PREINIT
92 #define CONFIG_MVSATA_IDE_USE_PORT0
93 #define CONFIG_MVSATA_IDE_USE_PORT1
94 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
95 #define CONFIG_SYS_ATA_IDE1_OFFSET	MV_SATA_PORT1_OFFSET
96 #endif /* CONFIG_IDE */
97 
98 /*
99  * RTC driver configuration
100  */
101 #ifdef CONFIG_CMD_DATE
102 #define CONFIG_RTC_MV
103 #endif /* CONFIG_CMD_DATE */
104 
105 #endif /* _CONFIG_IB62x0_H */
106