bf54x-lq043.h 578 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright 2007-2008 Analog Devices Inc.
  3. *
  4. * Licensed under the GPL-2 or later.
  5. */
  6. #ifndef BF54X_LQ043_H
  7. #define BF54X_LQ043_H
  8. struct bfin_bf54xfb_val {
  9. unsigned int defval;
  10. unsigned int min;
  11. unsigned int max;
  12. };
  13. struct bfin_bf54xfb_mach_info {
  14. unsigned char fixed_syncs; /* do not update sync/border */
  15. /* LCD types */
  16. int type;
  17. /* Screen size */
  18. int width;
  19. int height;
  20. /* Screen info */
  21. struct bfin_bf54xfb_val xres;
  22. struct bfin_bf54xfb_val yres;
  23. struct bfin_bf54xfb_val bpp;
  24. /* GPIOs */
  25. unsigned short disp;
  26. };
  27. #endif /* BF54X_LQ043_H */