xref: /openbmc/u-boot/include/configs/gplugd.h (revision 3335786a)
1 /*
2  * (C) Copyright 2011
3  * eInfochips Ltd. <www.einfochips.com>
4  * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
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 /* SPI Support */
76 #define CONFIG_ARMADA100_SPI
77 #define CONFIG_ENV_SPI_CS		110
78 #define CONFIG_SYS_SSP_PORT		2
79 
80 /* Flash Support */
81 
82 /*
83  * mv-common.h should be defined after CMD configs since it used them
84  * to enable certain macros
85  */
86 #include "mv-common.h"
87 #undef CONFIG_ARCH_MISC_INIT
88 
89 #ifdef CONFIG_SYS_NS16550_COM1
90 #undef CONFIG_SYS_NS16550_COM1
91 #endif /* CONFIG_SYS_NS16550_COM1 */
92 
93 #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE
94 
95 /*
96  * Environment variables configurations
97  */
98 #define CONFIG_ENV_IS_IN_SPI_FLASH
99 #define CONFIG_ENV_SECT_SIZE		0x4000
100 #define CONFIG_ENV_SIZE			0x4000
101 #define CONFIG_ENV_OFFSET		0x07C000
102 
103 #ifdef CONFIG_CMD_USB
104 #define CONFIG_USB_EHCI
105 #define CONFIG_USB_EHCI_ARMADA100
106 #define CONFIG_EHCI_IS_TDI
107 #endif /* CONFIG_CMD_USB */
108 
109 #define CONFIG_DOS_PARTITION
110 #define CONFIG_ISO_PARTITION
111 #define CONFIG_SUPPORT_VFAT
112 
113 #endif	/* __CONFIG_GPLUGD_H */
114