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 <mach/hardware.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
34 #include <mach/pxa-regs.h>
35 #include <mach/mfp-pxa25x.h>
37 #include <mach/pxafb.h>
38 #include <mach/bitfield.h>
45 * - add pxa2xx_audio_ops_t device structure
46 * - Ethernet interrupt
49 static unsigned long idp_pin_config[] __initdata = {
86 GPIO33_nCS_5, /* Ethernet CS */
87 GPIO4_GPIO, /* Ethernet IRQ */
90 static struct resource smc91x_resources[] = {
92 .start = (IDP_ETH_PHYS + 0x300),
93 .end = (IDP_ETH_PHYS + 0xfffff),
94 .flags = IORESOURCE_MEM,
99 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
103 static struct platform_device smc91x_device = {
106 .num_resources = ARRAY_SIZE(smc91x_resources),
107 .resource = smc91x_resources,
110 static void idp_backlight_power(int on)
113 IDP_CPLD_LCD |= (1<<1);
115 IDP_CPLD_LCD &= ~(1<<1);
119 static void idp_vlcd(int on)
122 IDP_CPLD_LCD |= (1<<2);
124 IDP_CPLD_LCD &= ~(1<<2);
128 static void idp_lcd_power(int on, struct fb_var_screeninfo *var)
131 IDP_CPLD_LCD |= (1<<0);
133 IDP_CPLD_LCD &= ~(1<<0);
136 /* call idp_vlcd for now as core driver does not support
137 * both power and vlcd hooks. Note, this is not technically
138 * the correct sequence, but seems to work. Disclaimer:
139 * this may eventually damage the display.
145 static struct pxafb_mode_info sharp_lm8v31_mode = {
156 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
160 static struct pxafb_mach_info sharp_lm8v31 = {
161 .modes = &sharp_lm8v31_mode,
165 .lcd_conn = LCD_COLOR_DSTN_16BPP | LCD_PCLK_EDGE_FALL |
166 LCD_AC_BIAS_FREQ(255),
167 .pxafb_backlight_power = &idp_backlight_power,
168 .pxafb_lcd_power = &idp_lcd_power
171 static struct pxamci_platform_data idp_mci_platform_data = {
172 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
175 static void __init idp_init(void)
177 printk("idp_init()\n");
179 pxa2xx_mfp_config(ARRAY_AND_SIZE(idp_pin_config));
181 platform_device_register(&smc91x_device);
182 //platform_device_register(&mst_audio_device);
183 set_pxa_fb_info(&sharp_lm8v31);
184 pxa_set_mci_info(&idp_mci_platform_data);
187 static struct map_desc idp_io_desc[] __initdata = {
189 .virtual = IDP_COREVOLT_VIRT,
190 .pfn = __phys_to_pfn(IDP_COREVOLT_PHYS),
191 .length = IDP_COREVOLT_SIZE,
194 .virtual = IDP_CPLD_VIRT,
195 .pfn = __phys_to_pfn(IDP_CPLD_PHYS),
196 .length = IDP_CPLD_SIZE,
201 static void __init idp_map_io(void)
204 iotable_init(idp_io_desc, ARRAY_SIZE(idp_io_desc));
208 MACHINE_START(PXA_IDP, "Vibren PXA255 IDP")
209 /* Maintainer: Vibren Technologies */
210 .phys_io = 0x40000000,
211 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
212 .map_io = idp_map_io,
213 .init_irq = pxa25x_init_irq,
215 .init_machine = idp_init,