blob: 15e3292c093656d0cc794e50f347c73e993bf200 [file] [log] [blame]
Eric Coopera3f41c82010-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 Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Eric Coopera3f41c82010-11-24 17:11:32 +053010 */
11
12#ifndef _CONFIG_DOCKSTAR_H
13#define _CONFIG_DOCKSTAR_H
14
15/*
Eric Coopera3f41c82010-11-24 17:11:32 +053016 * High Level Configuration Options (easy to change)
17 */
18#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
Eric Coopera3f41c82010-11-24 17:11:32 +053019#define CONFIG_KW88F6281 1 /* SOC Name */
20#define CONFIG_MACH_DOCKSTAR /* Machine type */
21#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
22
23/*
24 * Commands configuration
25 */
Eric Coopera3f41c82010-11-24 17:11:32 +053026#define CONFIG_CMD_NAND
Eric Coopera3f41c82010-11-24 17:11:32 +053027/*
28 * mv-common.h should be defined after CMD configs since it used them
29 * to enable certain macros
30 */
31#include "mv-common.h"
32
Eric Coopera3f41c82010-11-24 17:11:32 +053033/*
34 * Environment variables configurations
35 */
36#ifdef CONFIG_CMD_NAND
Eric Coopera3f41c82010-11-24 17:11:32 +053037#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
Eric Coopera3f41c82010-11-24 17:11:32 +053038#endif
39/*
40 * max 4k env size is enough, but in case of nand
41 * it has to be rounded to sector size
42 */
43#define CONFIG_ENV_SIZE 0x20000 /* 128k */
Eric Cooper9be25dc2015-10-12 19:18:52 -040044#define CONFIG_ENV_ADDR 0x80000
45#define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
Eric Coopera3f41c82010-11-24 17:11:32 +053046
47/*
48 * Default environment variables
49 */
50#define CONFIG_BOOTCOMMAND \
51 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
52 "ubi part root; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000053 "ubifsmount ubi:root; " \
Eric Coopera3f41c82010-11-24 17:11:32 +053054 "ubifsload 0x800000 ${kernel}; " \
55 "ubifsload 0x1100000 ${initrd}; " \
56 "bootm 0x800000 0x1100000"
57
58#define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0"
59
60#define CONFIG_EXTRA_ENV_SETTINGS \
61 "console=console=ttyS0,115200\0" \
62 "mtdids=nand0=orion_nand\0" \
63 "mtdparts="CONFIG_MTDPARTS \
64 "kernel=/boot/uImage\0" \
65 "initrd=/boot/uInitrd\0" \
66 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
67
68/*
69 * Ethernet Driver configuration
70 */
71#ifdef CONFIG_CMD_NET
72#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
73#define CONFIG_PHY_BASE_ADR 0
74#endif /* CONFIG_CMD_NET */
75
76/*
77 * File system
78 */
Eric Coopera3f41c82010-11-24 17:11:32 +053079#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
80#define CONFIG_MTD_PARTITIONS
Eric Coopera3f41c82010-11-24 17:11:32 +053081
82#endif /* _CONFIG_DOCKSTAR_H */