1 /* 2 * (C) Copyright 2009-2014 3 * Gerald Kerma <dreagle@doukki.net> 4 * Marvell Semiconductor <www.marvell.com> 5 * Written-by: Siddarth Gore <gores@marvell.com> 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef _CONFIG_GURUPLUG_H 11 #define _CONFIG_GURUPLUG_H 12 13 14 /* 15 * Version number information 16 */ 17 #define CONFIG_IDENT_STRING "\nMarvell-GuruPlug" 18 19 /* 20 * High Level Configuration Options (easy to change) 21 */ 22 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ 23 #define CONFIG_KW88F6281 1 /* SOC Name */ 24 #define CONFIG_MACH_GURUPLUG /* Machine type */ 25 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 26 27 /* Add target to build it automatically upon "make" */ 28 #define CONFIG_BUILD_TARGET "u-boot.kwb" 29 30 /* 31 * Compression configuration 32 */ 33 #define CONFIG_BZIP2 34 #define CONFIG_LZMA 35 #define CONFIG_LZO 36 37 /* 38 * Enable device tree support 39 */ 40 #define CONFIG_OF_LIBFDT 41 42 /* 43 * Miscellaneous configurable options 44 */ 45 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */ 46 47 /* 48 * Commands configuration 49 */ 50 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 51 #define CONFIG_CMD_BOOTZ 52 #define CONFIG_CMD_DATE 53 #define CONFIG_CMD_DHCP 54 #define CONFIG_CMD_ENV 55 #define CONFIG_CMD_IDE 56 #define CONFIG_CMD_MII 57 #define CONFIG_CMD_NAND 58 #define CONFIG_CMD_PING 59 #define CONFIG_CMD_USB 60 61 /* 62 * mv-common.h should be defined after CMD configs since it used them 63 * to enable certain macros 64 */ 65 #include "mv-common.h" 66 67 /* 68 * Environment variables configurations 69 */ 70 #ifdef CONFIG_CMD_NAND 71 #define CONFIG_ENV_IS_IN_NAND 1 72 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 73 #else 74 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 75 #endif 76 /* 77 * max 4k env size is enough, but in case of nand 78 * it has to be rounded to sector size 79 */ 80 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 81 #define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */ 82 83 /* 84 * Default environment variables 85 */ 86 #define CONFIG_BOOTCOMMAND \ 87 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 88 "ubi part root; " \ 89 "ubifsmount ubi:rootfs; " \ 90 "ubifsload 0x800000 ${kernel}; " \ 91 "ubifsload 0x700000 ${fdt}; " \ 92 "ubifsumount; " \ 93 "fdt addr 0x700000; fdt resize; fdt chosen; " \ 94 "bootz 0x800000 - 0x700000" 95 96 #define CONFIG_MTDPARTS \ 97 "mtdparts=orion_nand:" \ 98 "896K(uboot),128K(uboot_env)," \ 99 "-@1M(root)\0" 100 101 #define CONFIG_EXTRA_ENV_SETTINGS \ 102 "console=console=ttyS0,115200\0" \ 103 "mtdids=nand0=orion_nand\0" \ 104 "mtdparts="CONFIG_MTDPARTS \ 105 "kernel=/boot/zImage\0" \ 106 "fdt=/boot/guruplug-server-plus.dtb\0" \ 107 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" 108 109 #define MTDIDS_DEFAULT "nand0=orion_nand" 110 111 #define MTDPARTS_DEFAULT \ 112 "mtdparts="CONFIG_MTDPARTS 113 114 /* 115 * Ethernet Driver configuration 116 */ 117 #ifdef CONFIG_CMD_NET 118 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ 119 #define CONFIG_PHY_BASE_ADR 0 120 #endif /* CONFIG_CMD_NET */ 121 122 /* 123 * SATA Driver configuration 124 */ 125 #ifdef CONFIG_MVSATA_IDE 126 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 127 #endif /*CONFIG_MVSATA_IDE*/ 128 129 /* 130 * RTC driver configuration 131 */ 132 #ifdef CONFIG_CMD_DATE 133 #define CONFIG_RTC_MV 134 #endif /* CONFIG_CMD_DATE */ 135 136 /* 137 * File system 138 */ 139 #define CONFIG_CMD_EXT2 140 #define CONFIG_CMD_EXT4 141 #define CONFIG_CMD_FAT 142 #define CONFIG_CMD_JFFS2 143 #define CONFIG_CMD_UBI 144 #define CONFIG_CMD_UBIFS 145 #define CONFIG_RBTREE 146 #define CONFIG_MTD_DEVICE 147 #define CONFIG_MTD_PARTITIONS 148 #define CONFIG_CMD_MTDPARTS 149 150 #define CONFIG_SYS_ALT_MEMTEST 151 152 #endif /* _CONFIG_GURUPLUG_H */ 153