| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Hardware definitions for Voipac PXA270 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2010 | 
					
						
							|  |  |  |  * 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/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/irq.h>
 | 
					
						
							|  |  |  | #include <linux/gpio_keys.h>
 | 
					
						
							|  |  |  | #include <linux/input.h>
 | 
					
						
							|  |  |  | #include <linux/gpio.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | #include <linux/usb/gpio_vbus.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | #include <linux/mtd/mtd.h>
 | 
					
						
							|  |  |  | #include <linux/mtd/partitions.h>
 | 
					
						
							|  |  |  | #include <linux/mtd/physmap.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-01 06:54:36 +02:00
										 |  |  | #include <linux/mtd/onenand.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:54 +01:00
										 |  |  | #include <linux/dm9000.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | #include <linux/ucb1400.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | #include <linux/ata_platform.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:43 +02:00
										 |  |  | #include <linux/regulator/max1586.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-23 12:38:16 +01:00
										 |  |  | #include <linux/i2c/pxa-i2c.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/mach-types.h>
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <mach/pxa27x.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | #include <mach/audio.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | #include <mach/vpac270.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:16:48 +02:00
										 |  |  | #include <linux/platform_data/mmc-pxamci.h>
 | 
					
						
							|  |  |  | #include <linux/platform_data/video-pxafb.h>
 | 
					
						
							|  |  |  | #include <linux/platform_data/usb-ohci-pxa27x.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | #include <mach/pxa27x-udc.h>
 | 
					
						
							|  |  |  | #include <mach/udc.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:16:48 +02:00
										 |  |  | #include <linux/platform_data/ata-pxa.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "generic.h"
 | 
					
						
							|  |  |  | #include "devices.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Pin configuration | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | static unsigned long vpac270_pin_config[] __initdata = { | 
					
						
							|  |  |  | 	/* MMC */ | 
					
						
							|  |  |  | 	GPIO32_MMC_CLK, | 
					
						
							|  |  |  | 	GPIO92_MMC_DAT_0, | 
					
						
							|  |  |  | 	GPIO109_MMC_DAT_1, | 
					
						
							|  |  |  | 	GPIO110_MMC_DAT_2, | 
					
						
							|  |  |  | 	GPIO111_MMC_DAT_3, | 
					
						
							|  |  |  | 	GPIO112_MMC_CMD, | 
					
						
							|  |  |  | 	GPIO53_GPIO,	/* SD detect */ | 
					
						
							|  |  |  | 	GPIO52_GPIO,	/* SD r/o switch */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* GPIO KEYS */ | 
					
						
							|  |  |  | 	GPIO1_GPIO,	/* USER BTN */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* LEDs */ | 
					
						
							|  |  |  | 	GPIO15_GPIO,	/* orange led */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* FFUART */ | 
					
						
							|  |  |  | 	GPIO34_FFUART_RXD, | 
					
						
							|  |  |  | 	GPIO39_FFUART_TXD, | 
					
						
							|  |  |  | 	GPIO27_FFUART_RTS, | 
					
						
							|  |  |  | 	GPIO100_FFUART_CTS, | 
					
						
							|  |  |  | 	GPIO33_FFUART_DSR, | 
					
						
							|  |  |  | 	GPIO40_FFUART_DTR, | 
					
						
							|  |  |  | 	GPIO10_FFUART_DCD, | 
					
						
							|  |  |  | 	GPIO38_FFUART_RI, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* LCD */ | 
					
						
							|  |  |  | 	GPIO58_LCD_LDD_0, | 
					
						
							|  |  |  | 	GPIO59_LCD_LDD_1, | 
					
						
							|  |  |  | 	GPIO60_LCD_LDD_2, | 
					
						
							|  |  |  | 	GPIO61_LCD_LDD_3, | 
					
						
							|  |  |  | 	GPIO62_LCD_LDD_4, | 
					
						
							|  |  |  | 	GPIO63_LCD_LDD_5, | 
					
						
							|  |  |  | 	GPIO64_LCD_LDD_6, | 
					
						
							|  |  |  | 	GPIO65_LCD_LDD_7, | 
					
						
							|  |  |  | 	GPIO66_LCD_LDD_8, | 
					
						
							|  |  |  | 	GPIO67_LCD_LDD_9, | 
					
						
							|  |  |  | 	GPIO68_LCD_LDD_10, | 
					
						
							|  |  |  | 	GPIO69_LCD_LDD_11, | 
					
						
							|  |  |  | 	GPIO70_LCD_LDD_12, | 
					
						
							|  |  |  | 	GPIO71_LCD_LDD_13, | 
					
						
							|  |  |  | 	GPIO72_LCD_LDD_14, | 
					
						
							|  |  |  | 	GPIO73_LCD_LDD_15, | 
					
						
							|  |  |  | 	GPIO86_LCD_LDD_16, | 
					
						
							|  |  |  | 	GPIO87_LCD_LDD_17, | 
					
						
							|  |  |  | 	GPIO74_LCD_FCLK, | 
					
						
							|  |  |  | 	GPIO75_LCD_LCLK, | 
					
						
							|  |  |  | 	GPIO76_LCD_PCLK, | 
					
						
							|  |  |  | 	GPIO77_LCD_BIAS, | 
					
						
							| 
									
										
										
										
											2010-03-10 04:16:28 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* PCMCIA */ | 
					
						
							|  |  |  | 	GPIO48_nPOE, | 
					
						
							|  |  |  | 	GPIO49_nPWE, | 
					
						
							|  |  |  | 	GPIO50_nPIOR, | 
					
						
							|  |  |  | 	GPIO51_nPIOW, | 
					
						
							|  |  |  | 	GPIO85_nPCE_1, | 
					
						
							|  |  |  | 	GPIO54_nPCE_2, | 
					
						
							|  |  |  | 	GPIO55_nPREG, | 
					
						
							|  |  |  | 	GPIO57_nIOIS16, | 
					
						
							|  |  |  | 	GPIO56_nPWAIT, | 
					
						
							|  |  |  | 	GPIO104_PSKTSEL, | 
					
						
							|  |  |  | 	GPIO84_GPIO,	/* PCMCIA CD */ | 
					
						
							|  |  |  | 	GPIO35_GPIO,	/* PCMCIA RDY */ | 
					
						
							|  |  |  | 	GPIO107_GPIO,	/* PCMCIA PPEN */ | 
					
						
							|  |  |  | 	GPIO11_GPIO,	/* PCMCIA RESET */ | 
					
						
							|  |  |  | 	GPIO17_GPIO,	/* CF CD */ | 
					
						
							|  |  |  | 	GPIO12_GPIO,	/* CF RDY */ | 
					
						
							|  |  |  | 	GPIO16_GPIO,	/* CF RESET */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | 	/* UHC */ | 
					
						
							|  |  |  | 	GPIO88_USBH1_PWR, | 
					
						
							|  |  |  | 	GPIO89_USBH1_PEN, | 
					
						
							|  |  |  | 	GPIO119_USBH2_PWR, | 
					
						
							|  |  |  | 	GPIO120_USBH2_PEN, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* UDC */ | 
					
						
							|  |  |  | 	GPIO41_GPIO, | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Ethernet */ | 
					
						
							|  |  |  | 	GPIO114_GPIO,	/* IRQ */ | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* AC97 */ | 
					
						
							|  |  |  | 	GPIO28_AC97_BITCLK, | 
					
						
							|  |  |  | 	GPIO29_AC97_SDATA_IN_0, | 
					
						
							|  |  |  | 	GPIO30_AC97_SDATA_OUT, | 
					
						
							|  |  |  | 	GPIO31_AC97_SYNC, | 
					
						
							|  |  |  | 	GPIO95_AC97_nRESET, | 
					
						
							|  |  |  | 	GPIO98_AC97_SYSCLK, | 
					
						
							|  |  |  | 	GPIO113_GPIO,	/* TS IRQ */ | 
					
						
							| 
									
										
										
										
											2010-03-26 05:38:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* I2C */ | 
					
						
							|  |  |  | 	GPIO117_I2C_SCL, | 
					
						
							|  |  |  | 	GPIO118_I2C_SDA, | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* IDE */ | 
					
						
							|  |  |  | 	GPIO36_GPIO,	/* IDE IRQ */ | 
					
						
							|  |  |  | 	GPIO80_DREQ_1, | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * NOR Flash | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
 | 
					
						
							| 
									
										
										
										
											2010-05-01 06:54:36 +02:00
										 |  |  | static struct mtd_partition vpac270_nor_partitions[] = { | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "Flash", | 
					
						
							|  |  |  | 		.offset		= 0x00000000, | 
					
						
							|  |  |  | 		.size		= MTDPART_SIZ_FULL, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct physmap_flash_data vpac270_flash_data[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.width		= 2,	/* bankwidth in bytes */ | 
					
						
							| 
									
										
										
										
											2010-05-01 06:54:36 +02:00
										 |  |  | 		.parts		= vpac270_nor_partitions, | 
					
						
							|  |  |  | 		.nr_parts	= ARRAY_SIZE(vpac270_nor_partitions) | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource vpac270_flash_resource = { | 
					
						
							|  |  |  | 	.start	= PXA_CS0_PHYS, | 
					
						
							|  |  |  | 	.end	= PXA_CS0_PHYS + SZ_64M - 1, | 
					
						
							|  |  |  | 	.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_flash = { | 
					
						
							|  |  |  | 	.name		= "physmap-flash", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.resource	= &vpac270_flash_resource, | 
					
						
							|  |  |  | 	.num_resources	= 1, | 
					
						
							|  |  |  | 	.dev 		= { | 
					
						
							|  |  |  | 		.platform_data = vpac270_flash_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static void __init vpac270_nor_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_flash); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_nor_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-01 06:54:36 +02:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * OneNAND Flash | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_MTD_ONENAND) || defined(CONFIG_MTD_ONENAND_MODULE)
 | 
					
						
							|  |  |  | static struct mtd_partition vpac270_onenand_partitions[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "Flash", | 
					
						
							|  |  |  | 		.offset		= 0x00000000, | 
					
						
							|  |  |  | 		.size		= MTDPART_SIZ_FULL, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct onenand_platform_data vpac270_onenand_info = { | 
					
						
							|  |  |  | 	.parts		= vpac270_onenand_partitions, | 
					
						
							|  |  |  | 	.nr_parts	= ARRAY_SIZE(vpac270_onenand_partitions), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource vpac270_onenand_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= PXA_CS0_PHYS, | 
					
						
							|  |  |  | 		.end	= PXA_CS0_PHYS + SZ_1M, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_onenand = { | 
					
						
							|  |  |  | 	.name		= "onenand-flash", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.resource	= vpac270_onenand_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(vpac270_onenand_resources), | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_onenand_info, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_onenand_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_onenand); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static void __init vpac270_onenand_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * SD/MMC card controller | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
 | 
					
						
							|  |  |  | static struct pxamci_platform_data vpac270_mci_platform_data = { | 
					
						
							|  |  |  | 	.ocr_mask		= MMC_VDD_32_33 | MMC_VDD_33_34, | 
					
						
							| 
									
										
										
										
											2010-08-09 03:55:09 +02:00
										 |  |  | 	.gpio_power		= -1, | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	.gpio_card_detect	= GPIO53_VPAC270_SD_DETECT_N, | 
					
						
							|  |  |  | 	.gpio_card_ro		= GPIO52_VPAC270_SD_READONLY, | 
					
						
							| 
									
										
										
										
											2010-04-14 07:00:42 +08:00
										 |  |  | 	.detect_delay_ms	= 200, | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_mmc_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pxa_set_mci_info(&vpac270_mci_platform_data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_mmc_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * GPIO keys | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
 | 
					
						
							|  |  |  | static struct gpio_keys_button vpac270_pxa_buttons[] = { | 
					
						
							|  |  |  | 	{KEY_POWER, GPIO1_VPAC270_USER_BTN, 0, "USER BTN"}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct gpio_keys_platform_data vpac270_pxa_keys_data = { | 
					
						
							|  |  |  | 	.buttons	= vpac270_pxa_buttons, | 
					
						
							|  |  |  | 	.nbuttons	= ARRAY_SIZE(vpac270_pxa_buttons), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_pxa_keys = { | 
					
						
							|  |  |  | 	.name	= "gpio-keys", | 
					
						
							|  |  |  | 	.id	= -1, | 
					
						
							|  |  |  | 	.dev	= { | 
					
						
							|  |  |  | 		.platform_data = &vpac270_pxa_keys_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_keys_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_pxa_keys); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_keys_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * LED | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
 | 
					
						
							|  |  |  | struct gpio_led vpac270_gpio_leds[] = { | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	.name			= "vpac270:orange:user", | 
					
						
							|  |  |  | 	.default_trigger	= "none", | 
					
						
							|  |  |  | 	.gpio			= GPIO15_VPAC270_LED_ORANGE, | 
					
						
							|  |  |  | 	.active_low		= 1, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct gpio_led_platform_data vpac270_gpio_led_info = { | 
					
						
							|  |  |  | 	.leds		= vpac270_gpio_leds, | 
					
						
							|  |  |  | 	.num_leds	= ARRAY_SIZE(vpac270_gpio_leds), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_leds = { | 
					
						
							|  |  |  | 	.name	= "leds-gpio", | 
					
						
							|  |  |  | 	.id	= -1, | 
					
						
							|  |  |  | 	.dev	= { | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_gpio_led_info, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_leds_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_leds); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_leds_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * USB Host | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
 | 
					
						
							|  |  |  | static int vpac270_ohci_init(struct device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	UP2OCR = UP2OCR_HXS | UP2OCR_HXOE | UP2OCR_DPPDE | UP2OCR_DMPDE; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pxaohci_platform_data vpac270_ohci_info = { | 
					
						
							|  |  |  | 	.port_mode	= PMM_PERPORT_MODE, | 
					
						
							|  |  |  | 	.flags		= ENABLE_PORT1 | ENABLE_PORT2 | | 
					
						
							|  |  |  | 			POWER_CONTROL_LOW | POWER_SENSE_LOW, | 
					
						
							|  |  |  | 	.init		= vpac270_ohci_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_uhc_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pxa_set_ohci_info(&vpac270_ohci_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_uhc_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * USB Gadget | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							| 
									
										
										
										
											2011-11-10 07:13:07 +08:00
										 |  |  | #if defined(CONFIG_USB_PXA27X)||defined(CONFIG_USB_PXA27X_MODULE)
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | static struct gpio_vbus_mach_info vpac270_gpio_vbus_info = { | 
					
						
							|  |  |  | 	.gpio_vbus		= GPIO41_VPAC270_UDC_DETECT, | 
					
						
							|  |  |  | 	.gpio_pullup		= -1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_gpio_vbus = { | 
					
						
							|  |  |  | 	.name	= "gpio-vbus", | 
					
						
							|  |  |  | 	.id	= -1, | 
					
						
							|  |  |  | 	.dev	= { | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_gpio_vbus_info, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vpac270_udc_command(int cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (cmd == PXA2XX_UDC_CMD_CONNECT) | 
					
						
							| 
									
										
										
										
											2010-05-02 06:10:25 +02:00
										 |  |  | 		UP2OCR = UP2OCR_HXOE | UP2OCR_DPPUE; | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | 	else if (cmd == PXA2XX_UDC_CMD_DISCONNECT) | 
					
						
							| 
									
										
										
										
											2010-05-02 06:10:25 +02:00
										 |  |  | 		UP2OCR = UP2OCR_HXOE; | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pxa2xx_udc_mach_info vpac270_udc_info __initdata = { | 
					
						
							|  |  |  | 	.udc_command		= vpac270_udc_command, | 
					
						
							|  |  |  | 	.gpio_pullup		= -1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_udc_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pxa_set_udc_info(&vpac270_udc_info); | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_gpio_vbus); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_udc_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:54 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Ethernet | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
 | 
					
						
							|  |  |  | static struct resource vpac270_dm9000_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= PXA_CS2_PHYS + 0x300, | 
					
						
							|  |  |  | 		.end	= PXA_CS2_PHYS + 0x303, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start	= PXA_CS2_PHYS + 0x304, | 
					
						
							|  |  |  | 		.end	= PXA_CS2_PHYS + 0x343, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[2] = { | 
					
						
							| 
									
										
										
										
											2011-10-10 14:21:08 +08:00
										 |  |  | 		.start	= PXA_GPIO_TO_IRQ(GPIO114_VPAC270_ETH_IRQ), | 
					
						
							|  |  |  | 		.end	= PXA_GPIO_TO_IRQ(GPIO114_VPAC270_ETH_IRQ), | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:54 +01:00
										 |  |  | 		.flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct dm9000_plat_data vpac270_dm9000_platdata = { | 
					
						
							|  |  |  | 	.flags		= DM9000_PLATF_32BITONLY, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_dm9000_device = { | 
					
						
							|  |  |  | 	.name		= "dm9000", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(vpac270_dm9000_resources), | 
					
						
							|  |  |  | 	.resource	= vpac270_dm9000_resources, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data = &vpac270_dm9000_platdata, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_eth_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_dm9000_device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_eth_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Audio and Touchscreen | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if	defined(CONFIG_TOUCHSCREEN_UCB1400) || \
 | 
					
						
							|  |  |  | 	defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE) | 
					
						
							|  |  |  | static pxa2xx_audio_ops_t vpac270_ac97_pdata = { | 
					
						
							|  |  |  | 	.reset_gpio	= 95, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct ucb1400_pdata vpac270_ucb1400_pdata = { | 
					
						
							| 
									
										
										
										
											2011-10-10 14:21:08 +08:00
										 |  |  | 	.irq		= PXA_GPIO_TO_IRQ(GPIO113_VPAC270_TS_IRQ), | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_ucb1400_device = { | 
					
						
							|  |  |  | 	.name		= "ucb1400_core", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data = &vpac270_ucb1400_pdata, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_ts_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pxa_set_ac97_info(&vpac270_ac97_pdata); | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_ucb1400_device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_ts_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-26 05:38:10 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * RTC | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_RTC_DRV_DS1307) || defined(CONFIG_RTC_DRV_DS1307_MODULE)
 | 
					
						
							|  |  |  | static struct i2c_board_info __initdata vpac270_i2c_devs[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		I2C_BOARD_INFO("ds1339", 0x68), | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_rtc_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	i2c_register_board_info(0, ARRAY_AND_SIZE(vpac270_i2c_devs)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_rtc_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Framebuffer | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
 | 
					
						
							|  |  |  | static struct pxafb_mode_info vpac270_lcd_modes[] = { | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	.pixclock	= 57692, | 
					
						
							|  |  |  | 	.xres		= 640, | 
					
						
							|  |  |  | 	.yres		= 480, | 
					
						
							|  |  |  | 	.bpp		= 32, | 
					
						
							|  |  |  | 	.depth		= 18, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.left_margin	= 144, | 
					
						
							|  |  |  | 	.right_margin	= 32, | 
					
						
							|  |  |  | 	.upper_margin	= 13, | 
					
						
							|  |  |  | 	.lower_margin	= 30, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.hsync_len	= 32, | 
					
						
							|  |  |  | 	.vsync_len	= 2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:46 +02:00
										 |  |  | }, {	/* CRT 640x480 */ | 
					
						
							|  |  |  | 	.pixclock	= 35000, | 
					
						
							|  |  |  | 	.xres		= 640, | 
					
						
							|  |  |  | 	.yres		= 480, | 
					
						
							|  |  |  | 	.bpp		= 16, | 
					
						
							|  |  |  | 	.depth		= 16, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.left_margin	= 96, | 
					
						
							|  |  |  | 	.right_margin	= 48, | 
					
						
							|  |  |  | 	.upper_margin	= 33, | 
					
						
							|  |  |  | 	.lower_margin	= 10, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.hsync_len	= 48, | 
					
						
							|  |  |  | 	.vsync_len	= 1, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
					
						
							|  |  |  | }, {	/* CRT 800x600 H=30kHz V=48HZ */ | 
					
						
							|  |  |  | 	.pixclock	= 25000, | 
					
						
							|  |  |  | 	.xres		= 800, | 
					
						
							|  |  |  | 	.yres		= 600, | 
					
						
							|  |  |  | 	.bpp		= 16, | 
					
						
							|  |  |  | 	.depth		= 16, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.left_margin	= 50, | 
					
						
							|  |  |  | 	.right_margin	= 1, | 
					
						
							|  |  |  | 	.upper_margin	= 21, | 
					
						
							|  |  |  | 	.lower_margin	= 12, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.hsync_len	= 8, | 
					
						
							|  |  |  | 	.vsync_len	= 1, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
					
						
							|  |  |  | }, {	/* CRT 1024x768 H=40kHz V=50Hz */ | 
					
						
							|  |  |  | 	.pixclock	= 15000, | 
					
						
							|  |  |  | 	.xres		= 1024, | 
					
						
							|  |  |  | 	.yres		= 768, | 
					
						
							|  |  |  | 	.bpp		= 16, | 
					
						
							|  |  |  | 	.depth		= 16, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.left_margin	= 220, | 
					
						
							|  |  |  | 	.right_margin	= 8, | 
					
						
							|  |  |  | 	.upper_margin	= 33, | 
					
						
							|  |  |  | 	.lower_margin	= 2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.hsync_len	= 48, | 
					
						
							|  |  |  | 	.vsync_len	= 1, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pxafb_mach_info vpac270_lcd_screen = { | 
					
						
							|  |  |  | 	.modes		= vpac270_lcd_modes, | 
					
						
							|  |  |  | 	.num_modes	= ARRAY_SIZE(vpac270_lcd_modes), | 
					
						
							|  |  |  | 	.lcd_conn	= LCD_COLOR_TFT_18BPP, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vpac270_lcd_power(int on, struct fb_var_screeninfo *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	gpio_set_value(GPIO81_VPAC270_BKL_ON, on); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_lcd_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = gpio_request(GPIO81_VPAC270_BKL_ON, "BKL-ON"); | 
					
						
							|  |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		pr_err("Requesting BKL-ON GPIO failed!\n"); | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = gpio_direction_output(GPIO81_VPAC270_BKL_ON, 1); | 
					
						
							|  |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		pr_err("Setting BKL-ON GPIO direction failed!\n"); | 
					
						
							|  |  |  | 		goto err2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	vpac270_lcd_screen.pxafb_lcd_power = vpac270_lcd_power; | 
					
						
							| 
									
										
										
										
											2011-02-15 15:37:30 +08:00
										 |  |  | 	pxa_set_fb_info(NULL, &vpac270_lcd_screen); | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err2: | 
					
						
							|  |  |  | 	gpio_free(GPIO81_VPAC270_BKL_ON); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_lcd_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * PATA IDE | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:45 +02:00
										 |  |  | #if defined(CONFIG_PATA_PXA) || defined(CONFIG_PATA_PXA_MODULE)
 | 
					
						
							|  |  |  | static struct pata_pxa_pdata vpac270_pata_pdata = { | 
					
						
							|  |  |  | 	.reg_shift	= 1, | 
					
						
							|  |  |  | 	.dma_dreq	= 1, | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 	.irq_flags	= IRQF_TRIGGER_RISING, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource vpac270_ide_resources[] = { | 
					
						
							|  |  |  | 	[0] = {	/* I/O Base address */ | 
					
						
							|  |  |  | 	       .start	= PXA_CS3_PHYS + 0x120, | 
					
						
							|  |  |  | 	       .end	= PXA_CS3_PHYS + 0x13f, | 
					
						
							|  |  |  | 	       .flags	= IORESOURCE_MEM | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = {	/* CTL Base address */ | 
					
						
							|  |  |  | 	       .start	= PXA_CS3_PHYS + 0x15c, | 
					
						
							|  |  |  | 	       .end	= PXA_CS3_PHYS + 0x15f, | 
					
						
							|  |  |  | 	       .flags	= IORESOURCE_MEM | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:45 +02:00
										 |  |  | 	[2] = {	/* DMA Base address */ | 
					
						
							|  |  |  | 	       .start	= PXA_CS3_PHYS + 0x20, | 
					
						
							|  |  |  | 	       .end	= PXA_CS3_PHYS + 0x2f, | 
					
						
							|  |  |  | 	       .flags	= IORESOURCE_DMA | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[3] = {	/* IDE IRQ pin */ | 
					
						
							| 
									
										
										
										
											2011-10-10 16:03:51 +08:00
										 |  |  | 	       .start	= PXA_GPIO_TO_IRQ(GPIO36_VPAC270_IDE_IRQ), | 
					
						
							|  |  |  | 	       .end	= PXA_GPIO_TO_IRQ(GPIO36_VPAC270_IDE_IRQ), | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 	       .flags	= IORESOURCE_IRQ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device vpac270_ide_device = { | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:45 +02:00
										 |  |  | 	.name		= "pata_pxa", | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 	.num_resources	= ARRAY_SIZE(vpac270_ide_resources), | 
					
						
							|  |  |  | 	.resource	= vpac270_ide_resources, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_pata_pdata, | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:45 +02:00
										 |  |  | 		.coherent_dma_mask	= 0xffffffff, | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_ide_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&vpac270_ide_device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_ide_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:43 +02:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Core power regulator | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | #if defined(CONFIG_REGULATOR_MAX1586) || \
 | 
					
						
							|  |  |  |     defined(CONFIG_REGULATOR_MAX1586_MODULE) | 
					
						
							|  |  |  | static struct regulator_consumer_supply vpac270_max1587a_consumers[] = { | 
					
						
							| 
									
										
										
										
											2012-05-08 16:25:10 +08:00
										 |  |  | 	REGULATOR_SUPPLY("vcc_core", NULL), | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:43 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct regulator_init_data vpac270_max1587a_v3_info = { | 
					
						
							|  |  |  | 	.constraints = { | 
					
						
							|  |  |  | 		.name		= "vcc_core range", | 
					
						
							|  |  |  | 		.min_uV		= 900000, | 
					
						
							|  |  |  | 		.max_uV		= 1705000, | 
					
						
							|  |  |  | 		.always_on	= 1, | 
					
						
							|  |  |  | 		.valid_ops_mask	= REGULATOR_CHANGE_VOLTAGE, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.consumer_supplies	= vpac270_max1587a_consumers, | 
					
						
							|  |  |  | 	.num_consumer_supplies	= ARRAY_SIZE(vpac270_max1587a_consumers), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct max1586_subdev_data vpac270_max1587a_subdevs[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "vcc_core", | 
					
						
							|  |  |  | 		.id		= MAX1586_V3, | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_max1587a_v3_info, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct max1586_platform_data vpac270_max1587a_info = { | 
					
						
							|  |  |  | 	.subdevs     = vpac270_max1587a_subdevs, | 
					
						
							|  |  |  | 	.num_subdevs = ARRAY_SIZE(vpac270_max1587a_subdevs), | 
					
						
							|  |  |  | 	.v3_gain     = MAX1586_GAIN_R24_3k32, /* 730..1550 mV */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct i2c_board_info __initdata vpac270_pi2c_board_info[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		I2C_BOARD_INFO("max1586", 0x14), | 
					
						
							|  |  |  | 		.platform_data	= &vpac270_max1587a_info, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init vpac270_pmic_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	i2c_register_board_info(1, ARRAY_AND_SIZE(vpac270_pi2c_board_info)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void vpac270_pmic_init(void) {} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * Machine init | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | static void __init vpac270_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pxa2xx_mfp_config(ARRAY_AND_SIZE(vpac270_pin_config)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pxa_set_ffuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_btuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_stuart_info(NULL); | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:43 +02:00
										 |  |  | 	pxa_set_i2c_info(NULL); | 
					
						
							|  |  |  | 	pxa27x_set_i2c_power_info(NULL); | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-21 03:12:43 +02:00
										 |  |  | 	vpac270_pmic_init(); | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	vpac270_lcd_init(); | 
					
						
							|  |  |  | 	vpac270_mmc_init(); | 
					
						
							|  |  |  | 	vpac270_nor_init(); | 
					
						
							| 
									
										
										
										
											2010-05-01 06:54:36 +02:00
										 |  |  | 	vpac270_onenand_init(); | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	vpac270_leds_init(); | 
					
						
							|  |  |  | 	vpac270_keys_init(); | 
					
						
							| 
									
										
										
										
											2010-03-10 05:24:27 +01:00
										 |  |  | 	vpac270_uhc_init(); | 
					
						
							|  |  |  | 	vpac270_udc_init(); | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:54 +01:00
										 |  |  | 	vpac270_eth_init(); | 
					
						
							| 
									
										
										
										
											2010-03-26 04:45:54 +01:00
										 |  |  | 	vpac270_ts_init(); | 
					
						
							| 
									
										
										
										
											2010-03-26 05:38:10 +01:00
										 |  |  | 	vpac270_rtc_init(); | 
					
						
							| 
									
										
										
										
											2010-04-26 21:46:07 +02:00
										 |  |  | 	vpac270_ide_init(); | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MACHINE_START(VPAC270, "Voipac PXA270") | 
					
						
							| 
									
										
										
										
											2011-07-05 22:38:15 -04:00
										 |  |  | 	.atag_offset	= 0x100, | 
					
						
							| 
									
										
										
										
											2010-10-11 02:20:19 +02:00
										 |  |  | 	.map_io		= pxa27x_map_io, | 
					
						
							| 
									
										
										
										
											2012-01-03 16:53:48 -06:00
										 |  |  | 	.nr_irqs	= PXA_NR_IRQS, | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | 	.init_irq	= pxa27x_init_irq, | 
					
						
							| 
									
										
										
										
											2011-05-18 21:30:04 +08:00
										 |  |  | 	.handle_irq	= pxa27x_handle_irq, | 
					
						
							| 
									
										
										
										
											2012-11-08 12:40:59 -07:00
										 |  |  | 	.init_time	= pxa_timer_init, | 
					
						
							| 
									
										
										
										
											2011-11-04 14:15:53 +00:00
										 |  |  | 	.init_machine	= vpac270_init, | 
					
						
							|  |  |  | 	.restart	= pxa_restart, | 
					
						
							| 
									
										
										
										
											2010-03-09 04:04:12 +01:00
										 |  |  | MACHINE_END |