2 * linux/drivers/video/pmag-aa-fb.c
3 * Copyright 2002 Karsten Merker <merker@debian.org>
5 * PMAG-AA TurboChannel framebuffer card support ... derived from
6 * pmag-ba-fb.c, which is Copyright (C) 1999, 2000, 2001 by
7 * Michael Engel <engel@unix-ag.org>, Karsten Merker <merker@debian.org>
8 * and Harald Koerfgen <hkoerfg@web.de>, which itself is derived from
9 * "HP300 Topcat framebuffer support (derived from macfb of all things)
10 * Phil Blundell <philb@gnu.org> 1998"
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.
16 * 2002-09-28 Karsten Merker <merker@linuxtag.org>
17 * Version 0.01: First try to get a PMAG-AA running.
19 * 2003-02-24 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
20 * Version 0.02: Major code cleanup.
22 * 2003-09-21 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
23 * Hardware cursor support.
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/sched.h>
28 #include <linux/errno.h>
29 #include <linux/string.h>
30 #include <linux/timer.h>
32 #include <linux/tty.h>
33 #include <linux/slab.h>
34 #include <linux/delay.h>
35 #include <linux/init.h>
37 #include <linux/console.h>
39 #include <asm/bootinfo.h>
40 #include <asm/dec/machtype.h>
41 #include <asm/dec/tc.h>
43 #include <video/fbcon.h>
44 #include <video/fbcon-cfb8.h>
49 /* Version information */
50 #define DRIVER_VERSION "0.02"
51 #define DRIVER_AUTHOR "Karsten Merker <merker@linuxtag.org>"
52 #define DRIVER_DESCRIPTION "PMAG-AA Framebuffer Driver"
55 static int aafb_set_var(struct fb_var_screeninfo
*var
, int con
,
56 struct fb_info
*info
);
59 * Bt455 RAM DAC register base offset (rel. to TC slot base address).
61 #define PMAG_AA_BT455_OFFSET 0x100000
64 * Bt431 cursor generator offset (rel. to TC slot base address).
66 #define PMAG_AA_BT431_OFFSET 0x180000
69 * Begin of PMAG-AA framebuffer memory relative to TC slot address,
70 * resolution is 1280x1024x1 (8 bits deep, but only LSB is used).
72 #define PMAG_AA_ONBOARD_FBMEM_OFFSET 0x200000
75 struct timer_list timer
;
80 u16 x
, y
, width
, height
;
83 #define CURSOR_TIMER_FREQ (HZ / 50)
84 #define CURSOR_BLINK_RATE (20)
85 #define CURSOR_DRAW_DELAY (2)
90 struct aafb_cursor cursor
;
91 struct bt455_regs
*bt455
;
92 struct bt431_regs
*bt431
;
93 unsigned long fb_start
;
94 unsigned long fb_size
;
95 unsigned long fb_line_length
;
99 * Max 3 TURBOchannel slots -> max 3 PMAG-AA.
101 static struct aafb_info my_fb_info
[3];
103 static struct aafb_par
{
106 static int currcon
= -1;
108 static void aafb_set_cursor(struct aafb_info
*info
, int on
)
110 struct aafb_cursor
*c
= &info
->cursor
;
113 bt431_position_cursor(info
->bt431
, c
->x
, c
->y
);
114 bt431_enable_cursor(info
->bt431
);
116 bt431_erase_cursor(info
->bt431
);
119 static void aafbcon_cursor(struct display
*disp
, int mode
, int x
, int y
)
121 struct aafb_info
*info
= (struct aafb_info
*)disp
->fb_info
;
122 struct aafb_cursor
*c
= &info
->cursor
;
124 x
*= fontwidth(disp
);
125 y
*= fontheight(disp
);
127 if (c
->x
== x
&& c
->y
== y
&& (mode
== CM_ERASE
) == !c
->enable
)
132 aafb_set_cursor(info
, 0);
133 c
->x
= x
- disp
->var
.xoffset
;
134 c
->y
= y
- disp
->var
.yoffset
;
143 aafb_set_cursor(info
, c
->on
);
145 c
->vbl_cnt
= CURSOR_DRAW_DELAY
;
151 static int aafbcon_set_font(struct display
*disp
, int width
, int height
)
153 struct aafb_info
*info
= (struct aafb_info
*)disp
->fb_info
;
154 struct aafb_cursor
*c
= &info
->cursor
;
155 u8 fgc
= ~attr_bgcol_ec(disp
, disp
->conp
);
157 if (width
> 64 || height
> 64 || width
< 0 || height
< 0)
163 bt431_set_font(info
->bt431
, fgc
, width
, height
);
168 static void aafb_cursor_timer_handler(unsigned long data
)
170 struct aafb_info
*info
= (struct aafb_info
*)data
;
171 struct aafb_cursor
*c
= &info
->cursor
;
176 if (c
->vbl_cnt
&& --c
->vbl_cnt
== 0) {
178 aafb_set_cursor(info
, c
->on
);
179 c
->vbl_cnt
= c
->blink_rate
;
183 c
->timer
.expires
= jiffies
+ CURSOR_TIMER_FREQ
;
184 add_timer(&c
->timer
);
187 static void __init
aafb_cursor_init(struct aafb_info
*info
)
189 struct aafb_cursor
*c
= &info
->cursor
;
194 c
->width
= c
->height
= 0;
195 c
->vbl_cnt
= CURSOR_DRAW_DELAY
;
196 c
->blink_rate
= CURSOR_BLINK_RATE
;
198 init_timer(&c
->timer
);
199 c
->timer
.data
= (unsigned long)info
;
200 c
->timer
.function
= aafb_cursor_timer_handler
;
201 mod_timer(&c
->timer
, jiffies
+ CURSOR_TIMER_FREQ
);
204 static void __exit
aafb_cursor_exit(struct aafb_info
*info
)
206 struct aafb_cursor
*c
= &info
->cursor
;
208 del_timer_sync(&c
->timer
);
211 static struct display_switch aafb_switch8
= {
212 .setup
= fbcon_cfb8_setup
,
213 .bmove
= fbcon_cfb8_bmove
,
214 .clear
= fbcon_cfb8_clear
,
215 .putc
= fbcon_cfb8_putc
,
216 .putcs
= fbcon_cfb8_putcs
,
217 .revc
= fbcon_cfb8_revc
,
218 .cursor
= aafbcon_cursor
,
219 .set_font
= aafbcon_set_font
,
220 .clear_margins
= fbcon_cfb8_clear_margins
,
221 .fontwidthmask
= FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
224 static void aafb_get_par(struct aafb_par
*par
)
229 static int aafb_get_fix(struct fb_fix_screeninfo
*fix
, int con
,
230 struct fb_info
*info
)
232 struct aafb_info
*ip
= (struct aafb_info
*)info
;
234 memset(fix
, 0, sizeof(struct fb_fix_screeninfo
));
235 strcpy(fix
->id
, "PMAG-AA");
236 fix
->smem_start
= ip
->fb_start
;
237 fix
->smem_len
= ip
->fb_size
;
238 fix
->type
= FB_TYPE_PACKED_PIXELS
;
241 fix
->visual
= FB_VISUAL_MONO10
;
242 fix
->line_length
= 1280;
243 fix
->accel
= FB_ACCEL_NONE
;
248 static void aafb_set_disp(struct display
*disp
, int con
,
249 struct aafb_info
*info
)
251 struct fb_fix_screeninfo fix
;
253 disp
->fb_info
= &info
->info
;
254 aafb_set_var(&disp
->var
, con
, &info
->info
);
255 if (disp
->conp
&& disp
->conp
->vc_sw
&& disp
->conp
->vc_sw
->con_cursor
)
256 disp
->conp
->vc_sw
->con_cursor(disp
->conp
, CM_ERASE
);
257 disp
->dispsw
= &aafb_switch8
;
258 disp
->dispsw_data
= 0;
260 aafb_get_fix(&fix
, con
, &info
->info
);
261 disp
->screen_base
= (u8
*) fix
.smem_start
;
262 disp
->visual
= fix
.visual
;
263 disp
->type
= fix
.type
;
264 disp
->type_aux
= fix
.type_aux
;
265 disp
->ypanstep
= fix
.ypanstep
;
266 disp
->ywrapstep
= fix
.ywrapstep
;
267 disp
->line_length
= fix
.line_length
;
268 disp
->next_line
= 2048;
269 disp
->can_soft_blank
= 1;
271 disp
->scrollmode
= SCROLL_YREDRAW
;
273 aafbcon_set_font(disp
, fontwidth(disp
), fontheight(disp
));
276 static int aafb_get_cmap(struct fb_cmap
*cmap
, int kspc
, int con
,
277 struct fb_info
*info
)
279 static u16 color
[2] = {0x0000, 0x000f};
280 static struct fb_cmap aafb_cmap
= {0, 2, color
, color
, color
, NULL
};
282 fb_copy_cmap(&aafb_cmap
, cmap
, kspc
? 0 : 2);
286 static int aafb_set_cmap(struct fb_cmap
*cmap
, int kspc
, int con
,
287 struct fb_info
*info
)
289 u16 color
[2] = {0x0000, 0x000f};
293 && memcmp(cmap
->red
, color
, sizeof(color
)) == 0
294 && memcmp(cmap
->green
, color
, sizeof(color
)) == 0
295 && memcmp(cmap
->blue
, color
, sizeof(color
)) == 0
296 && cmap
->transp
== NULL
)
302 static int aafb_ioctl(struct fb_info
*info
, u32 cmd
, unsigned long arg
)
304 /* TODO: Not yet implemented */
308 static int aafb_switch(int con
, struct fb_info
*info
)
310 struct aafb_info
*ip
= (struct aafb_info
*)info
;
311 struct display
*old
= (currcon
< 0) ? &ip
->disp
: (fb_display
+ currcon
);
312 struct display
*new = (con
< 0) ? &ip
->disp
: (fb_display
+ con
);
314 if (old
->conp
&& old
->conp
->vc_sw
&& old
->conp
->vc_sw
->con_cursor
)
315 old
->conp
->vc_sw
->con_cursor(old
->conp
, CM_ERASE
);
317 /* Set the current console. */
319 aafb_set_disp(new, con
, ip
);
324 static void aafb_encode_var(struct fb_var_screeninfo
*var
,
325 struct aafb_par
*par
)
329 var
->xres_virtual
= 2048;
330 var
->yres_virtual
= 1024;
333 var
->bits_per_pixel
= 8;
337 var
->red
.msb_right
= 0;
338 var
->green
.offset
= 0;
339 var
->green
.length
= 1;
340 var
->green
.msb_right
= 0;
341 var
->blue
.offset
= 0;
342 var
->blue
.length
= 0;
343 var
->blue
.msb_right
= 0;
344 var
->transp
.offset
= 0;
345 var
->transp
.length
= 0;
346 var
->transp
.msb_right
= 0;
348 var
->activate
&= ~FB_ACTIVATE_MASK
& FB_ACTIVATE_NOW
;
349 var
->accel_flags
= 0;
350 var
->sync
= FB_SYNC_ON_GREEN
;
351 var
->vmode
&= ~FB_VMODE_MASK
& FB_VMODE_NONINTERLACED
;
354 static int aafb_get_var(struct fb_var_screeninfo
*var
, int con
,
355 struct fb_info
*info
)
360 memset(var
, 0, sizeof(struct fb_var_screeninfo
));
362 aafb_encode_var(var
, &par
);
369 static int aafb_set_var(struct fb_var_screeninfo
*var
, int con
,
370 struct fb_info
*info
)
375 aafb_encode_var(var
, &par
);
381 static int aafb_update_var(int con
, struct fb_info
*info
)
383 struct aafb_info
*ip
= (struct aafb_info
*)info
;
384 struct display
*disp
= (con
< 0) ? &ip
->disp
: (fb_display
+ con
);
387 aafbcon_cursor(disp
, CM_ERASE
, ip
->cursor
.x
, ip
->cursor
.y
);
392 /* 0 unblanks, any other blanks. */
394 static void aafb_blank(int blank
, struct fb_info
*info
)
396 struct aafb_info
*ip
= (struct aafb_info
*)info
;
397 u8 val
= blank
? 0x00 : 0x0f;
399 bt455_write_cmap_entry(ip
->bt455
, 1, val
, val
, val
);
400 aafbcon_cursor(&ip
->disp
, CM_ERASE
, ip
->cursor
.x
, ip
->cursor
.y
);
403 static struct fb_ops aafb_ops
= {
404 .owner
= THIS_MODULE
,
405 .fb_get_fix
= aafb_get_fix
,
406 .fb_get_var
= aafb_get_var
,
407 .fb_set_var
= aafb_set_var
,
408 .fb_get_cmap
= aafb_get_cmap
,
409 .fb_set_cmap
= aafb_set_cmap
,
410 .fb_ioctl
= aafb_ioctl
413 static int __init
init_one(int slot
)
415 unsigned long base_addr
= CKSEG1ADDR(get_tc_base_addr(slot
));
416 struct aafb_info
*ip
= &my_fb_info
[slot
];
418 memset(ip
, 0, sizeof(struct aafb_info
));
421 * Framebuffer display memory base address and friends.
423 ip
->bt455
= (struct bt455_regs
*) (base_addr
+ PMAG_AA_BT455_OFFSET
);
424 ip
->bt431
= (struct bt431_regs
*) (base_addr
+ PMAG_AA_BT431_OFFSET
);
425 ip
->fb_start
= base_addr
+ PMAG_AA_ONBOARD_FBMEM_OFFSET
;
426 ip
->fb_size
= 2048 * 1024; /* fb_fix_screeninfo.smem_length
427 seems to be physical */
428 ip
->fb_line_length
= 2048;
431 * Let there be consoles..
433 strcpy(ip
->info
.modename
, "PMAG-AA");
435 ip
->info
.flags
= FBINFO_FLAG_DEFAULT
;
436 ip
->info
.fbops
= &aafb_ops
;
437 ip
->info
.disp
= &ip
->disp
;
438 ip
->info
.changevar
= NULL
;
439 ip
->info
.switch_con
= &aafb_switch
;
440 ip
->info
.updatevar
= &aafb_update_var
;
441 ip
->info
.blank
= &aafb_blank
;
443 aafb_set_disp(&ip
->disp
, currcon
, ip
);
446 * Configure the RAM DACs.
448 bt455_erase_cursor(ip
->bt455
);
451 bt455_write_cmap_entry(ip
->bt455
, 0, 0x00, 0x00, 0x00);
452 bt455_write_cmap_entry(ip
->bt455
, 1, 0x0f, 0x0f, 0x0f);
454 /* Init hardware cursor. */
455 bt431_init_cursor(ip
->bt431
);
456 aafb_cursor_init(ip
);
458 /* Clear the screen. */
459 memset ((void *)ip
->fb_start
, 0, ip
->fb_size
);
461 if (register_framebuffer(&ip
->info
) < 0)
464 printk(KERN_INFO
"fb%d: %s frame buffer in TC slot %d\n",
465 GET_FB_IDX(ip
->info
.node
), ip
->info
.modename
, slot
);
470 static int __exit
exit_one(int slot
)
472 struct aafb_info
*ip
= &my_fb_info
[slot
];
474 if (unregister_framebuffer(&ip
->info
) < 0)
481 * Initialise the framebuffer.
483 int __init
pmagaafb_init(void)
488 while ((sid
= search_tc_card("PMAG-AA")) >= 0) {
494 return found
? 0 : -ENXIO
;
497 static void __exit
pmagaafb_exit(void)
501 while ((sid
= search_tc_card("PMAG-AA")) >= 0) {
503 release_tc_card(sid
);
507 MODULE_AUTHOR(DRIVER_AUTHOR
);
508 MODULE_DESCRIPTION(DRIVER_DESCRIPTION
);
509 MODULE_LICENSE("GPL");
511 module_init(pmagaafb_init
);
512 module_exit(pmagaafb_exit
);