| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  |  *  linux/arch/arm/mach-pxa/colibri-evalboard.c | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  |  *  Support for Toradex Colibri Evaluation Carrier Board | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  |  *  Daniel Mack <daniel@caiaq.de> | 
					
						
							|  |  |  |  *  Marek Vasut <marek.vasut@gmail.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *  it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  *  published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/gpio.h>
 | 
					
						
							|  |  |  | #include <asm/mach-types.h>
 | 
					
						
							|  |  |  | #include <mach/hardware.h>
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | #include <linux/i2c.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-23 12:38:16 +01:00
										 |  |  | #include <linux/i2c/pxa-i2c.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <mach/pxa27x.h>
 | 
					
						
							|  |  |  | #include <mach/colibri.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:16:48 +02:00
										 |  |  | #include <linux/platform_data/mmc-pxamci.h>
 | 
					
						
							|  |  |  | #include <linux/platform_data/usb-ohci-pxa27x.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | #include <mach/pxa27x-udc.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "generic.h"
 | 
					
						
							|  |  |  | #include "devices.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * SD/MMC card controller | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static struct pxamci_platform_data colibri_mci_platform_data = { | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | 	.ocr_mask		= MMC_VDD_32_33 | MMC_VDD_33_34, | 
					
						
							|  |  |  | 	.gpio_power		= -1, | 
					
						
							|  |  |  | 	.gpio_card_ro		= -1, | 
					
						
							|  |  |  | 	.detect_delay_ms	= 200, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static void __init colibri_mmc_init(void) | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 	if (machine_is_colibri())	/* PXA270 Colibri */ | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 		colibri_mci_platform_data.gpio_card_detect = | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 			GPIO0_COLIBRI_PXA270_SD_DETECT; | 
					
						
							|  |  |  | 	if (machine_is_colibri300())	/* PXA300 Colibri */ | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 		colibri_mci_platform_data.gpio_card_detect = | 
					
						
							| 
									
										
										
										
											2010-12-23 16:01:02 +01:00
										 |  |  | 			GPIO13_COLIBRI_PXA300_SD_DETECT; | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 	else				/* PXA320 Colibri */ | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 		colibri_mci_platform_data.gpio_card_detect = | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 			GPIO28_COLIBRI_PXA320_SD_DETECT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 	pxa_set_mci_info(&colibri_mci_platform_data); | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static inline void colibri_mmc_init(void) {} | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * USB Host | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static int colibri_ohci_init(struct device *dev) | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	UP2OCR = UP2OCR_HXS | UP2OCR_HXOE | UP2OCR_DPPDE | UP2OCR_DMPDE; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static struct pxaohci_platform_data colibri_ohci_info = { | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | 	.port_mode	= PMM_PERPORT_MODE, | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 	.flags		= ENABLE_PORT1 | | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | 			  POWER_CONTROL_LOW | POWER_SENSE_LOW, | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 	.init		= colibri_ohci_init, | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static void __init colibri_uhc_init(void) | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 	/* Colibri PXA270 has two usb ports, TBA for 320 */ | 
					
						
							|  |  |  | 	if (machine_is_colibri()) | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 		colibri_ohci_info.flags	|= ENABLE_PORT2; | 
					
						
							| 
									
										
										
										
											2010-08-12 01:18:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 	pxa_set_ohci_info(&colibri_ohci_info); | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static inline void colibri_uhc_init(void) {} | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * I2C RTC | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_RTC_DRV_DS1307) || defined(CONFIG_RTC_DRV_DS1307_MODULE)
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static struct i2c_board_info __initdata colibri_i2c_devs[] = { | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		I2C_BOARD_INFO("m41t00", 0x68), | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static void __init colibri_rtc_init(void) | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	pxa_set_i2c_info(NULL); | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 	i2c_register_board_info(0, ARRAY_AND_SIZE(colibri_i2c_devs)); | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | static inline void colibri_rtc_init(void) {} | 
					
						
							| 
									
										
										
										
											2010-08-12 01:30:39 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | void __init colibri_evalboard_init(void) | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	pxa_set_ffuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_btuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_stuart_info(NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 01:45:05 +02:00
										 |  |  | 	colibri_mmc_init(); | 
					
						
							|  |  |  | 	colibri_uhc_init(); | 
					
						
							|  |  |  | 	colibri_rtc_init(); | 
					
						
							| 
									
										
										
										
											2010-05-22 00:29:38 +02:00
										 |  |  | } |