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/mach/arch.h>
15 #include <asm/mach-types.h>
16 #include <mach/generic.h>
17 #include <mach/hardware.h>
19 /* padmux devices to enable */
20 static struct pmx_dev
*pmx_devs
[] = {
21 /* spear3xx specific devices */
27 /* spear320 specific devices */
40 static struct amba_device
*amba_devs
[] __initdata
= {
41 /* spear3xx specific devices */
45 /* spear320 specific devices */
48 static struct platform_device
*plat_devs
[] __initdata
= {
49 /* spear3xx specific devices */
51 /* spear320 specific devices */
54 static void __init
spear320_evb_init(void)
58 /* padmux initialization, must be done before spear320_init */
59 pmx_driver
.mode
= &auto_net_mii_mode
;
60 pmx_driver
.devs
= pmx_devs
;
61 pmx_driver
.devs_count
= ARRAY_SIZE(pmx_devs
);
63 /* call spear320 machine init function */
66 /* Add Platform Devices */
67 platform_add_devices(plat_devs
, ARRAY_SIZE(plat_devs
));
69 /* Add Amba Devices */
70 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++)
71 amba_device_register(amba_devs
[i
], &iomem_resource
);
74 MACHINE_START(SPEAR320
, "ST-SPEAR320-EVB")
75 .boot_params
= 0x00000100,
76 .map_io
= spear3xx_map_io
,
77 .init_irq
= spear3xx_init_irq
,
78 .timer
= &spear3xx_timer
,
79 .init_machine
= spear320_evb_init
,