]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap1/board-h6300.c
04faa97e1a6428977c203cab6af4dd8750e17ca4
[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
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/delay.h>
21 #include <linux/input.h>
22
23 #include <mach/hardware.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
27
28 #include <mach/mux.h>
29 #include <mach/gpio.h>
30 #include <mach/common.h>
31 #include <mach/board.h>
32
33 static struct platform_device h6300_lcd_device = {
34         .name   = "lcd_h6300",
35         .id     = -1,
36 };
37
38 static struct platform_device *h6300_devices[] __initdata = {
39         &h6300_lcd_device,
40 };
41
42 static struct omap_lcd_config h6300_lcd_config __initdata = {
43         .ctrl_name      = "internal",
44 };
45
46 static struct omap_uart_config h6300_uart_config __initdata = {
47         .enabled_uarts  = ((1 << 0) | (1 << 1) | (1 << 2)),
48 };
49
50 /* assume no Mini-AB port */
51 static struct omap_usb_config h6300_usb_config __initdata = {
52         .register_dev   = 1,
53         .hmc_mode       = 0,
54         .pins[0]        = 0,
55 };
56
57 static struct omap_board_config_kernel h6300_config[] = {
58         { OMAP_TAG_LCD,         &h6300_lcd_config },
59         { OMAP_TAG_UART,        &h6300_uart_config },
60         { OMAP_TAG_USB,         &h6300_usb_config },
61 };
62
63 static void __init h6300_init_irq(void)
64 {
65         omap1_init_common_hw();
66         omap_init_irq();
67         omap_gpio_init();
68 }
69
70 static void __init h6300_init(void)
71 {
72         int ret;
73         
74         ret = platform_add_devices(h6300_devices, ARRAY_SIZE(h6300_devices));
75         if (ret) {
76                 printk(KERN_WARNING "Unable to add h6300 platform devices.");
77         }
78         omap_board_config       = h6300_config;
79         omap_board_config_size  = ARRAY_SIZE(h6300_config);
80         omap_serial_init();
81         omap_register_i2c_bus(1, 100, NULL, 0);
82 }
83
84 static void __init h6300_map_io(void)
85 {
86         omap1_map_common_io();
87 }
88
89 MACHINE_START(OMAP_H6300, "HP iPAQ h6300")
90         /* MAINTAINER("Mika Laitio <lamikr at pilppa dot org>") */
91         .phys_io        = 0xfff00000,
92         .io_pg_offst    = ((0xfef00000) >> 18) & 0xfffc,
93         .boot_params    = 0x10000100,
94         .map_io         = h6300_map_io,
95         .init_irq       = h6300_init_irq,
96         .init_machine   = h6300_init,
97         .timer          = &omap_timer,
98 MACHINE_END