aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/geode/geodefb.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/video/geode/geodefb.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/video/geode/geodefb.h')
-rw-r--r--drivers/video/geode/geodefb.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/drivers/video/geode/geodefb.h b/drivers/video/geode/geodefb.h
new file mode 100644
index 000000000000..b7bac0a526b3
--- /dev/null
+++ b/drivers/video/geode/geodefb.h
@@ -0,0 +1,39 @@
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
15struct geodefb_info;
16
17struct geode_dc_ops {
18 void (*set_mode)(struct fb_info *);
19 void (*set_palette_reg)(struct fb_info *, unsigned, unsigned, unsigned, unsigned);
20};
21
22struct 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);
26};
27
28struct 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;
37};
38
39#endif /* !__GEODEFB_H__ */