]>
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 | ||
e0c8fa8f AB |
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 | ||
26749582 AB |
28 | /* |
29 | * High Level Configuration Options | |
30 | */ | |
31 | #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ | |
32 | #define CONFIG_ARMADA100 1 /* SOC Family Name */ | |
33 | #define CONFIG_ARMADA168 1 /* SOC Used on this Board */ | |
e0c8fa8f | 34 | #define CONFIG_MACH_TYPE MACH_TYPE_SHEEVAD /* Machine type */ |
26749582 AB |
35 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
36 | ||
37 | #define CONFIG_SYS_TEXT_BASE 0x00f00000 | |
38 | ||
39 | /* | |
40 | * There is no internal RAM in ARMADA100, using DRAM | |
41 | * TBD: dcache to be used for this | |
42 | */ | |
43 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) | |
44 | #define CONFIG_NR_DRAM_BANKS_MAX 2 | |
45 | ||
46 | /* | |
47 | * Commands configuration | |
48 | */ | |
49 | #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ | |
aa0ecfeb AB |
50 | |
51 | /* Disable DCACHE */ | |
52 | #define CONFIG_SYS_DCACHE_OFF | |
53 | ||
54 | /* Network configuration */ | |
55 | #ifdef CONFIG_CMD_NET | |
aa0ecfeb AB |
56 | #define CONFIG_ARMADA100_FEC |
57 | ||
58 | /* DHCP Support */ | |
aa0ecfeb AB |
59 | #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 |
60 | #endif /* CONFIG_CMD_NET */ | |
26749582 | 61 | |
47e75d72 AB |
62 | /* GPIO Support */ |
63 | #define CONFIG_MARVELL_GPIO | |
64 | ||
65 | /* PHY configuration */ | |
66 | #define CONFIG_MII | |
47e75d72 AB |
67 | #define CONFIG_RESET_PHY_R |
68 | /* 88E3015 register definition */ | |
69 | #define PHY_LED_PAR_SEL_REG 22 | |
70 | #define PHY_LED_MAN_REG 25 | |
71 | #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */ | |
72 | /* GPIO Configuration for PHY */ | |
73 | #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */ | |
74 | ||
2f83cd57 | 75 | /* Flash Support */ |
2f83cd57 | 76 | |
26749582 AB |
77 | /* |
78 | * mv-common.h should be defined after CMD configs since it used them | |
79 | * to enable certain macros | |
80 | */ | |
81 | #include "mv-common.h" | |
26749582 AB |
82 | |
83 | #ifdef CONFIG_SYS_NS16550_COM1 | |
84 | #undef CONFIG_SYS_NS16550_COM1 | |
85 | #endif /* CONFIG_SYS_NS16550_COM1 */ | |
86 | ||
87 | #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE | |
88 | ||
89 | /* | |
90 | * Environment variables configurations | |
91 | */ | |
cb71c6d8 | 92 | #define CONFIG_ENV_IS_NOWHERE |
b5de038f | 93 | #define CONFIG_ENV_SIZE 0x4000 |
b5de038f | 94 | |
099cb1ee AB |
95 | #ifdef CONFIG_CMD_USB |
96 | #define CONFIG_USB_EHCI | |
97 | #define CONFIG_USB_EHCI_ARMADA100 | |
98 | #define CONFIG_EHCI_IS_TDI | |
099cb1ee AB |
99 | #endif /* CONFIG_CMD_USB */ |
100 | ||
099cb1ee AB |
101 | #define CONFIG_ISO_PARTITION |
102 | #define CONFIG_SUPPORT_VFAT | |
103 | ||
26749582 | 104 | #endif /* __CONFIG_GPLUGD_H */ |