geodefb.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * drivers/video/geode/geodefb.h
  3. * -- Geode framebuffer driver
  4. *
  5. * Copyright (C) 2005 Arcom Control Systems Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #ifndef __GEODEFB_H__
  13. #define __GEODEFB_H__
  14. struct geodefb_info;
  15. struct geode_dc_ops {
  16. void (*set_mode)(struct fb_info *);
  17. void (*set_palette_reg)(struct fb_info *, unsigned, unsigned, unsigned, unsigned);
  18. };
  19. struct geode_vid_ops {
  20. void (*set_dclk)(struct fb_info *);
  21. void (*configure_display)(struct fb_info *);
  22. int (*blank_display)(struct fb_info *, int blank_mode);
  23. };
  24. struct geodefb_par {
  25. int enable_crt;
  26. int panel_x; /* dimensions of an attached flat panel, non-zero => enable panel */
  27. int panel_y;
  28. void __iomem *dc_regs;
  29. void __iomem *vid_regs;
  30. struct geode_dc_ops *dc_ops;
  31. struct geode_vid_ops *vid_ops;
  32. };
  33. #endif /* !__GEODEFB_H__ */