2 * arch/arm/mach-spear6xx/spear600_evb.c
4 * SPEAr600 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 static struct amba_device
*amba_devs
[] __initdata
= {
28 static struct platform_device
*plat_devs
[] __initdata
= {
31 static void __init
spear600_evb_init(void)
35 /* call spear600 machine init function */
38 /* Add Platform Devices */
39 platform_add_devices(plat_devs
, ARRAY_SIZE(plat_devs
));
41 /* Add Amba Devices */
42 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++)
43 amba_device_register(amba_devs
[i
], &iomem_resource
);
46 MACHINE_START(SPEAR600
, "ST-SPEAR600-EVB")
48 .map_io
= spear6xx_map_io
,
49 .init_irq
= spear6xx_init_irq
,
50 .handle_irq
= vic_handle_irq
,
51 .timer
= &spear6xx_timer
,
52 .init_machine
= spear600_evb_init
,
53 .restart
= spear_restart
,