]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/openrd.h
Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
[people/ms/u-boot.git] / include / configs / openrd.h
CommitLineData
e92daeb5
SK
1/*
2 * (C) Copyright 2009
3 * Net Insight <www.netinsight.net>
4 * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5 *
6 * Based on sheevaplug.h:
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
10 *
1a459660 11 * SPDX-License-Identifier: GPL-2.0+
e92daeb5
SK
12 */
13
f846604f
CA
14#ifndef _CONFIG_OPENRD_H
15#define _CONFIG_OPENRD_H
e92daeb5
SK
16
17/*
18 * Version number information
19 */
21861f2d
CA
20#ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
21# define CONFIG_IDENT_STRING "\nOpenRD-Ultimate"
22#else
23# ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
24# define CONFIG_IDENT_STRING "\nOpenRD-Client"
25# else
26# ifdef CONFIG_BOARD_IS_OPENRD_BASE
27# define CONFIG_IDENT_STRING "\nOpenRD-Base"
28# else
29# error Unknown OpenRD board specified
30# endif
31# endif
32#endif
e92daeb5
SK
33
34/*
35 * High Level Configuration Options (easy to change)
36 */
e92daeb5 37#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
e92daeb5
SK
38#define CONFIG_KW88F6281 1 /* SOC Name */
39#define CONFIG_MACH_OPENRD_BASE /* Machine type */
e92daeb5 40#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
e92daeb5 41
e92daeb5
SK
42/*
43 * Commands configuration
44 */
45#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
2e73808e 46#define CONFIG_SYS_MVFS
e92daeb5 47#include <config_cmd_default.h>
e92daeb5
SK
48#define CONFIG_CMD_DHCP
49#define CONFIG_CMD_ENV
e92daeb5 50#define CONFIG_CMD_MII
3fe3b4fb 51#define CONFIG_CMD_MMC
1c9d91ac 52#define CONFIG_CMD_NAND
e92daeb5
SK
53#define CONFIG_CMD_PING
54#define CONFIG_CMD_USB
86cf2ae4 55#define CONFIG_CMD_IDE
e92daeb5
SK
56
57/*
54e999a3
PW
58 * mv-common.h should be defined after CMD configs since it used them
59 * to enable certain macros
e92daeb5 60 */
54e999a3 61#include "mv-common.h"
e92daeb5
SK
62
63/*
64 * Environment variables configurations
65 */
66#ifdef CONFIG_CMD_NAND
67#define CONFIG_ENV_IS_IN_NAND 1
68#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
69#else
70#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
71#endif
72/*
73 * max 4k env size is enough, but in case of nand
74 * it has to be rounded to sector size
75 */
76#define CONFIG_ENV_SIZE 0x20000 /* 128k */
77#define CONFIG_ENV_ADDR 0x60000
78#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
9fa7bbc1
SS
79/*
80 * Environment is right behind U-Boot in flash. Make sure U-Boot
81 * doesn't grow into the environment area.
82 */
83#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
e92daeb5
SK
84
85/*
86 * Default environment variables
87 */
88#define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
89 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
90 "${x_bootcmd_usb}; bootm 0x6400000;"
91
92#define MTDIDS_DEFAULT "nand0=nand_mtd"
93#define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\
94 "0x400000@0x100000(uImage),"\
95 "0x1fb00000@0x500000(rootfs)"
96
97#define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
98 "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
99 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
100 "x_bootcmd_usb=usb start\0" \
101 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
102 "mtdids="MTDIDS_DEFAULT"\0" \
103 "mtdparts="MTDPARTS_DEFAULT"\0"
104
e92daeb5
SK
105/*
106 * Ethernet Driver configuration
107 */
108#ifdef CONFIG_CMD_NET
1615db3c
CA
109# ifdef CONFIG_BOARD_IS_OPENRD_BASE
110# define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
111# else
112# define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
113# endif
114# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
115# define CONFIG_PHY_BASE_ADR 0x0
116# define PHY_NO "88E1121"
117# else
118# define CONFIG_PHY_BASE_ADR 0x8
119# define PHY_NO "88E1116"
120# endif
e92daeb5
SK
121#endif /* CONFIG_CMD_NET */
122
123/*
54e999a3 124 * SATA Driver configuration
e92daeb5 125 */
54e999a3
PW
126#ifdef CONFIG_MVSATA_IDE
127#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
128#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
129#endif /*CONFIG_MVSATA_IDE*/
e92daeb5 130
3fe3b4fb
D
131#ifdef CONFIG_CMD_MMC
132#define CONFIG_MMC
133#define CONFIG_GENERIC_MMC
134#define CONFIG_MVEBU_MMC
135#define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
136#endif /* CONFIG_CMD_MMC */
137
e92daeb5 138#endif /* _CONFIG_OPENRD_BASE_H */