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