| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  linux/arch/arm/mach-pxa/idp.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (c) 2001 Cliff Brake, Accelent Systems Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  2001-09-13: Cliff Brake <cbrake@accelent.com> | 
					
						
							|  |  |  |  *              Initial code | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  2005-02-15: Cliff Brake <cliff.brake@gmail.com> | 
					
						
							|  |  |  |  *  		<http://www.vibren.com> <http://bec-systems.com>
 | 
					
						
							|  |  |  |  *              Updated for 2.6 kernel | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2006-07-01 22:32:20 +01:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-29 19:07:23 +01:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/fb.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/setup.h>
 | 
					
						
							|  |  |  | #include <asm/memory.h>
 | 
					
						
							|  |  |  | #include <asm/mach-types.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/hardware.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/irq.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							|  |  |  | #include <asm/mach/map.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-02 23:17:22 +08:00
										 |  |  | #include <mach/pxa25x.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/idp.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:16:48 +02:00
										 |  |  | #include <linux/platform_data/video-pxafb.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/bitfield.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:16:48 +02:00
										 |  |  | #include <linux/platform_data/mmc-pxamci.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "generic.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-15 15:39:36 +01:00
										 |  |  | #include "devices.h"
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* TODO:
 | 
					
						
							|  |  |  |  * - add pxa2xx_audio_ops_t device structure | 
					
						
							|  |  |  |  * - Ethernet interrupt | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 13:33:31 +08:00
										 |  |  | static unsigned long idp_pin_config[] __initdata = { | 
					
						
							| 
									
										
										
										
											2008-08-08 14:17:57 +08:00
										 |  |  | 	/* LCD */ | 
					
						
							| 
									
										
										
										
											2010-01-04 11:25:10 +08:00
										 |  |  | 	GPIOxx_LCD_DSTN_16BPP, | 
					
						
							| 
									
										
										
										
											2008-08-08 14:17:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 13:33:31 +08:00
										 |  |  | 	/* BTUART */ | 
					
						
							|  |  |  | 	GPIO42_BTUART_RXD, | 
					
						
							|  |  |  | 	GPIO43_BTUART_TXD, | 
					
						
							|  |  |  | 	GPIO44_BTUART_CTS, | 
					
						
							|  |  |  | 	GPIO45_BTUART_RTS, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* STUART */ | 
					
						
							|  |  |  | 	GPIO46_STUART_RXD, | 
					
						
							|  |  |  | 	GPIO47_STUART_TXD, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MMC */ | 
					
						
							|  |  |  | 	GPIO6_MMC_CLK, | 
					
						
							|  |  |  | 	GPIO8_MMC_CS0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Ethernet */ | 
					
						
							|  |  |  | 	GPIO33_nCS_5,	/* Ethernet CS */ | 
					
						
							|  |  |  | 	GPIO4_GPIO,	/* Ethernet IRQ */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct resource smc91x_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= (IDP_ETH_PHYS + 0x300), | 
					
						
							|  |  |  | 		.end	= (IDP_ETH_PHYS + 0xfffff), | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							| 
									
										
										
										
											2011-10-10 14:21:08 +08:00
										 |  |  | 		.start	= PXA_GPIO_TO_IRQ(4), | 
					
						
							|  |  |  | 		.end	= PXA_GPIO_TO_IRQ(4), | 
					
						
							| 
									
										
										
										
											2008-01-14 22:30:10 +00:00
										 |  |  | 		.flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device smc91x_device = { | 
					
						
							|  |  |  | 	.name		= "smc91x", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(smc91x_resources), | 
					
						
							|  |  |  | 	.resource	= smc91x_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void idp_backlight_power(int on) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (on) { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD |= (1<<1); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD &= ~(1<<1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void idp_vlcd(int on) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (on) { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD |= (1<<2); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD &= ~(1<<2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-20 22:54:21 +01:00
										 |  |  | static void idp_lcd_power(int on, struct fb_var_screeninfo *var) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (on) { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD |= (1<<0); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		IDP_CPLD_LCD &= ~(1<<0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* call idp_vlcd for now as core driver does not support
 | 
					
						
							|  |  |  | 	 * both power and vlcd hooks.  Note, this is not technically | 
					
						
							|  |  |  | 	 * the correct sequence, but seems to work.  Disclaimer: | 
					
						
							|  |  |  | 	 * this may eventually damage the display. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	idp_vlcd(on); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-20 22:54:21 +01:00
										 |  |  | static struct pxafb_mode_info sharp_lm8v31_mode = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.pixclock	= 270000, | 
					
						
							|  |  |  | 	.xres		= 640, | 
					
						
							|  |  |  | 	.yres		= 480, | 
					
						
							|  |  |  | 	.bpp		= 16, | 
					
						
							|  |  |  | 	.hsync_len	= 1, | 
					
						
							|  |  |  | 	.left_margin	= 3, | 
					
						
							|  |  |  | 	.right_margin	= 3, | 
					
						
							|  |  |  | 	.vsync_len	= 1, | 
					
						
							|  |  |  | 	.upper_margin	= 0, | 
					
						
							|  |  |  | 	.lower_margin	= 0, | 
					
						
							|  |  |  | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
					
						
							|  |  |  | 	.cmap_greyscale	= 0, | 
					
						
							| 
									
										
										
										
											2006-09-20 22:54:21 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pxafb_mach_info sharp_lm8v31 = { | 
					
						
							|  |  |  | 	.modes          = &sharp_lm8v31_mode, | 
					
						
							|  |  |  | 	.num_modes      = 1, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.cmap_inverse	= 0, | 
					
						
							|  |  |  | 	.cmap_static	= 0, | 
					
						
							| 
									
										
										
										
											2008-08-08 14:17:57 +08:00
										 |  |  | 	.lcd_conn	= LCD_COLOR_DSTN_16BPP | LCD_PCLK_EDGE_FALL | | 
					
						
							|  |  |  | 			  LCD_AC_BIAS_FREQ(255), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.pxafb_backlight_power = &idp_backlight_power, | 
					
						
							|  |  |  | 	.pxafb_lcd_power = &idp_lcd_power | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pxamci_platform_data idp_mci_platform_data = { | 
					
						
							| 
									
										
										
										
											2009-07-06 22:16:42 +02:00
										 |  |  | 	.ocr_mask		= MMC_VDD_32_33|MMC_VDD_33_34, | 
					
						
							|  |  |  | 	.gpio_card_detect	= -1, | 
					
						
							|  |  |  | 	.gpio_card_ro		= -1, | 
					
						
							|  |  |  | 	.gpio_power		= -1, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init idp_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	printk("idp_init()\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 13:33:31 +08:00
										 |  |  | 	pxa2xx_mfp_config(ARRAY_AND_SIZE(idp_pin_config)); | 
					
						
							| 
									
										
										
										
											2009-11-09 13:34:08 +08:00
										 |  |  | 	pxa_set_ffuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_btuart_info(NULL); | 
					
						
							|  |  |  | 	pxa_set_stuart_info(NULL); | 
					
						
							| 
									
										
										
										
											2008-08-08 13:33:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	platform_device_register(&smc91x_device); | 
					
						
							|  |  |  | 	//platform_device_register(&mst_audio_device);
 | 
					
						
							| 
									
										
										
										
											2011-02-15 15:37:30 +08:00
										 |  |  | 	pxa_set_fb_info(NULL, &sharp_lm8v31); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pxa_set_mci_info(&idp_mci_platform_data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct map_desc idp_io_desc[] __initdata = { | 
					
						
							| 
									
										
										
										
											2005-10-28 15:19:01 +01:00
										 |  |  |   	{ | 
					
						
							|  |  |  | 		.virtual	=  IDP_COREVOLT_VIRT, | 
					
						
							|  |  |  | 		.pfn		= __phys_to_pfn(IDP_COREVOLT_PHYS), | 
					
						
							|  |  |  | 		.length		= IDP_COREVOLT_SIZE, | 
					
						
							|  |  |  | 		.type		= MT_DEVICE | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.virtual	=  IDP_CPLD_VIRT, | 
					
						
							|  |  |  | 		.pfn		= __phys_to_pfn(IDP_CPLD_PHYS), | 
					
						
							|  |  |  | 		.length		= IDP_CPLD_SIZE, | 
					
						
							|  |  |  | 		.type		= MT_DEVICE | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init idp_map_io(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-10-11 02:20:19 +02:00
										 |  |  | 	pxa25x_map_io(); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	iotable_init(idp_io_desc, ARRAY_SIZE(idp_io_desc)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 02:07:58 +08:00
										 |  |  | /* LEDs */ | 
					
						
							|  |  |  | #if defined(CONFIG_NEW_LEDS) && defined(CONFIG_LEDS_CLASS)
 | 
					
						
							|  |  |  | struct idp_led { | 
					
						
							|  |  |  | 	struct led_classdev     cdev; | 
					
						
							|  |  |  | 	u8                      mask; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * The triggers lines up below will only be used if the | 
					
						
							|  |  |  |  * LED triggers are compiled in. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static const struct { | 
					
						
							|  |  |  | 	const char *name; | 
					
						
							|  |  |  | 	const char *trigger; | 
					
						
							|  |  |  | } idp_leds[] = { | 
					
						
							|  |  |  | 	{ "idp:green", "heartbeat", }, | 
					
						
							|  |  |  | 	{ "idp:red", "cpu0", }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void idp_led_set(struct led_classdev *cdev, | 
					
						
							|  |  |  | 		enum led_brightness b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct idp_led *led = container_of(cdev, | 
					
						
							|  |  |  | 			struct idp_led, cdev); | 
					
						
							|  |  |  | 	u32 reg = IDP_CPLD_LED_CONTROL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (b != LED_OFF) | 
					
						
							|  |  |  | 		reg &= ~led->mask; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		reg |= led->mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	IDP_CPLD_LED_CONTROL = reg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum led_brightness idp_led_get(struct led_classdev *cdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct idp_led *led = container_of(cdev, | 
					
						
							|  |  |  | 			struct idp_led, cdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (IDP_CPLD_LED_CONTROL & led->mask) ? LED_OFF : LED_FULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init idp_leds_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!machine_is_pxa_idp()) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(idp_leds); i++) { | 
					
						
							|  |  |  | 		struct idp_led *led; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		led = kzalloc(sizeof(*led), GFP_KERNEL); | 
					
						
							|  |  |  | 		if (!led) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		led->cdev.name = idp_leds[i].name; | 
					
						
							|  |  |  | 		led->cdev.brightness_set = idp_led_set; | 
					
						
							|  |  |  | 		led->cdev.brightness_get = idp_led_get; | 
					
						
							|  |  |  | 		led->cdev.default_trigger = idp_leds[i].trigger; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (i == 0) | 
					
						
							|  |  |  | 			led->mask = IDP_HB_LED; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			led->mask = IDP_BUSY_LED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (led_classdev_register(NULL, &led->cdev) < 0) { | 
					
						
							|  |  |  | 			kfree(led); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Since we may have triggers on any subsystem, defer registration | 
					
						
							|  |  |  |  * until after subsystem_init. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | fs_initcall(idp_leds_init); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | MACHINE_START(PXA_IDP, "Vibren PXA255 IDP") | 
					
						
							| 
									
										
										
										
											2005-07-03 17:38:58 +01:00
										 |  |  | 	/* Maintainer: Vibren Technologies */ | 
					
						
							|  |  |  | 	.map_io		= idp_map_io, | 
					
						
							| 
									
										
										
										
											2012-01-03 16:53:48 -06:00
										 |  |  | 	.nr_irqs	= PXA_NR_IRQS, | 
					
						
							| 
									
										
										
										
											2008-08-08 14:33:29 +08:00
										 |  |  | 	.init_irq	= pxa25x_init_irq, | 
					
						
							| 
									
										
										
										
											2011-05-18 21:30:04 +08:00
										 |  |  | 	.handle_irq	= pxa25x_handle_irq, | 
					
						
							| 
									
										
										
										
											2012-11-08 12:40:59 -07:00
										 |  |  | 	.init_time	= pxa_timer_init, | 
					
						
							| 
									
										
										
										
											2005-07-03 17:38:58 +01:00
										 |  |  | 	.init_machine	= idp_init, | 
					
						
							| 
									
										
										
										
											2011-11-04 14:15:53 +00:00
										 |  |  | 	.restart	= pxa_restart, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | MACHINE_END |