2 * arch/arm/mach-spear3xx/spear320_evb.c
4 * SPEAr320 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 */
28 /* spear320 specific devices */
41 static struct amba_device
*amba_devs
[] __initdata
= {
42 /* spear3xx specific devices */
43 &spear3xx_gpio_device
,
44 &spear3xx_uart_device
,
46 /* spear320 specific devices */
49 static struct platform_device
*plat_devs
[] __initdata
= {
50 /* spear3xx specific devices */
52 /* spear320 specific devices */
55 static void __init
spear320_evb_init(void)
59 /* call spear320 machine init function */
60 spear320_init(&spear320_auto_net_mii_mode
, pmx_devs
,
61 ARRAY_SIZE(pmx_devs
));
63 /* Add Platform Devices */
64 platform_add_devices(plat_devs
, ARRAY_SIZE(plat_devs
));
66 /* Add Amba Devices */
67 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++)
68 amba_device_register(amba_devs
[i
], &iomem_resource
);
71 MACHINE_START(SPEAR320
, "ST-SPEAR320-EVB")
73 .map_io
= spear3xx_map_io
,
74 .init_irq
= spear3xx_init_irq
,
75 .handle_irq
= vic_handle_irq
,
76 .timer
= &spear3xx_timer
,
77 .init_machine
= spear320_evb_init
,
78 .restart
= spear_restart
,