]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/ib62x0.h
Merge branch 'master' of git://git.denx.de/u-boot-video
[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
12/*
13 * Version number information
14 */
15#define CONFIG_IDENT_STRING " RaidSonic ICY BOX IB-NAS62x0"
16
17/*
18 * High level configuration options
19 */
20#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
e5841e12
LP
21#define CONFIG_KW88F6281 /* SOC Name */
22#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
23
bd4c1d3e
LP
24/* Add target to build it automatically upon "make" */
25#define CONFIG_BUILD_TARGET "u-boot.kwb"
26
e5841e12
LP
27/*
28 * Compression configuration
29 */
30#define CONFIG_BZIP2
31#define CONFIG_LZMA
e5841e12
LP
32
33/*
34 * Commands configuration
35 */
36#define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */
37#define CONFIG_SYS_MVFS
57226221 38#define CONFIG_CMD_BOOTZ
e5841e12
LP
39#define CONFIG_CMD_IDE
40#define CONFIG_CMD_MII
e5841e12
LP
41
42/*
43 * mv-common.h should be defined after CMD configs since it used them
44 * to enable certain macros
45 */
46#include "mv-common.h"
47
e5841e12
LP
48/*
49 * Environment variables configuration
50 */
51#ifdef CONFIG_CMD_NAND
52#define CONFIG_ENV_IS_IN_NAND
53#define CONFIG_ENV_SECT_SIZE 0x20000
54#else
55#define CONFIG_ENV_IS_NOWHERE
56#endif
57#define CONFIG_ENV_SIZE 0x20000
57226221 58#define CONFIG_ENV_OFFSET 0xe0000
e5841e12
LP
59
60/*
61 * Default environment variables
62 */
63#define CONFIG_BOOTCOMMAND \
64 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
65 "ubi part root; " \
57226221 66 "ubifsmount ubi:rootfs; " \
e5841e12 67 "ubifsload 0x800000 ${kernel}; " \
57226221
LP
68 "ubifsload 0x700000 ${fdt}; " \
69 "ubifsumount; " \
70 "fdt addr 0x700000; fdt resize; fdt chosen; " \
71 "bootz 0x800000 - 0x700000"
72
73#define CONFIG_MTDPARTS \
74 "mtdparts=orion_nand:" \
75 "0xe0000@0x0(uboot)," \
76 "0x20000@0xe0000(uboot_env)," \
77 "-@0x100000(root)\0"
78
79#define CONFIG_EXTRA_ENV_SETTINGS \
e5841e12
LP
80 "console=console=ttyS0,115200\0" \
81 "mtdids=nand0=orion_nand\0" \
82 "mtdparts="CONFIG_MTDPARTS \
57226221
LP
83 "kernel=/boot/zImage\0" \
84 "fdt=/boot/ib62x0.dtb\0" \
85 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
e5841e12
LP
86
87/*
88 * Ethernet driver configuration
89 */
90#ifdef CONFIG_CMD_NET
91#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
92#define CONFIG_PHY_BASE_ADR 0
93#undef CONFIG_RESET_PHY_R
94#endif /* CONFIG_CMD_NET */
95
96/*
97 * SATA driver configuration
98 */
99#ifdef CONFIG_CMD_IDE
100#define __io
101#define CONFIG_IDE_PREINIT
102#define CONFIG_DOS_PARTITION
103#define CONFIG_MVSATA_IDE_USE_PORT0
104#define CONFIG_MVSATA_IDE_USE_PORT1
105#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
106#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
107#endif /* CONFIG_CMD_IDE */
108
109/*
110 * RTC driver configuration
111 */
112#ifdef CONFIG_CMD_DATE
113#define CONFIG_RTC_MV
114#endif /* CONFIG_CMD_DATE */
115
e5841e12 116#endif /* _CONFIG_IB62x0_H */