summaryrefslogtreecommitdiffstats
path: root/drivers/sbus/char/fb.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-09-12 01:29:55 +0000
committerRalf Baechle <ralf@linux-mips.org>1997-09-12 01:29:55 +0000
commit545f435ebcfd94a1e7c20b46efe81b4d6ac4e698 (patch)
treee9ce4bc598d06374bda906f18365984bf22a526a /drivers/sbus/char/fb.h
parent4291a610eef89d0d5c69d9a10ee6560e1aa36c74 (diff)
Merge with Linux 2.1.55. More bugfixes and goodies from my private
CVS archive.
Diffstat (limited to 'drivers/sbus/char/fb.h')
-rw-r--r--drivers/sbus/char/fb.h26
1 files changed, 20 insertions, 6 deletions
diff --git a/drivers/sbus/char/fb.h b/drivers/sbus/char/fb.h
index 0aa9f2b48..ea58a6346 100644
--- a/drivers/sbus/char/fb.h
+++ b/drivers/sbus/char/fb.h
@@ -1,4 +1,4 @@
-/* $Id: fb.h,v 1.29 1997/07/15 09:48:48 jj Exp $
+/* $Id: fb.h,v 1.33 1997/08/25 07:50:29 jj Exp $
* fb.h: contains the definitions of the structures that various sun
* frame buffer can use to do console driver stuff.
*
@@ -122,6 +122,7 @@ typedef struct fbinfo {
struct tcx_info tcx;
struct leo_info leo;
struct ffb_info ffb;
+ void *private;
} info; /* per frame information */
int space; /* I/O space this card resides in */
int blanked; /* true if video blanked */
@@ -134,6 +135,7 @@ typedef struct fbinfo {
int emulations[4]; /* possible emulations (-1 N/A) */
int prom_node; /* node of the device in prom tree */
int base_depth; /* depth of fb->base piece */
+ int linebytes; /* number of bytes in a row */
struct cg_cursor cursor; /* kernel state of hw cursor */
int (*mmap)(struct inode *, struct file *, struct vm_area_struct *,
long fb_base, struct fbinfo *);
@@ -149,16 +151,20 @@ typedef struct fbinfo {
void (*setcursormap)(struct fbinfo *, unsigned char *,
unsigned char *, unsigned char *);
unsigned long (*postsetup)(struct fbinfo *, unsigned long);
+ void (*clear_fb)(int);
+ void (*set_other_palette)(int);
void (*blitc)(unsigned short, int, int);
void (*setw)(int, int, unsigned short, int);
void (*cpyw)(int, int, unsigned short *, int);
void (*fill)(int, int, int *);
+ void (*draw_penguin)(int,int,int);
unsigned char *color_map;
struct openpromfs_dev proc_entry;
} fbinfo_t;
#define CM(i, j) [3*(i)+(j)]
+extern unsigned char sparc_color_table[];
extern unsigned char reverse_color_table[];
#define CHARATTR_TO_SUNCOLOR(attr) \
@@ -196,13 +202,13 @@ extern unsigned long get_phys (unsigned long addr);
extern int get_iospace (unsigned long addr);
extern void render_screen(void);
-extern void sun_hw_hide_cursor(void);
-extern void sun_hw_set_cursor(int, int);
-extern int sun_hw_scursor(struct fbcursor *,fbinfo_t *);
-extern int sun_hw_cursor_shown;
+extern void sbus_hw_hide_cursor(void);
+extern void sbus_hw_set_cursor(int, int);
+extern int sbus_hw_scursor(struct fbcursor *,fbinfo_t *);
+extern int sbus_hw_cursor_shown;
extern int sun_prom_console_id;
-extern unsigned long sun_cg_postsetup(fbinfo_t *, unsigned long);
+extern unsigned long cg_postsetup(fbinfo_t *, unsigned long);
#define FB_DEV(x) (MINOR(x) / 32)
@@ -216,4 +222,12 @@ extern void tcx_setup (fbinfo_t *, int, int, u32, struct linux_sbus_device *);
extern void creator_setup (fbinfo_t *, int, int, unsigned long, int);
extern int io_remap_page_range(unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot, int space);
+extern unsigned char linux_logo_red[];
+extern unsigned char linux_logo_green[];
+extern unsigned char linux_logo_blue[];
+extern unsigned char linux_logo[];
+extern unsigned char linux_logo_bw[];
+extern unsigned int linux_logo_colors;
+extern char logo_banner[];
+
#endif __SPARC_FB_H_