lcd_htcherald.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * File: drivers/video/omap/lcd-htcherald.c
  3. *
  4. * LCD panel support for the HTC Herald
  5. *
  6. * Copyright (C) 2009 Cory Maccarrone <darkstar6262@gmail.com>
  7. * Copyright (C) 2009 Wing Linux
  8. *
  9. * Based on the lcd_htcwizard.c file from the linwizard project:
  10. * Copyright (C) linwizard.sourceforge.net
  11. * Author: Angelo Arrifano <miknix@gmail.com>
  12. * Based on lcd_h4 by Imre Deak <imre.deak@nokia.com>
  13. *
  14. * This program is free software; you can redistribute it and/or modify it
  15. * under the terms of the GNU General Public License as published by the
  16. * Free Software Foundation; either version 2 of the License, or (at your
  17. * option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful, but
  20. * WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License along
  25. * with this program; if not, write to the Free Software Foundation, Inc.,
  26. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  27. */
  28. #include <linux/module.h>
  29. #include <linux/platform_device.h>
  30. #include "omapfb.h"
  31. /* Found on WIZ200 (miknix) and some HERA110 models (darkstar62) */
  32. static struct lcd_panel htcherald_panel_1 = {
  33. .name = "lcd_herald",
  34. .config = OMAP_LCDC_PANEL_TFT |
  35. OMAP_LCDC_INV_HSYNC |
  36. OMAP_LCDC_INV_VSYNC |
  37. OMAP_LCDC_INV_PIX_CLOCK,
  38. .bpp = 16,
  39. .data_lines = 16,
  40. .x_res = 240,
  41. .y_res = 320,
  42. .pixel_clock = 6093,
  43. .pcd = 0, /* 15 */
  44. .hsw = 10,
  45. .hfp = 10,
  46. .hbp = 20,
  47. .vsw = 3,
  48. .vfp = 2,
  49. .vbp = 2,
  50. };
  51. static int htcherald_panel_probe(struct platform_device *pdev)
  52. {
  53. omapfb_register_panel(&htcherald_panel_1);
  54. return 0;
  55. }
  56. static struct platform_driver htcherald_panel_driver = {
  57. .probe = htcherald_panel_probe,
  58. .driver = {
  59. .name = "lcd_htcherald",
  60. },
  61. };
  62. module_platform_driver(htcherald_panel_driver);
  63. MODULE_AUTHOR("Cory Maccarrone");
  64. MODULE_LICENSE("GPL");
  65. MODULE_DESCRIPTION("LCD panel support for the HTC Herald");