lcd_omap3beagle.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * LCD panel support for the TI OMAP3 Beagle board
  3. *
  4. * Author: Koen Kooi <koen@openembedded.org>
  5. *
  6. * Derived from drivers/video/omap/lcd-omap3evm.c
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. #include <linux/module.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/gpio.h>
  25. #include <linux/i2c/twl4030.h>
  26. #include <mach/mux.h>
  27. #include <mach/omapfb.h>
  28. #include <asm/mach-types.h>
  29. #define LCD_PANEL_ENABLE_GPIO 170
  30. static int omap3beagle_panel_init(struct lcd_panel *panel,
  31. struct omapfb_device *fbdev)
  32. {
  33. gpio_request(LCD_PANEL_ENABLE_GPIO, "LCD enable");
  34. return 0;
  35. }
  36. static void omap3beagle_panel_cleanup(struct lcd_panel *panel)
  37. {
  38. gpio_free(LCD_PANEL_ENABLE_GPIO);
  39. }
  40. static int omap3beagle_panel_enable(struct lcd_panel *panel)
  41. {
  42. gpio_set_value(LCD_PANEL_ENABLE_GPIO, 1);
  43. return 0;
  44. }
  45. static void omap3beagle_panel_disable(struct lcd_panel *panel)
  46. {
  47. gpio_set_value(LCD_PANEL_ENABLE_GPIO, 0);
  48. }
  49. static unsigned long omap3beagle_panel_get_caps(struct lcd_panel *panel)
  50. {
  51. return 0;
  52. }
  53. struct lcd_panel omap3beagle_panel = {
  54. .name = "omap3beagle",
  55. .config = OMAP_LCDC_PANEL_TFT,
  56. .bpp = 16,
  57. .data_lines = 24,
  58. .x_res = 1024,
  59. .y_res = 768,
  60. .hsw = 3, /* hsync_len (4) - 1 */
  61. .hfp = 3, /* right_margin (4) - 1 */
  62. .hbp = 39, /* left_margin (40) - 1 */
  63. .vsw = 1, /* vsync_len (2) - 1 */
  64. .vfp = 2, /* lower_margin */
  65. .vbp = 7, /* upper_margin (8) - 1 */
  66. .pixel_clock = 64000,
  67. .init = omap3beagle_panel_init,
  68. .cleanup = omap3beagle_panel_cleanup,
  69. .enable = omap3beagle_panel_enable,
  70. .disable = omap3beagle_panel_disable,
  71. .get_caps = omap3beagle_panel_get_caps,
  72. };
  73. static int omap3beagle_panel_probe(struct platform_device *pdev)
  74. {
  75. omapfb_register_panel(&omap3beagle_panel);
  76. return 0;
  77. }
  78. static int omap3beagle_panel_remove(struct platform_device *pdev)
  79. {
  80. return 0;
  81. }
  82. static int omap3beagle_panel_suspend(struct platform_device *pdev,
  83. pm_message_t mesg)
  84. {
  85. return 0;
  86. }
  87. static int omap3beagle_panel_resume(struct platform_device *pdev)
  88. {
  89. return 0;
  90. }
  91. struct platform_driver omap3beagle_panel_driver = {
  92. .probe = omap3beagle_panel_probe,
  93. .remove = omap3beagle_panel_remove,
  94. .suspend = omap3beagle_panel_suspend,
  95. .resume = omap3beagle_panel_resume,
  96. .driver = {
  97. .name = "omap3beagle_lcd",
  98. .owner = THIS_MODULE,
  99. },
  100. };
  101. static int __init omap3beagle_panel_drv_init(void)
  102. {
  103. return platform_driver_register(&omap3beagle_panel_driver);
  104. }
  105. static void __exit omap3beagle_panel_drv_exit(void)
  106. {
  107. platform_driver_unregister(&omap3beagle_panel_driver);
  108. }
  109. module_init(omap3beagle_panel_drv_init);
  110. module_exit(omap3beagle_panel_drv_exit);