]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/gplugd.h
avr32: delete non generic board mimc200
[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 #include <config_cmd_default.h>
61 #define CONFIG_CMD_I2C
62 #undef CONFIG_CMD_FPGA
63 #define CONFIG_CMD_USB
64 #define CONFIG_CMD_EXT2
65 #define CONFIG_CMD_FAT
66
67 /* Disable DCACHE */
68 #define CONFIG_SYS_DCACHE_OFF
69
70 /* Network configuration */
71 #ifdef CONFIG_CMD_NET
72 #define CONFIG_CMD_PING
73 #define CONFIG_ARMADA100_FEC
74
75 /* DHCP Support */
76 #define CONFIG_CMD_DHCP
77 #define CONFIG_BOOTP_DHCP_REQUEST_DELAY         50000
78 #endif /* CONFIG_CMD_NET */
79
80 /* GPIO Support */
81 #define CONFIG_MARVELL_GPIO
82
83 /* PHY configuration */
84 #define CONFIG_MII
85 #define CONFIG_CMD_MII
86 #define CONFIG_RESET_PHY_R
87 /* 88E3015 register definition */
88 #define PHY_LED_PAR_SEL_REG             22
89 #define PHY_LED_MAN_REG                 25
90 #define PHY_LED_VAL                     0x5b    /* LINK LED1, ACT LED2 */
91 /* GPIO Configuration for PHY */
92 #define CONFIG_SYS_GPIO_PHY_RST         104     /* GPIO104 */
93
94 /* SPI Support */
95 #define CONFIG_ARMADA100_SPI
96 #define CONFIG_ENV_SPI_CS               110
97 #define CONFIG_SYS_SSP_PORT             2
98
99 /* Flash Support */
100 #define CONFIG_CMD_SF
101 #define CONFIG_SPI_FLASH_ATMEL
102
103 /*
104  * mv-common.h should be defined after CMD configs since it used them
105  * to enable certain macros
106  */
107 #include "mv-common.h"
108 #undef CONFIG_ARCH_MISC_INIT
109
110 #ifdef CONFIG_SYS_NS16550_COM1
111 #undef CONFIG_SYS_NS16550_COM1
112 #endif /* CONFIG_SYS_NS16550_COM1 */
113
114 #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE
115
116 /*
117  * Environment variables configurations
118  */
119 #define CONFIG_ENV_IS_IN_SPI_FLASH
120 #define CONFIG_ENV_SECT_SIZE            0x4000
121 #define CONFIG_ENV_SIZE                 0x4000
122 #define CONFIG_ENV_OFFSET               0x07C000
123
124 #define CONFIG_CMD_ASKENV
125 #define CONFIG_CMD_EDITENV
126 #define CONFIG_CMD_SAVEENV
127
128 #ifdef CONFIG_CMD_USB
129 #define CONFIG_USB_EHCI
130 #define CONFIG_USB_EHCI_ARMADA100
131 #define CONFIG_EHCI_IS_TDI
132 #define CONFIG_USB_STORAGE
133 #endif /* CONFIG_CMD_USB */
134
135 #define CONFIG_DOS_PARTITION
136 #define CONFIG_ISO_PARTITION
137 #define CONFIG_SUPPORT_VFAT
138
139 #endif  /* __CONFIG_GPLUGD_H */