blob: 0b92d7b2ca203feae094adc1e6a6a2c5757f0bcc [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
26#define CONFIG_LZMA
Luka Perkove5841e12012-04-17 09:22:17 +000027
28/*
29 * Commands configuration
30 */
Luka Perkove5841e12012-04-17 09:22:17 +000031#define CONFIG_SYS_MVFS
Luka Perkove5841e12012-04-17 09:22:17 +000032
33/*
34 * mv-common.h should be defined after CMD configs since it used them
35 * to enable certain macros
36 */
37#include "mv-common.h"
38
Luka Perkove5841e12012-04-17 09:22:17 +000039/*
40 * Environment variables configuration
41 */
42#ifdef CONFIG_CMD_NAND
43#define CONFIG_ENV_IS_IN_NAND
44#define CONFIG_ENV_SECT_SIZE 0x20000
45#else
46#define CONFIG_ENV_IS_NOWHERE
47#endif
48#define CONFIG_ENV_SIZE 0x20000
Luka Perkov57226222013-10-31 04:05:05 +010049#define CONFIG_ENV_OFFSET 0xe0000
Luka Perkove5841e12012-04-17 09:22:17 +000050
51/*
52 * Default environment variables
53 */
54#define CONFIG_BOOTCOMMAND \
55 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
56 "ubi part root; " \
Luka Perkov57226222013-10-31 04:05:05 +010057 "ubifsmount ubi:rootfs; " \
Luka Perkove5841e12012-04-17 09:22:17 +000058 "ubifsload 0x800000 ${kernel}; " \
Luka Perkov57226222013-10-31 04:05:05 +010059 "ubifsload 0x700000 ${fdt}; " \
60 "ubifsumount; " \
61 "fdt addr 0x700000; fdt resize; fdt chosen; " \
62 "bootz 0x800000 - 0x700000"
Luka Perkove5841e12012-04-17 09:22:17 +000063
Luka Perkov57226222013-10-31 04:05:05 +010064#define CONFIG_MTDPARTS \
65 "mtdparts=orion_nand:" \
66 "0xe0000@0x0(uboot)," \
67 "0x20000@0xe0000(uboot_env)," \
68 "-@0x100000(root)\0"
Luka Perkove5841e12012-04-17 09:22:17 +000069
Luka Perkov57226222013-10-31 04:05:05 +010070#define CONFIG_EXTRA_ENV_SETTINGS \
Luka Perkove5841e12012-04-17 09:22:17 +000071 "console=console=ttyS0,115200\0" \
72 "mtdids=nand0=orion_nand\0" \
73 "mtdparts="CONFIG_MTDPARTS \
Luka Perkov57226222013-10-31 04:05:05 +010074 "kernel=/boot/zImage\0" \
75 "fdt=/boot/ib62x0.dtb\0" \
76 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
Luka Perkove5841e12012-04-17 09:22:17 +000077
78/*
79 * Ethernet driver configuration
80 */
81#ifdef CONFIG_CMD_NET
82#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
83#define CONFIG_PHY_BASE_ADR 0
84#undef CONFIG_RESET_PHY_R
85#endif /* CONFIG_CMD_NET */
86
87/*
88 * SATA driver configuration
89 */
Simon Glassfc843a02017-05-17 03:25:30 -060090#ifdef CONFIG_IDE
Luka Perkove5841e12012-04-17 09:22:17 +000091#define __io
92#define CONFIG_IDE_PREINIT
Luka Perkove5841e12012-04-17 09:22:17 +000093#define CONFIG_MVSATA_IDE_USE_PORT0
94#define CONFIG_MVSATA_IDE_USE_PORT1
95#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
96#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
Simon Glassfc843a02017-05-17 03:25:30 -060097#endif /* CONFIG_IDE */
Luka Perkove5841e12012-04-17 09:22:17 +000098
99/*
100 * RTC driver configuration
101 */
102#ifdef CONFIG_CMD_DATE
103#define CONFIG_RTC_MV
104#endif /* CONFIG_CMD_DATE */
105
Luka Perkove5841e12012-04-17 09:22:17 +0000106#endif /* _CONFIG_IB62x0_H */