2 * arch/arm/mach-spear3xx/spear300_evb.c
4 * SPEAr300 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 */
29 /* spear300 specific devices */
30 &spear300_pmx_fsmc_2_chips
,
32 &spear300_pmx_telecom_sdhci_4bit
,
36 static struct amba_device
*amba_devs
[] __initdata
= {
37 /* spear3xx specific devices */
38 &spear3xx_gpio_device
,
39 &spear3xx_uart_device
,
41 /* spear300 specific devices */
42 &spear300_gpio1_device
,
45 static struct platform_device
*plat_devs
[] __initdata
= {
46 /* spear3xx specific devices */
48 /* spear300 specific devices */
51 static void __init
spear300_evb_init(void)
55 /* call spear300 machine init function */
56 spear300_init(&spear300_photo_frame_mode
, pmx_devs
,
57 ARRAY_SIZE(pmx_devs
));
59 /* Add Platform Devices */
60 platform_add_devices(plat_devs
, ARRAY_SIZE(plat_devs
));
62 /* Add Amba Devices */
63 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++)
64 amba_device_register(amba_devs
[i
], &iomem_resource
);
67 MACHINE_START(SPEAR300
, "ST-SPEAR300-EVB")
69 .map_io
= spear3xx_map_io
,
70 .init_irq
= spear3xx_init_irq
,
71 .handle_irq
= vic_handle_irq
,
72 .timer
= &spear3xx_timer
,
73 .init_machine
= spear300_evb_init
,
74 .restart
= spear_restart
,