blob: 3462ab9d612231b5107cad2787ffd67c7fdc2632 [file] [log] [blame]
viresh kumarbc4e8142010-04-01 12:30:58 +01001/*
2 * arch/arm/mach-spear3xx/spear300_evb.c
3 *
4 * SPEAr300 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_cs,
25 &spear3xx_pmx_ssp,
26 &spear3xx_pmx_mii,
27 &spear3xx_pmx_uart0,
viresh kumar70f4c0b2010-04-01 12:31:29 +010028
29 /* spear300 specific devices */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010030 &spear300_pmx_fsmc_2_chips,
31 &spear300_pmx_clcd,
32 &spear300_pmx_telecom_sdhci_4bit,
33 &spear300_pmx_gpio1,
viresh kumar70f4c0b2010-04-01 12:31:29 +010034};
35
viresh kumarbc4e8142010-04-01 12:30:58 +010036static struct amba_device *amba_devs[] __initdata = {
37 /* spear3xx specific devices */
viresh kumar1d23d2f2011-05-20 08:34:23 +010038 &spear3xx_gpio_device,
39 &spear3xx_uart_device,
viresh kumarbc4e8142010-04-01 12:30:58 +010040
41 /* spear300 specific devices */
viresh kumar1d23d2f2011-05-20 08:34:23 +010042 &spear300_gpio1_device,
viresh kumarbc4e8142010-04-01 12:30:58 +010043};
44
45static struct platform_device *plat_devs[] __initdata = {
46 /* spear3xx specific devices */
47
48 /* spear300 specific devices */
49};
50
51static void __init spear300_evb_init(void)
52{
53 unsigned int i;
54
viresh kumar53688c52011-02-16 07:40:30 +010055 /* call spear300 machine init function */
Ryan Mallon6618c3a2011-05-20 08:34:22 +010056 spear300_init(&spear300_photo_frame_mode, pmx_devs,
57 ARRAY_SIZE(pmx_devs));
viresh kumar70f4c0b2010-04-01 12:31:29 +010058
viresh kumarbc4e8142010-04-01 12:30:58 +010059 /* Add Platform Devices */
60 platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs));
61
62 /* Add Amba Devices */
63 for (i = 0; i < ARRAY_SIZE(amba_devs); i++)
64 amba_device_register(amba_devs[i], &iomem_resource);
65}
66
67MACHINE_START(SPEAR300, "ST-SPEAR300-EVB")
Nicolas Pitredfd48fb2011-07-05 22:38:17 -040068 .atag_offset = 0x100,
viresh kumarbc4e8142010-04-01 12:30:58 +010069 .map_io = spear3xx_map_io,
70 .init_irq = spear3xx_init_irq,
Jamie Iles66266f42011-09-27 20:35:14 +010071 .handle_irq = vic_handle_irq,
Shiraz Hashim5c881d92011-02-16 07:40:32 +010072 .timer = &spear3xx_timer,
viresh kumarbc4e8142010-04-01 12:30:58 +010073 .init_machine = spear300_evb_init,
Russell Kingdd1661e2011-11-05 21:10:37 +000074 .restart = spear_restart,
viresh kumarbc4e8142010-04-01 12:30:58 +010075MACHINE_END