disk: convert CONFIG_ISO_PARTITION to Kconfig
[platform/kernel/u-boot.git] / include / configs / gplugd.h
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  * 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
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 */
34 #define CONFIG_MACH_TYPE                MACH_TYPE_SHEEVAD /* Machine type */
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) */
50
51 /* Disable DCACHE */
52 #define CONFIG_SYS_DCACHE_OFF
53
54 /* Network configuration */
55 #ifdef CONFIG_CMD_NET
56 #define CONFIG_ARMADA100_FEC
57
58 /* DHCP Support */
59 #define CONFIG_BOOTP_DHCP_REQUEST_DELAY         50000
60 #endif /* CONFIG_CMD_NET */
61
62 /* GPIO Support */
63 #define CONFIG_MARVELL_GPIO
64
65 /* PHY configuration */
66 #define CONFIG_MII
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
75 /* Flash Support */
76
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"
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  */
92 #define CONFIG_ENV_IS_NOWHERE
93 #define CONFIG_ENV_SIZE                 0x4000
94
95 #ifdef CONFIG_CMD_USB
96 #define CONFIG_USB_EHCI
97 #define CONFIG_USB_EHCI_ARMADA100
98 #define CONFIG_EHCI_IS_TDI
99 #endif /* CONFIG_CMD_USB */
100
101 #define CONFIG_SUPPORT_VFAT
102
103 #endif  /* __CONFIG_GPLUGD_H */