1 /* 2 * (C) Copyright 2011 3 * eInfochips Ltd. <www.einfochips.com> 4 * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com> 5 * 6 * Based on Aspenite: 7 * (C) Copyright 2010 8 * Marvell Semiconductor <www.marvell.com> 9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com> 10 * Contributor: Mahavir Jain <mjain@marvell.com> 11 * 12 * SPDX-License-Identifier: GPL-2.0+ 13 */ 14 15 #ifndef __CONFIG_GPLUGD_H 16 #define __CONFIG_GPLUGD_H 17 18 /* 19 * FIXME: fix for error caused due to recent update to mach-types.h 20 */ 21 #include <asm/mach-types.h> 22 #ifdef MACH_TYPE_SHEEVAD 23 #error "MACH_TYPE_SHEEVAD has been defined properly, please remove this." 24 #else 25 #define MACH_TYPE_SHEEVAD 2625 26 #endif 27 28 /* 29 * Version number information 30 */ 31 #define CONFIG_IDENT_STRING "\nMarvell-gplugD" 32 33 /* 34 * High Level Configuration Options 35 */ 36 #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ 37 #define CONFIG_ARMADA100 1 /* SOC Family Name */ 38 #define CONFIG_ARMADA168 1 /* SOC Used on this Board */ 39 #define CONFIG_MACH_TYPE MACH_TYPE_SHEEVAD /* Machine type */ 40 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 41 42 #define CONFIG_SYS_TEXT_BASE 0x00f00000 43 44 /* 45 * There is no internal RAM in ARMADA100, using DRAM 46 * TBD: dcache to be used for this 47 */ 48 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) 49 #define CONFIG_NR_DRAM_BANKS_MAX 2 50 51 /* 52 * Commands configuration 53 */ 54 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 55 56 /* Disable DCACHE */ 57 #define CONFIG_SYS_DCACHE_OFF 58 59 /* Network configuration */ 60 #ifdef CONFIG_CMD_NET 61 #define CONFIG_ARMADA100_FEC 62 63 /* DHCP Support */ 64 #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 65 #endif /* CONFIG_CMD_NET */ 66 67 /* GPIO Support */ 68 #define CONFIG_MARVELL_GPIO 69 70 /* PHY configuration */ 71 #define CONFIG_MII 72 #define CONFIG_RESET_PHY_R 73 /* 88E3015 register definition */ 74 #define PHY_LED_PAR_SEL_REG 22 75 #define PHY_LED_MAN_REG 25 76 #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */ 77 /* GPIO Configuration for PHY */ 78 #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */ 79 80 /* SPI Support */ 81 #define CONFIG_ARMADA100_SPI 82 #define CONFIG_ENV_SPI_CS 110 83 #define CONFIG_SYS_SSP_PORT 2 84 85 /* Flash Support */ 86 87 /* 88 * mv-common.h should be defined after CMD configs since it used them 89 * to enable certain macros 90 */ 91 #include "mv-common.h" 92 #undef CONFIG_ARCH_MISC_INIT 93 94 #ifdef CONFIG_SYS_NS16550_COM1 95 #undef CONFIG_SYS_NS16550_COM1 96 #endif /* CONFIG_SYS_NS16550_COM1 */ 97 98 #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE 99 100 /* 101 * Environment variables configurations 102 */ 103 #define CONFIG_ENV_IS_IN_SPI_FLASH 104 #define CONFIG_ENV_SECT_SIZE 0x4000 105 #define CONFIG_ENV_SIZE 0x4000 106 #define CONFIG_ENV_OFFSET 0x07C000 107 108 #ifdef CONFIG_CMD_USB 109 #define CONFIG_USB_EHCI 110 #define CONFIG_USB_EHCI_ARMADA100 111 #define CONFIG_EHCI_IS_TDI 112 #define CONFIG_USB_STORAGE 113 #endif /* CONFIG_CMD_USB */ 114 115 #define CONFIG_DOS_PARTITION 116 #define CONFIG_ISO_PARTITION 117 #define CONFIG_SUPPORT_VFAT 118 119 #endif /* __CONFIG_GPLUGD_H */ 120