x86/topology: Fix function name in documentation
[cris-mirror.git] / drivers / usb / misc / sisusbvga / sisusb_con.c
blob73f7bde78e11e75c5748cb8535c61bbb36e20fff
1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2 /*
3 * sisusb - usb kernel driver for SiS315(E) based USB2VGA dongles
5 * VGA text mode console part
7 * Copyright (C) 2005 by Thomas Winischhofer, Vienna, Austria
9 * If distributed as part of the Linux kernel, this code is licensed under the
10 * terms of the GPL v2.
12 * Otherwise, the following license terms apply:
14 * * Redistribution and use in source and binary forms, with or without
15 * * modification, are permitted provided that the following conditions
16 * * are met:
17 * * 1) Redistributions of source code must retain the above copyright
18 * * notice, this list of conditions and the following disclaimer.
19 * * 2) Redistributions in binary form must reproduce the above copyright
20 * * notice, this list of conditions and the following disclaimer in the
21 * * documentation and/or other materials provided with the distribution.
22 * * 3) The name of the author may not be used to endorse or promote products
23 * * derived from this software without specific psisusbr written permission.
24 * *
25 * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED OR
26 * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 * Author: Thomas Winischhofer <thomas@winischhofer.net>
38 * Portions based on vgacon.c which are
39 * Created 28 Sep 1997 by Geert Uytterhoeven
40 * Rewritten by Martin Mares <mj@ucw.cz>, July 1998
41 * based on code Copyright (C) 1991, 1992 Linus Torvalds
42 * 1995 Jay Estabrook
44 * A note on using in_atomic() in here: We can't handle console
45 * calls from non-schedulable context due to our USB-dependend
46 * nature. For now, this driver just ignores any calls if it
47 * detects this state.
51 #include <linux/mutex.h>
52 #include <linux/module.h>
53 #include <linux/kernel.h>
54 #include <linux/signal.h>
55 #include <linux/fs.h>
56 #include <linux/usb.h>
57 #include <linux/tty.h>
58 #include <linux/console.h>
59 #include <linux/string.h>
60 #include <linux/kd.h>
61 #include <linux/init.h>
62 #include <linux/vt_kern.h>
63 #include <linux/selection.h>
64 #include <linux/spinlock.h>
65 #include <linux/kref.h>
66 #include <linux/ioport.h>
67 #include <linux/interrupt.h>
68 #include <linux/vmalloc.h>
70 #include "sisusb.h"
71 #include "sisusb_init.h"
73 #ifdef INCL_SISUSB_CON
75 #define sisusbcon_writew(val, addr) (*(addr) = (val))
76 #define sisusbcon_readw(addr) (*(addr))
77 #define sisusbcon_memmovew(d, s, c) memmove(d, s, c)
78 #define sisusbcon_memcpyw(d, s, c) memcpy(d, s, c)
80 /* vc_data -> sisusb conversion table */
81 static struct sisusb_usb_data *mysisusbs[MAX_NR_CONSOLES];
83 /* Forward declaration */
84 static const struct consw sisusb_con;
86 static inline void
87 sisusbcon_memsetw(u16 *s, u16 c, unsigned int count)
89 count /= 2;
90 while (count--)
91 sisusbcon_writew(c, s++);
94 static inline void
95 sisusb_initialize(struct sisusb_usb_data *sisusb)
97 /* Reset cursor and start address */
98 if (sisusb_setidxreg(sisusb, SISCR, 0x0c, 0x00))
99 return;
100 if (sisusb_setidxreg(sisusb, SISCR, 0x0d, 0x00))
101 return;
102 if (sisusb_setidxreg(sisusb, SISCR, 0x0e, 0x00))
103 return;
104 sisusb_setidxreg(sisusb, SISCR, 0x0f, 0x00);
107 static inline void
108 sisusbcon_set_start_address(struct sisusb_usb_data *sisusb, struct vc_data *c)
110 sisusb->cur_start_addr = (c->vc_visible_origin - sisusb->scrbuf) / 2;
112 sisusb_setidxreg(sisusb, SISCR, 0x0c, (sisusb->cur_start_addr >> 8));
113 sisusb_setidxreg(sisusb, SISCR, 0x0d, (sisusb->cur_start_addr & 0xff));
116 void
117 sisusb_set_cursor(struct sisusb_usb_data *sisusb, unsigned int location)
119 if (sisusb->sisusb_cursor_loc == location)
120 return;
122 sisusb->sisusb_cursor_loc = location;
124 /* Hardware bug: Text cursor appears twice or not at all
125 * at some positions. Work around it with the cursor skew
126 * bits.
129 if ((location & 0x0007) == 0x0007) {
130 sisusb->bad_cursor_pos = 1;
131 location--;
132 if (sisusb_setidxregandor(sisusb, SISCR, 0x0b, 0x1f, 0x20))
133 return;
134 } else if (sisusb->bad_cursor_pos) {
135 if (sisusb_setidxregand(sisusb, SISCR, 0x0b, 0x1f))
136 return;
137 sisusb->bad_cursor_pos = 0;
140 if (sisusb_setidxreg(sisusb, SISCR, 0x0e, (location >> 8)))
141 return;
142 sisusb_setidxreg(sisusb, SISCR, 0x0f, (location & 0xff));
145 static inline struct sisusb_usb_data *
146 sisusb_get_sisusb(unsigned short console)
148 return mysisusbs[console];
151 static inline int
152 sisusb_sisusb_valid(struct sisusb_usb_data *sisusb)
154 if (!sisusb->present || !sisusb->ready || !sisusb->sisusb_dev)
155 return 0;
157 return 1;
160 static struct sisusb_usb_data *
161 sisusb_get_sisusb_lock_and_check(unsigned short console)
163 struct sisusb_usb_data *sisusb;
165 /* We can't handle console calls in non-schedulable
166 * context due to our locks and the USB transport.
167 * So we simply ignore them. This should only affect
168 * some calls to printk.
170 if (in_atomic())
171 return NULL;
173 sisusb = sisusb_get_sisusb(console);
174 if (!sisusb)
175 return NULL;
177 mutex_lock(&sisusb->lock);
179 if (!sisusb_sisusb_valid(sisusb) ||
180 !sisusb->havethisconsole[console]) {
181 mutex_unlock(&sisusb->lock);
182 return NULL;
185 return sisusb;
188 static int
189 sisusb_is_inactive(struct vc_data *c, struct sisusb_usb_data *sisusb)
191 if (sisusb->is_gfx ||
192 sisusb->textmodedestroyed ||
193 c->vc_mode != KD_TEXT)
194 return 1;
196 return 0;
199 /* con_startup console interface routine */
200 static const char *
201 sisusbcon_startup(void)
203 return "SISUSBCON";
206 /* con_init console interface routine */
207 static void
208 sisusbcon_init(struct vc_data *c, int init)
210 struct sisusb_usb_data *sisusb;
211 int cols, rows;
213 /* This is called by do_take_over_console(),
214 * ie by us/under our control. It is
215 * only called after text mode and fonts
216 * are set up/restored.
219 sisusb = sisusb_get_sisusb(c->vc_num);
220 if (!sisusb)
221 return;
223 mutex_lock(&sisusb->lock);
225 if (!sisusb_sisusb_valid(sisusb)) {
226 mutex_unlock(&sisusb->lock);
227 return;
230 c->vc_can_do_color = 1;
232 c->vc_complement_mask = 0x7700;
234 c->vc_hi_font_mask = sisusb->current_font_512 ? 0x0800 : 0;
236 sisusb->haveconsole = 1;
238 sisusb->havethisconsole[c->vc_num] = 1;
240 /* We only support 640x400 */
241 c->vc_scan_lines = 400;
243 c->vc_font.height = sisusb->current_font_height;
245 /* We only support width = 8 */
246 cols = 80;
247 rows = c->vc_scan_lines / c->vc_font.height;
249 /* Increment usage count for our sisusb.
250 * Doing so saves us from upping/downing
251 * the disconnect semaphore; we can't
252 * lose our sisusb until this is undone
253 * in con_deinit. For all other console
254 * interface functions, it suffices to
255 * use sisusb->lock and do a quick check
256 * of sisusb for device disconnection.
258 kref_get(&sisusb->kref);
260 if (!*c->vc_uni_pagedir_loc)
261 con_set_default_unimap(c);
263 mutex_unlock(&sisusb->lock);
265 if (init) {
266 c->vc_cols = cols;
267 c->vc_rows = rows;
268 } else
269 vc_resize(c, cols, rows);
272 /* con_deinit console interface routine */
273 static void
274 sisusbcon_deinit(struct vc_data *c)
276 struct sisusb_usb_data *sisusb;
277 int i;
279 /* This is called by do_take_over_console()
280 * and others, ie not under our control.
283 sisusb = sisusb_get_sisusb(c->vc_num);
284 if (!sisusb)
285 return;
287 mutex_lock(&sisusb->lock);
289 /* Clear ourselves in mysisusbs */
290 mysisusbs[c->vc_num] = NULL;
292 sisusb->havethisconsole[c->vc_num] = 0;
294 /* Free our font buffer if all consoles are gone */
295 if (sisusb->font_backup) {
296 for(i = 0; i < MAX_NR_CONSOLES; i++) {
297 if (sisusb->havethisconsole[c->vc_num])
298 break;
300 if (i == MAX_NR_CONSOLES) {
301 vfree(sisusb->font_backup);
302 sisusb->font_backup = NULL;
306 mutex_unlock(&sisusb->lock);
308 /* decrement the usage count on our sisusb */
309 kref_put(&sisusb->kref, sisusb_delete);
312 /* interface routine */
313 static u8
314 sisusbcon_build_attr(struct vc_data *c, u8 color, u8 intensity,
315 u8 blink, u8 underline, u8 reverse, u8 unused)
317 u8 attr = color;
319 if (underline)
320 attr = (attr & 0xf0) | c->vc_ulcolor;
321 else if (intensity == 0)
322 attr = (attr & 0xf0) | c->vc_halfcolor;
324 if (reverse)
325 attr = ((attr) & 0x88) |
326 ((((attr) >> 4) |
327 ((attr) << 4)) & 0x77);
329 if (blink)
330 attr ^= 0x80;
332 if (intensity == 2)
333 attr ^= 0x08;
335 return attr;
338 /* Interface routine */
339 static void
340 sisusbcon_invert_region(struct vc_data *vc, u16 *p, int count)
342 /* Invert a region. This is called with a pointer
343 * to the console's internal screen buffer. So we
344 * simply do the inversion there and rely on
345 * a call to putc(s) to update the real screen.
348 while (count--) {
349 u16 a = sisusbcon_readw(p);
351 a = ((a) & 0x88ff) |
352 (((a) & 0x7000) >> 4) |
353 (((a) & 0x0700) << 4);
355 sisusbcon_writew(a, p++);
359 #define SISUSB_VADDR(x,y) \
360 ((u16 *)c->vc_origin + \
361 (y) * sisusb->sisusb_num_columns + \
362 (x))
364 #define SISUSB_HADDR(x,y) \
365 ((u16 *)(sisusb->vrambase + (c->vc_origin - sisusb->scrbuf)) + \
366 (y) * sisusb->sisusb_num_columns + \
367 (x))
369 /* Interface routine */
370 static void
371 sisusbcon_putc(struct vc_data *c, int ch, int y, int x)
373 struct sisusb_usb_data *sisusb;
375 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
376 if (!sisusb)
377 return;
379 /* sisusb->lock is down */
380 if (sisusb_is_inactive(c, sisusb)) {
381 mutex_unlock(&sisusb->lock);
382 return;
386 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(x, y),
387 (long)SISUSB_HADDR(x, y), 2);
389 mutex_unlock(&sisusb->lock);
392 /* Interface routine */
393 static void
394 sisusbcon_putcs(struct vc_data *c, const unsigned short *s,
395 int count, int y, int x)
397 struct sisusb_usb_data *sisusb;
398 u16 *dest;
399 int i;
401 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
402 if (!sisusb)
403 return;
405 /* sisusb->lock is down */
407 /* Need to put the characters into the buffer ourselves,
408 * because the vt does this AFTER calling us.
411 dest = SISUSB_VADDR(x, y);
413 for (i = count; i > 0; i--)
414 sisusbcon_writew(sisusbcon_readw(s++), dest++);
416 if (sisusb_is_inactive(c, sisusb)) {
417 mutex_unlock(&sisusb->lock);
418 return;
421 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(x, y),
422 (long)SISUSB_HADDR(x, y), count * 2);
424 mutex_unlock(&sisusb->lock);
427 /* Interface routine */
428 static void
429 sisusbcon_clear(struct vc_data *c, int y, int x, int height, int width)
431 struct sisusb_usb_data *sisusb;
432 u16 eattr = c->vc_video_erase_char;
433 int i, length, cols;
434 u16 *dest;
436 if (width <= 0 || height <= 0)
437 return;
439 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
440 if (!sisusb)
441 return;
443 /* sisusb->lock is down */
445 /* Need to clear buffer ourselves, because the vt does
446 * this AFTER calling us.
449 dest = SISUSB_VADDR(x, y);
451 cols = sisusb->sisusb_num_columns;
453 if (width > cols)
454 width = cols;
456 if (x == 0 && width >= c->vc_cols) {
458 sisusbcon_memsetw(dest, eattr, height * cols * 2);
460 } else {
462 for (i = height; i > 0; i--, dest += cols)
463 sisusbcon_memsetw(dest, eattr, width * 2);
467 if (sisusb_is_inactive(c, sisusb)) {
468 mutex_unlock(&sisusb->lock);
469 return;
472 length = ((height * cols) - x - (cols - width - x)) * 2;
475 sisusb_copy_memory(sisusb, (unsigned char *)SISUSB_VADDR(x, y),
476 (long)SISUSB_HADDR(x, y), length);
478 mutex_unlock(&sisusb->lock);
481 /* interface routine */
482 static int
483 sisusbcon_switch(struct vc_data *c)
485 struct sisusb_usb_data *sisusb;
486 int length;
488 /* Returnvalue 0 means we have fully restored screen,
489 * and vt doesn't need to call do_update_region().
490 * Returnvalue != 0 naturally means the opposite.
493 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
494 if (!sisusb)
495 return 0;
497 /* sisusb->lock is down */
499 /* Don't write to screen if in gfx mode */
500 if (sisusb_is_inactive(c, sisusb)) {
501 mutex_unlock(&sisusb->lock);
502 return 0;
505 /* That really should not happen. It would mean we are
506 * being called while the vc is using its private buffer
507 * as origin.
509 if (c->vc_origin == (unsigned long)c->vc_screenbuf) {
510 mutex_unlock(&sisusb->lock);
511 dev_dbg(&sisusb->sisusb_dev->dev, "ASSERT ORIGIN != SCREENBUF!\n");
512 return 0;
515 /* Check that we don't copy too much */
516 length = min((int)c->vc_screenbuf_size,
517 (int)(sisusb->scrbuf + sisusb->scrbuf_size - c->vc_origin));
519 /* Restore the screen contents */
520 sisusbcon_memcpyw((u16 *)c->vc_origin, (u16 *)c->vc_screenbuf,
521 length);
523 sisusb_copy_memory(sisusb, (unsigned char *)c->vc_origin,
524 (long)SISUSB_HADDR(0, 0),
525 length);
527 mutex_unlock(&sisusb->lock);
529 return 0;
532 /* interface routine */
533 static void
534 sisusbcon_save_screen(struct vc_data *c)
536 struct sisusb_usb_data *sisusb;
537 int length;
539 /* Save the current screen contents to vc's private
540 * buffer.
543 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
544 if (!sisusb)
545 return;
547 /* sisusb->lock is down */
549 if (sisusb_is_inactive(c, sisusb)) {
550 mutex_unlock(&sisusb->lock);
551 return;
554 /* Check that we don't copy too much */
555 length = min((int)c->vc_screenbuf_size,
556 (int)(sisusb->scrbuf + sisusb->scrbuf_size - c->vc_origin));
558 /* Save the screen contents to vc's private buffer */
559 sisusbcon_memcpyw((u16 *)c->vc_screenbuf, (u16 *)c->vc_origin,
560 length);
562 mutex_unlock(&sisusb->lock);
565 /* interface routine */
566 static void
567 sisusbcon_set_palette(struct vc_data *c, const unsigned char *table)
569 struct sisusb_usb_data *sisusb;
570 int i, j;
572 /* Return value not used by vt */
574 if (!con_is_visible(c))
575 return;
577 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
578 if (!sisusb)
579 return;
581 /* sisusb->lock is down */
583 if (sisusb_is_inactive(c, sisusb)) {
584 mutex_unlock(&sisusb->lock);
585 return;
588 for (i = j = 0; i < 16; i++) {
589 if (sisusb_setreg(sisusb, SISCOLIDX, table[i]))
590 break;
591 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
592 break;
593 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
594 break;
595 if (sisusb_setreg(sisusb, SISCOLDATA, c->vc_palette[j++] >> 2))
596 break;
599 mutex_unlock(&sisusb->lock);
602 /* interface routine */
603 static int
604 sisusbcon_blank(struct vc_data *c, int blank, int mode_switch)
606 struct sisusb_usb_data *sisusb;
607 u8 sr1, cr17, pmreg, cr63;
608 int ret = 0;
610 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
611 if (!sisusb)
612 return 0;
614 /* sisusb->lock is down */
616 if (mode_switch)
617 sisusb->is_gfx = blank ? 1 : 0;
619 if (sisusb_is_inactive(c, sisusb)) {
620 mutex_unlock(&sisusb->lock);
621 return 0;
624 switch (blank) {
626 case 1: /* Normal blanking: Clear screen */
627 case -1:
628 sisusbcon_memsetw((u16 *)c->vc_origin,
629 c->vc_video_erase_char,
630 c->vc_screenbuf_size);
631 sisusb_copy_memory(sisusb,
632 (unsigned char *)c->vc_origin,
633 (u32)(sisusb->vrambase +
634 (c->vc_origin - sisusb->scrbuf)),
635 c->vc_screenbuf_size);
636 sisusb->con_blanked = 1;
637 ret = 1;
638 break;
640 default: /* VESA blanking */
641 switch (blank) {
642 case 0: /* Unblank */
643 sr1 = 0x00;
644 cr17 = 0x80;
645 pmreg = 0x00;
646 cr63 = 0x00;
647 ret = 1;
648 sisusb->con_blanked = 0;
649 break;
650 case VESA_VSYNC_SUSPEND + 1:
651 sr1 = 0x20;
652 cr17 = 0x80;
653 pmreg = 0x80;
654 cr63 = 0x40;
655 break;
656 case VESA_HSYNC_SUSPEND + 1:
657 sr1 = 0x20;
658 cr17 = 0x80;
659 pmreg = 0x40;
660 cr63 = 0x40;
661 break;
662 case VESA_POWERDOWN + 1:
663 sr1 = 0x20;
664 cr17 = 0x00;
665 pmreg = 0xc0;
666 cr63 = 0x40;
667 break;
668 default:
669 mutex_unlock(&sisusb->lock);
670 return -EINVAL;
673 sisusb_setidxregandor(sisusb, SISSR, 0x01, ~0x20, sr1);
674 sisusb_setidxregandor(sisusb, SISCR, 0x17, 0x7f, cr17);
675 sisusb_setidxregandor(sisusb, SISSR, 0x1f, 0x3f, pmreg);
676 sisusb_setidxregandor(sisusb, SISCR, 0x63, 0xbf, cr63);
680 mutex_unlock(&sisusb->lock);
682 return ret;
685 /* interface routine */
686 static void
687 sisusbcon_scrolldelta(struct vc_data *c, int lines)
689 struct sisusb_usb_data *sisusb;
691 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
692 if (!sisusb)
693 return;
695 /* sisusb->lock is down */
697 if (sisusb_is_inactive(c, sisusb)) {
698 mutex_unlock(&sisusb->lock);
699 return;
702 vc_scrolldelta_helper(c, lines, sisusb->con_rolled_over,
703 (void *)sisusb->scrbuf, sisusb->scrbuf_size);
705 sisusbcon_set_start_address(sisusb, c);
707 mutex_unlock(&sisusb->lock);
710 /* Interface routine */
711 static void
712 sisusbcon_cursor(struct vc_data *c, int mode)
714 struct sisusb_usb_data *sisusb;
715 int from, to, baseline;
717 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
718 if (!sisusb)
719 return;
721 /* sisusb->lock is down */
723 if (sisusb_is_inactive(c, sisusb)) {
724 mutex_unlock(&sisusb->lock);
725 return;
728 if (c->vc_origin != c->vc_visible_origin) {
729 c->vc_visible_origin = c->vc_origin;
730 sisusbcon_set_start_address(sisusb, c);
733 if (mode == CM_ERASE) {
734 sisusb_setidxregor(sisusb, SISCR, 0x0a, 0x20);
735 sisusb->sisusb_cursor_size_to = -1;
736 mutex_unlock(&sisusb->lock);
737 return;
740 sisusb_set_cursor(sisusb, (c->vc_pos - sisusb->scrbuf) / 2);
742 baseline = c->vc_font.height - (c->vc_font.height < 10 ? 1 : 2);
744 switch (c->vc_cursor_type & 0x0f) {
745 case CUR_BLOCK: from = 1;
746 to = c->vc_font.height;
747 break;
748 case CUR_TWO_THIRDS: from = c->vc_font.height / 3;
749 to = baseline;
750 break;
751 case CUR_LOWER_HALF: from = c->vc_font.height / 2;
752 to = baseline;
753 break;
754 case CUR_LOWER_THIRD: from = (c->vc_font.height * 2) / 3;
755 to = baseline;
756 break;
757 case CUR_NONE: from = 31;
758 to = 30;
759 break;
760 default:
761 case CUR_UNDERLINE: from = baseline - 1;
762 to = baseline;
763 break;
766 if (sisusb->sisusb_cursor_size_from != from ||
767 sisusb->sisusb_cursor_size_to != to) {
769 sisusb_setidxreg(sisusb, SISCR, 0x0a, from);
770 sisusb_setidxregandor(sisusb, SISCR, 0x0b, 0xe0, to);
772 sisusb->sisusb_cursor_size_from = from;
773 sisusb->sisusb_cursor_size_to = to;
776 mutex_unlock(&sisusb->lock);
779 static bool
780 sisusbcon_scroll_area(struct vc_data *c, struct sisusb_usb_data *sisusb,
781 unsigned int t, unsigned int b, enum con_scroll dir,
782 unsigned int lines)
784 int cols = sisusb->sisusb_num_columns;
785 int length = ((b - t) * cols) * 2;
786 u16 eattr = c->vc_video_erase_char;
788 /* sisusb->lock is down */
790 /* Scroll an area which does not match the
791 * visible screen's dimensions. This needs
792 * to be done separately, as it does not
793 * use hardware panning.
796 switch (dir) {
798 case SM_UP:
799 sisusbcon_memmovew(SISUSB_VADDR(0, t),
800 SISUSB_VADDR(0, t + lines),
801 (b - t - lines) * cols * 2);
802 sisusbcon_memsetw(SISUSB_VADDR(0, b - lines), eattr,
803 lines * cols * 2);
804 break;
806 case SM_DOWN:
807 sisusbcon_memmovew(SISUSB_VADDR(0, t + lines),
808 SISUSB_VADDR(0, t),
809 (b - t - lines) * cols * 2);
810 sisusbcon_memsetw(SISUSB_VADDR(0, t), eattr,
811 lines * cols * 2);
812 break;
815 sisusb_copy_memory(sisusb, (char *)SISUSB_VADDR(0, t),
816 (long)SISUSB_HADDR(0, t), length);
818 mutex_unlock(&sisusb->lock);
820 return true;
823 /* Interface routine */
824 static bool
825 sisusbcon_scroll(struct vc_data *c, unsigned int t, unsigned int b,
826 enum con_scroll dir, unsigned int lines)
828 struct sisusb_usb_data *sisusb;
829 u16 eattr = c->vc_video_erase_char;
830 int copyall = 0;
831 unsigned long oldorigin;
832 unsigned int delta = lines * c->vc_size_row;
833 u32 originoffset;
835 /* Returning != 0 means we have done the scrolling successfully.
836 * Returning 0 makes vt do the scrolling on its own.
837 * Note that con_scroll is only called if the console is
838 * visible. In that case, the origin should be our buffer,
839 * not the vt's private one.
842 if (!lines)
843 return true;
845 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
846 if (!sisusb)
847 return false;
849 /* sisusb->lock is down */
851 if (sisusb_is_inactive(c, sisusb)) {
852 mutex_unlock(&sisusb->lock);
853 return false;
856 /* Special case */
857 if (t || b != c->vc_rows)
858 return sisusbcon_scroll_area(c, sisusb, t, b, dir, lines);
860 if (c->vc_origin != c->vc_visible_origin) {
861 c->vc_visible_origin = c->vc_origin;
862 sisusbcon_set_start_address(sisusb, c);
865 /* limit amount to maximum realistic size */
866 if (lines > c->vc_rows)
867 lines = c->vc_rows;
869 oldorigin = c->vc_origin;
871 switch (dir) {
873 case SM_UP:
875 if (c->vc_scr_end + delta >=
876 sisusb->scrbuf + sisusb->scrbuf_size) {
877 sisusbcon_memcpyw((u16 *)sisusb->scrbuf,
878 (u16 *)(oldorigin + delta),
879 c->vc_screenbuf_size - delta);
880 c->vc_origin = sisusb->scrbuf;
881 sisusb->con_rolled_over = oldorigin - sisusb->scrbuf;
882 copyall = 1;
883 } else
884 c->vc_origin += delta;
886 sisusbcon_memsetw(
887 (u16 *)(c->vc_origin + c->vc_screenbuf_size - delta),
888 eattr, delta);
890 break;
892 case SM_DOWN:
894 if (oldorigin - delta < sisusb->scrbuf) {
895 sisusbcon_memmovew((u16 *)(sisusb->scrbuf +
896 sisusb->scrbuf_size -
897 c->vc_screenbuf_size +
898 delta),
899 (u16 *)oldorigin,
900 c->vc_screenbuf_size - delta);
901 c->vc_origin = sisusb->scrbuf +
902 sisusb->scrbuf_size -
903 c->vc_screenbuf_size;
904 sisusb->con_rolled_over = 0;
905 copyall = 1;
906 } else
907 c->vc_origin -= delta;
909 c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
911 scr_memsetw((u16 *)(c->vc_origin), eattr, delta);
913 break;
916 originoffset = (u32)(c->vc_origin - sisusb->scrbuf);
918 if (copyall)
919 sisusb_copy_memory(sisusb,
920 (char *)c->vc_origin,
921 (u32)(sisusb->vrambase + originoffset),
922 c->vc_screenbuf_size);
923 else if (dir == SM_UP)
924 sisusb_copy_memory(sisusb,
925 (char *)c->vc_origin + c->vc_screenbuf_size - delta,
926 (u32)sisusb->vrambase + originoffset +
927 c->vc_screenbuf_size - delta,
928 delta);
929 else
930 sisusb_copy_memory(sisusb,
931 (char *)c->vc_origin,
932 (u32)(sisusb->vrambase + originoffset),
933 delta);
935 c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
936 c->vc_visible_origin = c->vc_origin;
938 sisusbcon_set_start_address(sisusb, c);
940 c->vc_pos = c->vc_pos - oldorigin + c->vc_origin;
942 mutex_unlock(&sisusb->lock);
944 return true;
947 /* Interface routine */
948 static int
949 sisusbcon_set_origin(struct vc_data *c)
951 struct sisusb_usb_data *sisusb;
953 /* Returning != 0 means we were successful.
954 * Returning 0 will vt make to use its own
955 * screenbuffer as the origin.
958 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
959 if (!sisusb)
960 return 0;
962 /* sisusb->lock is down */
964 if (sisusb_is_inactive(c, sisusb) || sisusb->con_blanked) {
965 mutex_unlock(&sisusb->lock);
966 return 0;
969 c->vc_origin = c->vc_visible_origin = sisusb->scrbuf;
971 sisusbcon_set_start_address(sisusb, c);
973 sisusb->con_rolled_over = 0;
975 mutex_unlock(&sisusb->lock);
977 return true;
980 /* Interface routine */
981 static int
982 sisusbcon_resize(struct vc_data *c, unsigned int newcols, unsigned int newrows,
983 unsigned int user)
985 struct sisusb_usb_data *sisusb;
986 int fh;
988 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
989 if (!sisusb)
990 return -ENODEV;
992 fh = sisusb->current_font_height;
994 mutex_unlock(&sisusb->lock);
996 /* We are quite unflexible as regards resizing. The vt code
997 * handles sizes where the line length isn't equal the pitch
998 * quite badly. As regards the rows, our panning tricks only
999 * work well if the number of rows equals the visible number
1000 * of rows.
1003 if (newcols != 80 || c->vc_scan_lines / fh != newrows)
1004 return -EINVAL;
1006 return 0;
1010 sisusbcon_do_font_op(struct sisusb_usb_data *sisusb, int set, int slot,
1011 u8 *arg, int cmapsz, int ch512, int dorecalc,
1012 struct vc_data *c, int fh, int uplock)
1014 int font_select = 0x00, i, err = 0;
1015 u32 offset = 0;
1016 u8 dummy;
1018 /* sisusb->lock is down */
1021 * The default font is kept in slot 0.
1022 * A user font is loaded in slot 2 (256 ch)
1023 * or 2+3 (512 ch).
1026 if ((slot != 0 && slot != 2) || !fh) {
1027 if (uplock)
1028 mutex_unlock(&sisusb->lock);
1029 return -EINVAL;
1032 if (set)
1033 sisusb->font_slot = slot;
1035 /* Default font is always 256 */
1036 if (slot == 0)
1037 ch512 = 0;
1038 else
1039 offset = 4 * cmapsz;
1041 font_select = (slot == 0) ? 0x00 : (ch512 ? 0x0e : 0x0a);
1043 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x01); /* Reset */
1044 err |= sisusb_setidxreg(sisusb, SISSR, 0x02, 0x04); /* Write to plane 2 */
1045 err |= sisusb_setidxreg(sisusb, SISSR, 0x04, 0x07); /* Memory mode a0-bf */
1046 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x03); /* Reset */
1048 if (err)
1049 goto font_op_error;
1051 err |= sisusb_setidxreg(sisusb, SISGR, 0x04, 0x03); /* Select plane read 2 */
1052 err |= sisusb_setidxreg(sisusb, SISGR, 0x05, 0x00); /* Disable odd/even */
1053 err |= sisusb_setidxreg(sisusb, SISGR, 0x06, 0x00); /* Address range a0-bf */
1055 if (err)
1056 goto font_op_error;
1058 if (arg) {
1059 if (set)
1060 for (i = 0; i < cmapsz; i++) {
1061 err |= sisusb_writeb(sisusb,
1062 sisusb->vrambase + offset + i,
1063 arg[i]);
1064 if (err)
1065 break;
1067 else
1068 for (i = 0; i < cmapsz; i++) {
1069 err |= sisusb_readb(sisusb,
1070 sisusb->vrambase + offset + i,
1071 &arg[i]);
1072 if (err)
1073 break;
1077 * In 512-character mode, the character map is not contiguous if
1078 * we want to remain EGA compatible -- which we do
1081 if (ch512) {
1082 if (set)
1083 for (i = 0; i < cmapsz; i++) {
1084 err |= sisusb_writeb(sisusb,
1085 sisusb->vrambase + offset +
1086 (2 * cmapsz) + i,
1087 arg[cmapsz + i]);
1088 if (err)
1089 break;
1091 else
1092 for (i = 0; i < cmapsz; i++) {
1093 err |= sisusb_readb(sisusb,
1094 sisusb->vrambase + offset +
1095 (2 * cmapsz) + i,
1096 &arg[cmapsz + i]);
1097 if (err)
1098 break;
1103 if (err)
1104 goto font_op_error;
1106 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x01); /* Reset */
1107 err |= sisusb_setidxreg(sisusb, SISSR, 0x02, 0x03); /* Write to planes 0+1 */
1108 err |= sisusb_setidxreg(sisusb, SISSR, 0x04, 0x03); /* Memory mode a0-bf */
1109 if (set)
1110 sisusb_setidxreg(sisusb, SISSR, 0x03, font_select);
1111 err |= sisusb_setidxreg(sisusb, SISSR, 0x00, 0x03); /* Reset end */
1113 if (err)
1114 goto font_op_error;
1116 err |= sisusb_setidxreg(sisusb, SISGR, 0x04, 0x00); /* Select plane read 0 */
1117 err |= sisusb_setidxreg(sisusb, SISGR, 0x05, 0x10); /* Enable odd/even */
1118 err |= sisusb_setidxreg(sisusb, SISGR, 0x06, 0x06); /* Address range b8-bf */
1120 if (err)
1121 goto font_op_error;
1123 if ((set) && (ch512 != sisusb->current_font_512)) {
1125 /* Font is shared among all our consoles.
1126 * And so is the hi_font_mask.
1128 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1129 struct vc_data *d = vc_cons[i].d;
1130 if (d && d->vc_sw == &sisusb_con)
1131 d->vc_hi_font_mask = ch512 ? 0x0800 : 0;
1134 sisusb->current_font_512 = ch512;
1136 /* color plane enable register:
1137 256-char: enable intensity bit
1138 512-char: disable intensity bit */
1139 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1140 sisusb_setreg(sisusb, SISAR, 0x12);
1141 sisusb_setreg(sisusb, SISAR, ch512 ? 0x07 : 0x0f);
1143 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1144 sisusb_setreg(sisusb, SISAR, 0x20);
1145 sisusb_getreg(sisusb, SISINPSTAT, &dummy);
1148 if (dorecalc) {
1151 * Adjust the screen to fit a font of a certain height
1154 unsigned char ovr, vde, fsr;
1155 int rows = 0, maxscan = 0;
1157 if (c) {
1159 /* Number of video rows */
1160 rows = c->vc_scan_lines / fh;
1161 /* Scan lines to actually display-1 */
1162 maxscan = rows * fh - 1;
1164 /*printk(KERN_DEBUG "sisusb recalc rows %d maxscan %d fh %d sl %d\n",
1165 rows, maxscan, fh, c->vc_scan_lines);*/
1167 sisusb_getidxreg(sisusb, SISCR, 0x07, &ovr);
1168 vde = maxscan & 0xff;
1169 ovr = (ovr & 0xbd) |
1170 ((maxscan & 0x100) >> 7) |
1171 ((maxscan & 0x200) >> 3);
1172 sisusb_setidxreg(sisusb, SISCR, 0x07, ovr);
1173 sisusb_setidxreg(sisusb, SISCR, 0x12, vde);
1177 sisusb_getidxreg(sisusb, SISCR, 0x09, &fsr);
1178 fsr = (fsr & 0xe0) | (fh - 1);
1179 sisusb_setidxreg(sisusb, SISCR, 0x09, fsr);
1180 sisusb->current_font_height = fh;
1182 sisusb->sisusb_cursor_size_from = -1;
1183 sisusb->sisusb_cursor_size_to = -1;
1187 if (uplock)
1188 mutex_unlock(&sisusb->lock);
1190 if (dorecalc && c) {
1191 int rows = c->vc_scan_lines / fh;
1193 /* Now adjust our consoles' size */
1195 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1196 struct vc_data *vc = vc_cons[i].d;
1198 if (vc && vc->vc_sw == &sisusb_con) {
1199 if (con_is_visible(vc)) {
1200 vc->vc_sw->con_cursor(vc, CM_DRAW);
1202 vc->vc_font.height = fh;
1203 vc_resize(vc, 0, rows);
1208 return 0;
1210 font_op_error:
1211 if (uplock)
1212 mutex_unlock(&sisusb->lock);
1214 return -EIO;
1217 /* Interface routine */
1218 static int
1219 sisusbcon_font_set(struct vc_data *c, struct console_font *font,
1220 unsigned flags)
1222 struct sisusb_usb_data *sisusb;
1223 unsigned charcount = font->charcount;
1225 if (font->width != 8 || (charcount != 256 && charcount != 512))
1226 return -EINVAL;
1228 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
1229 if (!sisusb)
1230 return -ENODEV;
1232 /* sisusb->lock is down */
1234 /* Save the user-provided font into a buffer. This
1235 * is used for restoring text mode after quitting
1236 * from X and for the con_getfont routine.
1238 if (sisusb->font_backup) {
1239 if (sisusb->font_backup_size < charcount) {
1240 vfree(sisusb->font_backup);
1241 sisusb->font_backup = NULL;
1245 if (!sisusb->font_backup)
1246 sisusb->font_backup = vmalloc(charcount * 32);
1248 if (sisusb->font_backup) {
1249 memcpy(sisusb->font_backup, font->data, charcount * 32);
1250 sisusb->font_backup_size = charcount;
1251 sisusb->font_backup_height = font->height;
1252 sisusb->font_backup_512 = (charcount == 512) ? 1 : 0;
1255 /* do_font_op ups sisusb->lock */
1257 return sisusbcon_do_font_op(sisusb, 1, 2, font->data,
1258 8192, (charcount == 512),
1259 (!(flags & KD_FONT_FLAG_DONT_RECALC)) ? 1 : 0,
1260 c, font->height, 1);
1263 /* Interface routine */
1264 static int
1265 sisusbcon_font_get(struct vc_data *c, struct console_font *font)
1267 struct sisusb_usb_data *sisusb;
1269 sisusb = sisusb_get_sisusb_lock_and_check(c->vc_num);
1270 if (!sisusb)
1271 return -ENODEV;
1273 /* sisusb->lock is down */
1275 font->width = 8;
1276 font->height = c->vc_font.height;
1277 font->charcount = 256;
1279 if (!font->data) {
1280 mutex_unlock(&sisusb->lock);
1281 return 0;
1284 if (!sisusb->font_backup) {
1285 mutex_unlock(&sisusb->lock);
1286 return -ENODEV;
1289 /* Copy 256 chars only, like vgacon */
1290 memcpy(font->data, sisusb->font_backup, 256 * 32);
1292 mutex_unlock(&sisusb->lock);
1294 return 0;
1298 * The console `switch' structure for the sisusb console
1301 static const struct consw sisusb_con = {
1302 .owner = THIS_MODULE,
1303 .con_startup = sisusbcon_startup,
1304 .con_init = sisusbcon_init,
1305 .con_deinit = sisusbcon_deinit,
1306 .con_clear = sisusbcon_clear,
1307 .con_putc = sisusbcon_putc,
1308 .con_putcs = sisusbcon_putcs,
1309 .con_cursor = sisusbcon_cursor,
1310 .con_scroll = sisusbcon_scroll,
1311 .con_switch = sisusbcon_switch,
1312 .con_blank = sisusbcon_blank,
1313 .con_font_set = sisusbcon_font_set,
1314 .con_font_get = sisusbcon_font_get,
1315 .con_set_palette = sisusbcon_set_palette,
1316 .con_scrolldelta = sisusbcon_scrolldelta,
1317 .con_build_attr = sisusbcon_build_attr,
1318 .con_invert_region = sisusbcon_invert_region,
1319 .con_set_origin = sisusbcon_set_origin,
1320 .con_save_screen = sisusbcon_save_screen,
1321 .con_resize = sisusbcon_resize,
1324 /* Our very own dummy console driver */
1326 static const char *sisusbdummycon_startup(void)
1328 return "SISUSBVGADUMMY";
1331 static void sisusbdummycon_init(struct vc_data *vc, int init)
1333 vc->vc_can_do_color = 1;
1334 if (init) {
1335 vc->vc_cols = 80;
1336 vc->vc_rows = 25;
1337 } else
1338 vc_resize(vc, 80, 25);
1341 static int sisusbdummycon_dummy(void)
1343 return 0;
1346 #define SISUSBCONDUMMY (void *)sisusbdummycon_dummy
1348 static const struct consw sisusb_dummy_con = {
1349 .owner = THIS_MODULE,
1350 .con_startup = sisusbdummycon_startup,
1351 .con_init = sisusbdummycon_init,
1352 .con_deinit = SISUSBCONDUMMY,
1353 .con_clear = SISUSBCONDUMMY,
1354 .con_putc = SISUSBCONDUMMY,
1355 .con_putcs = SISUSBCONDUMMY,
1356 .con_cursor = SISUSBCONDUMMY,
1357 .con_scroll = SISUSBCONDUMMY,
1358 .con_switch = SISUSBCONDUMMY,
1359 .con_blank = SISUSBCONDUMMY,
1360 .con_font_set = SISUSBCONDUMMY,
1361 .con_font_get = SISUSBCONDUMMY,
1362 .con_font_default = SISUSBCONDUMMY,
1363 .con_font_copy = SISUSBCONDUMMY,
1367 sisusb_console_init(struct sisusb_usb_data *sisusb, int first, int last)
1369 int i, ret;
1371 mutex_lock(&sisusb->lock);
1373 /* Erm.. that should not happen */
1374 if (sisusb->haveconsole || !sisusb->SiS_Pr) {
1375 mutex_unlock(&sisusb->lock);
1376 return 1;
1379 sisusb->con_first = first;
1380 sisusb->con_last = last;
1382 if (first > last ||
1383 first > MAX_NR_CONSOLES ||
1384 last > MAX_NR_CONSOLES) {
1385 mutex_unlock(&sisusb->lock);
1386 return 1;
1389 /* If gfxcore not initialized or no consoles given, quit graciously */
1390 if (!sisusb->gfxinit || first < 1 || last < 1) {
1391 mutex_unlock(&sisusb->lock);
1392 return 0;
1395 sisusb->sisusb_cursor_loc = -1;
1396 sisusb->sisusb_cursor_size_from = -1;
1397 sisusb->sisusb_cursor_size_to = -1;
1399 /* Set up text mode (and upload default font) */
1400 if (sisusb_reset_text_mode(sisusb, 1)) {
1401 mutex_unlock(&sisusb->lock);
1402 dev_err(&sisusb->sisusb_dev->dev, "Failed to set up text mode\n");
1403 return 1;
1406 /* Initialize some gfx registers */
1407 sisusb_initialize(sisusb);
1409 for (i = first - 1; i <= last - 1; i++) {
1410 /* Save sisusb for our interface routines */
1411 mysisusbs[i] = sisusb;
1414 /* Initial console setup */
1415 sisusb->sisusb_num_columns = 80;
1417 /* Use a 32K buffer (matches b8000-bffff area) */
1418 sisusb->scrbuf_size = 32 * 1024;
1420 /* Allocate screen buffer */
1421 if (!(sisusb->scrbuf = (unsigned long)vmalloc(sisusb->scrbuf_size))) {
1422 mutex_unlock(&sisusb->lock);
1423 dev_err(&sisusb->sisusb_dev->dev, "Failed to allocate screen buffer\n");
1424 return 1;
1427 mutex_unlock(&sisusb->lock);
1429 /* Now grab the desired console(s) */
1430 console_lock();
1431 ret = do_take_over_console(&sisusb_con, first - 1, last - 1, 0);
1432 console_unlock();
1433 if (!ret)
1434 sisusb->haveconsole = 1;
1435 else {
1436 for (i = first - 1; i <= last - 1; i++)
1437 mysisusbs[i] = NULL;
1440 return ret;
1443 void
1444 sisusb_console_exit(struct sisusb_usb_data *sisusb)
1446 int i;
1448 /* This is called if the device is disconnected
1449 * and while disconnect and lock semaphores
1450 * are up. This should be save because we
1451 * can't lose our sisusb any other way but by
1452 * disconnection (and hence, the disconnect
1453 * sema is for protecting all other access
1454 * functions from disconnection, not the
1455 * other way round).
1458 /* Now what do we do in case of disconnection:
1459 * One alternative would be to simply call
1460 * give_up_console(). Nah, not a good idea.
1461 * give_up_console() is obviously buggy as it
1462 * only discards the consw pointer from the
1463 * driver_map, but doesn't adapt vc->vc_sw
1464 * of the affected consoles. Hence, the next
1465 * call to any of the console functions will
1466 * eventually take a trip to oops county.
1467 * Also, give_up_console for some reason
1468 * doesn't decrement our module refcount.
1469 * Instead, we switch our consoles to a private
1470 * dummy console. This, of course, keeps our
1471 * refcount up as well, but it works perfectly.
1474 if (sisusb->haveconsole) {
1475 for (i = 0; i < MAX_NR_CONSOLES; i++)
1476 if (sisusb->havethisconsole[i]) {
1477 console_lock();
1478 do_take_over_console(&sisusb_dummy_con, i, i, 0);
1479 console_unlock();
1480 /* At this point, con_deinit for all our
1481 * consoles is executed by do_take_over_console().
1484 sisusb->haveconsole = 0;
1487 vfree((void *)sisusb->scrbuf);
1488 sisusb->scrbuf = 0;
1490 vfree(sisusb->font_backup);
1491 sisusb->font_backup = NULL;
1494 void __init sisusb_init_concode(void)
1496 int i;
1498 for (i = 0; i < MAX_NR_CONSOLES; i++)
1499 mysisusbs[i] = NULL;
1502 #endif /* INCL_CON */