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