blob: a12b353940d64df6bf66eee6b355c0eaa8ceb481 [file] [log] [blame]
viresh kumarbc4e8142010-04-01 12:30:58 +01001/*
2 * arch/arm/mach-spear3xx/spear320_evb.c
3 *
4 * SPEAr320 evaluation board source file
5 *
6 * Copyright (C) 2009 ST Microelectronics
7 * Viresh Kumar<viresh.kumar@st.com>
8 *
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.
12 */
13
14#include <asm/mach/arch.h>
15#include <asm/mach-types.h>
16#include <mach/generic.h>
viresh kumar02aa06b2011-03-07 05:57:02 +010017#include <mach/hardware.h>
viresh kumarbc4e8142010-04-01 12:30:58 +010018
viresh kumar70f4c0b2010-04-01 12:31:29 +010019/* padmux devices to enable */
20static struct pmx_dev *pmx_devs[] = {
21 /* spear3xx specific devices */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010022 &spear3xx_pmx_i2c,
23 &spear3xx_pmx_ssp,
24 &spear3xx_pmx_mii,
25 &spear3xx_pmx_uart0,
viresh kumar70f4c0b2010-04-01 12:31:29 +010026
27 /* spear320 specific devices */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010028 &spear320_pmx_fsmc,
29 &spear320_pmx_sdhci,
30 &spear320_pmx_i2s,
31 &spear320_pmx_uart1,
32 &spear320_pmx_uart2,
33 &spear320_pmx_can,
34 &spear320_pmx_pwm0,
35 &spear320_pmx_pwm1,
36 &spear320_pmx_pwm2,
37 &spear320_pmx_mii1,
viresh kumar70f4c0b2010-04-01 12:31:29 +010038};
39
viresh kumarbc4e8142010-04-01 12:30:58 +010040static struct amba_device *amba_devs[] __initdata = {
41 /* spear3xx specific devices */
viresh kumar1d23d2f2011-05-20 08:34:23 +010042 &spear3xx_gpio_device,
43 &spear3xx_uart_device,
viresh kumarbc4e8142010-04-01 12:30:58 +010044
45 /* spear320 specific devices */
46};
47
48static struct platform_device *plat_devs[] __initdata = {
49 /* spear3xx specific devices */
50
51 /* spear320 specific devices */
52};
53
54static void __init spear320_evb_init(void)
55{
56 unsigned int i;
57
viresh kumar53688c52011-02-16 07:40:30 +010058 /* call spear320 machine init function */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010059 spear320_init(&spear320_auto_net_mii_mode, pmx_devs,
60 ARRAY_SIZE(pmx_devs));
viresh kumar70f4c0b2010-04-01 12:31:29 +010061
viresh kumarbc4e8142010-04-01 12:30:58 +010062 /* Add Platform Devices */
63 platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs));
64
65 /* Add Amba Devices */
66 for (i = 0; i < ARRAY_SIZE(amba_devs); i++)
67 amba_device_register(amba_devs[i], &iomem_resource);
68}
69
70MACHINE_START(SPEAR320, "ST-SPEAR320-EVB")
71 .boot_params = 0x00000100,
72 .map_io = spear3xx_map_io,
73 .init_irq = spear3xx_init_irq,
Shiraz Hashim5c881d92011-02-16 07:40:32 +010074 .timer = &spear3xx_timer,
viresh kumarbc4e8142010-04-01 12:30:58 +010075 .init_machine = spear320_evb_init,
76MACHINE_END