]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-sa1100/h3100.c
1f8a271dc66857dc809848ae6bd54e828255304b
[karo-tx-linux.git] / arch / arm / mach-sa1100 / h3100.c
1 /*
2  * Support for Compaq iPAQ H3100 handheld computer
3  *
4  * Copyright (c) 2000,1 Compaq Computer Corporation. (Author: Jamey Hicks)
5  * Copyright (c) 2009 Dmitry Artamonow <mad_soft@inbox.ru>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  */
12
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/gpio.h>
16
17 #include <video/sa1100fb.h>
18
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/irda.h>
22
23 #include <mach/h3xxx.h>
24
25 #include "generic.h"
26
27 /*
28  * helper for sa1100fb
29  */
30 static void h3100_lcd_power(int enable)
31 {
32         if (!gpio_request(H3XXX_EGPIO_LCD_ON, "LCD ON")) {
33                 gpio_set_value(H3100_GPIO_LCD_3V_ON, enable);
34                 gpio_direction_output(H3XXX_EGPIO_LCD_ON, enable);
35                 gpio_free(H3XXX_EGPIO_LCD_ON);
36         } else {
37                 pr_err("%s: can't request H3XXX_EGPIO_LCD_ON\n", __func__);
38         }
39 }
40
41 static struct sa1100fb_mach_info h3100_lcd_info = {
42         .pixclock       = 406977,       .bpp            = 4,
43         .xres           = 320,          .yres           = 240,
44
45         .hsync_len      = 26,           .vsync_len      = 41,
46         .left_margin    = 4,            .upper_margin   = 0,
47         .right_margin   = 4,            .lower_margin   = 0,
48
49         .sync           = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
50         .cmap_greyscale = 1,
51         .cmap_inverse   = 1,
52
53         .lccr0          = LCCR0_Mono | LCCR0_4PixMono | LCCR0_Sngl | LCCR0_Pas,
54         .lccr3          = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2),
55 };
56
57 static void __init h3100_map_io(void)
58 {
59         h3xxx_map_io();
60
61         /* Older bootldrs put GPIO2-9 in alternate mode on the
62            assumption that they are used for video */
63         GAFR &= ~0x000001fb;
64 }
65
66 /*
67  * This turns the IRDA power on or off on the Compaq H3100
68  */
69 static int h3100_irda_set_power(struct device *dev, unsigned int state)
70 {
71         gpio_set_value(H3100_GPIO_IR_ON, state);
72         return 0;
73 }
74
75 static void h3100_irda_set_speed(struct device *dev, unsigned int speed)
76 {
77         gpio_set_value(H3100_GPIO_IR_FSEL, !(speed < 4000000));
78 }
79
80 static struct irda_platform_data h3100_irda_data = {
81         .set_power      = h3100_irda_set_power,
82         .set_speed      = h3100_irda_set_speed,
83 };
84
85 static struct gpio_default_state h3100_default_gpio[] = {
86         { H3100_GPIO_IR_ON,     GPIO_MODE_OUT0, "IrDA power" },
87         { H3100_GPIO_IR_FSEL,   GPIO_MODE_OUT0, "IrDA fsel" },
88         { H3XXX_GPIO_COM_DCD,   GPIO_MODE_IN,   "COM DCD" },
89         { H3XXX_GPIO_COM_CTS,   GPIO_MODE_IN,   "COM CTS" },
90         { H3XXX_GPIO_COM_RTS,   GPIO_MODE_OUT0, "COM RTS" },
91         { H3100_GPIO_LCD_3V_ON, GPIO_MODE_OUT0, "LCD 3v" },
92 };
93
94 static void __init h3100_mach_init(void)
95 {
96         h3xxx_init_gpio(h3100_default_gpio, ARRAY_SIZE(h3100_default_gpio));
97         h3xxx_mach_init();
98
99         sa1100fb_lcd_power = h3100_lcd_power;
100         sa11x0_register_lcd(&h3100_lcd_info);
101         sa11x0_register_irda(&h3100_irda_data);
102 }
103
104 MACHINE_START(H3100, "Compaq iPAQ H3100")
105         .atag_offset    = 0x100,
106         .map_io         = h3100_map_io,
107         .init_irq       = sa1100_init_irq,
108         .timer          = &sa1100_timer,
109         .init_machine   = h3100_mach_init,
110         .restart        = sa11x0_restart,
111 MACHINE_END
112