mpc823_lcd.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_rot; /* Rotation of Display (0, 1, 2, 3) */
  18. ushort vl_width; /* Width of display area in millimeters */
  19. ushort vl_height; /* Height of display area in millimeters */
  20. /* LCD configuration register */
  21. u_char vl_clkp; /* Clock polarity */
  22. u_char vl_oep; /* Output Enable polarity */
  23. u_char vl_hsp; /* Horizontal Sync polarity */
  24. u_char vl_vsp; /* Vertical Sync polarity */
  25. u_char vl_dp; /* Data polarity */
  26. u_char vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8 */
  27. u_char vl_lbw; /* LCD Bus width, 0 = 4, 1 = 8 */
  28. u_char vl_splt; /* Split display, 0 = single-scan, 1 = dual-scan */
  29. u_char vl_clor; /* Color, 0 = mono, 1 = color */
  30. u_char vl_tft; /* 0 = passive, 1 = TFT */
  31. /* Horizontal control register. Timing from data sheet */
  32. ushort vl_wbl; /* Wait between lines */
  33. /* Vertical control register */
  34. u_char vl_vpw; /* Vertical sync pulse width */
  35. u_char vl_lcdac; /* LCD AC timing */
  36. u_char vl_wbf; /* Wait between frames */
  37. } vidinfo_t;
  38. #endif