From: Mika Laitio Date: Mon, 19 Jan 2009 23:00:29 +0000 (+0200) Subject: h63xx: lcd support X-Git-Tag: v2.6.16-omap1-h63xx-1~9 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?p=linux-2.6-omap-h63xx.git;a=commitdiff_plain;h=345ea42450cdaed99a13f1c312009613b2f7eedc h63xx: lcd support --- diff --git a/arch/arm/mach-omap1/board-h6300.c b/arch/arm/mach-omap1/board-h6300.c index bca54d26bef..6e73ef55bb4 100644 --- a/arch/arm/mach-omap1/board-h6300.c +++ b/arch/arm/mach-omap1/board-h6300.c @@ -13,12 +13,10 @@ * 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 @@ -27,10 +25,27 @@ #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_board_config_kernel h6300_config[] = { + { OMAP_TAG_LCD, &h6300_lcd_config }, +}; + static void __init h6300_init_irq(void) { omap1_init_common_hw(); @@ -40,6 +55,14 @@ static void __init h6300_init_irq(void) 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(); } diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index 5dac4230360..6eb66bfecea 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c @@ -30,6 +30,7 @@ #include #include #include +#include #include @@ -1086,6 +1087,10 @@ static void set_b1_regs(void) } if (omap_dma_in_1510_mode()) { + u16 l = omap_readw(OMAP1510_DMA_LCD_CTRL); + l &= ~(1 << 6); + omap_writew (l, OMAP1510_DMA_LCD_CTRL); + omap_writew(top >> 16, OMAP1510_DMA_LCD_TOP_F1_U); omap_writew(top, OMAP1510_DMA_LCD_TOP_F1_L); omap_writew(bottom >> 16, OMAP1510_DMA_LCD_BOT_F1_U); diff --git a/drivers/video/omap/Makefile b/drivers/video/omap/Makefile index 725ea29c671..dea546f6254 100644 --- a/drivers/video/omap/Makefile +++ b/drivers/video/omap/Makefile @@ -23,6 +23,7 @@ objs-$(CONFIG_ARCH_OMAP15XX)$(CONFIG_MACH_OMAP_INNOVATOR) += lcd_inn1510.o objs-y$(CONFIG_MACH_OMAP_OSK) += lcd_osk.o objs-y$(CONFIG_MACH_OMAP_PERSEUS2) += lcd_p2.o objs-y$(CONFIG_MACH_OMAP_APOLLON) += lcd_apollon.o +objs-$(CONFIG_ARCH_OMAP15XX)$(CONFIG_MACH_OMAP_H6300) += lcd_h6300.o objs-y$(CONFIG_FB_OMAP_LCD_LPH8923) += lcd_lph8923.o diff --git a/drivers/video/omap/lcd_h6300.c b/drivers/video/omap/lcd_h6300.c new file mode 100644 index 00000000000..d476fe69f4b --- /dev/null +++ b/drivers/video/omap/lcd_h6300.c @@ -0,0 +1,157 @@ +/* + * File: drivers/video/omap_new/lcd-h6300.c + * + * LCD panel support for the TI OMAP1510 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 as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include +#include +#include + +#include + +/* #define OMAPFB_DBG 1 */ + +#include "debug.h" + +//static struct clk *h6300_lcd_ck; + +static int h6300_panel_init(struct omapfb_device *fbdev) +{ + DBGENTER(1); +/* + if ((h6300_lcd_ck = clk_get (NULL, "lcd_ck")) == NULL) { + printk(KERN_ERR "Unable to get the clock LCD_CK!!!\n"); + return -EPERM; + } clk_enable(h6300_lcd_ck); +*/ + DBGLEAVE(1); + printk(KERN_INFO "lcd_h6300.c: h6300_panel_init() done\n"); + return 0; +} + +static void h6300_panel_cleanup(void) +{ + DBGENTER(1); +/* + if (h6300_lcd_ck) { + clk_disable(h6300_lcd_ck); + clk_put(h6300_lcd_ck); + h6300_lcd_ck = NULL; + } +*/ + DBGLEAVE(1); + printk(KERN_INFO "lcd_h6300.c: h6300_panel_cleanup() done\n"); +} + +static int h6300_panel_enable(void) +{ + DBGENTER(1); + DBGLEAVE(1); + printk(KERN_INFO "lcd_h6300.c: h6300_panel_enable() done\n"); + return 0; +} + +static void h6300_panel_disable(void) +{ + DBGENTER(1); + DBGLEAVE(1); + printk(KERN_INFO "lcd_h6300.c: h6300_panel_disable() done\n"); +} + +static unsigned long h6300_panel_get_caps(void) +{ + printk(KERN_INFO "lcd_h6300.c: h6300_panel_get_caps() called\n"); + return 0; +} + +struct lcd_panel h6300_panel = { + .name = "h6300", + .config = OMAP_LCDC_PANEL_TFT, + + .bpp = 16, + .data_lines = 16, + .x_res = 240, + .y_res = 320, + .pixel_clock = 21000, + .hsw = 12, + .hfp = 10, + .hbp = 10, + .vsw = 3, + .vfp = 10, + .vbp = 3, + .pcd = 0, + + .init = h6300_panel_init, + .cleanup = h6300_panel_cleanup, + .enable = h6300_panel_enable, + .disable = h6300_panel_disable, + .get_caps = h6300_panel_get_caps, +}; + +static int h6300_panel_probe(struct platform_device *pdev) +{ + DBGENTER(1); + omapfb_register_panel(&h6300_panel); + return 0; +} + +static int h6300_panel_remove(struct platform_device *pdev) +{ + DBGENTER(1); + return 0; +} + +static int h6300_panel_suspend(struct platform_device *pdev, pm_message_t mesg) +{ + DBGENTER(1); + return 0; +} + +static int h6300_panel_resume(struct platform_device *pdev) +{ + DBGENTER(1); + return 0; +} + +struct platform_driver h6300_panel_driver = { + .probe = h6300_panel_probe, + .remove = h6300_panel_remove, + .suspend = h6300_panel_suspend, + .resume = h6300_panel_resume, + .driver = { + .name = "lcd_h6300", + .owner = THIS_MODULE, + }, +}; + +static int h6300_panel_drv_init(void) +{ + return platform_driver_register(&h6300_panel_driver); +} + +static void h6300_panel_drv_cleanup(void) +{ + platform_driver_unregister(&h6300_panel_driver); +} + +module_init(h6300_panel_drv_init); +module_exit(h6300_panel_drv_cleanup);