2 * linux/drivers/video/mdacon.c -- Low level MDA based console driver
4 * (c) 1998 Andrew Apted <ajapted@netspace.net.au>
6 * including portions (c) 1995-1998 Patrick Caulfield.
8 * slight improvements (c) 2000 Edward Betts <edward@debian.org>
10 * This file is based on the VGA console driver (vgacon.c):
12 * Created 28 Sep 1997 by Geert Uytterhoeven
14 * Rewritten by Martin Mares <mj@ucw.cz>, July 1998
16 * and on the old console.c, vga.c and vesa_blank.c drivers:
18 * Copyright (C) 1991, 1992 Linus Torvalds
21 * This file is subject to the terms and conditions of the GNU General Public
22 * License. See the file COPYING in the main directory of this archive for
26 * Paul G. (03/2001) Fix mdacon= boot prompt to use __setup().
29 #include <linux/types.h>
30 #include <linux/sched.h>
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/tty.h>
35 #include <linux/console.h>
36 #include <linux/string.h>
38 #include <linux/slab.h>
39 #include <linux/vt_kern.h>
40 #include <linux/vt_buffer.h>
41 #include <linux/selection.h>
42 #include <linux/spinlock.h>
43 #include <linux/ioport.h>
44 #include <linux/delay.h>
45 #include <linux/init.h>
50 static spinlock_t mda_lock
= SPIN_LOCK_UNLOCKED
;
52 /* description of the hardware layout */
54 static unsigned long mda_vram_base
; /* Base of video memory */
55 static unsigned long mda_vram_len
; /* Size of video memory */
56 static unsigned int mda_num_columns
; /* Number of text columns */
57 static unsigned int mda_num_lines
; /* Number of text lines */
59 static unsigned int mda_index_port
; /* Register select port */
60 static unsigned int mda_value_port
; /* Register value port */
61 static unsigned int mda_mode_port
; /* Mode control port */
62 static unsigned int mda_status_port
; /* Status and Config port */
63 static unsigned int mda_gfx_port
; /* Graphics control port */
65 /* current hardware state */
67 static int mda_origin_loc
=-1;
68 static int mda_cursor_loc
=-1;
69 static int mda_cursor_size_from
=-1;
70 static int mda_cursor_size_to
=-1;
72 static enum { TYPE_MDA
, TYPE_HERC
, TYPE_HERCPLUS
, TYPE_HERCCOLOR
} mda_type
;
73 static char *mda_type_name
;
75 /* console information */
77 static int mda_first_vc
= 1;
78 static int mda_last_vc
= 16;
80 static struct vc_data
*mda_display_fg
= NULL
;
82 MODULE_PARM(mda_first_vc
, "1-255i");
83 MODULE_PARM(mda_last_vc
, "1-255i");
85 /* MDA register values
88 #define MDA_CURSOR_BLINKING 0x00
89 #define MDA_CURSOR_OFF 0x20
90 #define MDA_CURSOR_SLOWBLINK 0x60
92 #define MDA_MODE_GRAPHICS 0x02
93 #define MDA_MODE_VIDEO_EN 0x08
94 #define MDA_MODE_BLINK_EN 0x20
95 #define MDA_MODE_GFX_PAGE1 0x80
97 #define MDA_STATUS_HSYNC 0x01
98 #define MDA_STATUS_VSYNC 0x80
99 #define MDA_STATUS_VIDEO 0x08
101 #define MDA_CONFIG_COL132 0x08
102 #define MDA_GFX_MODE_EN 0x01
103 #define MDA_GFX_PAGE_EN 0x02
107 * MDA could easily be classified as "pre-dinosaur hardware".
110 static void write_mda_b(unsigned int val
, unsigned char reg
)
114 spin_lock_irqsave(&mda_lock
, flags
);
116 outb_p(reg
, mda_index_port
);
117 outb_p(val
, mda_value_port
);
119 spin_unlock_irqrestore(&mda_lock
, flags
);
122 static void write_mda_w(unsigned int val
, unsigned char reg
)
126 spin_lock_irqsave(&mda_lock
, flags
);
128 outb_p(reg
, mda_index_port
); outb_p(val
>> 8, mda_value_port
);
129 outb_p(reg
+1, mda_index_port
); outb_p(val
& 0xff, mda_value_port
);
131 spin_unlock_irqrestore(&mda_lock
, flags
);
135 static int test_mda_b(unsigned char val
, unsigned char reg
)
139 spin_lock_irqsave(&mda_lock
, flags
);
141 outb_p(reg
, mda_index_port
);
142 outb (val
, mda_value_port
);
144 udelay(20); val
= (inb_p(mda_value_port
) == val
);
146 spin_unlock_irqrestore(&mda_lock
, flags
);
151 static inline void mda_set_origin(unsigned int location
)
153 if (mda_origin_loc
== location
)
156 write_mda_w(location
>> 1, 0x0c);
158 mda_origin_loc
= location
;
161 static inline void mda_set_cursor(unsigned int location
)
163 if (mda_cursor_loc
== location
)
166 write_mda_w(location
>> 1, 0x0e);
168 mda_cursor_loc
= location
;
171 static inline void mda_set_cursor_size(int from
, int to
)
173 if (mda_cursor_size_from
==from
&& mda_cursor_size_to
==to
)
177 write_mda_b(MDA_CURSOR_OFF
, 0x0a); /* disable cursor */
179 write_mda_b(from
, 0x0a); /* cursor start */
180 write_mda_b(to
, 0x0b); /* cursor end */
183 mda_cursor_size_from
= from
;
184 mda_cursor_size_to
= to
;
189 static int __init
mdacon_setup(char *str
)
191 /* command line format: mdacon=<first>,<last> */
195 str
= get_options(str
, ARRAY_SIZE(ints
), ints
);
200 if (ints
[1] < 1 || ints
[1] > MAX_NR_CONSOLES
||
201 ints
[2] < 1 || ints
[2] > MAX_NR_CONSOLES
)
204 mda_first_vc
= ints
[1];
205 mda_last_vc
= ints
[2];
209 __setup("mdacon=", mdacon_setup
);
212 static int __init
mda_detect(void)
218 /* do a memory check */
220 p
= (u16
*) mda_vram_base
;
221 q
= (u16
*) (mda_vram_base
+ 0x01000);
223 p_save
= scr_readw(p
); q_save
= scr_readw(q
);
225 scr_writew(0xAA55, p
); if (scr_readw(p
) == 0xAA55) count
++;
226 scr_writew(0x55AA, p
); if (scr_readw(p
) == 0x55AA) count
++;
227 scr_writew(p_save
, p
);
233 /* check if we have 4K or 8K */
235 scr_writew(0xA55A, q
); scr_writew(0x0000, p
);
236 if (scr_readw(q
) == 0xA55A) count
++;
238 scr_writew(0x5AA5, q
); scr_writew(0x0000, p
);
239 if (scr_readw(q
) == 0x5AA5) count
++;
241 scr_writew(p_save
, p
); scr_writew(q_save
, q
);
244 mda_vram_len
= 0x02000;
247 /* Ok, there is definitely a card registering at the correct
248 * memory location, so now we do an I/O port test.
252 /* Edward: These two mess `tests' mess up my cursor on bootup */
254 /* cursor low register */
255 if (! test_mda_b(0x66, 0x0f)) {
259 /* cursor low register */
260 if (! test_mda_b(0x99, 0x0f)) {
265 /* See if the card is a Hercules, by checking whether the vsync
266 * bit of the status register is changing. This test lasts for
267 * approximately 1/10th of a second.
270 p_save
= q_save
= inb_p(mda_status_port
) & MDA_STATUS_VSYNC
;
272 for (count
=0; count
< 50000 && p_save
== q_save
; count
++) {
273 q_save
= inb(mda_status_port
) & MDA_STATUS_VSYNC
;
277 if (p_save
!= q_save
) {
278 switch (inb_p(mda_status_port
) & 0x70) {
280 mda_type
= TYPE_HERCPLUS
;
281 mda_type_name
= "HerculesPlus";
284 mda_type
= TYPE_HERCCOLOR
;
285 mda_type_name
= "HerculesColor";
288 mda_type
= TYPE_HERC
;
289 mda_type_name
= "Hercules";
297 static void __init
mda_initialize(void)
299 write_mda_b(97, 0x00); /* horizontal total */
300 write_mda_b(80, 0x01); /* horizontal displayed */
301 write_mda_b(82, 0x02); /* horizontal sync pos */
302 write_mda_b(15, 0x03); /* horizontal sync width */
304 write_mda_b(25, 0x04); /* vertical total */
305 write_mda_b(6, 0x05); /* vertical total adjust */
306 write_mda_b(25, 0x06); /* vertical displayed */
307 write_mda_b(25, 0x07); /* vertical sync pos */
309 write_mda_b(2, 0x08); /* interlace mode */
310 write_mda_b(13, 0x09); /* maximum scanline */
311 write_mda_b(12, 0x0a); /* cursor start */
312 write_mda_b(13, 0x0b); /* cursor end */
314 write_mda_w(0x0000, 0x0c); /* start address */
315 write_mda_w(0x0000, 0x0e); /* cursor location */
317 outb_p(MDA_MODE_VIDEO_EN
| MDA_MODE_BLINK_EN
, mda_mode_port
);
318 outb_p(0x00, mda_status_port
);
319 outb_p(0x00, mda_gfx_port
);
322 static const char __init
*mdacon_startup(void)
324 mda_num_columns
= 80;
327 mda_vram_base
= VGA_MAP_MEM(0xb0000);
328 mda_vram_len
= 0x01000;
330 mda_index_port
= 0x3b4;
331 mda_value_port
= 0x3b5;
332 mda_mode_port
= 0x3b8;
333 mda_status_port
= 0x3ba;
334 mda_gfx_port
= 0x3bf;
337 mda_type_name
= "MDA";
339 if (! mda_detect()) {
340 printk("mdacon: MDA card not detected.\n");
344 if (mda_type
!= TYPE_MDA
) {
348 /* cursor looks ugly during boot-up, so turn it off */
349 mda_set_cursor(mda_vram_len
- 1);
351 printk("mdacon: %s with %ldK of memory detected.\n",
352 mda_type_name
, mda_vram_len
/1024);
357 static void mdacon_init(struct vc_data
*c
, int init
)
359 c
->vc_complement_mask
= 0x0800; /* reverse video */
360 c
->vc_display_fg
= &mda_display_fg
;
363 c
->vc_cols
= mda_num_columns
;
364 c
->vc_rows
= mda_num_lines
;
366 vc_resize(c
->vc_num
, mda_num_columns
, mda_num_lines
);
369 /* make the first MDA console visible */
371 if (mda_display_fg
== NULL
)
375 static void mdacon_deinit(struct vc_data
*c
)
377 /* con_set_default_unimap(c->vc_num); */
379 if (mda_display_fg
== c
)
380 mda_display_fg
= NULL
;
383 static inline u16
mda_convert_attr(u16 ch
)
387 /* Underline and reverse-video are mutually exclusive on MDA.
388 * Since reverse-video is used for cursors and selected areas,
389 * it takes precedence.
392 if (ch
& 0x0800) attr
= 0x7000; /* reverse */
393 else if (ch
& 0x0400) attr
= 0x0100; /* underline */
395 return ((ch
& 0x0200) << 2) | /* intensity */
396 (ch
& 0x8000) | /* blink */
397 (ch
& 0x00ff) | attr
;
400 static u8
mdacon_build_attr(struct vc_data
*c
, u8 color
, u8 intensity
,
401 u8 blink
, u8 underline
, u8 reverse
)
403 /* The attribute is just a bit vector:
405 * Bit 0..1 : intensity (0..2)
411 return (intensity
& 3) |
412 ((underline
& 1) << 2) |
413 ((reverse
& 1) << 3) |
417 static void mdacon_invert_region(struct vc_data
*c
, u16
*p
, int count
)
419 for (; count
> 0; count
--) {
420 scr_writew(scr_readw(p
) ^ 0x0800, p
);
425 #define MDA_ADDR(x,y) ((u16 *) mda_vram_base + (y)*mda_num_columns + (x))
427 static void mdacon_putc(struct vc_data
*c
, int ch
, int y
, int x
)
429 scr_writew(mda_convert_attr(ch
), MDA_ADDR(x
, y
));
432 static void mdacon_putcs(struct vc_data
*c
, const unsigned short *s
,
433 int count
, int y
, int x
)
435 u16
*dest
= MDA_ADDR(x
, y
);
437 for (; count
> 0; count
--) {
438 scr_writew(mda_convert_attr(scr_readw(s
++)), dest
++);
442 static void mdacon_clear(struct vc_data
*c
, int y
, int x
,
443 int height
, int width
)
445 u16
*dest
= MDA_ADDR(x
, y
);
446 u16 eattr
= mda_convert_attr(c
->vc_video_erase_char
);
448 if (width
<= 0 || height
<= 0)
451 if (x
==0 && width
==mda_num_columns
) {
452 scr_memsetw(dest
, eattr
, height
*width
*2);
454 for (; height
> 0; height
--, dest
+=mda_num_columns
)
455 scr_memsetw(dest
, eattr
, width
*2);
459 static void mdacon_bmove(struct vc_data
*c
, int sy
, int sx
,
460 int dy
, int dx
, int height
, int width
)
464 if (width
<= 0 || height
<= 0)
467 if (sx
==0 && dx
==0 && width
==mda_num_columns
) {
468 scr_memmovew(MDA_ADDR(0,dy
), MDA_ADDR(0,sy
), height
*width
*2);
470 } else if (dy
< sy
|| (dy
== sy
&& dx
< sx
)) {
471 src
= MDA_ADDR(sx
, sy
);
472 dest
= MDA_ADDR(dx
, dy
);
474 for (; height
> 0; height
--) {
475 scr_memmovew(dest
, src
, width
*2);
476 src
+= mda_num_columns
;
477 dest
+= mda_num_columns
;
480 src
= MDA_ADDR(sx
, sy
+height
-1);
481 dest
= MDA_ADDR(dx
, dy
+height
-1);
483 for (; height
> 0; height
--) {
484 scr_memmovew(dest
, src
, width
*2);
485 src
-= mda_num_columns
;
486 dest
-= mda_num_columns
;
491 static int mdacon_switch(struct vc_data
*c
)
493 return 1; /* redrawing needed */
496 static int mdacon_set_palette(struct vc_data
*c
, unsigned char *table
)
501 static int mdacon_blank(struct vc_data
*c
, int blank
, int mode_switch
)
503 if (mda_type
== TYPE_MDA
) {
505 scr_memsetw((void *)mda_vram_base
,
506 mda_convert_attr(c
->vc_video_erase_char
),
507 c
->vc_screenbuf_size
);
508 /* Tell console.c that it has to restore the screen itself */
512 outb_p(0x00, mda_mode_port
); /* disable video */
514 outb_p(MDA_MODE_VIDEO_EN
| MDA_MODE_BLINK_EN
,
520 static int mdacon_scrolldelta(struct vc_data
*c
, int lines
)
525 static void mdacon_cursor(struct vc_data
*c
, int mode
)
527 if (mode
== CM_ERASE
) {
528 mda_set_cursor(mda_vram_len
- 1);
532 mda_set_cursor(c
->vc_y
*mda_num_columns
*2 + c
->vc_x
*2);
534 switch (c
->vc_cursor_type
& 0x0f) {
536 case CUR_LOWER_THIRD
: mda_set_cursor_size(10, 13); break;
537 case CUR_LOWER_HALF
: mda_set_cursor_size(7, 13); break;
538 case CUR_TWO_THIRDS
: mda_set_cursor_size(4, 13); break;
539 case CUR_BLOCK
: mda_set_cursor_size(1, 13); break;
540 case CUR_NONE
: mda_set_cursor_size(14, 13); break;
541 default: mda_set_cursor_size(12, 13); break;
545 static int mdacon_scroll(struct vc_data
*c
, int t
, int b
, int dir
, int lines
)
547 u16 eattr
= mda_convert_attr(c
->vc_video_erase_char
);
552 if (lines
> c
->vc_rows
) /* maximum realistic size */
558 scr_memmovew(MDA_ADDR(0,t
), MDA_ADDR(0,t
+lines
),
559 (b
-t
-lines
)*mda_num_columns
*2);
560 scr_memsetw(MDA_ADDR(0,b
-lines
), eattr
,
561 lines
*mda_num_columns
*2);
565 scr_memmovew(MDA_ADDR(0,t
+lines
), MDA_ADDR(0,t
),
566 (b
-t
-lines
)*mda_num_columns
*2);
567 scr_memsetw(MDA_ADDR(0,t
), eattr
, lines
*mda_num_columns
*2);
576 * The console `switch' structure for the MDA based console
579 const struct consw mda_con
= {
580 .owner
= THIS_MODULE
,
581 .con_startup
= mdacon_startup
,
582 .con_init
= mdacon_init
,
583 .con_deinit
= mdacon_deinit
,
584 .con_clear
= mdacon_clear
,
585 .con_putc
= mdacon_putc
,
586 .con_putcs
= mdacon_putcs
,
587 .con_cursor
= mdacon_cursor
,
588 .con_scroll
= mdacon_scroll
,
589 .con_bmove
= mdacon_bmove
,
590 .con_switch
= mdacon_switch
,
591 .con_blank
= mdacon_blank
,
592 .con_set_palette
= mdacon_set_palette
,
593 .con_scrolldelta
= mdacon_scrolldelta
,
594 .con_build_attr
= mdacon_build_attr
,
595 .con_invert_region
= mdacon_invert_region
,
598 int __init
mda_console_init(void)
600 if (mda_first_vc
> mda_last_vc
)
603 return take_over_console(&mda_con
, mda_first_vc
-1, mda_last_vc
-1, 0);
606 void __exit
mda_console_exit(void)
608 give_up_console(&mda_con
);
611 module_init(mda_console_init
);
612 module_exit(mda_console_exit
);
614 MODULE_LICENSE("GPL");