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 * 9 * SPDX-License-Identifier: GPL-2.0+ 10 */ 11 12 #ifndef _CONFIG_DOCKSTAR_H 13 #define _CONFIG_DOCKSTAR_H 14 15 #define CONFIG_SYS_GENERIC_BOARD 16 17 /* 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 */ 26 #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) */ 34 #include <config_cmd_default.h> 35 #define CONFIG_CMD_DHCP 36 #define CONFIG_CMD_ENV 37 #define CONFIG_CMD_MII 38 #define CONFIG_CMD_NAND 39 #define CONFIG_CMD_PING 40 #define CONFIG_CMD_USB 41 /* 42 * mv-common.h should be defined after CMD configs since it used them 43 * to enable certain macros 44 */ 45 #include "mv-common.h" 46 47 #undef CONFIG_SYS_PROMPT /* previously defined in mv-common.h */ 48 #define CONFIG_SYS_PROMPT "DockStar> " /* Command Prompt */ 49 50 /* 51 * Environment variables configurations 52 */ 53 #ifdef CONFIG_CMD_NAND 54 #define CONFIG_ENV_IS_IN_NAND 1 55 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 56 #else 57 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 58 #endif 59 /* 60 * max 4k env size is enough, but in case of nand 61 * it has to be rounded to sector size 62 */ 63 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 64 #define CONFIG_ENV_ADDR 0x60000 65 #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */ 66 67 /* 68 * Default environment variables 69 */ 70 #define CONFIG_BOOTCOMMAND \ 71 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 72 "ubi part root; " \ 73 "ubifsmount ubi:root; " \ 74 "ubifsload 0x800000 ${kernel}; " \ 75 "ubifsload 0x1100000 ${initrd}; " \ 76 "bootm 0x800000 0x1100000" 77 78 #define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0" 79 80 #define CONFIG_EXTRA_ENV_SETTINGS \ 81 "console=console=ttyS0,115200\0" \ 82 "mtdids=nand0=orion_nand\0" \ 83 "mtdparts="CONFIG_MTDPARTS \ 84 "kernel=/boot/uImage\0" \ 85 "initrd=/boot/uInitrd\0" \ 86 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0" 87 88 /* 89 * Ethernet Driver configuration 90 */ 91 #ifdef CONFIG_CMD_NET 92 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 93 #define CONFIG_PHY_BASE_ADR 0 94 #endif /* CONFIG_CMD_NET */ 95 96 /* 97 * File system 98 */ 99 #define CONFIG_CMD_EXT2 100 #define CONFIG_CMD_FAT 101 #define CONFIG_CMD_JFFS2 102 #define CONFIG_CMD_UBI 103 #define CONFIG_CMD_UBIFS 104 #define CONFIG_RBTREE 105 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 106 #define CONFIG_MTD_PARTITIONS 107 #define CONFIG_CMD_MTDPARTS 108 #define CONFIG_LZO 109 110 #endif /* _CONFIG_DOCKSTAR_H */ 111