vt8500lcdfb.h 811 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * linux/drivers/video/vt8500lcdfb.h
  3. *
  4. * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
  5. *
  6. * This software is licensed under the terms of the GNU General Public
  7. * License version 2, as published by the Free Software Foundation, and
  8. * may be copied, distributed, and modified under those terms.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. struct vt8500lcd_info {
  16. struct fb_info fb;
  17. void __iomem *regbase;
  18. void __iomem *palette_cpu;
  19. dma_addr_t palette_phys;
  20. size_t palette_size;
  21. wait_queue_head_t wait;
  22. };
  23. static int bpp_values[] = {
  24. 1,
  25. 2,
  26. 4,
  27. 8,
  28. 12,
  29. 16,
  30. 18,
  31. 24,
  32. };