board-zoom-display.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Copyright (C) 2010 Texas Instruments Inc.
  3. *
  4. * Modified from mach-omap2/board-zoom-peripherals.c
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/gpio.h>
  14. #include <linux/i2c/twl.h>
  15. #include <linux/spi/spi.h>
  16. #include <plat/mcspi.h>
  17. #include <video/omapdss.h>
  18. #define LCD_PANEL_RESET_GPIO_PROD 96
  19. #define LCD_PANEL_RESET_GPIO_PILOT 55
  20. #define LCD_PANEL_QVGA_GPIO 56
  21. static struct gpio zoom_lcd_gpios[] __initdata = {
  22. { -EINVAL, GPIOF_OUT_INIT_HIGH, "lcd reset" },
  23. { LCD_PANEL_QVGA_GPIO, GPIOF_OUT_INIT_HIGH, "lcd qvga" },
  24. };
  25. static void __init zoom_lcd_panel_init(void)
  26. {
  27. zoom_lcd_gpios[0].gpio = (omap_rev() > OMAP3430_REV_ES3_0) ?
  28. LCD_PANEL_RESET_GPIO_PROD :
  29. LCD_PANEL_RESET_GPIO_PILOT;
  30. if (gpio_request_array(zoom_lcd_gpios, ARRAY_SIZE(zoom_lcd_gpios)))
  31. pr_err("%s: Failed to get LCD GPIOs.\n", __func__);
  32. }
  33. static int zoom_panel_enable_lcd(struct omap_dss_device *dssdev)
  34. {
  35. return 0;
  36. }
  37. static void zoom_panel_disable_lcd(struct omap_dss_device *dssdev)
  38. {
  39. }
  40. /*
  41. * PWMA/B register offsets (TWL4030_MODULE_PWMA)
  42. */
  43. #define TWL_INTBR_PMBR1 0xD
  44. #define TWL_INTBR_GPBR1 0xC
  45. #define TWL_LED_PWMON 0x0
  46. #define TWL_LED_PWMOFF 0x1
  47. static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
  48. {
  49. unsigned char c;
  50. u8 mux_pwm, enb_pwm;
  51. if (level > 100)
  52. return -1;
  53. twl_i2c_read_u8(TWL4030_MODULE_INTBR, &mux_pwm, TWL_INTBR_PMBR1);
  54. twl_i2c_read_u8(TWL4030_MODULE_INTBR, &enb_pwm, TWL_INTBR_GPBR1);
  55. if (level == 0) {
  56. /* disable pwm1 output and clock */
  57. enb_pwm = enb_pwm & 0xF5;
  58. /* change pwm1 pin to gpio pin */
  59. mux_pwm = mux_pwm & 0xCF;
  60. twl_i2c_write_u8(TWL4030_MODULE_INTBR,
  61. enb_pwm, TWL_INTBR_GPBR1);
  62. twl_i2c_write_u8(TWL4030_MODULE_INTBR,
  63. mux_pwm, TWL_INTBR_PMBR1);
  64. return 0;
  65. }
  66. if (!((enb_pwm & 0xA) && (mux_pwm & 0x30))) {
  67. /* change gpio pin to pwm1 pin */
  68. mux_pwm = mux_pwm | 0x30;
  69. /* enable pwm1 output and clock*/
  70. enb_pwm = enb_pwm | 0x0A;
  71. twl_i2c_write_u8(TWL4030_MODULE_INTBR,
  72. mux_pwm, TWL_INTBR_PMBR1);
  73. twl_i2c_write_u8(TWL4030_MODULE_INTBR,
  74. enb_pwm, TWL_INTBR_GPBR1);
  75. }
  76. c = ((50 * (100 - level)) / 100) + 1;
  77. twl_i2c_write_u8(TWL4030_MODULE_PWM1, 0x7F, TWL_LED_PWMOFF);
  78. twl_i2c_write_u8(TWL4030_MODULE_PWM1, c, TWL_LED_PWMON);
  79. return 0;
  80. }
  81. static struct omap_dss_device zoom_lcd_device = {
  82. .name = "lcd",
  83. .driver_name = "NEC_8048_panel",
  84. .type = OMAP_DISPLAY_TYPE_DPI,
  85. .phy.dpi.data_lines = 24,
  86. .platform_enable = zoom_panel_enable_lcd,
  87. .platform_disable = zoom_panel_disable_lcd,
  88. .max_backlight_level = 100,
  89. .set_backlight = zoom_set_bl_intensity,
  90. };
  91. static struct omap_dss_device *zoom_dss_devices[] = {
  92. &zoom_lcd_device,
  93. };
  94. static struct omap_dss_board_info zoom_dss_data = {
  95. .num_devices = ARRAY_SIZE(zoom_dss_devices),
  96. .devices = zoom_dss_devices,
  97. .default_device = &zoom_lcd_device,
  98. };
  99. static struct omap2_mcspi_device_config dss_lcd_mcspi_config = {
  100. .turbo_mode = 1,
  101. .single_channel = 1, /* 0: slave, 1: master */
  102. };
  103. static struct spi_board_info nec_8048_spi_board_info[] __initdata = {
  104. [0] = {
  105. .modalias = "nec_8048_spi",
  106. .bus_num = 1,
  107. .chip_select = 2,
  108. .max_speed_hz = 375000,
  109. .controller_data = &dss_lcd_mcspi_config,
  110. },
  111. };
  112. void __init zoom_display_init(void)
  113. {
  114. omap_display_init(&zoom_dss_data);
  115. spi_register_board_info(nec_8048_spi_board_info,
  116. ARRAY_SIZE(nec_8048_spi_board_info));
  117. zoom_lcd_panel_init();
  118. }