blob: d45dc357cb17359d00b610a602520752d07a27be [file] [log] [blame]
Luka Perkove5841e12012-04-17 09:22:17 +00001/*
2 * Copyright (C) 2011-2012
3 * Gerald Kerma <dreagle@doukki.net>
Luka Perkov3fdf7592012-12-03 03:24:15 +00004 * Luka Perkov <luka@openwrt.org>
Luka Perkove5841e12012-04-17 09:22:17 +00005 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Luka Perkove5841e12012-04-17 09:22:17 +00007 */
8
9#ifndef _CONFIG_IB62x0_H
10#define _CONFIG_IB62x0_H
11
12/*
Luka Perkove5841e12012-04-17 09:22:17 +000013 * High level configuration options
14 */
15#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Luka Perkove5841e12012-04-17 09:22:17 +000016#define CONFIG_KW88F6281 /* SOC Name */
17#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
18
Luka Perkovbd4c1d32015-10-31 20:33:39 +010019/* Add target to build it automatically upon "make" */
20#define CONFIG_BUILD_TARGET "u-boot.kwb"
21
Luka Perkove5841e12012-04-17 09:22:17 +000022/*
Luka Perkove5841e12012-04-17 09:22:17 +000023 * Compression configuration
24 */
25#define CONFIG_BZIP2
Luka Perkove5841e12012-04-17 09:22:17 +000026
27/*
28 * Commands configuration
29 */
Luka Perkove5841e12012-04-17 09:22:17 +000030#define CONFIG_SYS_MVFS
Luka Perkove5841e12012-04-17 09:22:17 +000031
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
Luka Perkove5841e12012-04-17 09:22:17 +000038/*
39 * Environment variables configuration
40 */
41#ifdef CONFIG_CMD_NAND
Luka Perkove5841e12012-04-17 09:22:17 +000042#define CONFIG_ENV_SECT_SIZE 0x20000
Luka Perkove5841e12012-04-17 09:22:17 +000043#endif
44#define CONFIG_ENV_SIZE 0x20000
Luka Perkov57226222013-10-31 04:05:05 +010045#define CONFIG_ENV_OFFSET 0xe0000
Luka Perkove5841e12012-04-17 09:22:17 +000046
47/*
48 * Default environment variables
49 */
50#define CONFIG_BOOTCOMMAND \
51 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
52 "ubi part root; " \
Luka Perkov57226222013-10-31 04:05:05 +010053 "ubifsmount ubi:rootfs; " \
Luka Perkove5841e12012-04-17 09:22:17 +000054 "ubifsload 0x800000 ${kernel}; " \
Luka Perkov57226222013-10-31 04:05:05 +010055 "ubifsload 0x700000 ${fdt}; " \
56 "ubifsumount; " \
57 "fdt addr 0x700000; fdt resize; fdt chosen; " \
58 "bootz 0x800000 - 0x700000"
Luka Perkove5841e12012-04-17 09:22:17 +000059
Luka Perkov57226222013-10-31 04:05:05 +010060#define CONFIG_MTDPARTS \
61 "mtdparts=orion_nand:" \
62 "0xe0000@0x0(uboot)," \
63 "0x20000@0xe0000(uboot_env)," \
64 "-@0x100000(root)\0"
Luka Perkove5841e12012-04-17 09:22:17 +000065
Luka Perkov57226222013-10-31 04:05:05 +010066#define CONFIG_EXTRA_ENV_SETTINGS \
Luka Perkove5841e12012-04-17 09:22:17 +000067 "console=console=ttyS0,115200\0" \
68 "mtdids=nand0=orion_nand\0" \
69 "mtdparts="CONFIG_MTDPARTS \
Luka Perkov57226222013-10-31 04:05:05 +010070 "kernel=/boot/zImage\0" \
71 "fdt=/boot/ib62x0.dtb\0" \
72 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
Luka Perkove5841e12012-04-17 09:22:17 +000073
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 */
Simon Glassfc843a02017-05-17 03:25:30 -060086#ifdef CONFIG_IDE
Luka Perkove5841e12012-04-17 09:22:17 +000087#define __io
88#define CONFIG_IDE_PREINIT
Luka Perkove5841e12012-04-17 09:22:17 +000089#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
Simon Glassfc843a02017-05-17 03:25:30 -060093#endif /* CONFIG_IDE */
Luka Perkove5841e12012-04-17 09:22:17 +000094
95/*
96 * RTC driver configuration
97 */
98#ifdef CONFIG_CMD_DATE
99#define CONFIG_RTC_MV
100#endif /* CONFIG_CMD_DATE */
101
Luka Perkove5841e12012-04-17 09:22:17 +0000102#endif /* _CONFIG_IB62x0_H */