]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
26749582 AB |
2 | /* |
3 | * (C) Copyright 2011 | |
4 | * eInfochips Ltd. <www.einfochips.com> | |
c7c47ca2 | 5 | * Written-by: Ajay Bhargav <[email protected]> |
26749582 AB |
6 | * |
7 | * Based on Aspenite: | |
8 | * (C) Copyright 2010 | |
9 | * Marvell Semiconductor <www.marvell.com> | |
10 | * Written-by: Prafulla Wadaskar <[email protected]> | |
11 | * Contributor: Mahavir Jain <[email protected]> | |
26749582 AB |
12 | */ |
13 | ||
14 | #ifndef __CONFIG_GPLUGD_H | |
15 | #define __CONFIG_GPLUGD_H | |
16 | ||
26749582 AB |
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 */ | |
92a1babf | 23 | #define CONFIG_MACH_TYPE MACH_TYPE_GPLUGD /* Machine type */ |
26749582 AB |
24 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
25 | ||
26749582 AB |
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) | |
26749582 AB |
31 | |
32 | /* | |
33 | * Commands configuration | |
34 | */ | |
aa0ecfeb | 35 | |
aa0ecfeb AB |
36 | /* Network configuration */ |
37 | #ifdef CONFIG_CMD_NET | |
aa0ecfeb AB |
38 | #define CONFIG_ARMADA100_FEC |
39 | ||
40 | /* DHCP Support */ | |
aa0ecfeb AB |
41 | #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 |
42 | #endif /* CONFIG_CMD_NET */ | |
26749582 | 43 | |
47e75d72 AB |
44 | /* GPIO Support */ |
45 | #define CONFIG_MARVELL_GPIO | |
46 | ||
47 | /* PHY configuration */ | |
47e75d72 AB |
48 | #define CONFIG_RESET_PHY_R |
49 | /* 88E3015 register definition */ | |
50 | #define PHY_LED_PAR_SEL_REG 22 | |
51 | #define PHY_LED_MAN_REG 25 | |
52 | #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */ | |
53 | /* GPIO Configuration for PHY */ | |
54 | #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */ | |
55 | ||
2f83cd57 | 56 | /* Flash Support */ |
2f83cd57 | 57 | |
26749582 AB |
58 | /* |
59 | * mv-common.h should be defined after CMD configs since it used them | |
60 | * to enable certain macros | |
61 | */ | |
62 | #include "mv-common.h" | |
26749582 AB |
63 | |
64 | #ifdef CONFIG_SYS_NS16550_COM1 | |
65 | #undef CONFIG_SYS_NS16550_COM1 | |
66 | #endif /* CONFIG_SYS_NS16550_COM1 */ | |
67 | ||
68 | #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE | |
69 | ||
70 | /* | |
71 | * Environment variables configurations | |
72 | */ | |
b5de038f | 73 | #define CONFIG_ENV_SIZE 0x4000 |
b5de038f | 74 | |
099cb1ee | 75 | #ifdef CONFIG_CMD_USB |
099cb1ee AB |
76 | #define CONFIG_USB_EHCI_ARMADA100 |
77 | #define CONFIG_EHCI_IS_TDI | |
099cb1ee AB |
78 | #endif /* CONFIG_CMD_USB */ |
79 | ||
26749582 | 80 | #endif /* __CONFIG_GPLUGD_H */ |