blob: 6ebd703d32dcd7789fab001ceef43bacc79c026e [file] [log] [blame]
Eric Cooper38041db2010-11-24 17:11:32 +05301/*
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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Eric Cooper38041db2010-11-24 17:11:32 +053010 */
11
12#ifndef _CONFIG_DOCKSTAR_H
13#define _CONFIG_DOCKSTAR_H
14
Luka Perkov6054b152014-11-30 02:40:37 +010015#define CONFIG_SYS_GENERIC_BOARD
16
Eric Cooper38041db2010-11-24 17:11:32 +053017/*
18 * Version number information
19 */
20#define CONFIG_IDENT_STRING "\nSeagate FreeAgent DockStar"
21
22/*
23 * High Level Configuration Options (easy to change)
24 */
25#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
Eric Cooper38041db2010-11-24 17:11:32 +053026#define CONFIG_KW88F6281 1 /* SOC Name */
27#define CONFIG_MACH_DOCKSTAR /* Machine type */
28#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
29
30/*
31 * Commands configuration
32 */
33#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
Eric Cooper38041db2010-11-24 17:11:32 +053034#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
Eric Cooper38041db2010-11-24 17:11:32 +053046/*
47 * Environment variables configurations
48 */
49#ifdef CONFIG_CMD_NAND
50#define CONFIG_ENV_IS_IN_NAND 1
51#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
52#else
53#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
54#endif
55/*
56 * max 4k env size is enough, but in case of nand
57 * it has to be rounded to sector size
58 */
59#define CONFIG_ENV_SIZE 0x20000 /* 128k */
Eric Cooperd1a2f322015-10-12 19:18:52 -040060#define CONFIG_ENV_ADDR 0x80000
61#define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
Eric Cooper38041db2010-11-24 17:11:32 +053062
63/*
64 * Default environment variables
65 */
66#define CONFIG_BOOTCOMMAND \
67 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
68 "ubi part root; " \
Joe Hershberger949a7712012-11-01 16:54:18 +000069 "ubifsmount ubi:root; " \
Eric Cooper38041db2010-11-24 17:11:32 +053070 "ubifsload 0x800000 ${kernel}; " \
71 "ubifsload 0x1100000 ${initrd}; " \
72 "bootm 0x800000 0x1100000"
73
74#define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0"
75
76#define CONFIG_EXTRA_ENV_SETTINGS \
77 "console=console=ttyS0,115200\0" \
78 "mtdids=nand0=orion_nand\0" \
79 "mtdparts="CONFIG_MTDPARTS \
80 "kernel=/boot/uImage\0" \
81 "initrd=/boot/uInitrd\0" \
82 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
83
84/*
85 * Ethernet Driver configuration
86 */
87#ifdef CONFIG_CMD_NET
88#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
89#define CONFIG_PHY_BASE_ADR 0
90#endif /* CONFIG_CMD_NET */
91
92/*
93 * File system
94 */
95#define CONFIG_CMD_EXT2
96#define CONFIG_CMD_FAT
97#define CONFIG_CMD_JFFS2
98#define CONFIG_CMD_UBI
99#define CONFIG_CMD_UBIFS
100#define CONFIG_RBTREE
101#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
102#define CONFIG_MTD_PARTITIONS
103#define CONFIG_CMD_MTDPARTS
104#define CONFIG_LZO
105
106#endif /* _CONFIG_DOCKSTAR_H */