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/errno.h>
28 #include <linux/string.h>
29 #include <linux/timer.h>
31 #include <linux/slab.h>
32 #include <linux/delay.h>
33 #include <linux/init.h>
35 #include <linux/console.h>
37 #include <asm/bootinfo.h>
38 #include <asm/dec/machtype.h>
39 #include <asm/dec/tc.h>
41 #include <video/fbcon.h>
42 #include <video/fbcon-cfb8.h>
47 /* Version information */
48 #define DRIVER_VERSION "0.02"
49 #define DRIVER_AUTHOR "Karsten Merker <merker@linuxtag.org>"
50 #define DRIVER_DESCRIPTION "PMAG-AA Framebuffer Driver"
53 static int aafb_set_var(struct fb_var_screeninfo
*var
, int con
,
54 struct fb_info
*info
);
57 * Bt455 RAM DAC register base offset (rel. to TC slot base address).
59 #define PMAG_AA_BT455_OFFSET 0x100000
62 * Bt431 cursor generator offset (rel. to TC slot base address).
64 #define PMAG_AA_BT431_OFFSET 0x180000
67 * Begin of PMAG-AA framebuffer memory relative to TC slot address,
68 * resolution is 1280x1024x1 (8 bits deep, but only LSB is used).
70 #define PMAG_AA_ONBOARD_FBMEM_OFFSET 0x200000
73 struct timer_list timer
;
78 u16 x
, y
, width
, height
;
81 #define CURSOR_TIMER_FREQ (HZ / 50)
82 #define CURSOR_BLINK_RATE (20)
83 #define CURSOR_DRAW_DELAY (2)
88 struct aafb_cursor cursor
;
89 struct bt455_regs
*bt455
;
90 struct bt431_regs
*bt431
;
91 unsigned long fb_start
;
92 unsigned long fb_size
;
93 unsigned long fb_line_length
;
97 * Max 3 TURBOchannel slots -> max 3 PMAG-AA.
99 static struct aafb_info my_fb_info
[3];
101 static struct aafb_par
{
104 static int currcon
= -1;
106 static void aafb_set_cursor(struct aafb_info
*info
, int on
)
108 struct aafb_cursor
*c
= &info
->cursor
;
111 bt431_position_cursor(info
->bt431
, c
->x
, c
->y
);
112 bt431_enable_cursor(info
->bt431
);
114 bt431_erase_cursor(info
->bt431
);
117 static void aafbcon_cursor(struct display
*disp
, int mode
, int x
, int y
)
119 struct aafb_info
*info
= (struct aafb_info
*)disp
->fb_info
;
120 struct aafb_cursor
*c
= &info
->cursor
;
122 x
*= fontwidth(disp
);
123 y
*= fontheight(disp
);
125 if (c
->x
== x
&& c
->y
== y
&& (mode
== CM_ERASE
) == !c
->enable
)
130 aafb_set_cursor(info
, 0);
131 c
->x
= x
- disp
->var
.xoffset
;
132 c
->y
= y
- disp
->var
.yoffset
;
141 aafb_set_cursor(info
, c
->on
);
143 c
->vbl_cnt
= CURSOR_DRAW_DELAY
;
149 static int aafbcon_set_font(struct display
*disp
, int width
, int height
)
151 struct aafb_info
*info
= (struct aafb_info
*)disp
->fb_info
;
152 struct aafb_cursor
*c
= &info
->cursor
;
153 u8 fgc
= ~attr_bgcol_ec(disp
, disp
->conp
);
155 if (width
> 64 || height
> 64 || width
< 0 || height
< 0)
161 bt431_set_font(info
->bt431
, fgc
, width
, height
);
166 static void aafb_cursor_timer_handler(unsigned long data
)
168 struct aafb_info
*info
= (struct aafb_info
*)data
;
169 struct aafb_cursor
*c
= &info
->cursor
;
174 if (c
->vbl_cnt
&& --c
->vbl_cnt
== 0) {
176 aafb_set_cursor(info
, c
->on
);
177 c
->vbl_cnt
= c
->blink_rate
;
181 c
->timer
.expires
= jiffies
+ CURSOR_TIMER_FREQ
;
182 add_timer(&c
->timer
);
185 static void __init
aafb_cursor_init(struct aafb_info
*info
)
187 struct aafb_cursor
*c
= &info
->cursor
;
192 c
->width
= c
->height
= 0;
193 c
->vbl_cnt
= CURSOR_DRAW_DELAY
;
194 c
->blink_rate
= CURSOR_BLINK_RATE
;
196 init_timer(&c
->timer
);
197 c
->timer
.data
= (unsigned long)info
;
198 c
->timer
.function
= aafb_cursor_timer_handler
;
199 mod_timer(&c
->timer
, jiffies
+ CURSOR_TIMER_FREQ
);
202 static void __exit
aafb_cursor_exit(struct aafb_info
*info
)
204 struct aafb_cursor
*c
= &info
->cursor
;
206 del_timer_sync(&c
->timer
);
209 static struct display_switch aafb_switch8
= {
210 .setup
= fbcon_cfb8_setup
,
211 .bmove
= fbcon_cfb8_bmove
,
212 .clear
= fbcon_cfb8_clear
,
213 .putc
= fbcon_cfb8_putc
,
214 .putcs
= fbcon_cfb8_putcs
,
215 .revc
= fbcon_cfb8_revc
,
216 .cursor
= aafbcon_cursor
,
217 .set_font
= aafbcon_set_font
,
218 .clear_margins
= fbcon_cfb8_clear_margins
,
219 .fontwidthmask
= FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
222 static void aafb_get_par(struct aafb_par
*par
)
227 static int aafb_get_fix(struct fb_fix_screeninfo
*fix
, int con
,
228 struct fb_info
*info
)
230 struct aafb_info
*ip
= (struct aafb_info
*)info
;
232 memset(fix
, 0, sizeof(struct fb_fix_screeninfo
));
233 strcpy(fix
->id
, "PMAG-AA");
234 fix
->smem_start
= ip
->fb_start
;
235 fix
->smem_len
= ip
->fb_size
;
236 fix
->type
= FB_TYPE_PACKED_PIXELS
;
239 fix
->visual
= FB_VISUAL_MONO10
;
240 fix
->line_length
= 1280;
241 fix
->accel
= FB_ACCEL_NONE
;
246 static void aafb_set_disp(struct display
*disp
, int con
,
247 struct aafb_info
*info
)
249 struct fb_fix_screeninfo fix
;
251 disp
->fb_info
= &info
->info
;
252 aafb_set_var(&disp
->var
, con
, &info
->info
);
253 if (disp
->conp
&& disp
->conp
->vc_sw
&& disp
->conp
->vc_sw
->con_cursor
)
254 disp
->conp
->vc_sw
->con_cursor(disp
->conp
, CM_ERASE
);
255 disp
->dispsw
= &aafb_switch8
;
256 disp
->dispsw_data
= 0;
258 aafb_get_fix(&fix
, con
, &info
->info
);
259 disp
->screen_base
= (u8
*) fix
.smem_start
;
260 disp
->visual
= fix
.visual
;
261 disp
->type
= fix
.type
;
262 disp
->type_aux
= fix
.type_aux
;
263 disp
->ypanstep
= fix
.ypanstep
;
264 disp
->ywrapstep
= fix
.ywrapstep
;
265 disp
->line_length
= fix
.line_length
;
266 disp
->next_line
= 2048;
267 disp
->can_soft_blank
= 1;
269 disp
->scrollmode
= SCROLL_YREDRAW
;
271 aafbcon_set_font(disp
, fontwidth(disp
), fontheight(disp
));
274 static int aafb_get_cmap(struct fb_cmap
*cmap
, int kspc
, int con
,
275 struct fb_info
*info
)
277 static u16 color
[2] = {0x0000, 0x000f};
278 static struct fb_cmap aafb_cmap
= {0, 2, color
, color
, color
, NULL
};
280 fb_copy_cmap(&aafb_cmap
, cmap
, kspc
? 0 : 2);
284 static int aafb_set_cmap(struct fb_cmap
*cmap
, int kspc
, int con
,
285 struct fb_info
*info
)
287 u16 color
[2] = {0x0000, 0x000f};
291 && memcmp(cmap
->red
, color
, sizeof(color
)) == 0
292 && memcmp(cmap
->green
, color
, sizeof(color
)) == 0
293 && memcmp(cmap
->blue
, color
, sizeof(color
)) == 0
294 && cmap
->transp
== NULL
)
300 static int aafb_ioctl(struct fb_info
*info
, u32 cmd
, unsigned long arg
)
302 /* TODO: Not yet implemented */
306 static int aafb_switch(int con
, struct fb_info
*info
)
308 struct aafb_info
*ip
= (struct aafb_info
*)info
;
309 struct display
*old
= (currcon
< 0) ? &ip
->disp
: (fb_display
+ currcon
);
310 struct display
*new = (con
< 0) ? &ip
->disp
: (fb_display
+ con
);
312 if (old
->conp
&& old
->conp
->vc_sw
&& old
->conp
->vc_sw
->con_cursor
)
313 old
->conp
->vc_sw
->con_cursor(old
->conp
, CM_ERASE
);
315 /* Set the current console. */
317 aafb_set_disp(new, con
, ip
);
322 static void aafb_encode_var(struct fb_var_screeninfo
*var
,
323 struct aafb_par
*par
)
327 var
->xres_virtual
= 2048;
328 var
->yres_virtual
= 1024;
331 var
->bits_per_pixel
= 8;
335 var
->red
.msb_right
= 0;
336 var
->green
.offset
= 0;
337 var
->green
.length
= 1;
338 var
->green
.msb_right
= 0;
339 var
->blue
.offset
= 0;
340 var
->blue
.length
= 0;
341 var
->blue
.msb_right
= 0;
342 var
->transp
.offset
= 0;
343 var
->transp
.length
= 0;
344 var
->transp
.msb_right
= 0;
346 var
->activate
&= ~FB_ACTIVATE_MASK
& FB_ACTIVATE_NOW
;
347 var
->accel_flags
= 0;
348 var
->sync
= FB_SYNC_ON_GREEN
;
349 var
->vmode
&= ~FB_VMODE_MASK
& FB_VMODE_NONINTERLACED
;
352 static int aafb_get_var(struct fb_var_screeninfo
*var
, int con
,
353 struct fb_info
*info
)
358 memset(var
, 0, sizeof(struct fb_var_screeninfo
));
360 aafb_encode_var(var
, &par
);
367 static int aafb_set_var(struct fb_var_screeninfo
*var
, int con
,
368 struct fb_info
*info
)
373 aafb_encode_var(var
, &par
);
379 static int aafb_update_var(int con
, struct fb_info
*info
)
381 struct aafb_info
*ip
= (struct aafb_info
*)info
;
382 struct display
*disp
= (con
< 0) ? &ip
->disp
: (fb_display
+ con
);
385 aafbcon_cursor(disp
, CM_ERASE
, ip
->cursor
.x
, ip
->cursor
.y
);
390 /* 0 unblanks, any other blanks. */
392 static void aafb_blank(int blank
, struct fb_info
*info
)
394 struct aafb_info
*ip
= (struct aafb_info
*)info
;
395 u8 val
= blank
? 0x00 : 0x0f;
397 bt455_write_cmap_entry(ip
->bt455
, 1, val
, val
, val
);
398 aafbcon_cursor(&ip
->disp
, CM_ERASE
, ip
->cursor
.x
, ip
->cursor
.y
);
401 static struct fb_ops aafb_ops
= {
402 .owner
= THIS_MODULE
,
403 .fb_get_fix
= aafb_get_fix
,
404 .fb_get_var
= aafb_get_var
,
405 .fb_set_var
= aafb_set_var
,
406 .fb_get_cmap
= aafb_get_cmap
,
407 .fb_set_cmap
= aafb_set_cmap
,
408 .fb_ioctl
= aafb_ioctl
411 static int __init
init_one(int slot
)
413 unsigned long base_addr
= CKSEG1ADDR(get_tc_base_addr(slot
));
414 struct aafb_info
*ip
= &my_fb_info
[slot
];
416 memset(ip
, 0, sizeof(struct aafb_info
));
419 * Framebuffer display memory base address and friends.
421 ip
->bt455
= (struct bt455_regs
*) (base_addr
+ PMAG_AA_BT455_OFFSET
);
422 ip
->bt431
= (struct bt431_regs
*) (base_addr
+ PMAG_AA_BT431_OFFSET
);
423 ip
->fb_start
= base_addr
+ PMAG_AA_ONBOARD_FBMEM_OFFSET
;
424 ip
->fb_size
= 2048 * 1024; /* fb_fix_screeninfo.smem_length
425 seems to be physical */
426 ip
->fb_line_length
= 2048;
429 * Let there be consoles..
431 strcpy(ip
->info
.modename
, "PMAG-AA");
433 ip
->info
.flags
= FBINFO_FLAG_DEFAULT
;
434 ip
->info
.fbops
= &aafb_ops
;
435 ip
->info
.disp
= &ip
->disp
;
436 ip
->info
.changevar
= NULL
;
437 ip
->info
.switch_con
= &aafb_switch
;
438 ip
->info
.updatevar
= &aafb_update_var
;
439 ip
->info
.blank
= &aafb_blank
;
441 aafb_set_disp(&ip
->disp
, currcon
, ip
);
444 * Configure the RAM DACs.
446 bt455_erase_cursor(ip
->bt455
);
449 bt455_write_cmap_entry(ip
->bt455
, 0, 0x00, 0x00, 0x00);
450 bt455_write_cmap_entry(ip
->bt455
, 1, 0x0f, 0x0f, 0x0f);
452 /* Init hardware cursor. */
453 bt431_init_cursor(ip
->bt431
);
454 aafb_cursor_init(ip
);
456 /* Clear the screen. */
457 memset ((void *)ip
->fb_start
, 0, ip
->fb_size
);
459 if (register_framebuffer(&ip
->info
) < 0)
462 printk(KERN_INFO
"fb%d: %s frame buffer in TC slot %d\n",
463 GET_FB_IDX(ip
->info
.node
), ip
->info
.modename
, slot
);
468 static int __exit
exit_one(int slot
)
470 struct aafb_info
*ip
= &my_fb_info
[slot
];
472 if (unregister_framebuffer(&ip
->info
) < 0)
479 * Initialise the framebuffer.
481 int __init
pmagaafb_init(void)
486 while ((sid
= search_tc_card("PMAG-AA")) >= 0) {
492 return found
? 0 : -ENXIO
;
495 static void __exit
pmagaafb_exit(void)
499 while ((sid
= search_tc_card("PMAG-AA")) >= 0) {
501 release_tc_card(sid
);
505 MODULE_AUTHOR(DRIVER_AUTHOR
);
506 MODULE_DESCRIPTION(DRIVER_DESCRIPTION
);
507 MODULE_LICENSE("GPL");
509 module_init(pmagaafb_init
);
510 module_exit(pmagaafb_exit
);