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