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 /* 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_KW88F6281 1 /* SOC Name */ 25 #define CONFIG_MACH_DOCKSTAR /* Machine type */ 26 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 27 28 /* 29 * Commands configuration 30 */ 31 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 32 #define CONFIG_CMD_ENV 33 #define CONFIG_CMD_MII 34 #define CONFIG_CMD_NAND 35 /* 36 * mv-common.h should be defined after CMD configs since it used them 37 * to enable certain macros 38 */ 39 #include "mv-common.h" 40 41 /* 42 * Environment variables configurations 43 */ 44 #ifdef CONFIG_CMD_NAND 45 #define CONFIG_ENV_IS_IN_NAND 1 46 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 47 #else 48 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 49 #endif 50 /* 51 * max 4k env size is enough, but in case of nand 52 * it has to be rounded to sector size 53 */ 54 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 55 #define CONFIG_ENV_ADDR 0x80000 56 #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */ 57 58 /* 59 * Default environment variables 60 */ 61 #define CONFIG_BOOTCOMMAND \ 62 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 63 "ubi part root; " \ 64 "ubifsmount ubi:root; " \ 65 "ubifsload 0x800000 ${kernel}; " \ 66 "ubifsload 0x1100000 ${initrd}; " \ 67 "bootm 0x800000 0x1100000" 68 69 #define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0" 70 71 #define CONFIG_EXTRA_ENV_SETTINGS \ 72 "console=console=ttyS0,115200\0" \ 73 "mtdids=nand0=orion_nand\0" \ 74 "mtdparts="CONFIG_MTDPARTS \ 75 "kernel=/boot/uImage\0" \ 76 "initrd=/boot/uInitrd\0" \ 77 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0" 78 79 /* 80 * Ethernet Driver configuration 81 */ 82 #ifdef CONFIG_CMD_NET 83 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 84 #define CONFIG_PHY_BASE_ADR 0 85 #endif /* CONFIG_CMD_NET */ 86 87 /* 88 * File system 89 */ 90 #define CONFIG_CMD_EXT2 91 #define CONFIG_CMD_FAT 92 #define CONFIG_CMD_JFFS2 93 #define CONFIG_CMD_UBI 94 #define CONFIG_CMD_UBIFS 95 #define CONFIG_RBTREE 96 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 97 #define CONFIG_MTD_PARTITIONS 98 #define CONFIG_CMD_MTDPARTS 99 #define CONFIG_LZO 100 101 #endif /* _CONFIG_DOCKSTAR_H */ 102