bf54x-lq043.h 486 B

123456789101112131415161718192021222324252627282930
  1. #ifndef BF54X_LQ043_H
  2. #define BF54X_LQ043_H
  3. struct bfin_bf54xfb_val {
  4. unsigned int defval;
  5. unsigned int min;
  6. unsigned int max;
  7. };
  8. struct bfin_bf54xfb_mach_info {
  9. unsigned char fixed_syncs; /* do not update sync/border */
  10. /* LCD types */
  11. int type;
  12. /* Screen size */
  13. int width;
  14. int height;
  15. /* Screen info */
  16. struct bfin_bf54xfb_val xres;
  17. struct bfin_bf54xfb_val yres;
  18. struct bfin_bf54xfb_val bpp;
  19. /* GPIOs */
  20. unsigned short disp;
  21. };
  22. #endif /* BF54X_LQ043_H */