2 * linux/drivers/video/maxinefb.c
4 * DECstation 5000/xx onboard framebuffer support ... derived from:
5 * "HP300 Topcat framebuffer support (derived from macfb of all things)
6 * Phil Blundell <philb@gnu.org> 1998", the original code can be
7 * found in the file hpfb.c in the same directory.
9 * DECstation related code Copyright (C) 1999,2000,2001 by
10 * Michael Engel <engel@unix-ag.org> and
11 * Karsten Merker <merker@linuxtag.org>.
12 * This file is subject to the terms and conditions of the GNU General
13 * Public License. See the file COPYING in the main directory of this
14 * archive for more details.
20 * 2001/01/27 removed debugging and testing code, fixed fb_ops
21 * initialization which had caused a crash before,
22 * general cleanup, first official release (KM)
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/sched.h>
29 #include <linux/errno.h>
30 #include <linux/string.h>
32 #include <linux/tty.h>
33 #include <linux/slab.h>
34 #include <linux/delay.h>
35 #include <linux/init.h>
37 #include <video/maxinefb.h>
39 /* bootinfo.h defines the machine type values, needed when checking */
40 /* whether are really running on a maxine, KM */
41 #include <asm/bootinfo.h>
43 static struct fb_info fb_info
;
45 static struct fb_var_screeninfo maxinefb_defined
= {
54 .activate
= FB_ACTIVATE_NOW
,
57 .vmode
= FB_VMODE_NONINTERLACED
,
60 static struct fb_fix_screeninfo maxinefb_fix
= {
61 .id
= "Maxine onboard graphics 1024x768x8",
62 .smem_len
= (1024*768),
63 .type
= FB_TYPE_PACKED_PIXELS
,
64 .visual
= FB_VISUAL_PSEUDOCOLOR
,
68 /* Reference to machine type set in arch/mips/dec/prom/identify.c, KM */
69 extern unsigned long mips_machtype
;
71 /* Handle the funny Inmos RamDAC/video controller ... */
73 void maxinefb_ims332_write_register(int regno
, register unsigned int val
)
75 register unsigned char *regs
= (char *) MAXINEFB_IMS332_ADDRESS
;
78 wptr
= regs
+ 0xa0000 + (regno
<< 4);
79 *((volatile unsigned int *) (regs
)) = (val
>> 8) & 0xff00;
80 *((volatile unsigned short *) (wptr
)) = val
;
83 unsigned int maxinefb_ims332_read_register(int regno
)
85 register unsigned char *regs
= (char *) MAXINEFB_IMS332_ADDRESS
;
87 register unsigned int j
, k
;
89 rptr
= regs
+ 0x80000 + (regno
<< 4);
90 j
= *((volatile unsigned short *) rptr
);
91 k
= *((volatile unsigned short *) regs
);
93 return (j
& 0xffff) | ((k
& 0xff00) << 8);
97 static int maxinefb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
98 unsigned blue
, unsigned transp
, struct fb_info
*info
)
100 /* value to be written into the palette reg. */
101 unsigned long hw_colorvalue
= 0;
103 red
>>= 8; /* The cmap fields are 16 bits */
104 green
>>= 8; /* wide, but the harware colormap */
105 blue
>>= 8; /* registers are only 8 bits wide */
107 hw_colorvalue
= (blue
<< 16) + (green
<< 8) + (red
);
109 maxinefb_ims332_write_register(IMS332_REG_COLOR_PALETTE
+ regno
,
114 static struct fb_ops maxinefb_ops
= {
115 .owner
= THIS_MODULE
,
116 .fb_setcolreg
= maxinefb_setcolreg
,
117 .fb_fillrect
= cfb_fillrect
,
118 .fb_copyarea
= cfb_copyarea
,
119 .fb_imageblit
= cfb_imageblit
,
120 .fb_cursor
= soft_cursor
,
123 int __init
maxinefb_init(void)
125 volatile unsigned char *fboff
;
126 unsigned long fb_start
;
129 if (fb_get_options("maxinefb", NULL
))
132 /* Validate we're on the proper machine type */
133 if (mips_machtype
!= MACH_DS5000_XX
) {
137 printk(KERN_INFO
"Maxinefb: Personal DECstation detected\n");
138 printk(KERN_INFO
"Maxinefb: initializing onboard framebuffer\n");
140 /* Framebuffer display memory base address */
141 fb_start
= DS5000_xx_ONBOARD_FBMEM_START
;
144 for (fboff
= fb_start
; fboff
< fb_start
+ 0x1ffff; fboff
++)
147 maxinefb_fix
.smem_start
= fb_start
;
149 /* erase hardware cursor */
150 for (i
= 0; i
< 512; i
++) {
151 maxinefb_ims332_write_register(IMS332_REG_CURSOR_RAM
+ i
,
155 maxinefb_ims332_write_register (IMS332_REG_CURSOR_RAM + i, 0x0f);
157 maxinefb_ims332_write_register (IMS332_REG_CURSOR_RAM + i, 0xf0);
161 fb_info
.fbops
= &maxinefb_ops
;
162 fb_info
.screen_base
= (char *) maxinefb_fix
.smem_start
;
163 fb_info
.var
= maxinefb_defined
;
164 fb_info
.fix
= maxinefb_fix
;
165 fb_info
.flags
= FBINFO_DEFAULT
;
167 fb_alloc_cmap(&fb_info
.cmap
, 256, 0);
169 if (register_framebuffer(&fb_info
) < 0)
174 static void __exit
maxinefb_exit(void)
176 unregister_framebuffer(&fb_info
);
180 MODULE_LICENSE("GPL");
182 module_init(maxinefb_init
);
183 module_exit(maxinefb_exit
);