mx51evk_video.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2012 Freescale Semiconductor, Inc.
  3. * Fabio Estevam <fabio.estevam@freescale.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <linux/list.h>
  25. #include <asm/gpio.h>
  26. #include <asm/arch/iomux.h>
  27. #include <linux/fb.h>
  28. #include <ipu_pixfmt.h>
  29. #define MX51EVK_LCD_3V3 IMX_GPIO_NR(4, 9)
  30. #define MX51EVK_LCD_5V IMX_GPIO_NR(4, 10)
  31. #define MX51EVK_LCD_BACKLIGHT IMX_GPIO_NR(3, 4)
  32. static struct fb_videomode const claa_wvga = {
  33. .name = "CLAA07LC0ACW",
  34. .refresh = 57,
  35. .xres = 800,
  36. .yres = 480,
  37. .pixclock = 37037,
  38. .left_margin = 40,
  39. .right_margin = 60,
  40. .upper_margin = 10,
  41. .lower_margin = 10,
  42. .hsync_len = 20,
  43. .vsync_len = 10,
  44. .sync = 0,
  45. .vmode = FB_VMODE_NONINTERLACED
  46. };
  47. void setup_iomux_lcd(void)
  48. {
  49. /* DI2_PIN15 */
  50. mxc_request_iomux(MX51_PIN_DI_GP4, IOMUX_CONFIG_ALT4);
  51. /* Pad settings for MX51_PIN_DI2_DISP_CLK */
  52. mxc_iomux_set_pad(MX51_PIN_DI2_DISP_CLK, PAD_CTL_HYS_NONE |
  53. PAD_CTL_PKE_ENABLE | PAD_CTL_PUE_KEEPER |
  54. PAD_CTL_DRV_MAX | PAD_CTL_SRE_SLOW);
  55. /* Turn on 3.3V voltage for LCD */
  56. mxc_request_iomux(MX51_PIN_CSI2_D12, IOMUX_CONFIG_ALT3);
  57. gpio_direction_output(MX51EVK_LCD_3V3, 1);
  58. /* Turn on 5V voltage for LCD */
  59. mxc_request_iomux(MX51_PIN_CSI2_D13, IOMUX_CONFIG_ALT3);
  60. gpio_direction_output(MX51EVK_LCD_5V, 1);
  61. /* Turn on GPIO backlight */
  62. mxc_request_iomux(MX51_PIN_DI1_D1_CS, IOMUX_CONFIG_ALT4);
  63. mxc_iomux_set_input(MX51_GPIO3_IPP_IND_G_IN_4_SELECT_INPUT,
  64. INPUT_CTL_PATH1);
  65. gpio_direction_output(MX51EVK_LCD_BACKLIGHT, 1);
  66. }
  67. void lcd_enable(void)
  68. {
  69. int ret = ipuv3_fb_init(&claa_wvga, 1, IPU_PIX_FMT_RGB565);
  70. if (ret)
  71. printf("LCD cannot be configured: %d\n", ret);
  72. }