2 * arch/arm/mach-spear3xx/spear310_evb.c
4 * SPEAr310 evaluation board source file
6 * Copyright (C) 2009 ST Microelectronics
7 * Viresh Kumar<viresh.kumar@st.com>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <asm/hardware/vic.h>
15 #include <asm/mach/arch.h>
16 #include <asm/mach-types.h>
17 #include <mach/generic.h>
18 #include <mach/hardware.h>
20 /* padmux devices to enable */
21 static struct pmx_dev
*pmx_devs
[] = {
22 /* spear3xx specific devices */
25 &spear3xx_pmx_gpio_pin0
,
26 &spear3xx_pmx_gpio_pin1
,
27 &spear3xx_pmx_gpio_pin2
,
28 &spear3xx_pmx_gpio_pin3
,
29 &spear3xx_pmx_gpio_pin4
,
30 &spear3xx_pmx_gpio_pin5
,
33 /* spear310 specific devices */
34 &spear310_pmx_emi_cs_0_1_4_5
,
35 &spear310_pmx_emi_cs_2_3
,
38 &spear310_pmx_uart3_4_5
,
40 &spear310_pmx_rs485_0_1
,
44 static struct amba_device
*amba_devs
[] __initdata
= {
45 /* spear3xx specific devices */
46 &spear3xx_gpio_device
,
47 &spear3xx_uart_device
,
49 /* spear310 specific devices */
52 static struct platform_device
*plat_devs
[] __initdata
= {
53 /* spear3xx specific devices */
55 /* spear310 specific devices */
58 static void __init
spear310_evb_init(void)
62 /* call spear310 machine init function */
63 spear310_init(NULL
, pmx_devs
, ARRAY_SIZE(pmx_devs
));
65 /* Add Platform Devices */
66 platform_add_devices(plat_devs
, ARRAY_SIZE(plat_devs
));
68 /* Add Amba Devices */
69 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++)
70 amba_device_register(amba_devs
[i
], &iomem_resource
);
73 MACHINE_START(SPEAR310
, "ST-SPEAR310-EVB")
75 .map_io
= spear3xx_map_io
,
76 .init_irq
= spear3xx_init_irq
,
77 .handle_irq
= vic_handle_irq
,
78 .timer
= &spear3xx_timer
,
79 .init_machine
= spear310_evb_init
,
80 .restart
= spear_restart
,