| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 1 | /* | 
 | 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 |  | 
 | 14 | #include <asm/mach/arch.h> | 
 | 15 | #include <asm/mach-types.h> | 
 | 16 | #include <mach/generic.h> | 
| viresh kumar | 02aa06b | 2011-03-07 05:57:02 +0100 | [diff] [blame] | 17 | #include <mach/hardware.h> | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 18 |  | 
| viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 19 | /* padmux devices to enable */ | 
 | 20 | static struct pmx_dev *pmx_devs[] = { | 
 | 21 | 	/* spear3xx specific devices */ | 
| Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 22 | 	&spear3xx_pmx_i2c, | 
 | 23 | 	&spear3xx_pmx_ssp_cs, | 
 | 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 | 	/* spear300 specific devices */ | 
| Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 29 | 	&spear300_pmx_fsmc_2_chips, | 
 | 30 | 	&spear300_pmx_clcd, | 
 | 31 | 	&spear300_pmx_telecom_sdhci_4bit, | 
 | 32 | 	&spear300_pmx_gpio1, | 
| viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 33 | }; | 
 | 34 |  | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 35 | static struct amba_device *amba_devs[] __initdata = { | 
 | 36 | 	/* spear3xx specific devices */ | 
| viresh kumar | 1d23d2f | 2011-05-20 08:34:23 +0100 | [diff] [blame] | 37 | 	&spear3xx_gpio_device, | 
 | 38 | 	&spear3xx_uart_device, | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 39 |  | 
 | 40 | 	/* spear300 specific devices */ | 
| viresh kumar | 1d23d2f | 2011-05-20 08:34:23 +0100 | [diff] [blame] | 41 | 	&spear300_gpio1_device, | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 42 | }; | 
 | 43 |  | 
 | 44 | static struct platform_device *plat_devs[] __initdata = { | 
 | 45 | 	/* spear3xx specific devices */ | 
 | 46 |  | 
 | 47 | 	/* spear300 specific devices */ | 
 | 48 | }; | 
 | 49 |  | 
 | 50 | static void __init spear300_evb_init(void) | 
 | 51 | { | 
 | 52 | 	unsigned int i; | 
 | 53 |  | 
| viresh kumar | 53688c5 | 2011-02-16 07:40:30 +0100 | [diff] [blame] | 54 | 	/* call spear300 machine init function */ | 
| Ryan Mallon | 6618c3a | 2011-05-20 08:34:22 +0100 | [diff] [blame] | 55 | 	spear300_init(&spear300_photo_frame_mode, pmx_devs, | 
 | 56 | 			ARRAY_SIZE(pmx_devs)); | 
| viresh kumar | 70f4c0b | 2010-04-01 12:31:29 +0100 | [diff] [blame] | 57 |  | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 58 | 	/* Add Platform Devices */ | 
 | 59 | 	platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs)); | 
 | 60 |  | 
 | 61 | 	/* Add Amba Devices */ | 
 | 62 | 	for (i = 0; i < ARRAY_SIZE(amba_devs); i++) | 
 | 63 | 		amba_device_register(amba_devs[i], &iomem_resource); | 
 | 64 | } | 
 | 65 |  | 
 | 66 | MACHINE_START(SPEAR300, "ST-SPEAR300-EVB") | 
| Nicolas Pitre | dfd48fb | 2011-07-05 22:38:17 -0400 | [diff] [blame] | 67 | 	.atag_offset	=	0x100, | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 68 | 	.map_io		=	spear3xx_map_io, | 
 | 69 | 	.init_irq	=	spear3xx_init_irq, | 
| Shiraz Hashim | 5c881d9 | 2011-02-16 07:40:32 +0100 | [diff] [blame] | 70 | 	.timer		=	&spear3xx_timer, | 
| viresh kumar | bc4e814 | 2010-04-01 12:30:58 +0100 | [diff] [blame] | 71 | 	.init_machine	=	spear300_evb_init, | 
 | 72 | MACHINE_END |