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