2 * linux/arch/arm/mach-pxa/idp.c
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Copyright (c) 2001 Cliff Brake, Accelent Systems Inc.
10 * 2001-09-13: Cliff Brake <cbrake@accelent.com>
13 * 2005-02-15: Cliff Brake <cliff.brake@gmail.com>
14 * <http://www.vibren.com> <http://bec-systems.com>
15 * Updated for 2.6 kernel
19 #include <linux/init.h>
20 #include <linux/interrupt.h>
21 #include <linux/irq.h>
22 #include <linux/platform_device.h>
25 #include <asm/setup.h>
26 #include <asm/memory.h>
27 #include <asm/mach-types.h>
28 #include <asm/hardware.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
34 #include <asm/arch/pxa-regs.h>
35 #include <asm/arch/idp.h>
36 #include <asm/arch/pxafb.h>
37 #include <asm/arch/bitfield.h>
38 #include <asm/arch/mmc.h>
43 * - add pxa2xx_audio_ops_t device structure
44 * - Ethernet interrupt
47 static struct resource smc91x_resources[] = {
49 .start = (IDP_ETH_PHYS + 0x300),
50 .end = (IDP_ETH_PHYS + 0xfffff),
51 .flags = IORESOURCE_MEM,
56 .flags = IORESOURCE_IRQ,
60 static struct platform_device smc91x_device = {
63 .num_resources = ARRAY_SIZE(smc91x_resources),
64 .resource = smc91x_resources,
67 static void idp_backlight_power(int on)
70 IDP_CPLD_LCD |= (1<<1);
72 IDP_CPLD_LCD &= ~(1<<1);
76 static void idp_vlcd(int on)
79 IDP_CPLD_LCD |= (1<<2);
81 IDP_CPLD_LCD &= ~(1<<2);
85 static void idp_lcd_power(int on, struct fb_var_screeninfo *var)
88 IDP_CPLD_LCD |= (1<<0);
90 IDP_CPLD_LCD &= ~(1<<0);
93 /* call idp_vlcd for now as core driver does not support
94 * both power and vlcd hooks. Note, this is not technically
95 * the correct sequence, but seems to work. Disclaimer:
96 * this may eventually damage the display.
102 static struct pxafb_mode_info sharp_lm8v31_mode = {
113 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
117 static struct pxafb_mach_info sharp_lm8v31 = {
118 .modes = &sharp_lm8v31_mode,
123 .lccr3 = LCCR3_PCP | LCCR3_Acb(255),
124 .pxafb_backlight_power = &idp_backlight_power,
125 .pxafb_lcd_power = &idp_lcd_power
128 static int idp_mci_init(struct device *dev, irq_handler_t idp_detect_int, void *data)
130 /* setup GPIO for PXA25x MMC controller */
131 pxa_gpio_mode(GPIO6_MMCCLK_MD);
132 pxa_gpio_mode(GPIO8_MMCCS0_MD);
137 static struct pxamci_platform_data idp_mci_platform_data = {
138 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
139 .init = idp_mci_init,
142 static void __init idp_init(void)
144 printk("idp_init()\n");
146 platform_device_register(&smc91x_device);
147 //platform_device_register(&mst_audio_device);
148 set_pxa_fb_info(&sharp_lm8v31);
149 pxa_set_mci_info(&idp_mci_platform_data);
152 static void __init idp_init_irq(void)
157 set_irq_type(TOUCH_PANEL_IRQ, TOUCH_PANEL_IRQ_EDGE);
160 static struct map_desc idp_io_desc[] __initdata = {
162 .virtual = IDP_COREVOLT_VIRT,
163 .pfn = __phys_to_pfn(IDP_COREVOLT_PHYS),
164 .length = IDP_COREVOLT_SIZE,
167 .virtual = IDP_CPLD_VIRT,
168 .pfn = __phys_to_pfn(IDP_CPLD_PHYS),
169 .length = IDP_CPLD_SIZE,
174 static void __init idp_map_io(void)
177 iotable_init(idp_io_desc, ARRAY_SIZE(idp_io_desc));
179 // serial ports 2 & 3
180 pxa_gpio_mode(GPIO42_BTRXD_MD);
181 pxa_gpio_mode(GPIO43_BTTXD_MD);
182 pxa_gpio_mode(GPIO44_BTCTS_MD);
183 pxa_gpio_mode(GPIO45_BTRTS_MD);
184 pxa_gpio_mode(GPIO46_STRXD_MD);
185 pxa_gpio_mode(GPIO47_STTXD_MD);
190 MACHINE_START(PXA_IDP, "Vibren PXA255 IDP")
191 /* Maintainer: Vibren Technologies */
192 .phys_io = 0x40000000,
193 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
194 .map_io = idp_map_io,
195 .init_irq = idp_init_irq,
197 .init_machine = idp_init,