mpc823_lcd.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * mpc823_lcd.h - MPC823 LCD Controller structures
  3. *
  4. * (C) Copyright 2001
  5. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef _MPC823_LCD_H_
  10. #define _MPC823_LCD_H_
  11. /*
  12. * LCD controller stucture for MPC823 CPU
  13. */
  14. typedef struct vidinfo {
  15. ushort vl_col; /* Number of columns (i.e. 640) */
  16. ushort vl_row; /* Number of rows (i.e. 480) */
  17. ushort vl_width; /* Width of display area in millimeters */
  18. ushort vl_height; /* Height of display area in millimeters */
  19. /* LCD configuration register */
  20. u_char vl_clkp; /* Clock polarity */
  21. u_char vl_oep; /* Output Enable polarity */
  22. u_char vl_hsp; /* Horizontal Sync polarity */
  23. u_char vl_vsp; /* Vertical Sync polarity */
  24. u_char vl_dp; /* Data polarity */
  25. u_char vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8 */
  26. u_char vl_lbw; /* LCD Bus width, 0 = 4, 1 = 8 */
  27. u_char vl_splt; /* Split display, 0 = single-scan, 1 = dual-scan */
  28. u_char vl_clor; /* Color, 0 = mono, 1 = color */
  29. u_char vl_tft; /* 0 = passive, 1 = TFT */
  30. /* Horizontal control register. Timing from data sheet */
  31. ushort vl_wbl; /* Wait between lines */
  32. /* Vertical control register */
  33. u_char vl_vpw; /* Vertical sync pulse width */
  34. u_char vl_lcdac; /* LCD AC timing */
  35. u_char vl_wbf; /* Wait between frames */
  36. } vidinfo_t;
  37. #endif