ARM: at91: drop at91_set_serial_console
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-at91 / board-eco920.c
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15  */
16
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/gpio.h>
21
22 #include <asm/mach-types.h>
23
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26
27 #include <mach/board.h>
28 #include <mach/at91rm9200_mc.h>
29 #include <mach/at91_ramc.h>
30 #include <mach/cpu.h>
31
32 #include "generic.h"
33
34 static void __init eco920_init_early(void)
35 {
36         /* Set cpu type: PQFP */
37         at91rm9200_set_type(ARCH_REVISON_9200_PQFP);
38
39         at91_initialize(18432000);
40
41         /* Setup the LEDs */
42         at91_init_leds(AT91_PIN_PB0, AT91_PIN_PB1);
43
44         /* DBGU on ttyS0. (Rx & Tx only */
45         at91_register_uart(0, 0, 0);
46 }
47
48 static struct macb_platform_data __initdata eco920_eth_data = {
49         .phy_irq_pin    = AT91_PIN_PC2,
50         .is_rmii        = 1,
51 };
52
53 static struct at91_usbh_data __initdata eco920_usbh_data = {
54         .ports          = 1,
55         .vbus_pin       = {-EINVAL, -EINVAL},
56         .overcurrent_pin= {-EINVAL, -EINVAL},
57 };
58
59 static struct at91_udc_data __initdata eco920_udc_data = {
60         .vbus_pin       = AT91_PIN_PB12,
61         .pullup_pin     = AT91_PIN_PB13,
62 };
63
64 static struct at91_mmc_data __initdata eco920_mmc_data = {
65         .slot_b         = 0,
66         .wire4          = 0,
67         .det_pin        = -EINVAL,
68         .wp_pin         = -EINVAL,
69         .vcc_pin        = -EINVAL,
70 };
71
72 static struct physmap_flash_data eco920_flash_data = {
73         .width  = 2,
74 };
75
76 static struct resource eco920_flash_resource = {
77         .start          = 0x11000000,
78         .end            = 0x11ffffff,
79         .flags          = IORESOURCE_MEM,
80 };
81
82 static struct platform_device eco920_flash = {
83         .name           = "physmap-flash",
84         .id             = 0,
85         .dev            = {
86                 .platform_data  = &eco920_flash_data,
87         },
88         .resource       = &eco920_flash_resource,
89         .num_resources  = 1,
90 };
91
92 static struct spi_board_info eco920_spi_devices[] = {
93         {       /* CAN controller */
94                 .modalias       = "tlv5638",
95                 .chip_select    = 3,
96                 .max_speed_hz   = 20 * 1000 * 1000,
97                 .mode           = SPI_CPHA,
98         },
99 };
100
101 static void __init eco920_board_init(void)
102 {
103         at91_add_device_serial();
104         at91_add_device_eth(&eco920_eth_data);
105         at91_add_device_usbh(&eco920_usbh_data);
106         at91_add_device_udc(&eco920_udc_data);
107
108         at91_add_device_mmc(0, &eco920_mmc_data);
109         platform_device_register(&eco920_flash);
110
111         at91_ramc_write(0, AT91_SMC_CSR(7),     AT91_SMC_RWHOLD_(1)
112                                 | AT91_SMC_RWSETUP_(1)
113                                 | AT91_SMC_DBW_8
114                                 | AT91_SMC_WSEN
115                                 | AT91_SMC_NWS_(15));
116
117         at91_set_A_periph(AT91_PIN_PC6, 1);
118
119         at91_set_gpio_input(AT91_PIN_PA23, 0);
120         at91_set_deglitch(AT91_PIN_PA23, 1);
121
122 /* Initialization of the Static Memory Controller for Chip Select 3 */
123         at91_ramc_write(0, AT91_SMC_CSR(3),
124                 AT91_SMC_DBW_16  |      /* 16 bit */
125                 AT91_SMC_WSEN    |
126                 AT91_SMC_NWS_(5) |      /* wait states */
127                 AT91_SMC_TDF_(1)        /* float time */
128         );
129
130         at91_add_device_spi(eco920_spi_devices, ARRAY_SIZE(eco920_spi_devices));
131 }
132
133 MACHINE_START(ECO920, "eco920")
134         /* Maintainer: Sascha Hauer */
135         .timer          = &at91rm9200_timer,
136         .map_io         = at91_map_io,
137         .init_early     = eco920_init_early,
138         .init_irq       = at91_init_irq_default,
139         .init_machine   = eco920_board_init,
140 MACHINE_END