2 * sisusb - usb kernel driver for SiS315(E) based USB2VGA dongles
4 * VGA text mode console part
6 * Copyright (C) 2005 by Thomas Winischhofer, Vienna, Austria
8 * If distributed as part of the Linux kernel, this code is licensed under the
11 * Otherwise, the following license terms apply:
13 * * Redistribution and use in source and binary forms, with or without
14 * * modification, are permitted provided that the following conditions
16 * * 1) Redistributions of source code must retain the above copyright
17 * * notice, this list of conditions and the following disclaimer.
18 * * 2) Redistributions in binary form must reproduce the above copyright
19 * * notice, this list of conditions and the following disclaimer in the
20 * * documentation and/or other materials provided with the distribution.
21 * * 3) The name of the author may not be used to endorse or promote products
22 * * derived from this software without specific psisusbr written permission.
24 * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED OR
25 * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 * Portions based on vgacon.c which are
38 * Created 28 Sep 1997 by Geert Uytterhoeven
40 * based on code Copyright (C) 1991, 1992 Linus Torvalds
43 * A note on using in_atomic() in here: We can't handle console
44 * calls from non-schedulable context due to our USB-dependend
45 * nature. For now, this driver just ignores any calls if it
50 #include <linux/mutex.h>
51 #include <linux/module.h>
52 #include <linux/kernel.h>
53 #include <linux/signal.h>
55 #include <linux/usb.h>
56 #include <linux/tty.h>
57 #include <linux/console.h>
58 #include <linux/string.h>
60 #include <linux/init.h>
61 #include <linux/vt_kern.h>
62 #include <linux/selection.h>
63 #include <linux/spinlock.h>
64 #include <linux/kref.h>
65 #include <linux/ioport.h>
66 #include <linux/interrupt.h>
67 #include <linux/vmalloc.h>
70 #include "sisusb_init.h"
72 #ifdef INCL_SISUSB_CON
74 #define sisusbcon_writew(val, addr) (*(addr) = (val))
75 #define sisusbcon_readw(addr) (*(addr))
76 #define sisusbcon_memmovew(d, s, c) memmove(d, s, c)
77 #define sisusbcon_memcpyw(d, s, c) memcpy(d, s, c)
79 /* vc_data -> sisusb conversion table */
80 static struct sisusb_usb_data *mysisusbs[MAX_NR_CONSOLES];
82 /* Forward declaration */
83 static const struct consw sisusb_con;
86 sisusbcon_memsetw(u16 *s, u16 c, unsigned int count)
90 sisusbcon_writew(c, s++);
94 sisusb_initialize(struct sisusb_usb_data *sisusb)
96 /* Reset cursor and start address */
97 if (sisusb_setidxreg(sisusb, SISCR, 0x0c, 0x00))
99 if (sisusb_setidxreg(sisusb, SISCR, 0x0d, 0x00))
101 if (sisusb_setidxreg(sisusb, SISCR, 0x0e, 0x00))
103 sisusb_setidxreg(sisusb, SISCR, 0x0f, 0x00);
107 sisusbcon_set_start_address(struct sisusb_usb_data *sisusb, struct vc_data *c)
109 sisusb->cur_start_addr = (c->vc_visible_origin - sisusb->scrbuf) / 2;
111 sisusb_setidxreg(sisusb, SISCR, 0x0c, (sisusb->cur_start_addr >> 8));
112 sisusb_setidxreg(sisusb, SISCR, 0x0d, (sisusb->cur_start_addr & 0xff));
116 sisusb_set_cursor(struct sisusb_usb_data *sisusb, unsigned int location)
118 if (sisusb->sisusb_cursor_loc == location)
121 sisusb->sisusb_cursor_loc = location;
123 /* Hardware bug: Text cursor appears twice or not at all
124 * at some positions. Work around it with the cursor skew
128 if ((location & 0x0007) == 0x0007) {
129 sisusb->bad_cursor_pos = 1;
131 if (sisusb_setidxregandor(sisusb, SISCR, 0x0b, 0x1f, 0x20))
133 } else if (sisusb->bad_cursor_pos) {
134 if (sisusb_setidxregand(sisusb, SISCR, 0x0b, 0x1f))
136 sisusb->bad_cursor_pos = 0;
139 if (sisusb_setidxreg(sisusb, SISCR, 0x0e, (location >> 8)))
141 sisusb_setidxreg(sisusb, SISCR, 0x0f, (location & 0xff));
144 static inline struct sisusb_usb_data *
145 sisusb_get_sisusb(unsigned short console)
147 return mysisusbs[console];
151 sisusb_sisusb_valid(struct sisusb_usb_data *sisusb)
153 if (!sisusb->present || !sisusb->ready || !sisusb->sisusb_dev)
159 static struct sisusb_usb_data *
160 sisusb_get_sisusb_lock_and_check(unsigned short console)
162 struct sisusb_usb_data *sisusb;
164 /* We can't handle console calls in non-schedulable
165 * context due to our locks and the USB transport.
166 * So we simply ignore them. This should only affect
167 * some calls to printk.
172 sisusb = sisusb_get_sisusb(console);
176 mutex_lock(&sisusb->lock);
178 if (!sisusb_sisusb_valid(sisusb) ||
179 !sisusb->havethisconsole[console]) {
180 mutex_unlock(&sisusb->lock);
188 sisusb_is_inactive(struct vc_data *c, struct sisusb_usb_data *sisusb)
190 if (sisusb->is_gfx ||
191 sisusb->textmodedestroyed ||
192 c->vc_mode != KD_TEXT)
198 /* con_startup console interface routine */
200 sisusbcon_startup(void)
205 /* con_init console interface routine */
207 sisusbcon_init(struct vc_data *c, int init)
209 struct sisusb_usb_data *sisusb;
212 /* This is called by do_take_over_console(),
213 * ie by us/under our control. It is
214 * only called after text mode and fonts
215 * are set up/restored.
218 sisusb = sisusb_get_sisusb(c->vc_num);
222 mutex_lock(&sisusb->lock);
224 if (!sisusb_sisusb_valid(sisusb)) {
225 mutex_unlock(&sisusb->lock);
229 c->vc_can_do_color = 1;
231 c->vc_complement_mask = 0x7700;
233 c->vc_hi_font_mask = sisusb->current_font_512 ? 0x0800 : 0;
235 sisusb->haveconsole = 1;
237 sisusb->havethisconsole[c->vc_num] = 1;
239 /* We only support 640x400 */
240 c->vc_scan_lines = 400;
242 c->vc_font.height = sisusb->current_font_height;
244 /* We only support width = 8 */
246 rows = c->vc_scan_lines / c->vc_font.height;
248 /* Increment usage count for our sisusb.
249 * Doing so saves us from upping/downing
250 * the disconnect semaphore; we can't
251 * lose our sisusb until this is undone
252 * in con_deinit. For all other console
253 * interface functions, it suffices to
254 * use sisusb->lock and do a quick check
255 * of sisusb for device disconnection.
257 kref_get(&sisusb->kref);
259 if (!*c->vc_uni_pagedir_loc)
260 con_set_default_unimap(c);
262 mutex_unlock(&sisusb->lock);
268 vc_resize(c, cols, rows);
271 /* con_deinit console interface routine */
273 sisusbcon_deinit(struct vc_data *c)
275 struct sisusb_usb_data *sisusb;
278 /* This is called by do_take_over_console()
279 * and others, ie not under our control.
282 sisusb = sisusb_get_sisusb(c->vc_num);
286 mutex_lock(&sisusb->lock);
288 /* Clear ourselves in mysisusbs */
289 mysisusbs[c->vc_num] = NULL;
291 sisusb->havethisconsole[c->vc_num] = 0;
293 /* Free our font buffer if all consoles are gone */
294 if (sisusb->font_backup) {
295 for(i = 0; i < MAX_NR_CONSOLES; i++) {
296 if (sisusb->havethisconsole[c->vc_num])
299 if (i == MAX_NR_CONSOLES) {
300 vfree(sisusb->font_backup);
301 sisusb->font_backup = NULL;
305 mutex_unlock(&sisusb->lock);
307 /* decrement the usage count on our sisusb */
308 kref_put(&sisusb->kref, sisusb_delete);
311 /* interface routine */
313 sisusbcon_build_attr(struct vc_data *c, u8 color, u8 intensity,
314 u8 blink, u8 underline, u8 reverse, u8 unused)
319 attr = (attr & 0xf0) | c->vc_ulcolor;
320 else if (intensity == 0)
321 attr = (attr & 0xf0) | c->vc_halfcolor;
324 attr = ((attr) & 0x88) |
326 ((attr) << 4)) & 0x77);
337 /* Interface routine */
339 sisusbcon_invert_region(struct vc_data *vc, u16 *p, int count)
341 /* Invert a region. This is called with a pointer
342 * to the console's internal screen buffer. So we
343 * simply do the inversion there and rely on
344 * a call to putc(s) to update the real screen.
348 u16 a = sisusbcon_readw(p);
351 (((a) & 0x7000) >> 4) |
352 (((a) & 0x0700) << 4);
354 sisusbcon_writew(a, p++);
358 #define SISUSB_VADDR(x,y) \
359 ((u16 *)c->vc_origin + \
360 (y) * sisusb->sisusb_num_columns + \
363 #define SISUSB_HADDR(x,y) \
364 ((u16 *)(sisusb->vrambase + (c->vc_origin - sisusb->scrbuf)) + \
365 (y) * sisusb->sisusb_num_columns + \
368 /* Interface routine */
370 sisusbcon_putc(struct vc_data *c, int ch, int y, int x)
372 struct sisusb_usb_data *sisusb;
374 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
378 /* sisusb->lock is down */
379 if (sisusb_is_inactive(c, sisusb)) {
380 mutex_unlock(&sisusb->lock);
385 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(x, y),
386 (long)SISUSB_HADDR(x, y), 2);
388 mutex_unlock(&sisusb->lock);
391 /* Interface routine */
393 sisusbcon_putcs(struct vc_data *c, const unsigned short *s,
394 int count, int y, int x)
396 struct sisusb_usb_data *sisusb;
400 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
404 /* sisusb->lock is down */
406 /* Need to put the characters into the buffer ourselves,
407 * because the vt does this AFTER calling us.
410 dest = SISUSB_VADDR(x, y);
412 for (i = count; i > 0; i--)
413 sisusbcon_writew(sisusbcon_readw(s++), dest++);
415 if (sisusb_is_inactive(c, sisusb)) {
416 mutex_unlock(&sisusb->lock);
420 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(x, y),
421 (long)SISUSB_HADDR(x, y), count * 2);
423 mutex_unlock(&sisusb->lock);
426 /* Interface routine */
428 sisusbcon_clear(struct vc_data *c, int y, int x, int height, int width)
430 struct sisusb_usb_data *sisusb;
431 u16 eattr = c->vc_video_erase_char;
435 if (width <= 0 || height <= 0)
438 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
442 /* sisusb->lock is down */
444 /* Need to clear buffer ourselves, because the vt does
445 * this AFTER calling us.
448 dest = SISUSB_VADDR(x, y);
450 cols = sisusb->sisusb_num_columns;
455 if (x == 0 && width >= c->vc_cols) {
457 sisusbcon_memsetw(dest, eattr, height * cols * 2);
461 for (i = height; i > 0; i--, dest += cols)
462 sisusbcon_memsetw(dest, eattr, width * 2);
466 if (sisusb_is_inactive(c, sisusb)) {
467 mutex_unlock(&sisusb->lock);
471 length = ((height * cols) - x - (cols - width - x)) * 2;
474 sisusb_copy_memory(sisusb, (unsigned char *)SISUSB_VADDR(x, y),
475 (long)SISUSB_HADDR(x, y), length);
477 mutex_unlock(&sisusb->lock);
480 /* interface routine */
482 sisusbcon_switch(struct vc_data *c)
484 struct sisusb_usb_data *sisusb;
487 /* Returnvalue 0 means we have fully restored screen,
488 * and vt doesn't need to call do_update_region().
489 * Returnvalue != 0 naturally means the opposite.
492 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
496 /* sisusb->lock is down */
498 /* Don't write to screen if in gfx mode */
499 if (sisusb_is_inactive(c, sisusb)) {
500 mutex_unlock(&sisusb->lock);
504 /* That really should not happen. It would mean we are
505 * being called while the vc is using its private buffer
508 if (c->vc_origin == (unsigned long)c->vc_screenbuf) {
509 mutex_unlock(&sisusb->lock);
510 dev_dbg(&sisusb->sisusb_dev->dev, "ASSERT ORIGIN != SCREENBUF!\n");
514 /* Check that we don't copy too much */
515 length = min((int)c->vc_screenbuf_size,
516 (int)(sisusb->scrbuf + sisusb->scrbuf_size - c->vc_origin));
518 /* Restore the screen contents */
519 sisusbcon_memcpyw((u16 *)c->vc_origin, (u16 *)c->vc_screenbuf,
522 sisusb_copy_memory(sisusb, (unsigned char *)c->vc_origin,
523 (long)SISUSB_HADDR(0, 0),
526 mutex_unlock(&sisusb->lock);
531 /* interface routine */
533 sisusbcon_save_screen(struct vc_data *c)
535 struct sisusb_usb_data *sisusb;
538 /* Save the current screen contents to vc's private
542 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
546 /* sisusb->lock is down */
548 if (sisusb_is_inactive(c, sisusb)) {
549 mutex_unlock(&sisusb->lock);
553 /* Check that we don't copy too much */
554 length = min((int)c->vc_screenbuf_size,
555 (int)(sisusb->scrbuf + sisusb->scrbuf_size - c->vc_origin));
557 /* Save the screen contents to vc's private buffer */
558 sisusbcon_memcpyw((u16 *)c->vc_screenbuf, (u16 *)c->vc_origin,
561 mutex_unlock(&sisusb->lock);
564 /* interface routine */
566 sisusbcon_set_palette(struct vc_data *c, const unsigned char *table)
568 struct sisusb_usb_data *sisusb;
571 /* Return value not used by vt */
573 if (!con_is_visible(c))
576 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
580 /* sisusb->lock is down */
582 if (sisusb_is_inactive(c, sisusb)) {
583 mutex_unlock(&sisusb->lock);
587 for (i = j = 0; i < 16; i++) {
588 if (sisusb_setreg(sisusb, SISCOLIDX, table[i]))
590 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
592 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
594 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
598 mutex_unlock(&sisusb->lock);
601 /* interface routine */
603 sisusbcon_blank(struct vc_data *c, int blank, int mode_switch)
605 struct sisusb_usb_data *sisusb;
606 u8 sr1, cr17, pmreg, cr63;
609 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
613 /* sisusb->lock is down */
616 sisusb->is_gfx = blank ? 1 : 0;
618 if (sisusb_is_inactive(c, sisusb)) {
619 mutex_unlock(&sisusb->lock);
625 case 1: /* Normal blanking: Clear screen */
627 sisusbcon_memsetw((u16 *)c->vc_origin,
628 c->vc_video_erase_char,
629 c->vc_screenbuf_size);
630 sisusb_copy_memory(sisusb,
631 (unsigned char *)c->vc_origin,
632 (u32)(sisusb->vrambase +
633 (c->vc_origin - sisusb->scrbuf)),
634 c->vc_screenbuf_size);
635 sisusb->con_blanked = 1;
639 default: /* VESA blanking */
641 case 0: /* Unblank */
647 sisusb->con_blanked = 0;
649 case VESA_VSYNC_SUSPEND + 1:
655 case VESA_HSYNC_SUSPEND + 1:
661 case VESA_POWERDOWN + 1:
668 mutex_unlock(&sisusb->lock);
672 sisusb_setidxregandor(sisusb, SISSR, 0x01, ~0x20, sr1);
673 sisusb_setidxregandor(sisusb, SISCR, 0x17, 0x7f, cr17);
674 sisusb_setidxregandor(sisusb, SISSR, 0x1f, 0x3f, pmreg);
675 sisusb_setidxregandor(sisusb, SISCR, 0x63, 0xbf, cr63);
679 mutex_unlock(&sisusb->lock);
684 /* interface routine */
686 sisusbcon_scrolldelta(struct vc_data *c, int lines)
688 struct sisusb_usb_data *sisusb;
690 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
694 /* sisusb->lock is down */
696 if (sisusb_is_inactive(c, sisusb)) {
697 mutex_unlock(&sisusb->lock);
701 vc_scrolldelta_helper(c, lines, sisusb->con_rolled_over,
702 (void *)sisusb->scrbuf, sisusb->scrbuf_size);
704 sisusbcon_set_start_address(sisusb, c);
706 mutex_unlock(&sisusb->lock);
709 /* Interface routine */
711 sisusbcon_cursor(struct vc_data *c, int mode)
713 struct sisusb_usb_data *sisusb;
714 int from, to, baseline;
716 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
720 /* sisusb->lock is down */
722 if (sisusb_is_inactive(c, sisusb)) {
723 mutex_unlock(&sisusb->lock);
727 if (c->vc_origin != c->vc_visible_origin) {
728 c->vc_visible_origin = c->vc_origin;
729 sisusbcon_set_start_address(sisusb, c);
732 if (mode == CM_ERASE) {
733 sisusb_setidxregor(sisusb, SISCR, 0x0a, 0x20);
734 sisusb->sisusb_cursor_size_to = -1;
735 mutex_unlock(&sisusb->lock);
739 sisusb_set_cursor(sisusb, (c->vc_pos - sisusb->scrbuf) / 2);
741 baseline = c->vc_font.height - (c->vc_font.height < 10 ? 1 : 2);
743 switch (c->vc_cursor_type & 0x0f) {
744 case CUR_BLOCK: from = 1;
745 to = c->vc_font.height;
747 case CUR_TWO_THIRDS: from = c->vc_font.height / 3;
750 case CUR_LOWER_HALF: from = c->vc_font.height / 2;
753 case CUR_LOWER_THIRD: from = (c->vc_font.height * 2) / 3;
756 case CUR_NONE: from = 31;
760 case CUR_UNDERLINE: from = baseline - 1;
765 if (sisusb->sisusb_cursor_size_from != from ||
766 sisusb->sisusb_cursor_size_to != to) {
768 sisusb_setidxreg(sisusb, SISCR, 0x0a, from);
769 sisusb_setidxregandor(sisusb, SISCR, 0x0b, 0xe0, to);
771 sisusb->sisusb_cursor_size_from = from;
772 sisusb->sisusb_cursor_size_to = to;
775 mutex_unlock(&sisusb->lock);
779 sisusbcon_scroll_area(struct vc_data *c, struct sisusb_usb_data *sisusb,
780 unsigned int t, unsigned int b, enum con_scroll dir,
783 int cols = sisusb->sisusb_num_columns;
784 int length = ((b - t) * cols) * 2;
785 u16 eattr = c->vc_video_erase_char;
787 /* sisusb->lock is down */
789 /* Scroll an area which does not match the
790 * visible screen's dimensions. This needs
791 * to be done separately, as it does not
792 * use hardware panning.
798 sisusbcon_memmovew(SISUSB_VADDR(0, t),
799 SISUSB_VADDR(0, t + lines),
800 (b - t - lines) * cols * 2);
801 sisusbcon_memsetw(SISUSB_VADDR(0, b - lines), eattr,
806 sisusbcon_memmovew(SISUSB_VADDR(0, t + lines),
808 (b - t - lines) * cols * 2);
809 sisusbcon_memsetw(SISUSB_VADDR(0, t), eattr,
814 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(0, t),
815 (long)SISUSB_HADDR(0, t), length);
817 mutex_unlock(&sisusb->lock);
822 /* Interface routine */
824 sisusbcon_scroll(struct vc_data *c, unsigned int t, unsigned int b,
825 enum con_scroll dir, unsigned int lines)
827 struct sisusb_usb_data *sisusb;
828 u16 eattr = c->vc_video_erase_char;
830 unsigned long oldorigin;
831 unsigned int delta = lines * c->vc_size_row;
834 /* Returning != 0 means we have done the scrolling successfully.
835 * Returning 0 makes vt do the scrolling on its own.
836 * Note that con_scroll is only called if the console is
837 * visible. In that case, the origin should be our buffer,
838 * not the vt's private one.
844 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
848 /* sisusb->lock is down */
850 if (sisusb_is_inactive(c, sisusb)) {
851 mutex_unlock(&sisusb->lock);
856 if (t || b != c->vc_rows)
857 return sisusbcon_scroll_area(c, sisusb, t, b, dir, lines);
859 if (c->vc_origin != c->vc_visible_origin) {
860 c->vc_visible_origin = c->vc_origin;
861 sisusbcon_set_start_address(sisusb, c);
864 /* limit amount to maximum realistic size */
865 if (lines > c->vc_rows)
868 oldorigin = c->vc_origin;
874 if (c->vc_scr_end + delta >=
875 sisusb->scrbuf + sisusb->scrbuf_size) {
876 sisusbcon_memcpyw((u16 *)sisusb->scrbuf,
877 (u16 *)(oldorigin + delta),
878 c->vc_screenbuf_size - delta);
879 c->vc_origin = sisusb->scrbuf;
880 sisusb->con_rolled_over = oldorigin - sisusb->scrbuf;
883 c->vc_origin += delta;
886 (u16 *)(c->vc_origin + c->vc_screenbuf_size - delta),
893 if (oldorigin - delta < sisusb->scrbuf) {
894 sisusbcon_memmovew((u16 *)(sisusb->scrbuf +
895 sisusb->scrbuf_size -
896 c->vc_screenbuf_size +
899 c->vc_screenbuf_size - delta);
900 c->vc_origin = sisusb->scrbuf +
901 sisusb->scrbuf_size -
902 c->vc_screenbuf_size;
903 sisusb->con_rolled_over = 0;
906 c->vc_origin -= delta;
908 c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
910 scr_memsetw((u16 *)(c->vc_origin), eattr, delta);
915 originoffset = (u32)(c->vc_origin - sisusb->scrbuf);
918 sisusb_copy_memory(sisusb,
919 (char *)c->vc_origin,
920 (u32)(sisusb->vrambase + originoffset),
921 c->vc_screenbuf_size);
922 else if (dir == SM_UP)
923 sisusb_copy_memory(sisusb,
924 (char *)c->vc_origin + c->vc_screenbuf_size - delta,
925 (u32)sisusb->vrambase + originoffset +
926 c->vc_screenbuf_size - delta,
929 sisusb_copy_memory(sisusb,
930 (char *)c->vc_origin,
931 (u32)(sisusb->vrambase + originoffset),
934 c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
935 c->vc_visible_origin = c->vc_origin;
937 sisusbcon_set_start_address(sisusb, c);
939 c->vc_pos = c->vc_pos - oldorigin + c->vc_origin;
941 mutex_unlock(&sisusb->lock);
946 /* Interface routine */
948 sisusbcon_set_origin(struct vc_data *c)
950 struct sisusb_usb_data *sisusb;
952 /* Returning != 0 means we were successful.
953 * Returning 0 will vt make to use its own
954 * screenbuffer as the origin.
957 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
961 /* sisusb->lock is down */
963 if (sisusb_is_inactive(c, sisusb) || sisusb->con_blanked) {
964 mutex_unlock(&sisusb->lock);
968 c->vc_origin = c->vc_visible_origin = sisusb->scrbuf;
970 sisusbcon_set_start_address(sisusb, c);
972 sisusb->con_rolled_over = 0;
974 mutex_unlock(&sisusb->lock);
979 /* Interface routine */
981 sisusbcon_resize(struct vc_data *c, unsigned int newcols, unsigned int newrows,
984 struct sisusb_usb_data *sisusb;
987 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
991 fh = sisusb->current_font_height;
993 mutex_unlock(&sisusb->lock);
995 /* We are quite unflexible as regards resizing. The vt code
996 * handles sizes where the line length isn't equal the pitch
997 * quite badly. As regards the rows, our panning tricks only
998 * work well if the number of rows equals the visible number
1002 if (newcols != 80 || c->vc_scan_lines / fh != newrows)
1009 sisusbcon_do_font_op(struct sisusb_usb_data *sisusb, int set, int slot,
1010 u8 *arg, int cmapsz, int ch512, int dorecalc,
1011 struct vc_data *c, int fh, int uplock)
1013 int font_select = 0x00, i, err = 0;
1017 /* sisusb->lock is down */
1020 * The default font is kept in slot 0.
1021 * A user font is loaded in slot 2 (256 ch)
1025 if ((slot != 0 && slot != 2) || !fh) {
1027 mutex_unlock(&sisusb->lock);
1032 sisusb->font_slot = slot;
1034 /* Default font is always 256 */
1038 offset = 4 * cmapsz;
1040 font_select = (slot == 0) ? 0x00 : (ch512 ? 0x0e : 0x0a);
1042 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x01); /* Reset */
1043 err |= sisusb_setidxreg(sisusb, SISSR, 0x02, 0x04); /* Write to plane 2 */
1044 err |= sisusb_setidxreg(sisusb, SISSR, 0x04, 0x07); /* Memory mode a0-bf */
1045 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x03); /* Reset */
1050 err |= sisusb_setidxreg(sisusb, SISGR, 0x04, 0x03); /* Select plane read 2 */
1051 err |= sisusb_setidxreg(sisusb, SISGR, 0x05, 0x00); /* Disable odd/even */
1052 err |= sisusb_setidxreg(sisusb, SISGR, 0x06, 0x00); /* Address range a0-bf */
1059 for (i = 0; i < cmapsz; i++) {
1060 err |= sisusb_writeb(sisusb,
1061 sisusb->vrambase + offset + i,
1067 for (i = 0; i < cmapsz; i++) {
1068 err |= sisusb_readb(sisusb,
1069 sisusb->vrambase + offset + i,
1076 * In 512-character mode, the character map is not contiguous if
1077 * we want to remain EGA compatible -- which we do
1082 for (i = 0; i < cmapsz; i++) {
1083 err |= sisusb_writeb(sisusb,
1084 sisusb->vrambase + offset +
1091 for (i = 0; i < cmapsz; i++) {
1092 err |= sisusb_readb(sisusb,
1093 sisusb->vrambase + offset +
1105 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x01); /* Reset */
1106 err |= sisusb_setidxreg(sisusb, SISSR, 0x02, 0x03); /* Write to planes 0+1 */
1107 err |= sisusb_setidxreg(sisusb, SISSR, 0x04, 0x03); /* Memory mode a0-bf */
1109 sisusb_setidxreg(sisusb, SISSR, 0x03, font_select);
1110 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x03); /* Reset end */
1115 err |= sisusb_setidxreg(sisusb, SISGR, 0x04, 0x00); /* Select plane read 0 */
1116 err |= sisusb_setidxreg(sisusb, SISGR, 0x05, 0x10); /* Enable odd/even */
1117 err |= sisusb_setidxreg(sisusb, SISGR, 0x06, 0x06); /* Address range b8-bf */
1122 if ((set) && (ch512 != sisusb->current_font_512)) {
1124 /* Font is shared among all our consoles.
1125 * And so is the hi_font_mask.
1127 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1128 struct vc_data *d = vc_cons[i].d;
1129 if (d && d->vc_sw == &sisusb_con)
1130 d->vc_hi_font_mask = ch512 ? 0x0800 : 0;
1133 sisusb->current_font_512 = ch512;
1135 /* color plane enable register:
1136 256-char: enable intensity bit
1137 512-char: disable intensity bit */
1138 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1139 sisusb_setreg(sisusb, SISAR, 0x12);
1140 sisusb_setreg(sisusb, SISAR, ch512 ? 0x07 : 0x0f);
1142 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1143 sisusb_setreg(sisusb, SISAR, 0x20);
1144 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1150 * Adjust the screen to fit a font of a certain height
1153 unsigned char ovr, vde, fsr;
1154 int rows = 0, maxscan = 0;
1158 /* Number of video rows */
1159 rows = c->vc_scan_lines / fh;
1160 /* Scan lines to actually display-1 */
1161 maxscan = rows * fh - 1;
1163 /*printk(KERN_DEBUG "sisusb recalc rows %d maxscan %d fh %d sl %d\n",
1164 rows, maxscan, fh, c->vc_scan_lines);*/
1166 sisusb_getidxreg(sisusb, SISCR, 0x07, &ovr);
1167 vde = maxscan & 0xff;
1168 ovr = (ovr & 0xbd) |
1169 ((maxscan & 0x100) >> 7) |
1170 ((maxscan & 0x200) >> 3);
1171 sisusb_setidxreg(sisusb, SISCR, 0x07, ovr);
1172 sisusb_setidxreg(sisusb, SISCR, 0x12, vde);
1176 sisusb_getidxreg(sisusb, SISCR, 0x09, &fsr);
1177 fsr = (fsr & 0xe0) | (fh - 1);
1178 sisusb_setidxreg(sisusb, SISCR, 0x09, fsr);
1179 sisusb->current_font_height = fh;
1181 sisusb->sisusb_cursor_size_from = -1;
1182 sisusb->sisusb_cursor_size_to = -1;
1187 mutex_unlock(&sisusb->lock);
1189 if (dorecalc && c) {
1190 int rows = c->vc_scan_lines / fh;
1192 /* Now adjust our consoles' size */
1194 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1195 struct vc_data *vc = vc_cons[i].d;
1197 if (vc && vc->vc_sw == &sisusb_con) {
1198 if (con_is_visible(vc)) {
1199 vc->vc_sw->con_cursor(vc, CM_DRAW);
1201 vc->vc_font.height = fh;
1202 vc_resize(vc, 0, rows);
1211 mutex_unlock(&sisusb->lock);
1216 /* Interface routine */
1218 sisusbcon_font_set(struct vc_data *c, struct console_font *font,
1221 struct sisusb_usb_data *sisusb;
1222 unsigned charcount = font->charcount;
1224 if (font->width != 8 || (charcount != 256 && charcount != 512))
1227 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
1231 /* sisusb->lock is down */
1233 /* Save the user-provided font into a buffer. This
1234 * is used for restoring text mode after quitting
1235 * from X and for the con_getfont routine.
1237 if (sisusb->font_backup) {
1238 if (sisusb->font_backup_size < charcount) {
1239 vfree(sisusb->font_backup);
1240 sisusb->font_backup = NULL;
1244 if (!sisusb->font_backup)
1245 sisusb->font_backup = vmalloc(charcount * 32);
1247 if (sisusb->font_backup) {
1248 memcpy(sisusb->font_backup, font->data, charcount * 32);
1249 sisusb->font_backup_size = charcount;
1250 sisusb->font_backup_height = font->height;
1251 sisusb->font_backup_512 = (charcount == 512) ? 1 : 0;
1254 /* do_font_op ups sisusb->lock */
1256 return sisusbcon_do_font_op(sisusb, 1, 2, font->data,
1257 8192, (charcount == 512),
1258 (!(flags & KD_FONT_FLAG_DONT_RECALC)) ? 1 : 0,
1259 c, font->height, 1);
1262 /* Interface routine */
1264 sisusbcon_font_get(struct vc_data *c, struct console_font *font)
1266 struct sisusb_usb_data *sisusb;
1268 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
1272 /* sisusb->lock is down */
1275 font->height = c->vc_font.height;
1276 font->charcount = 256;
1279 mutex_unlock(&sisusb->lock);
1283 if (!sisusb->font_backup) {
1284 mutex_unlock(&sisusb->lock);
1288 /* Copy 256 chars only, like vgacon */
1289 memcpy(font->data, sisusb->font_backup, 256 * 32);
1291 mutex_unlock(&sisusb->lock);
1297 * The console `switch' structure for the sisusb console
1300 static const struct consw sisusb_con = {
1301 .owner = THIS_MODULE,
1302 .con_startup = sisusbcon_startup,
1303 .con_init = sisusbcon_init,
1304 .con_deinit = sisusbcon_deinit,
1305 .con_clear = sisusbcon_clear,
1306 .con_putc = sisusbcon_putc,
1307 .con_putcs = sisusbcon_putcs,
1308 .con_cursor = sisusbcon_cursor,
1309 .con_scroll = sisusbcon_scroll,
1310 .con_switch = sisusbcon_switch,
1311 .con_blank = sisusbcon_blank,
1312 .con_font_set = sisusbcon_font_set,
1313 .con_font_get = sisusbcon_font_get,
1314 .con_set_palette = sisusbcon_set_palette,
1315 .con_scrolldelta = sisusbcon_scrolldelta,
1316 .con_build_attr = sisusbcon_build_attr,
1317 .con_invert_region = sisusbcon_invert_region,
1318 .con_set_origin = sisusbcon_set_origin,
1319 .con_save_screen = sisusbcon_save_screen,
1320 .con_resize = sisusbcon_resize,
1323 /* Our very own dummy console driver */
1325 static const char *sisusbdummycon_startup(void)
1327 return "SISUSBVGADUMMY";
1330 static void sisusbdummycon_init(struct vc_data *vc, int init)
1332 vc->vc_can_do_color = 1;
1337 vc_resize(vc, 80, 25);
1340 static int sisusbdummycon_dummy(void)
1345 #define SISUSBCONDUMMY (void *)sisusbdummycon_dummy
1347 static const struct consw sisusb_dummy_con = {
1348 .owner = THIS_MODULE,
1349 .con_startup = sisusbdummycon_startup,
1350 .con_init = sisusbdummycon_init,
1351 .con_deinit = SISUSBCONDUMMY,
1352 .con_clear = SISUSBCONDUMMY,
1353 .con_putc = SISUSBCONDUMMY,
1354 .con_putcs = SISUSBCONDUMMY,
1355 .con_cursor = SISUSBCONDUMMY,
1356 .con_scroll = SISUSBCONDUMMY,
1357 .con_switch = SISUSBCONDUMMY,
1358 .con_blank = SISUSBCONDUMMY,
1359 .con_font_set = SISUSBCONDUMMY,
1360 .con_font_get = SISUSBCONDUMMY,
1361 .con_font_default = SISUSBCONDUMMY,
1362 .con_font_copy = SISUSBCONDUMMY,
1366 sisusb_console_init(struct sisusb_usb_data *sisusb, int first, int last)
1370 mutex_lock(&sisusb->lock);
1372 /* Erm.. that should not happen */
1373 if (sisusb->haveconsole || !sisusb->SiS_Pr) {
1374 mutex_unlock(&sisusb->lock);
1378 sisusb->con_first = first;
1379 sisusb->con_last = last;
1382 first > MAX_NR_CONSOLES ||
1383 last > MAX_NR_CONSOLES) {
1384 mutex_unlock(&sisusb->lock);
1388 /* If gfxcore not initialized or no consoles given, quit graciously */
1389 if (!sisusb->gfxinit || first < 1 || last < 1) {
1390 mutex_unlock(&sisusb->lock);
1394 sisusb->sisusb_cursor_loc = -1;
1395 sisusb->sisusb_cursor_size_from = -1;
1396 sisusb->sisusb_cursor_size_to = -1;
1398 /* Set up text mode (and upload default font) */
1399 if (sisusb_reset_text_mode(sisusb, 1)) {
1400 mutex_unlock(&sisusb->lock);
1401 dev_err(&sisusb->sisusb_dev->dev, "Failed to set up text mode\n");
1405 /* Initialize some gfx registers */
1406 sisusb_initialize(sisusb);
1408 for (i = first - 1; i <= last - 1; i++) {
1409 /* Save sisusb for our interface routines */
1410 mysisusbs[i] = sisusb;
1413 /* Initial console setup */
1414 sisusb->sisusb_num_columns = 80;
1416 /* Use a 32K buffer (matches b8000-bffff area) */
1417 sisusb->scrbuf_size = 32 * 1024;
1419 /* Allocate screen buffer */
1420 if (!(sisusb->scrbuf = (unsigned long)vmalloc(sisusb->scrbuf_size))) {
1421 mutex_unlock(&sisusb->lock);
1422 dev_err(&sisusb->sisusb_dev->dev, "Failed to allocate screen buffer\n");
1426 mutex_unlock(&sisusb->lock);
1428 /* Now grab the desired console(s) */
1430 ret = do_take_over_console(&sisusb_con, first - 1, last - 1, 0);
1433 sisusb->haveconsole = 1;
1435 for (i = first - 1; i <= last - 1; i++)
1436 mysisusbs[i] = NULL;
1443 sisusb_console_exit(struct sisusb_usb_data *sisusb)
1447 /* This is called if the device is disconnected
1448 * and while disconnect and lock semaphores
1449 * are up. This should be save because we
1450 * can't lose our sisusb any other way but by
1451 * disconnection (and hence, the disconnect
1452 * sema is for protecting all other access
1453 * functions from disconnection, not the
1457 /* Now what do we do in case of disconnection:
1458 * One alternative would be to simply call
1459 * give_up_console(). Nah, not a good idea.
1460 * give_up_console() is obviously buggy as it
1461 * only discards the consw pointer from the
1462 * driver_map, but doesn't adapt vc->vc_sw
1463 * of the affected consoles. Hence, the next
1464 * call to any of the console functions will
1465 * eventually take a trip to oops county.
1466 * Also, give_up_console for some reason
1467 * doesn't decrement our module refcount.
1468 * Instead, we switch our consoles to a private
1469 * dummy console. This, of course, keeps our
1470 * refcount up as well, but it works perfectly.
1473 if (sisusb->haveconsole) {
1474 for (i = 0; i < MAX_NR_CONSOLES; i++)
1475 if (sisusb->havethisconsole[i]) {
1477 do_take_over_console(&sisusb_dummy_con, i, i, 0);
1479 /* At this point, con_deinit for all our
1480 * consoles is executed by do_take_over_console().
1483 sisusb->haveconsole = 0;
1486 vfree((void *)sisusb->scrbuf);
1489 vfree(sisusb->font_backup);
1490 sisusb->font_backup = NULL;
1493 void __init sisusb_init_concode(void)
1497 for (i = 0; i < MAX_NR_CONSOLES; i++)
1498 mysisusbs[i] = NULL;
1501 #endif /* INCL_CON */