]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/dockstar.h
Merge branch 'u-boot-tegra/master' into 'u-boot-arm/master'
[people/ms/u-boot.git] / include / configs / dockstar.h
CommitLineData
38041db7
EC
1/*
2 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
3 *
4 * Based on sheevaplug.h originally written by
5 * Prafulla Wadaskar <prafulla@marvell.com>
6 * (C) Copyright 2009
7 * Marvell Semiconductor <www.marvell.com>
8 *
1a459660 9 * SPDX-License-Identifier: GPL-2.0+
38041db7
EC
10 */
11
12#ifndef _CONFIG_DOCKSTAR_H
13#define _CONFIG_DOCKSTAR_H
14
15/*
16 * Version number information
17 */
18#define CONFIG_IDENT_STRING "\nSeagate FreeAgent DockStar"
19
20/*
21 * High Level Configuration Options (easy to change)
22 */
23#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
24#define CONFIG_KIRKWOOD 1 /* SOC Family Name */
25#define CONFIG_KW88F6281 1 /* SOC Name */
26#define CONFIG_MACH_DOCKSTAR /* Machine type */
27#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
28
29/*
30 * Commands configuration
31 */
32#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
33#include <config_cmd_default.h>
34#define CONFIG_CMD_DHCP
35#define CONFIG_CMD_ENV
36#define CONFIG_CMD_MII
37#define CONFIG_CMD_NAND
38#define CONFIG_CMD_PING
39#define CONFIG_CMD_USB
40/*
41 * mv-common.h should be defined after CMD configs since it used them
42 * to enable certain macros
43 */
44#include "mv-common.h"
45
46#undef CONFIG_SYS_PROMPT /* previously defined in mv-common.h */
47#define CONFIG_SYS_PROMPT "DockStar> " /* Command Prompt */
48
49/*
50 * Environment variables configurations
51 */
52#ifdef CONFIG_CMD_NAND
53#define CONFIG_ENV_IS_IN_NAND 1
54#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
55#else
56#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
57#endif
58/*
59 * max 4k env size is enough, but in case of nand
60 * it has to be rounded to sector size
61 */
62#define CONFIG_ENV_SIZE 0x20000 /* 128k */
63#define CONFIG_ENV_ADDR 0x60000
64#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
65
66/*
67 * Default environment variables
68 */
69#define CONFIG_BOOTCOMMAND \
70 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
71 "ubi part root; " \
949a7710 72 "ubifsmount ubi:root; " \
38041db7
EC
73 "ubifsload 0x800000 ${kernel}; " \
74 "ubifsload 0x1100000 ${initrd}; " \
75 "bootm 0x800000 0x1100000"
76
77#define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0"
78
79#define CONFIG_EXTRA_ENV_SETTINGS \
80 "console=console=ttyS0,115200\0" \
81 "mtdids=nand0=orion_nand\0" \
82 "mtdparts="CONFIG_MTDPARTS \
83 "kernel=/boot/uImage\0" \
84 "initrd=/boot/uInitrd\0" \
85 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
86
87/*
88 * Ethernet Driver configuration
89 */
90#ifdef CONFIG_CMD_NET
91#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
92#define CONFIG_PHY_BASE_ADR 0
93#endif /* CONFIG_CMD_NET */
94
95/*
96 * File system
97 */
98#define CONFIG_CMD_EXT2
99#define CONFIG_CMD_FAT
100#define CONFIG_CMD_JFFS2
101#define CONFIG_CMD_UBI
102#define CONFIG_CMD_UBIFS
103#define CONFIG_RBTREE
104#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
105#define CONFIG_MTD_PARTITIONS
106#define CONFIG_CMD_MTDPARTS
107#define CONFIG_LZO
108
109#endif /* _CONFIG_DOCKSTAR_H */