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/twl.h>
  26. #include <asm/mach-types.h>
  27. #include "omapfb.h"
  28. #define LCD_PANEL_ENABLE_GPIO 170
  29. static int omap3beagle_panel_init(struct lcd_panel *panel,
  30. struct omapfb_device *fbdev)
  31. {
  32. gpio_request(LCD_PANEL_ENABLE_GPIO, "LCD enable");
  33. return 0;
  34. }
  35. static void omap3beagle_panel_cleanup(struct lcd_panel *panel)
  36. {
  37. gpio_free(LCD_PANEL_ENABLE_GPIO);
  38. }
  39. static int omap3beagle_panel_enable(struct lcd_panel *panel)
  40. {
  41. gpio_set_value(LCD_PANEL_ENABLE_GPIO, 1);
  42. return 0;
  43. }
  44. static void omap3beagle_panel_disable(struct lcd_panel *panel)
  45. {
  46. gpio_set_value(LCD_PANEL_ENABLE_GPIO, 0);
  47. }
  48. static unsigned long omap3beagle_panel_get_caps(struct lcd_panel *panel)
  49. {
  50. return 0;
  51. }
  52. struct lcd_panel omap3beagle_panel = {
  53. .name = "omap3beagle",
  54. .config = OMAP_LCDC_PANEL_TFT,
  55. .bpp = 16,
  56. .data_lines = 24,
  57. .x_res = 1024,
  58. .y_res = 768,
  59. .hsw = 3, /* hsync_len (4) - 1 */
  60. .hfp = 3, /* right_margin (4) - 1 */
  61. .hbp = 39, /* left_margin (40) - 1 */
  62. .vsw = 1, /* vsync_len (2) - 1 */
  63. .vfp = 2, /* lower_margin */
  64. .vbp = 7, /* upper_margin (8) - 1 */
  65. .pixel_clock = 64000,
  66. .init = omap3beagle_panel_init,
  67. .cleanup = omap3beagle_panel_cleanup,
  68. .enable = omap3beagle_panel_enable,
  69. .disable = omap3beagle_panel_disable,
  70. .get_caps = omap3beagle_panel_get_caps,
  71. };
  72. static int omap3beagle_panel_probe(struct platform_device *pdev)
  73. {
  74. omapfb_register_panel(&omap3beagle_panel);
  75. return 0;
  76. }
  77. static int omap3beagle_panel_remove(struct platform_device *pdev)
  78. {
  79. return 0;
  80. }
  81. static int omap3beagle_panel_suspend(struct platform_device *pdev,
  82. pm_message_t mesg)
  83. {
  84. return 0;
  85. }
  86. static int omap3beagle_panel_resume(struct platform_device *pdev)
  87. {
  88. return 0;
  89. }
  90. struct platform_driver omap3beagle_panel_driver = {
  91. .probe = omap3beagle_panel_probe,
  92. .remove = omap3beagle_panel_remove,
  93. .suspend = omap3beagle_panel_suspend,
  94. .resume = omap3beagle_panel_resume,
  95. .driver = {
  96. .name = "omap3beagle_lcd",
  97. .owner = THIS_MODULE,
  98. },
  99. };
  100. static int __init omap3beagle_panel_drv_init(void)
  101. {
  102. return platform_driver_register(&omap3beagle_panel_driver);
  103. }
  104. static void __exit omap3beagle_panel_drv_exit(void)
  105. {
  106. platform_driver_unregister(&omap3beagle_panel_driver);
  107. }
  108. module_init(omap3beagle_panel_drv_init);
  109. module_exit(omap3beagle_panel_drv_exit);