blob: f8d3c3b63fd7d97241ff4d6f28d62089a612ac32 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Luka Perkove5841e12012-04-17 09:22:17 +00002/*
3 * Copyright (C) 2011-2012
4 * Gerald Kerma <dreagle@doukki.net>
Luka Perkov3fdf7592012-12-03 03:24:15 +00005 * Luka Perkov <luka@openwrt.org>
Luka Perkove5841e12012-04-17 09:22:17 +00006 */
7
8#ifndef _CONFIG_IB62x0_H
9#define _CONFIG_IB62x0_H
10
11/*
Luka Perkove5841e12012-04-17 09:22:17 +000012 * High level configuration options
13 */
14#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Luka Perkove5841e12012-04-17 09:22:17 +000015#define CONFIG_KW88F6281 /* SOC Name */
16#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
17
Luka Perkovbd4c1d32015-10-31 20:33:39 +010018/* Add target to build it automatically upon "make" */
19#define CONFIG_BUILD_TARGET "u-boot.kwb"
20
Luka Perkove5841e12012-04-17 09:22:17 +000021/*
Luka Perkove5841e12012-04-17 09:22:17 +000022 * Compression configuration
23 */
24#define CONFIG_BZIP2
Luka Perkove5841e12012-04-17 09:22:17 +000025
26/*
27 * Commands configuration
28 */
Luka Perkove5841e12012-04-17 09:22:17 +000029
30/*
31 * mv-common.h should be defined after CMD configs since it used them
32 * to enable certain macros
33 */
34#include "mv-common.h"
35
Luka Perkove5841e12012-04-17 09:22:17 +000036/*
37 * Environment variables configuration
38 */
39#ifdef CONFIG_CMD_NAND
Luka Perkove5841e12012-04-17 09:22:17 +000040#define CONFIG_ENV_SECT_SIZE 0x20000
Luka Perkove5841e12012-04-17 09:22:17 +000041#endif
42#define CONFIG_ENV_SIZE 0x20000
Luka Perkov57226222013-10-31 04:05:05 +010043#define CONFIG_ENV_OFFSET 0xe0000
Luka Perkove5841e12012-04-17 09:22:17 +000044
45/*
46 * Default environment variables
47 */
48#define CONFIG_BOOTCOMMAND \
49 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
50 "ubi part root; " \
Luka Perkov57226222013-10-31 04:05:05 +010051 "ubifsmount ubi:rootfs; " \
Luka Perkove5841e12012-04-17 09:22:17 +000052 "ubifsload 0x800000 ${kernel}; " \
Luka Perkov57226222013-10-31 04:05:05 +010053 "ubifsload 0x700000 ${fdt}; " \
54 "ubifsumount; " \
55 "fdt addr 0x700000; fdt resize; fdt chosen; " \
56 "bootz 0x800000 - 0x700000"
Luka Perkove5841e12012-04-17 09:22:17 +000057
Luka Perkov57226222013-10-31 04:05:05 +010058#define CONFIG_EXTRA_ENV_SETTINGS \
Luka Perkove5841e12012-04-17 09:22:17 +000059 "console=console=ttyS0,115200\0" \
60 "mtdids=nand0=orion_nand\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040061 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Luka Perkov57226222013-10-31 04:05:05 +010062 "kernel=/boot/zImage\0" \
63 "fdt=/boot/ib62x0.dtb\0" \
64 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
Luka Perkove5841e12012-04-17 09:22:17 +000065
66/*
67 * Ethernet driver configuration
68 */
69#ifdef CONFIG_CMD_NET
70#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
71#define CONFIG_PHY_BASE_ADR 0
72#undef CONFIG_RESET_PHY_R
73#endif /* CONFIG_CMD_NET */
74
75/*
76 * SATA driver configuration
77 */
Simon Glassfc843a02017-05-17 03:25:30 -060078#ifdef CONFIG_IDE
Luka Perkove5841e12012-04-17 09:22:17 +000079#define __io
80#define CONFIG_IDE_PREINIT
Luka Perkove5841e12012-04-17 09:22:17 +000081#define CONFIG_MVSATA_IDE_USE_PORT0
82#define CONFIG_MVSATA_IDE_USE_PORT1
83#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
84#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
Simon Glassfc843a02017-05-17 03:25:30 -060085#endif /* CONFIG_IDE */
Luka Perkove5841e12012-04-17 09:22:17 +000086
87/*
88 * RTC driver configuration
89 */
90#ifdef CONFIG_CMD_DATE
91#define CONFIG_RTC_MV
92#endif /* CONFIG_CMD_DATE */
93
Luka Perkove5841e12012-04-17 09:22:17 +000094#endif /* _CONFIG_IB62x0_H */