]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/openrd.h
Move CONFIG_PANIC_HANG to Kconfig
[people/ms/u-boot.git] / include / configs / openrd.h
CommitLineData
35629363
AA
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 *
11 * SPDX-License-Identifier: GPL-2.0+
12 */
13
14#ifndef _CONFIG_OPENRD_H
15#define _CONFIG_OPENRD_H
16
35629363
AA
17/*
18 * High Level Configuration Options (easy to change)
19 */
20#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
21#define CONFIG_KW88F6281 1 /* SOC Name */
22#define CONFIG_MACH_OPENRD_BASE /* Machine type */
23#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
35629363
AA
24
25/*
26 * Commands configuration
27 */
35629363 28#define CONFIG_SYS_MVFS
35629363
AA
29
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
36/*
37 * Environment variables configurations
38 */
39#ifdef CONFIG_CMD_NAND
35629363 40#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
35629363
AA
41#endif
42/*
43 * max 4k env size is enough, but in case of nand
44 * it has to be rounded to sector size
45 */
46#define CONFIG_ENV_SIZE 0x20000 /* 128k */
47#define CONFIG_ENV_ADDR 0x60000
48#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
49/*
50 * Environment is right behind U-Boot in flash. Make sure U-Boot
51 * doesn't grow into the environment area.
52 */
53#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
54
55/*
56 * Default environment variables
57 */
58#define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
59 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
60 "${x_bootcmd_usb}; bootm 0x6400000;"
61
43ede0bc
TR
62#define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console=ttyS0,115200 " \
63 CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
35629363
AA
64 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
65 "x_bootcmd_usb=usb start\0" \
66 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
43ede0bc
TR
67 "mtdids="CONFIG_MTDIDS_DEFAULT"\0" \
68 "mtdparts="CONFIG_MTDPARTS_DEFAULT"\0"
35629363
AA
69
70/*
71 * Ethernet Driver configuration
72 */
73#ifdef CONFIG_CMD_NET
74# ifdef CONFIG_BOARD_IS_OPENRD_BASE
75# define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
76# else
77# define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
78# endif
79# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
80# define CONFIG_PHY_BASE_ADR 0x0
81# define PHY_NO "88E1121"
82# else
83# define CONFIG_PHY_BASE_ADR 0x8
84# define PHY_NO "88E1116"
85# endif
86#endif /* CONFIG_CMD_NET */
87
88/*
89 * SATA Driver configuration
90 */
91#ifdef CONFIG_MVSATA_IDE
92#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
93#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
94#endif /*CONFIG_MVSATA_IDE*/
95
96#ifdef CONFIG_CMD_MMC
35629363
AA
97#define CONFIG_MVEBU_MMC
98#define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
99#endif /* CONFIG_CMD_MMC */
100
101#endif /* _CONFIG_OPENRD_BASE_H */