]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/gplugd.h
Merge branch 'tx28-update' into tx28-bugfix
[karo-tx-uboot.git] / include / configs / gplugd.h
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  * Generic board support
30  */
31 #define CONFIG_SYS_GENERIC_BOARD
32
33 /*
34  * Version number information
35  */
36 #define CONFIG_IDENT_STRING     "\nMarvell-gplugD"
37
38 /*
39  * High Level Configuration Options
40  */
41 #define CONFIG_SHEEVA_88SV331xV5        1       /* CPU Core subversion */
42 #define CONFIG_ARMADA100                1       /* SOC Family Name */
43 #define CONFIG_ARMADA168                1       /* SOC Used on this Board */
44 #define CONFIG_MACH_TYPE                MACH_TYPE_SHEEVAD /* Machine type */
45 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
46
47 #define CONFIG_SYS_TEXT_BASE    0x00f00000
48
49 /*
50  * There is no internal RAM in ARMADA100, using DRAM
51  * TBD: dcache to be used for this
52  */
53 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_TEXT_BASE - 0x00200000)
54 #define CONFIG_NR_DRAM_BANKS_MAX        2
55
56 /*
57  * Commands configuration
58  */
59 #define CONFIG_SYS_NO_FLASH             /* Declare no flash (NOR/SPI) */
60 #define CONFIG_CMD_I2C
61 #define CONFIG_CMD_USB
62 #define CONFIG_CMD_EXT2
63 #define CONFIG_CMD_FAT
64
65 /* Disable DCACHE */
66 #define CONFIG_SYS_DCACHE_OFF
67
68 /* Network configuration */
69 #ifdef CONFIG_CMD_NET
70 #define CONFIG_CMD_PING
71 #define CONFIG_ARMADA100_FEC
72
73 /* DHCP Support */
74 #define CONFIG_CMD_DHCP
75 #define CONFIG_BOOTP_DHCP_REQUEST_DELAY         50000
76 #endif /* CONFIG_CMD_NET */
77
78 /* GPIO Support */
79 #define CONFIG_MARVELL_GPIO
80
81 /* PHY configuration */
82 #define CONFIG_MII
83 #define CONFIG_CMD_MII
84 #define CONFIG_RESET_PHY_R
85 /* 88E3015 register definition */
86 #define PHY_LED_PAR_SEL_REG             22
87 #define PHY_LED_MAN_REG                 25
88 #define PHY_LED_VAL                     0x5b    /* LINK LED1, ACT LED2 */
89 /* GPIO Configuration for PHY */
90 #define CONFIG_SYS_GPIO_PHY_RST         104     /* GPIO104 */
91
92 /* SPI Support */
93 #define CONFIG_ARMADA100_SPI
94 #define CONFIG_ENV_SPI_CS               110
95 #define CONFIG_SYS_SSP_PORT             2
96
97 /* Flash Support */
98 #define CONFIG_CMD_SF
99 #define CONFIG_SPI_FLASH_ATMEL
100
101 /*
102  * mv-common.h should be defined after CMD configs since it used them
103  * to enable certain macros
104  */
105 #include "mv-common.h"
106 #undef CONFIG_ARCH_MISC_INIT
107
108 #ifdef CONFIG_SYS_NS16550_COM1
109 #undef CONFIG_SYS_NS16550_COM1
110 #endif /* CONFIG_SYS_NS16550_COM1 */
111
112 #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE
113
114 /*
115  * Environment variables configurations
116  */
117 #define CONFIG_ENV_IS_IN_SPI_FLASH
118 #define CONFIG_ENV_SECT_SIZE            0x4000
119 #define CONFIG_ENV_SIZE                 0x4000
120 #define CONFIG_ENV_OFFSET               0x07C000
121
122 #define CONFIG_CMD_ASKENV
123
124 #ifdef CONFIG_CMD_USB
125 #define CONFIG_USB_EHCI
126 #define CONFIG_USB_EHCI_ARMADA100
127 #define CONFIG_EHCI_IS_TDI
128 #define CONFIG_USB_STORAGE
129 #endif /* CONFIG_CMD_USB */
130
131 #define CONFIG_DOS_PARTITION
132 #define CONFIG_ISO_PARTITION
133 #define CONFIG_SUPPORT_VFAT
134
135 #endif  /* __CONFIG_GPLUGD_H */