1 /* 2 * (C) Copyright 2011 3 * eInfochips Ltd. <www.einfochips.com> 4 * Written-by: Ajay Bhargav <contact@8051projects.net> 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 * High Level Configuration Options 20 */ 21 #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ 22 #define CONFIG_ARMADA100 1 /* SOC Family Name */ 23 #define CONFIG_ARMADA168 1 /* SOC Used on this Board */ 24 #define CONFIG_MACH_TYPE MACH_TYPE_GPLUGD /* Machine type */ 25 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 26 27 /* 28 * There is no internal RAM in ARMADA100, using DRAM 29 * TBD: dcache to be used for this 30 */ 31 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) 32 #define CONFIG_NR_DRAM_BANKS_MAX 2 33 34 /* 35 * Commands configuration 36 */ 37 38 /* Disable DCACHE */ 39 #define CONFIG_SYS_DCACHE_OFF 40 41 /* Network configuration */ 42 #ifdef CONFIG_CMD_NET 43 #define CONFIG_ARMADA100_FEC 44 45 /* DHCP Support */ 46 #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 47 #endif /* CONFIG_CMD_NET */ 48 49 /* GPIO Support */ 50 #define CONFIG_MARVELL_GPIO 51 52 /* PHY configuration */ 53 #define CONFIG_MII 54 #define CONFIG_RESET_PHY_R 55 /* 88E3015 register definition */ 56 #define PHY_LED_PAR_SEL_REG 22 57 #define PHY_LED_MAN_REG 25 58 #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */ 59 /* GPIO Configuration for PHY */ 60 #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */ 61 62 /* Flash Support */ 63 64 /* 65 * mv-common.h should be defined after CMD configs since it used them 66 * to enable certain macros 67 */ 68 #include "mv-common.h" 69 70 #ifdef CONFIG_SYS_NS16550_COM1 71 #undef CONFIG_SYS_NS16550_COM1 72 #endif /* CONFIG_SYS_NS16550_COM1 */ 73 74 #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE 75 76 /* 77 * Environment variables configurations 78 */ 79 #define CONFIG_ENV_SIZE 0x4000 80 81 #ifdef CONFIG_CMD_USB 82 #define CONFIG_USB_EHCI_ARMADA100 83 #define CONFIG_EHCI_IS_TDI 84 #endif /* CONFIG_CMD_USB */ 85 86 #endif /* __CONFIG_GPLUGD_H */ 87