viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
Jamie Iles | 66266f4 | 2011-09-27 20:35:14 +0100 | [diff] [blame] | 14 | #include <asm/hardware/vic.h> |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 15 | #include <asm/mach/arch.h> |
| 16 | #include <asm/mach-types.h> |
| 17 | #include <mach/generic.h> |
viresh kumar | 02aa06b | 2011-03-07 05:57:02 +0100 | [diff] [blame] | 18 | #include <mach/hardware.h> |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 19 | |
viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 20 | /* padmux devices to enable */ |
| 21 | static struct pmx_dev *pmx_devs[] = { |
| 22 | /* spear3xx specific devices */ |
Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 23 | &spear3xx_pmx_i2c, |
| 24 | &spear3xx_pmx_ssp, |
| 25 | &spear3xx_pmx_mii, |
| 26 | &spear3xx_pmx_uart0, |
viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 27 | |
| 28 | /* spear320 specific devices */ |
Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 29 | &spear320_pmx_fsmc, |
| 30 | &spear320_pmx_sdhci, |
| 31 | &spear320_pmx_i2s, |
| 32 | &spear320_pmx_uart1, |
| 33 | &spear320_pmx_uart2, |
| 34 | &spear320_pmx_can, |
| 35 | &spear320_pmx_pwm0, |
| 36 | &spear320_pmx_pwm1, |
| 37 | &spear320_pmx_pwm2, |
| 38 | &spear320_pmx_mii1, |
viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 39 | }; |
| 40 | |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 41 | static struct amba_device *amba_devs[] __initdata = { |
| 42 | /* spear3xx specific devices */ |
viresh kumar | 1d23d2f | 2011-05-20 08:34:23 +0100 | [diff] [blame] | 43 | &spear3xx_gpio_device, |
| 44 | &spear3xx_uart_device, |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 45 | |
| 46 | /* spear320 specific devices */ |
| 47 | }; |
| 48 | |
| 49 | static struct platform_device *plat_devs[] __initdata = { |
| 50 | /* spear3xx specific devices */ |
| 51 | |
| 52 | /* spear320 specific devices */ |
| 53 | }; |
| 54 | |
| 55 | static void __init spear320_evb_init(void) |
| 56 | { |
| 57 | unsigned int i; |
| 58 | |
viresh kumar | 53688c5 | 2011-02-16 07:40:30 +0100 | [diff] [blame] | 59 | /* call spear320 machine init function */ |
Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 60 | spear320_init(&spear320_auto_net_mii_mode, pmx_devs, |
| 61 | ARRAY_SIZE(pmx_devs)); |
viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 62 | |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 63 | /* Add Platform Devices */ |
| 64 | platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs)); |
| 65 | |
| 66 | /* Add Amba Devices */ |
| 67 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) |
| 68 | amba_device_register(amba_devs[i], &iomem_resource); |
| 69 | } |
| 70 | |
| 71 | MACHINE_START(SPEAR320, "ST-SPEAR320-EVB") |
Nicolas Pitre | dfd48fb | 2011-07-05 22:38:17 -0400 | [diff] [blame] | 72 | .atag_offset = 0x100, |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 73 | .map_io = spear3xx_map_io, |
| 74 | .init_irq = spear3xx_init_irq, |
Jamie Iles | 66266f4 | 2011-09-27 20:35:14 +0100 | [diff] [blame] | 75 | .handle_irq = vic_handle_irq, |
Shiraz Hashim | 5c881d9 | 2011-02-16 07:40:32 +0100 | [diff] [blame] | 76 | .timer = &spear3xx_timer, |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 77 | .init_machine = spear320_evb_init, |
Russell King | dd1661e | 2011-11-05 21:10:37 +0000 | [diff] [blame] | 78 | .restart = spear_restart, |
viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 79 | MACHINE_END |