]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap1/board-h6300.c
6e73ef55bb4d3efa9a566453e0ff8fbb3b492179
[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_board_config_kernel h6300_config[] = {
46         { OMAP_TAG_LCD,         &h6300_lcd_config },
47 };
48
49 static void __init h6300_init_irq(void)
50 {
51         omap1_init_common_hw();
52         omap_init_irq();
53         omap_gpio_init();
54 }
55
56 static void __init h6300_init(void)
57 {
58         int ret;
59         
60         ret = platform_add_devices(h6300_devices, ARRAY_SIZE(h6300_devices));
61         if (ret) {
62                 printk(KERN_WARNING "Unable to add h6300 platform devices.");
63         }
64         omap_board_config       = h6300_config;
65         omap_board_config_size  = ARRAY_SIZE(h6300_config);
66         omap_serial_init();
67 }
68
69 static void __init h6300_map_io(void)
70 {
71         omap1_map_common_io();
72 }
73
74 MACHINE_START(OMAP_H6300, "HP iPAQ h6300")
75         /* MAINTAINER("Mika Laitio <lamikr at pilppa dot org>") */
76         .phys_io        = 0xfff00000,
77         .io_pg_offst    = ((0xfef00000) >> 18) & 0xfffc,
78         .boot_params    = 0x10000100,
79         .map_io         = h6300_map_io,
80         .init_irq       = h6300_init_irq,
81         .init_machine   = h6300_init,
82         .timer          = &omap_timer,
83 MACHINE_END