Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / video / geode / geodefb.h
blobb7bac0a526b3814bd6ac5edac31215ce855fc6ad
1 /*
2 * drivers/video/geode/geodefb.h
3 * -- Geode framebuffer driver
5 * Copyright (C) 2005 Arcom Control Systems Ltd.
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.
12 #ifndef __GEODEFB_H__
13 #define __GEODEFB_H__
15 struct geodefb_info;
17 struct geode_dc_ops {
18 void (*set_mode)(struct fb_info *);
19 void (*set_palette_reg)(struct fb_info *, unsigned, unsigned, unsigned, unsigned);
22 struct geode_vid_ops {
23 void (*set_dclk)(struct fb_info *);
24 void (*configure_display)(struct fb_info *);
25 int (*blank_display)(struct fb_info *, int blank_mode);
28 struct geodefb_par {
29 int enable_crt;
30 int panel_x; /* dimensions of an attached flat panel, non-zero => enable panel */
31 int panel_y;
32 struct pci_dev *vid_dev;
33 void __iomem *dc_regs;
34 void __iomem *vid_regs;
35 struct geode_dc_ops *dc_ops;
36 struct geode_vid_ops *vid_ops;
39 #endif /* !__GEODEFB_H__ */