1 /* 2 * (C) Copyright 2011 3 * Jason Cooper <u-boot@lakedaemon.net> 4 * 5 * Based on work by: 6 * Marvell Semiconductor <www.marvell.com> 7 * Written-by: Siddarth Gore <gores@marvell.com> 8 * 9 * SPDX-License-Identifier: GPL-2.0+ 10 */ 11 12 #ifndef _CONFIG_DREAMPLUG_H 13 #define _CONFIG_DREAMPLUG_H 14 15 /* 16 * FIXME: This belongs in mach-types.h. However, we only pull mach-types 17 * from Linus' kernel.org tree. This hasn't been updated primarily due to 18 * the recent arch/arm reshuffling. So, in the meantime, we'll place it 19 * here. 20 */ 21 #include <asm/mach-types.h> 22 #ifdef MACH_TYPE_DREAMPLUG 23 #error "MACH_TYPE_DREAMPLUG has been defined properly, please remove this." 24 #else 25 #define MACH_TYPE_DREAMPLUG 3550 26 #endif 27 28 /* 29 * Version number information 30 */ 31 #define CONFIG_IDENT_STRING "\nMarvell-DreamPlug" 32 33 /* 34 * High Level Configuration Options (easy to change) 35 */ 36 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ 37 #define CONFIG_KW88F6281 1 /* SOC Name */ 38 #define CONFIG_MACH_TYPE MACH_TYPE_DREAMPLUG 39 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 40 41 /* Add target to build it automatically upon "make" */ 42 #define CONFIG_BUILD_TARGET "u-boot.kwb" 43 44 /* 45 * Enable device tree support 46 */ 47 #define CONFIG_OF_LIBFDT 48 49 /* 50 * Commands configuration 51 */ 52 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 53 #define CONFIG_CMD_DATE 54 #define CONFIG_CMD_ENV 55 #define CONFIG_CMD_EXT2 56 #define CONFIG_CMD_EXT4 57 #define CONFIG_CMD_FAT 58 #define CONFIG_CMD_IDE 59 #define CONFIG_CMD_MII 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_SPI_FLASH 71 #define CONFIG_ENV_IS_IN_SPI_FLASH 1 72 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64k */ 73 #else 74 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 75 #endif 76 77 #ifdef CONFIG_CMD_SF 78 #define CONFIG_HARD_SPI 1 79 #define CONFIG_KIRKWOOD_SPI 1 80 #define CONFIG_SPI_FLASH_MACRONIX 1 81 #define CONFIG_ENV_SPI_BUS 0 82 #define CONFIG_ENV_SPI_CS 0 83 #define CONFIG_ENV_SPI_MAX_HZ 50000000 /* 50 MHz */ 84 #endif 85 86 /* 87 * max 4k env size is enough, but in case of nand 88 * it has to be rounded to sector size 89 */ 90 #define CONFIG_ENV_SIZE 0x1000 /* 4k */ 91 #define CONFIG_ENV_ADDR 0x100000 92 #define CONFIG_ENV_OFFSET 0x100000 /* env starts here */ 93 94 /* 95 * Default environment variables 96 */ 97 #define CONFIG_BOOTCOMMAND "setenv ethact egiga0; " \ 98 "${x_bootcmd_ethernet}; setenv ethact egiga1; " \ 99 "${x_bootcmd_ethernet}; ${x_bootcmd_usb}; ${x_bootcmd_kernel}; "\ 100 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ 101 "bootm 0x6400000;" 102 103 #define CONFIG_EXTRA_ENV_SETTINGS \ 104 "x_bootcmd_ethernet=ping 192.168.2.1\0" \ 105 "x_bootcmd_usb=usb start\0" \ 106 "x_bootcmd_kernel=fatload usb 0 0x6400000 uImage\0" \ 107 "x_bootargs=console=ttyS0,115200\0" \ 108 "x_bootargs_root=root=/dev/sda2 rootdelay=10\0" 109 110 /* 111 * Ethernet Driver configuration 112 */ 113 #ifdef CONFIG_CMD_NET 114 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ 115 #define CONFIG_PHY_BASE_ADR 0 116 #endif /* CONFIG_CMD_NET */ 117 118 /* 119 * SATA Driver configuration 120 */ 121 #ifdef CONFIG_MVSATA_IDE 122 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 123 #endif /*CONFIG_MVSATA_IDE*/ 124 125 /* 126 * RTC driver configuration 127 */ 128 #ifdef CONFIG_CMD_DATE 129 #define CONFIG_RTC_MV 130 #endif /* CONFIG_CMD_DATE */ 131 132 #define CONFIG_SYS_ALT_MEMTEST 133 134 #endif /* _CONFIG_DREAMPLUG_H */ 135