s3c2410fb.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * linux/drivers/video/s3c2410fb.h
  3. * Copyright (c) Arnaud Patard
  4. *
  5. * This file is subject to the terms and conditions of the GNU General Public
  6. * License. See the file COPYING in the main directory of this archive for
  7. * more details.
  8. *
  9. * S3C2410 LCD Controller Frame Buffer Driver
  10. * based on skeletonfb.c, sa1100fb.h
  11. *
  12. * ChangeLog
  13. *
  14. * 2004-12-04: Arnaud Patard <arnaud.patard@rtp-net.org>
  15. * - Moved dprintk to s3c2410fb.c
  16. *
  17. * 2004-09-07: Arnaud Patard <arnaud.patard@rtp-net.org>
  18. * - Renamed from h1940fb.h to s3c2410fb.h
  19. * - Chenged h1940 to s3c2410
  20. *
  21. * 2004-07-15: Arnaud Patard <arnaud.patard@rtp-net.org>
  22. * - First version
  23. */
  24. #ifndef __S3C2410FB_H
  25. #define __S3C2410FB_H
  26. struct s3c2410fb_info {
  27. struct fb_info *fb;
  28. struct device *dev;
  29. struct clk *clk;
  30. struct resource *mem;
  31. void __iomem *io;
  32. struct s3c2410fb_mach_info *mach_info;
  33. /* raw memory addresses */
  34. dma_addr_t map_dma; /* physical */
  35. u_char * map_cpu; /* virtual */
  36. u_int map_size;
  37. struct s3c2410fb_hw regs;
  38. /* addresses of pieces placed in raw buffer */
  39. u_char * screen_cpu; /* virtual address of buffer */
  40. dma_addr_t screen_dma; /* physical address of buffer */
  41. unsigned int palette_ready;
  42. /* keep these registers in case we need to re-write palette */
  43. u32 palette_buffer[256];
  44. u32 pseudo_pal[16];
  45. };
  46. #define PALETTE_BUFF_CLEAR (0x80000000) /* entry is clear/invalid */
  47. int s3c2410fb_init(void);
  48. #endif