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/mach/arch.h>
15 #include <asm/mach-types.h>
16 #include <mach/generic.h>
17 #include <mach/spear.h>
19 /* padmux devices to enable */
20 static struct pmx_dev
*pmx_devs
[] = {
21 /* spear3xx specific devices */
28 /* spear300 specific devices */
31 &pmx_telecom_sdio_4bit
,
35 static struct amba_device
*amba_devs
[] __initdata
= {
36 /* spear3xx specific devices */
40 /* spear300 specific devices */
44 static struct platform_device
*plat_devs
[] __initdata
= {
45 /* spear3xx specific devices */
47 /* spear300 specific devices */
50 static void __init
spear300_evb_init(void)
54 /* call spear300 machine init function */
57 /* padmux initialization */
58 pmx_driver
.mode
= &photo_frame_mode
;
59 pmx_driver
.devs
= pmx_devs
;
60 pmx_driver
.devs_count
= 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(SPEAR300
, "ST-SPEAR300-EVB")
72 .boot_params
= 0x00000100,
73 .map_io
= spear3xx_map_io
,
74 .init_irq
= spear3xx_init_irq
,
75 .timer
= &spear_sys_timer
,
76 .init_machine
= spear300_evb_init
,