blob: f92c4993f65ae5477d69e11cb2a301cf9c7ab240 [file] [log] [blame]
viresh kumarbc4e8142010-04-01 12:30:58 +01001/*
2 * arch/arm/mach-spear3xx/spear310_evb.c
3 *
4 * SPEAr310 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
Jamie Iles66266f42011-09-27 20:35:14 +010014#include <asm/hardware/vic.h>
viresh kumarbc4e8142010-04-01 12:30:58 +010015#include <asm/mach/arch.h>
16#include <asm/mach-types.h>
17#include <mach/generic.h>
viresh kumar02aa06b2011-03-07 05:57:02 +010018#include <mach/hardware.h>
viresh kumarbc4e8142010-04-01 12:30:58 +010019
viresh kumar70f4c0b2010-04-01 12:31:29 +010020/* padmux devices to enable */
21static struct pmx_dev *pmx_devs[] = {
22 /* spear3xx specific devices */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010023 &spear3xx_pmx_i2c,
24 &spear3xx_pmx_ssp,
25 &spear3xx_pmx_gpio_pin0,
26 &spear3xx_pmx_gpio_pin1,
27 &spear3xx_pmx_gpio_pin2,
28 &spear3xx_pmx_gpio_pin3,
29 &spear3xx_pmx_gpio_pin4,
30 &spear3xx_pmx_gpio_pin5,
31 &spear3xx_pmx_uart0,
viresh kumar70f4c0b2010-04-01 12:31:29 +010032
33 /* spear310 specific devices */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010034 &spear310_pmx_emi_cs_0_1_4_5,
35 &spear310_pmx_emi_cs_2_3,
36 &spear310_pmx_uart1,
37 &spear310_pmx_uart2,
38 &spear310_pmx_uart3_4_5,
39 &spear310_pmx_fsmc,
40 &spear310_pmx_rs485_0_1,
41 &spear310_pmx_tdm0,
viresh kumar70f4c0b2010-04-01 12:31:29 +010042};
43
viresh kumarbc4e8142010-04-01 12:30:58 +010044static struct amba_device *amba_devs[] __initdata = {
45 /* spear3xx specific devices */
viresh kumar1d23d2f2011-05-20 08:34:23 +010046 &spear3xx_gpio_device,
47 &spear3xx_uart_device,
viresh kumarbc4e8142010-04-01 12:30:58 +010048
49 /* spear310 specific devices */
50};
51
52static struct platform_device *plat_devs[] __initdata = {
53 /* spear3xx specific devices */
54
55 /* spear310 specific devices */
56};
57
58static void __init spear310_evb_init(void)
59{
60 unsigned int i;
61
viresh kumar53688c52011-02-16 07:40:30 +010062 /* call spear310 machine init function */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010063 spear310_init(NULL, pmx_devs, ARRAY_SIZE(pmx_devs));
viresh kumar70f4c0b2010-04-01 12:31:29 +010064
viresh kumarbc4e8142010-04-01 12:30:58 +010065 /* Add Platform Devices */
66 platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs));
67
68 /* Add Amba Devices */
69 for (i = 0; i < ARRAY_SIZE(amba_devs); i++)
70 amba_device_register(amba_devs[i], &iomem_resource);
71}
72
73MACHINE_START(SPEAR310, "ST-SPEAR310-EVB")
Nicolas Pitredfd48fb2011-07-05 22:38:17 -040074 .atag_offset = 0x100,
viresh kumarbc4e8142010-04-01 12:30:58 +010075 .map_io = spear3xx_map_io,
76 .init_irq = spear3xx_init_irq,
Jamie Iles66266f42011-09-27 20:35:14 +010077 .handle_irq = vic_handle_irq,
Shiraz Hashim5c881d92011-02-16 07:40:32 +010078 .timer = &spear3xx_timer,
viresh kumarbc4e8142010-04-01 12:30:58 +010079 .init_machine = spear310_evb_init,
Russell Kingdd1661e2011-11-05 21:10:37 +000080 .restart = spear_restart,
viresh kumarbc4e8142010-04-01 12:30:58 +010081MACHINE_END