1 /* 2 * (C) Copyright 2009-2014 3 * Gerald Kerma <dreagle@doukki.net> 4 * Marvell Semiconductor <www.marvell.com> 5 * Written-by: Prafulla Wadaskar <prafulla@marvell.com> 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef _CONFIG_SHEEVAPLUG_H 11 #define _CONFIG_SHEEVAPLUG_H 12 13 #define CONFIG_SYS_GENERIC_BOARD 14 15 /* 16 * Version number information 17 */ 18 #define CONFIG_IDENT_STRING "\nMarvell-Sheevaplug" 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_SHEEVAPLUG /* Machine type */ 26 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 27 28 /* 29 * Compression configuration 30 */ 31 #define CONFIG_BZIP2 32 #define CONFIG_LZMA 33 #define CONFIG_LZO 34 35 /* 36 * Miscellaneous configurable options 37 */ 38 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */ 39 40 /* 41 * Commands configuration 42 */ 43 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 44 #include <config_cmd_default.h> 45 #define CONFIG_CMD_BOOTZ 46 #define CONFIG_CMD_DHCP 47 #define CONFIG_CMD_ENV 48 #define CONFIG_CMD_IDE 49 #define CONFIG_CMD_MII 50 #define CONFIG_CMD_MMC 51 #define CONFIG_CMD_NAND 52 #define CONFIG_CMD_PING 53 #define CONFIG_CMD_USB 54 55 /* 56 * mv-common.h should be defined after CMD configs since it used them 57 * to enable certain macros 58 */ 59 #include "mv-common.h" 60 61 /* 62 * Environment variables configurations 63 */ 64 #ifdef CONFIG_CMD_NAND 65 #define CONFIG_ENV_IS_IN_NAND 1 66 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 67 #else 68 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 69 #endif 70 /* 71 * max 4k env size is enough, but in case of nand 72 * it has to be rounded to sector size 73 */ 74 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 75 #define CONFIG_ENV_ADDR 0x80000 76 #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */ 77 78 /* 79 * Default environment variables 80 */ 81 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ 82 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ 83 "${x_bootcmd_usb}; bootm 0x6400000;" 84 85 #define CONFIG_MTDPARTS \ 86 "mtdparts=orion_nand:512K(uboot)," \ 87 "512K(env),1M(script),6M(kernel)," \ 88 "12M(ramdisk),4M(spare),-(rootfs)" 89 90 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \ 91 "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS \ 92 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ 93 "x_bootcmd_usb=usb start\0" \ 94 "x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0" 95 96 #define MTDIDS_DEFAULT "nand0=orion_nand" 97 98 #define MTDPARTS_DEFAULT \ 99 "mtdparts="CONFIG_MTDPARTS 100 101 /* 102 * Ethernet Driver configuration 103 */ 104 #ifdef CONFIG_CMD_NET 105 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 106 #define CONFIG_PHY_BASE_ADR 0 107 #endif /* CONFIG_CMD_NET */ 108 109 /* 110 * SDIO/MMC Card Configuration 111 */ 112 #ifdef CONFIG_CMD_MMC 113 #define CONFIG_MMC 114 #define CONFIG_GENERIC_MMC 115 #define CONFIG_MVEBU_MMC 116 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE 117 #endif /* CONFIG_CMD_MMC */ 118 119 /* 120 * SATA driver configuration 121 */ 122 #ifdef CONFIG_CMD_IDE 123 #define __io 124 #define CONFIG_IDE_PREINIT 125 #define CONFIG_DOS_PARTITION 126 #define CONFIG_MVSATA_IDE_USE_PORT0 127 #define CONFIG_MVSATA_IDE_USE_PORT1 128 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 129 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 130 #endif /* CONFIG_CMD_IDE */ 131 132 /* 133 * File system 134 */ 135 #define CONFIG_CMD_EXT2 136 #define CONFIG_CMD_EXT4 137 #define CONFIG_CMD_FAT 138 #define CONFIG_CMD_JFFS2 139 #define CONFIG_CMD_UBI 140 #define CONFIG_CMD_UBIFS 141 #define CONFIG_RBTREE 142 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 143 #define CONFIG_MTD_PARTITIONS 144 #define CONFIG_CMD_MTDPARTS 145 #define CONFIG_LZO 146 147 #endif /* _CONFIG_SHEEVAPLUG_H */ 148