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