i810_main.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*-*- linux-c -*-
  2. * linux/drivers/video/i810fb_main.h -- Intel 810 frame buffer device
  3. * main header file
  4. *
  5. * Copyright (C) 2001 Antonino Daplas<adaplas@pol.net>
  6. * All Rights Reserved
  7. *
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file COPYING in the main directory of this archive for
  11. * more details.
  12. */
  13. #ifndef __I810_MAIN_H__
  14. #define __I810_MAIN_H__
  15. /* Video Timings */
  16. extern void round_off_xres (u32 *xres);
  17. extern void round_off_yres (u32 *xres, u32 *yres);
  18. extern u32 i810_get_watermark (const struct fb_var_screeninfo *var,
  19. struct i810fb_par *par);
  20. extern void i810fb_encode_registers(const struct fb_var_screeninfo *var,
  21. struct i810fb_par *par, u32 xres, u32 yres);
  22. extern void i810fb_fill_var_timings(struct fb_var_screeninfo *var);
  23. /* Accelerated Functions */
  24. extern void i810fb_fillrect (struct fb_info *p,
  25. const struct fb_fillrect *rect);
  26. extern void i810fb_copyarea (struct fb_info *p,
  27. const struct fb_copyarea *region);
  28. extern void i810fb_imageblit(struct fb_info *p, const struct fb_image *image);
  29. extern int i810fb_sync (struct fb_info *p);
  30. extern void i810fb_init_ringbuffer(struct fb_info *info);
  31. extern void i810fb_load_front (u32 offset, struct fb_info *info);
  32. #ifdef CONFIG_FB_I810_I2C
  33. /* I2C */
  34. extern int i810_probe_i2c_connector(struct fb_info *info, u8 **out_edid,
  35. int conn);
  36. extern void i810_create_i2c_busses(struct i810fb_par *par);
  37. extern void i810_delete_i2c_busses(struct i810fb_par *par);
  38. #else
  39. static inline int i810_probe_i2c_connector(struct fb_info *info, u8 **out_edid,
  40. int conn)
  41. {
  42. return 1;
  43. }
  44. static inline void i810_create_i2c_busses(struct i810fb_par *par) { }
  45. static inline void i810_delete_i2c_busses(struct i810fb_par *par) { }
  46. #endif
  47. /* Conditionals */
  48. #ifdef CONFIG_X86
  49. static inline void flush_cache(void)
  50. {
  51. asm volatile ("wbinvd":::"memory");
  52. }
  53. #else
  54. #define flush_cache() do { } while(0)
  55. #endif
  56. #ifdef CONFIG_FB_I810_GTF
  57. #define IS_DVT (0)
  58. #else
  59. #define IS_DVT (1)
  60. #endif
  61. #endif /* __I810_MAIN_H__ */