/* * linux/arch/arm/mach-omap1/board-h6300.c * * Modified from board-innovator.c * * Board specific inits for OMAP-1510 based iPAQ h63xx series of mobile phones. * (h6315, h6340 and h6365) * * Copyright (C) 2009 Mika Laitio * Copyright (C) 2009 Husam Senussi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #include #include #include #include #include #include #include #include #include #include #include #include static struct platform_device h6300_lcd_device = { .name = "lcd_h6300", .id = -1, }; static struct platform_device *h6300_devices[] __initdata = { &h6300_lcd_device, }; static struct omap_lcd_config h6300_lcd_config __initdata = { .ctrl_name = "internal", }; static struct omap_uart_config h6300_uart_config __initdata = { .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)), }; /* assume no Mini-AB port */ static struct omap_usb_config h6300_usb_config __initdata = { .hmc_mode = 0, .register_dev = 1, .pins[0] = 0, }; static struct omap_board_config_kernel h6300_config[] = { { OMAP_TAG_LCD, &h6300_lcd_config }, { OMAP_TAG_UART, &h6300_uart_config }, { OMAP_TAG_USB, &h6300_usb_config }, }; static void __init h6300_init_irq(void) { omap1_init_common_hw(); omap_init_irq(); omap_gpio_init(); } static void __init h6300_init(void) { int ret; ret = platform_add_devices(h6300_devices, ARRAY_SIZE(h6300_devices)); if (ret) { printk(KERN_WARNING "Unable to add h6300 platform devices."); } omap_board_config = h6300_config; omap_board_config_size = ARRAY_SIZE(h6300_config); omap_serial_init(); } static void __init h6300_map_io(void) { omap1_map_common_io(); } MACHINE_START(OMAP_H6300, "HP iPAQ h6300") /* MAINTAINER("Mika Laitio ") */ .phys_io = 0xfff00000, .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc, .boot_params = 0x10000100, .map_io = h6300_map_io, .init_irq = h6300_init_irq, .init_machine = h6300_init, .timer = &omap_timer, MACHINE_END