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/leds.h>
23 #include <linux/platform_device.h>
26 #include <asm/setup.h>
27 #include <asm/memory.h>
28 #include <asm/mach-types.h>
29 #include <mach/hardware.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/map.h>
37 #include <linux/platform_data/video-pxafb.h>
38 #include <mach/bitfield.h>
39 #include <linux/platform_data/mmc-pxamci.h>
40 #include <linux/smc91x.h>
46 * - add pxa2xx_audio_ops_t device structure
47 * - Ethernet interrupt
50 static unsigned long idp_pin_config
[] __initdata
= {
52 GPIOxx_LCD_DSTN_16BPP
,
69 GPIO33_nCS_5
, /* Ethernet CS */
70 GPIO4_GPIO
, /* Ethernet IRQ */
73 static struct resource smc91x_resources
[] = {
75 .start
= (IDP_ETH_PHYS
+ 0x300),
76 .end
= (IDP_ETH_PHYS
+ 0xfffff),
77 .flags
= IORESOURCE_MEM
,
80 .start
= PXA_GPIO_TO_IRQ(4),
81 .end
= PXA_GPIO_TO_IRQ(4),
82 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
86 static struct smc91x_platdata smc91x_platdata
= {
87 .flags
= SMC91X_USE_8BIT
| SMC91X_USE_16BIT
| SMC91X_USE_32BIT
|
88 SMC91X_USE_DMA
| SMC91X_NOWAIT
,
89 .pxa_u16_align4
= true,
92 static struct platform_device smc91x_device
= {
95 .num_resources
= ARRAY_SIZE(smc91x_resources
),
96 .resource
= smc91x_resources
,
97 .dev
.platform_data
= &smc91x_platdata
,
100 static void idp_backlight_power(int on
)
103 IDP_CPLD_LCD
|= (1<<1);
105 IDP_CPLD_LCD
&= ~(1<<1);
109 static void idp_vlcd(int on
)
112 IDP_CPLD_LCD
|= (1<<2);
114 IDP_CPLD_LCD
&= ~(1<<2);
118 static void idp_lcd_power(int on
, struct fb_var_screeninfo
*var
)
121 IDP_CPLD_LCD
|= (1<<0);
123 IDP_CPLD_LCD
&= ~(1<<0);
126 /* call idp_vlcd for now as core driver does not support
127 * both power and vlcd hooks. Note, this is not technically
128 * the correct sequence, but seems to work. Disclaimer:
129 * this may eventually damage the display.
135 static struct pxafb_mode_info sharp_lm8v31_mode
= {
146 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
150 static struct pxafb_mach_info sharp_lm8v31
= {
151 .modes
= &sharp_lm8v31_mode
,
155 .lcd_conn
= LCD_COLOR_DSTN_16BPP
| LCD_PCLK_EDGE_FALL
|
156 LCD_AC_BIAS_FREQ(255),
157 .pxafb_backlight_power
= &idp_backlight_power
,
158 .pxafb_lcd_power
= &idp_lcd_power
161 static struct pxamci_platform_data idp_mci_platform_data
= {
162 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
163 .gpio_card_detect
= -1,
168 static void __init
idp_init(void)
170 printk("idp_init()\n");
172 pxa2xx_mfp_config(ARRAY_AND_SIZE(idp_pin_config
));
173 pxa_set_ffuart_info(NULL
);
174 pxa_set_btuart_info(NULL
);
175 pxa_set_stuart_info(NULL
);
177 platform_device_register(&smc91x_device
);
178 //platform_device_register(&mst_audio_device);
179 pxa_set_fb_info(NULL
, &sharp_lm8v31
);
180 pxa_set_mci_info(&idp_mci_platform_data
);
183 static struct map_desc idp_io_desc
[] __initdata
= {
185 .virtual = IDP_COREVOLT_VIRT
,
186 .pfn
= __phys_to_pfn(IDP_COREVOLT_PHYS
),
187 .length
= IDP_COREVOLT_SIZE
,
190 .virtual = IDP_CPLD_VIRT
,
191 .pfn
= __phys_to_pfn(IDP_CPLD_PHYS
),
192 .length
= IDP_CPLD_SIZE
,
197 static void __init
idp_map_io(void)
200 iotable_init(idp_io_desc
, ARRAY_SIZE(idp_io_desc
));
204 #if defined(CONFIG_NEW_LEDS) && defined(CONFIG_LEDS_CLASS)
206 struct led_classdev cdev
;
211 * The triggers lines up below will only be used if the
212 * LED triggers are compiled in.
214 static const struct {
218 { "idp:green", "heartbeat", },
219 { "idp:red", "cpu0", },
222 static void idp_led_set(struct led_classdev
*cdev
,
223 enum led_brightness b
)
225 struct idp_led
*led
= container_of(cdev
,
226 struct idp_led
, cdev
);
227 u32 reg
= IDP_CPLD_LED_CONTROL
;
234 IDP_CPLD_LED_CONTROL
= reg
;
237 static enum led_brightness
idp_led_get(struct led_classdev
*cdev
)
239 struct idp_led
*led
= container_of(cdev
,
240 struct idp_led
, cdev
);
242 return (IDP_CPLD_LED_CONTROL
& led
->mask
) ? LED_OFF
: LED_FULL
;
245 static int __init
idp_leds_init(void)
249 if (!machine_is_pxa_idp())
252 for (i
= 0; i
< ARRAY_SIZE(idp_leds
); i
++) {
255 led
= kzalloc(sizeof(*led
), GFP_KERNEL
);
259 led
->cdev
.name
= idp_leds
[i
].name
;
260 led
->cdev
.brightness_set
= idp_led_set
;
261 led
->cdev
.brightness_get
= idp_led_get
;
262 led
->cdev
.default_trigger
= idp_leds
[i
].trigger
;
265 led
->mask
= IDP_HB_LED
;
267 led
->mask
= IDP_BUSY_LED
;
269 if (led_classdev_register(NULL
, &led
->cdev
) < 0) {
279 * Since we may have triggers on any subsystem, defer registration
280 * until after subsystem_init.
282 fs_initcall(idp_leds_init
);
285 MACHINE_START(PXA_IDP
, "Vibren PXA255 IDP")
286 /* Maintainer: Vibren Technologies */
287 .map_io
= idp_map_io
,
288 .nr_irqs
= PXA_NR_IRQS
,
289 .init_irq
= pxa25x_init_irq
,
290 .handle_irq
= pxa25x_handle_irq
,
291 .init_time
= pxa_timer_init
,
292 .init_machine
= idp_init
,
293 .restart
= pxa_restart
,