]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap1/board-h6300.c
h63xx: touchscreen support
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap1 / board-h6300.c
1 /*
2  * linux/arch/arm/mach-omap1/board-h6300.c
3  *
4  * Modified from board-innovator.c
5  *
6  * Board specific inits for OMAP-1510 based iPAQ h63xx series of mobile phones.
7  * (h6315, h6340 and h6365)
8  *
9  * Copyright (C) 2009 Mika Laitio
10  * Copyright (C) 2009 Husam Senussi
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 as
14  * published by the Free Software Foundation.
15  */
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/delay.h>
20 #include <linux/input.h>
21
22 #include <asm/hardware.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26
27 #include <asm/arch/gpio.h>
28 #include <asm/arch/tc.h>
29 #include <asm/arch/usb.h>
30 #include <asm/arch/common.h>
31
32 static struct platform_device h6300_lcd_device = {
33         .name   = "lcd_h6300",
34         .id     = -1,
35 };
36
37 static struct platform_device *h6300_devices[] __initdata = {
38         &h6300_lcd_device,
39 };
40
41 static struct omap_lcd_config h6300_lcd_config __initdata = {
42         .ctrl_name      = "internal",
43 };
44
45 static struct omap_uart_config h6300_uart_config __initdata = {
46         .enabled_uarts  = ((1 << 0) | (1 << 1) | (1 << 2)),
47 };
48
49 /* assume no Mini-AB port */
50 static struct omap_usb_config h6300_usb_config __initdata = {
51         .hmc_mode       = 0,
52         .register_dev   = 1,
53         .pins[0]        = 0,
54 };
55
56 static struct omap_board_config_kernel h6300_config[] = {
57         { OMAP_TAG_LCD,         &h6300_lcd_config },
58         { OMAP_TAG_UART,        &h6300_uart_config },
59         { OMAP_TAG_USB,         &h6300_usb_config },
60 };
61
62 static void __init h6300_init_irq(void)
63 {
64         omap1_init_common_hw();
65         omap_init_irq();
66         omap_gpio_init();
67 /* touchscreen gpio setup is now done in the drivers/input/touschreen/omap/ts_hx.c
68         omap_request_gpio(2);
69         omap_set_gpio_direction(2, 0);
70         omap_set_gpio_dataout(2, 1);
71 */
72 }
73
74 static void __init h6300_init(void)
75 {
76         int ret;
77         
78         ret = platform_add_devices(h6300_devices, ARRAY_SIZE(h6300_devices));
79         if (ret) {
80                 printk(KERN_WARNING "Unable to add h6300 platform devices.");
81         }
82         omap_board_config       = h6300_config;
83         omap_board_config_size  = ARRAY_SIZE(h6300_config);
84         omap_serial_init();
85 }
86
87 static void __init h6300_map_io(void)
88 {
89         omap1_map_common_io();
90 }
91
92 MACHINE_START(OMAP_H6300, "HP iPAQ h6300")
93         /* MAINTAINER("Mika Laitio <lamikr at pilppa dot org>") */
94         .phys_io        = 0xfff00000,
95         .io_pg_offst    = ((0xfef00000) >> 18) & 0xfffc,
96         .boot_params    = 0x10000100,
97         .map_io         = h6300_map_io,
98         .init_irq       = h6300_init_irq,
99         .init_machine   = h6300_init,
100         .timer          = &omap_timer,
101 MACHINE_END