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