/*
* Copyright (c) 1988 University of Utah.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* the Systems Programming Group of the University of Utah Computer
* Science Department.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* from: Utah $Hdr: ite.c 1.1 90/07/09$
*
* @(#)ite.c 7.6 (Berkeley) 5/16/91
*/
/*
* ite - bitmaped terminal.
* Supports VT200, a few terminal features will be unavailable until
* the system actually probes the device (i.e. not after consinit())
*/
/*
* # of chars are output in a single itestart() call.
* If this is too big, user processes will be blocked out for
* long periods of time while we are emptying the queue in itestart().
* If it is too small, console output will be very ragged.
*/
#define ITEBURST 64
static int start_repeat_timeo = 20; /* /100: initial timeout till pressed
key repeats */
static int next_repeat_timeo = 3; /* /100: timeout when repeating for
next char */
gp = aux;
if (cf->cf_loc[GRFCF_GRFADDR] != gp->g_cfaddr)
return 0;
return 1;
}
/*
* iteinit() is the standard entry point for initialization of
* an ite device, it is also called from ite_cninit().
*/
static void
iteattach(device_t parent, device_t self, void *aux)
{
struct ite_softc *ip;
struct grf_softc *gp;
/*
* Perform functions necessary to setup device as a terminal emulator.
*/
int
iteon(dev_t dev, int flag)
{
int unit = UNIT(dev);
struct ite_softc *ip;
/*
* "Shut down" device as terminal emulator.
* Note that we do not deinit the console device unless forced.
* Deinit'ing the console every time leads to a very active
* screen when processing /etc/rc.
*/
void
iteoff(dev_t dev, int flag)
{
int unit = UNIT(dev);
struct ite_softc *ip;
/* XXX check whether when call from grf.c */
if (unit < 0 || unit >= ite_cd.cd_ndevs ||
(ip = getitesp(dev)) == NULL || (ip->flags & ITE_ALIVE) == 0)
return;
if ((flag & 2) != 0)
ip->flags |= ITE_INGRF;
/*
* XXX When the system is rebooted with "reboot", init(8)
* kills the last process to have the console open.
* If we don't revent the ITE_ACTIVE bit from being
* cleared, we will never see messages printed during
* the process of rebooting.
*/
if ((flag & 2) == 0 && (ip->flags & ITE_ISCONS) == 0) {
ip->flags &= ~ITE_ACTIVE;
#if NKBD > 0
mfp_send_usart(0x48); /* XXX */
#endif
}
}
/*
* standard entry points to the device.
*/
/* ARGSUSED */
static int
iteopen(dev_t dev, int mode, int devtype, struct lwp *l)
{
int unit = UNIT(dev);
struct tty *tp;
struct ite_softc *ip;
int error;
int first = 0;
getitesp(tp->t_dev);
/*
* (Potentially) lower priority. We only need to protect ourselves
* from keyboard interrupts since that is all that can affect the
* state of our tty (kernel printf doesn't go through this routine).
*/
s = spltty();
if ((tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) != 0)
goto out;
tp->t_state |= TS_BUSY;
rbp = &tp->t_outq;
len = q_to_b(rbp, buf, ITEBURST);
/*splx(s);*/
/* Here is a really good place to implement pre/jumpscroll() */
ite_putstr(buf, len, tp->t_dev);
/*s = spltty();*/
tp->t_state &= ~TS_BUSY;
/* we have characters remaining. */
if (ttypull(tp)) {
tp->t_state |= TS_TIMEOUT;
callout_schedule(&tp->t_rstrt_ch, 1);
}
out:
splx(s);
}
/* XXX called after changes made in underlying grf layer. */
/* I want to nuke this */
void
ite_reinit(dev_t dev)
{
struct ite_softc *ip;
int unit = UNIT(dev);
/* XXX check whether when call from grf.c */
if (unit < 0 || unit >= ite_cd.cd_ndevs ||
(ip = getitesp(dev)) == NULL)
return;
/* have to make sure we're at spltty in here */
s = spltty();
up = c & 0x80 ? 1 : 0;
c &= 0x7f;
code = 0;
mask = 0;
if (c >= KBD_LEFT_ALT &&
!(c >= 0x63 && c <= 0x6c)) { /* 0x63: F1, 0x6c:F10 */
switch (c) {
case KBD_LEFT_SHIFT:
mask = KBD_MOD_SHIFT;
break;
case KBD_LEFT_ALT:
mask = KBD_MOD_LALT;
break;
case KBD_RIGHT_ALT:
mask = KBD_MOD_RALT;
break;
case KBD_LEFT_META:
mask = KBD_MOD_LMETA;
break;
case KBD_RIGHT_META:
mask = KBD_MOD_RMETA;
break;
case KBD_CAPS_LOCK:
/*
* capslock already behaves `right', don't need to keep
* track of the state in here.
*/
mask = KBD_MOD_CAPS;
break;
case KBD_CTRL:
mask = KBD_MOD_CTRL;
break;
case KBD_OPT1:
mask = KBD_MOD_OPT1;
break;
case KBD_OPT2:
mask = KBD_MOD_OPT2;
break;
case KBD_RECONNECT:
if (up) { /* ite got 0xff */
kbd_setLED();
}
break;
}
if ((mask & KBD_MOD_CAPS) != 0) {
if (!up) {
mod ^= KBD_MOD_CAPS;
kbdled ^= LED_CAPS_LOCK;
kbd_setLED();
}
} else if (up) {
mod &= ~mask;
} else
mod |= mask;
/*
* return even if it wasn't a modifier key, the other
* codes up here are either special (like reset warning),
* or not yet defined
*/
splx(s);
return;
}
if (up) {
splx(s);
return;
}
/*
* intercept LAlt-LMeta-F1 here to switch back to original ascii-keymap.
* this should probably be configurable..
*/
if (mod == (KBD_MOD_LALT|KBD_MOD_LMETA) && c == 0x63) {
memcpy(&kbdmap, &ascii_kbdmap, sizeof(struct kbdmap));
splx(s);
return;
}
/* translate modifiers */
if ((mod & KBD_MOD_SHIFT) != 0) {
if ((mod & KBD_MOD_ALT) != 0)
key = kbdmap.alt_shift_keys[c];
else
key = kbdmap.shift_keys[c];
} else if ((mod & KBD_MOD_ALT) != 0)
key = kbdmap.alt_keys[c];
else {
key = kbdmap.keys[c];
/* if CAPS and key is CAPable (no pun intended) */
if ((mod & KBD_MOD_CAPS) != 0 &&
(key.mode & KBD_MODE_CAPS) != 0)
key = kbdmap.shift_keys[c];
else if ((mod & KBD_MOD_OPT2) != 0 &&
(key.mode & KBD_MODE_KPAD) != 0)
key = kbdmap.shift_keys[c];
}
code = key.code;
/* handle dead keys */
if ((key.mode & KBD_MODE_DEAD) != 0) {
splx(s);
return;
}
/* if not string, apply META and CTRL modifiers */
if ((key.mode & KBD_MODE_STRING) == 0 &&
((key.mode & KBD_MODE_KPAD) == 0 ||
(kbd_ite != NULL && kbd_ite->keypad_appmode == 0))) {
if ((mod & KBD_MOD_CTRL) != 0 &&
(code == ' ' || (code >= '@' && code <= 'z')))
code &= 0x1f;
if ((mod & KBD_MOD_META) != 0)
code |= 0x80;
} else if ((key.mode & KBD_MODE_KPAD) != 0 &&
(kbd_ite != NULL && kbd_ite->keypad_appmode != 0)) {
static const char * const in = "0123456789-+.\r()/*";
static const char * const out = "pqrstuvwxymlnMPQRS";
char *cp = strchr(in, code);
/*
* keypad-appmode sends SS3 followed by the above
* translated character
*/
(*kbd_tty->t_linesw->l_rint)(27, kbd_tty);
(*kbd_tty->t_linesw->l_rint)('O', kbd_tty);
(*kbd_tty->t_linesw->l_rint)(out[cp - in], kbd_tty);
splx(s);
return;
} else {
/* *NO* I don't like this.... */
static u_char app_cursor[] = {
3, 27, 'O', 'A',
3, 27, 'O', 'B',
3, 27, 'O', 'C',
3, 27, 'O', 'D'
};
str = kbdmap.strings + code;
/*
* if this is a cursor key, AND it has the default
* keymap setting, AND we're in app-cursor mode, switch
* to the above table. This is *nasty* !
*/
if (c >= 0x3b && c <= 0x3e && kbd_ite->cursor_appmode != 0 &&
memcmp(str, "\x03\x1b[", 3) == 0 &&
strchr("ABCD", str[3]) != 0)
str = app_cursor + 4 * (str[3] - 'A');
/*
* using a length-byte instead of 0-termination allows
* to embed \0 into strings, although this is not used
* in the default keymap
*/
for (i = *str++; i; i--)
(*kbd_tty->t_linesw->l_rint)(*str++, kbd_tty);
splx(s);
return;
}
(*kbd_tty->t_linesw->l_rint)(code, kbd_tty);
splx(s);
return;
}
/* helper functions, makes the code below more readable */
static inline void
ite_sendstr(struct ite_softc *ip, const char *str)
{
while (*str != 0)
itesendch(*str++);
}
static inline void
alignment_display(struct ite_softc *ip)
{
int i, j;
for (j = 0; j < ip->rows; j++)
for (i = 0; i < ip->cols; i++)
SUBR_PUTC(ip, 'E', j, i, ATTR_NOR);
attrclr(ip, 0, 0, ip->rows, ip->cols);
}
static inline void
ite_dnline(struct ite_softc *ip, int n)
{
/*
* interesting.. if the cursor is outside the scrolling
* region, this command is simply ignored..
*/
if (ip->cury < ip->top_margin || ip->cury > ip->bottom_margin)
return;
n = uimin(n, ip->bottom_margin + 1 - ip->cury);
if (n <= ip->bottom_margin - ip->cury) {
SUBR_SCROLL(ip, ip->cury + n, 0, n, SCROLL_UP);
attrmov(ip, ip->cury + n, 0, ip->cury, 0,
ip->bottom_margin + 1 - ip->cury - n, ip->cols);
}
SUBR_CLEAR(ip, ip->bottom_margin - n + 1, 0, n, ip->cols);
attrclr(ip, ip->bottom_margin - n + 1, 0, n, ip->cols);
}
static inline void
ite_inline(struct ite_softc *ip, int n)
{
/*
* interesting.. if the cursor is outside the scrolling
* region, this command is simply ignored..
*/
if (ip->cury < ip->top_margin || ip->cury > ip->bottom_margin)
return;
if (n <= 0)
n = 1;
else
n = uimin(n, ip->bottom_margin + 1 - ip->cury);
if (n <= ip->bottom_margin - ip->cury) {
SUBR_SCROLL(ip, ip->cury, 0, n, SCROLL_DOWN);
attrmov(ip, ip->cury, 0, ip->cury + n, 0,
ip->bottom_margin + 1 - ip->cury - n, ip->cols);
}
SUBR_CLEAR(ip, ip->cury, 0, n, ip->cols);
attrclr(ip, ip->cury, 0, n, ip->cols);
ip->curx = 0;
}
case ESC:
switch (c) {
/*
* first 7bit equivalents for the 8bit control
* characters
*/
case 'D':
c = IND;
ip->escape = 0;
break;
/*
* and fall into the next switch below
* (same for all `break')
*/
case 'E':
/* next line */
c = NEL;
ip->escape = 0;
break;
case 'H':
/* set TAB at current col */
c = HTS;
ip->escape = 0;
break;
case 'M':
/* reverse index */
c = RI;
ip->escape = 0;
break;
case 'N':
/* single shift G2 */
c = SS2;
ip->escape = 0;
break;
case 'O':
/* single shift G3 */
c = SS3;
ip->escape = 0;
break;
case 'P':
/* DCS detected */
c = DCS;
ip->escape = 0;
break;
case '[':
c = CSI;
ip->escape = 0;
break;
case '\\':
/* String Terminator */
c = ST;
ip->escape = 0;
#if defined(ITE_SIXEL)
if (ip->decsixel_y != 0) {
ite_lf(ip);
}
#endif
break;
case ']':
c = OSC;
ip->escape = 0;
break;
case '^':
c = PM;
ip->escape = 0;
break;
case '_':
c = APC;
ip->escape = 0;
break;
/* introduces 7/8bit control */
case ' ':
/* can be followed by either F or G */
ip->escape = ' ';
break;
/* a lot of character set selections, not yet used... */
/* 94-character sets: */
case '(': /* G0 */
case ')': /* G1 */
ip->escape = c;
return;
case '*': /* G2 */
case '+': /* G3 */
case 'B': /* ASCII */
case 'A': /* ISO latin 1 */
case '<': /* user preferred suplemental */
case '0': /* DEC special graphics */
/* 96-character sets: */
case '-': /* G1 */
case '.': /* G2 */
case '/': /* G3 */
/* national character sets: */
case '4': /* dutch */
case '5':
case 'C': /* finnish */
case 'R': /* french */
case 'Q': /* french canadian */
case 'K': /* german */
case 'Y': /* italian */
case '6': /* norwegian/danish */
/* note: %5 and %6 are not supported (two chars..) */
ip->escape = 0;
/* just ignore for now */
return;
/* 94-multibyte character sets designate */
case '$':
ip->escape = '$';
return;
case 'Z': /* request ID */
if (ip->emul_level == EMUL_VT100) {
/* XXX not clean */
ite_sendstr(ip, "\033[61;0c");
} else {
/* XXX not clean */
ite_sendstr(ip, "\033[63;0c");
}
ip->escape = 0;
return;
/* default catch all for not recognized ESC sequences */
default:
ip->escape = 0;
return;
}
break;
case '(': /* designate G0 */
switch (c) {
case 'B': /* USASCII */
ip->G0 = CSET_ASCII;
ip->escape = 0;
return;
case 'I':
ip->G0 = CSET_JISKANA;
ip->escape = 0;
return;
case 'J':
ip->G0 = CSET_JISROMA;
ip->escape = 0;
return;
case '0': /* DEC special graphics */
ip->G0 = CSET_DECGRAPH;
ip->escape = 0;
return;
case 'A': /* British or ISO-Latin-1 */
case 'H': /* Swedish */
case 'K': /* German */
case 'R': /* French */
case 'Y': /* Italian */
case 'Z': /* Spanish */
default:
/* not supported */
ip->escape = 0;
return;
}
case ')': /* designate G1 */
ip->escape = 0;
return;
case '$': /* 94-multibyte character set */
switch (c) {
case '@':
ip->G0 = CSET_JIS1978;
ip->escape = 0;
return;
case 'B':
ip->G0 = CSET_JIS1983;
ip->escape = 0;
return;
case 'D':
ip->G0 = CSET_JIS1990;
ip->escape = 0;
return;
default:
/* not supported */
ip->escape = 0;
return;
}
case ' ':
switch (c) {
case 'F':
ip->eightbit_C1 = 0;
ip->escape = 0;
return;
case 'G':
ip->eightbit_C1 = 1;
ip->escape = 0;
return;
case CSI:
/* the biggie... */
switch (c) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ';':
case '\"':
case '$':
case '>':
if (ip->ap < ip->argbuf + MAX_ARGSIZE)
*ip->ap++ = c;
return;
case 'G':
/*
* this one was *not* in my vt320 manual but
* in a vt320 termcap entry.. who is right?
* It's supposed to set the horizontal cursor
* position.
*/
*ip->ap = 0;
x = atoi(ip->argbuf);
if (x != 0)
x--;
ip->curx = uimin(x, ip->cols - 1);
ip->escape = 0;
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'd':
/*
* same thing here, this one's for setting
* the absolute vertical cursor position.
* Not documented...
*/
*ip->ap = 0;
y = atoi(ip->argbuf);
if (y)
y--;
if (ip->inside_margins)
y += ip->top_margin;
ip->cury = uimin(y, ip->rows - 1);
ip->escape = 0;
snap_cury(ip);
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'H':
case 'f':
*ip->ap = 0;
y = atoi(ip->argbuf);
x = 0;
cp = strchr(ip->argbuf, ';');
if (cp != NULL)
x = atoi(cp + 1);
if (x != 0)
x--;
if (y != 0)
y--;
if (ip->inside_margins != 0)
y += ip->top_margin;
ip->cury = uimin(y, ip->rows - 1);
ip->curx = uimin(x, ip->cols - 1);
ip->escape = 0;
snap_cury(ip);
SUBR_CURSOR(ip, MOVE_CURSOR);
/*clr_attr(ip, ATTR_INV);*/
return;
case 'A':
/* cursor up */
n = ite_argnum(ip);
n = ip->cury - (n ? n : 1);
if (n < 0)
n = 0;
if (ip->inside_margins)
n = uimax(ip->top_margin, n);
else if (n == ip->top_margin - 1)
/*
* allow scrolling outside region,
* but don't scroll out of active
* region without explicit CUP
*/
n = ip->top_margin;
ip->cury = n;
ip->escape = 0;
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'B':
/* cursor down */
n = ite_argnum(ip);
n = ip->cury + (n ? n : 1);
n = uimin(ip->rows - 1, n);
#if 0
if (ip->inside_margins)
#endif
n = uimin(ip->bottom_margin, n);
#if 0
else if (n == ip->bottom_margin + 1)
/*
* allow scrolling outside region,
* but don't scroll out of active
* region without explicit CUP
*/
n = ip->bottom_margin;
#endif
ip->cury = n;
ip->escape = 0;
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'C':
/* cursor forward */
n = ite_argnum(ip);
n = n ? n : 1;
ip->curx = uimin(ip->curx + n, ip->cols - 1);
ip->escape = 0;
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'D':
/* cursor backward */
n = ite_argnum(ip);
n = n ? n : 1;
n = ip->curx - n;
ip->curx = n >= 0 ? n : 0;
ip->escape = 0;
SUBR_CURSOR(ip, MOVE_CURSOR);
clr_attr(ip, ATTR_INV);
return;
case 'J':
/* erase screen */
*ip->ap = 0;
n = ite_zargnum(ip);
if (n == 0)
ite_clrtoeos(ip);
else if (n == 1)
ite_clrtobos(ip);
else if (n == 2)
ite_clrscreen(ip);
ip->escape = 0;
return;
case 'K':
/* erase line */
n = ite_zargnum(ip);
if (n == 0)
ite_clrtoeol(ip);
else if (n == 1)
ite_clrtobol(ip);
else if (n == 2)
ite_clrline(ip);
ip->escape = 0;
return;
case 'S':
/* scroll up */
n = ite_zargnum(ip);
if (n <= 0)
n = 1;
else if (n > ip->rows-1)
n = ip->rows-1;
SUBR_SCROLL(ip, ip->rows-1, 0, n, SCROLL_UP);
ip->escape = 0;
return;
case 'T':
/* scroll down */
n = ite_zargnum(ip);
if (n <= 0)
n = 1;
else if (n > ip->rows-1)
n = ip->rows-1;
SUBR_SCROLL(ip, 0, 0, n, SCROLL_DOWN);
ip->escape = 0;
return;
case 'X':
/* erase character */
n = ite_argnum(ip) - 1;
n = uimin(n, ip->cols - 1 - ip->curx);
for (; n >= 0; n--) {
attrclr(ip, ip->cury, ip->curx + n,
1, 1);
SUBR_PUTC(ip, ' ',
ip->cury, ip->curx + n, ATTR_NOR);
}
ip->escape = 0;
return;
case '}': case '`':
/* status line control */
ip->escape = 0;
return;
case 'r':
/* set scrolling region */
ip->escape = 0;
*ip->ap = 0;
x = atoi(ip->argbuf);
x = x ? x : 1;
y = ip->rows;
cp = strchr(ip->argbuf, ';');
if (cp) {
y = atoi(cp + 1);
y = y ? y : ip->rows;
}
if (y <= x)
return;
x--;
y--;
ip->top_margin = uimin(x, ip->rows - 2);
ip->bottom_margin = uimin(y, ip->rows - 1);
if (ip->inside_margins) {
ip->cury = ip->top_margin;
} else
ip->cury = 0;
ip->curx = 0;
return;
case 'm':
/* big attribute setter/resetter */
{
char *c_p;
*ip->ap = 0;
/* kludge to make CSIm work (== CSI0m) */
if (ip->ap == ip->argbuf)
ip->ap++;
for (c_p = ip->argbuf; c_p < ip->ap; ) {
switch (*c_p) {
case 0:
case '0':
clr_attr(ip, ATTR_ALL);
ip->fgcolor = 7;
ip->bgcolor = 0;
c_p++;
break;
case '1':
set_attr(ip, ATTR_BOLD);
c_p++;
break;
case '2':
switch (c_p[1]) {
case '2':
clr_attr(ip, ATTR_BOLD);
c_p += 2;
break;
case '4':
clr_attr(ip, ATTR_UL);
c_p += 2;
break;
case '5':
clr_attr(ip,
ATTR_BLINK);
c_p += 2;
break;
case '7':
clr_attr(ip, ATTR_INV);
c_p += 2;
break;
default:
c_p++;
break;
}
break;
case '3':
switch (c_p[1]) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
/* foreground colors */
ip->fgcolor =
c_p[1] - '0';
c_p += 2;
break;
default:
c_p++;
break;
}
break;
case '4':
switch (c_p[1]) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
/* background colors */
ip->bgcolor =
c_p[1] - '0';
c_p += 2;
break;
default:
set_attr(ip, ATTR_UL);
c_p++;
break;
}
break;
case '?': /* CSI ? */
switch (c) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ';':
case '\"':
case '$':
/*
* Don't fill the last character; it's needed.
*/
/* XXX yeah, where ?? */
if (ip->ap < ip->argbuf + MAX_ARGSIZE - 1)
*ip->ap++ = c;
return;
case 'n':
/* Terminal Reports */
*ip->ap = 0;
if (ip->ap == &ip->argbuf[2]) {
if (!strncmp(ip->argbuf, "15", 2))
/* printer status: no printer */
ite_sendstr(ip, "\033[13n");
else if (!strncmp(ip->argbuf, "25", 2))
/* udk status */
ite_sendstr(ip, "\033[20n");
else if (!strncmp(ip->argbuf, "26", 2))
/* keyboard dialect: US */
ite_sendstr(ip, "\033[27;1n");
}
ip->escape = 0;
return;
case 'h': /* set dec private modes */
case 'l': /* reset dec private modes */
n = ite_zargnum(ip);
switch (n) {
case 1:
/* CKM - cursor key mode */
ip->cursor_appmode = (c == 'h');
break;
case 3:
/* 132/80 columns (132 == 'h') */
break;
case 4: /* smooth scroll */
break;
case 5:
/*
* light background (=='h') /
* dark background (=='l')
*/
break;
case 'K':
/* selective erase in line */
case 'J':
/* selective erase in display */
default:
ip->escape = 0;
return;
}
break;
#if defined(ITE_SIXEL)
case DCS:
if (ite_dcs(c, ip) == 0) {
return;
}
break;
#endif /* ITE_SIXEL */
default:
ip->escape = 0;
return;
}
}
switch (c) {
case 0x00: /* NUL */
case 0x01: /* SOH */
case 0x02: /* STX */
case 0x03: /* ETX */
case 0x04: /* EOT */
case 0x05: /* ENQ */
case 0x06: /* ACK */
break;
case BEL:
#if NBELL > 0
if (kbd_ite && ite_tty[device_unit(kbd_ite->device)])
opm_bell();
#endif
break;
case BS:
if (--ip->curx < 0)
ip->curx = 0;
else
SUBR_CURSOR(ip, MOVE_CURSOR);
break;
case HT:
for (n = ip->curx + 1; n < ip->cols; n++) {
if (ip->tabs[n]) {
ip->curx = n;
SUBR_CURSOR(ip, MOVE_CURSOR);
break;
}
}
break;
case VT: /* VT is treated like LF */
case FF: /* so is FF */
case LF:
/*
* cr->crlf distinction is done here, on output,
* not on input!
*/
if (ip->linefeed_newline)
ite_crlf(ip);
else
ite_lf(ip);
break;
case CR:
ite_cr(ip);
break;
case SO:
ip->GL = &ip->G1;
break;
case SI:
ip->GL = &ip->G0;
break;
case 0x10: /* DLE */
case 0x11: /* DC1/XON */
case 0x12: /* DC2 */
case 0x13: /* DC3/XOFF */
case 0x14: /* DC4 */
case 0x15: /* NAK */
case 0x16: /* SYN */
case 0x17: /* ETB */
break;
case CAN:
ip->escape = 0; /* cancel any escape sequence in progress */
break;
case 0x19: /* EM */
break;
case SUB:
ip->escape = 0; /* dito, but see below */
/* should also display a reverse question mark!! */
break;
case ESC:
ip->escape = ESC;
break;
case 0x1c: /* FS */
case 0x1d: /* GS */
case 0x1e: /* RS */
case 0x1f: /* US */
break;
/* now it gets weird.. 8bit control sequences.. */
case IND: /* index: move cursor down, scroll */
ite_index(ip);
break;
case NEL: /* next line. next line, first pos. */
ite_crlf(ip);
break;
case HTS: /* set horizontal tab */
if (ip->curx < ip->cols)
ip->tabs[ip->curx] = 1;
break;
case RI: /* reverse index */
ite_rlf(ip);
break;
case SS2: /* go into G2 for one character */
ip->save_GL = ip->GR; /* GL XXX EUC */
ip->GR = &ip->G2; /* GL XXX */
break;
case SS3: /* go into G3 for one character */
ip->save_GL = ip->GR; /* GL XXX EUC */
ip->GR = &ip->G3; /* GL XXX */
break;
switch (ip->dcs_cmd) {
case DCS_DISCARD:
/* discard sixel cause kernel message interrupted */
switch (c) {
case '-':
/* restart from next SIXEL line */
ite_lf(ip);
goto sixel_restart;
case CAN:
case SUB:
/* SUB should also display a reverse question mark... */
ip->escape = 0;
return 0;
case ESC:
ip->escape = ESC;
return 0;
default:
return 0;
}
break;
case DCS_START:
/* the biggie... */
switch (c) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ';':
case '$':
if (ip->ap < ip->argbuf + MAX_ARGSIZE)
*ip->ap++ = c;
return 0;
case 'q':
{
char *cp;
/* init sixel */
/*
* DCS <P1> ; <P2> ; <P3> q
* P1 is aspect ratio, XXX not supported.
* P2 is bgcolor mode.
* 0..2: bgcolor mode, XXX not supported here.
* bit2 means 'OR'ed color mode.
* This is an original extension.
*/
ip->ap = ip->argbuf;
cp = strchr(ip->ap, ';');
if (cp != NULL) {
int mode;
mode = atoi(cp + 1) - '0';
ip->decsixel_ormode = (mode & 4);
} else {
ip->decsixel_ormode = 0;
}
sixel_restart:
ip->dcs_cmd = DCS_SIXEL;
ip->decsixel_state = DECSIXEL_INIT;
ip->decsixel_ph = MAX_SIXEL_WIDTH;
ip->decsixel_x = 0;
ip->decsixel_y = 0;
ip->decsixel_repcount = 0;
ip->decsixel_color = ip->fgcolor;
memset(ip->decsixel_buf, 0, sizeof(ip->decsixel_buf));
return 0;
}
case CAN:
case SUB:
/* SUB should also display a reverse question mark... */
ip->escape = 0;
return 0;
case ESC:
ip->escape = ESC;
return 0;
default:
return 0;
}
break;
case DCS_SIXEL:
sixel_loop:
switch (ip->decsixel_state) {
case DECSIXEL_INIT:
switch (c) {
case CAN:
case SUB:
/*
* SUB should also display a reverse question
* mark...
*/
ip->escape = 0;
return 0;
case ESC:
ip->escape = ESC;
return 0;
case DECSIXEL_REPEAT:
ip->decsixel_state = c;
ip->decsixel_repcount = 0;
return 0;
case DECSIXEL_RASTER:
case DECSIXEL_COLOR:
ip->decsixel_state = c;
ip->ap = ip->argbuf;
return 0;
case '$': /* CR */
ip->decsixel_x = 0;
return 0;
case '-': /* LF */
/*
* XXX
* FONTHEIGHT is defined in ite_tv.c, not here..
*/
if (ip->decsixel_y + 6 > 15) {
ite_lf(ip);
ip->decsixel_y -= 16;
}
SUBR_SIXEL(ip, ip->cury, ip->curx);
memset(ip->decsixel_buf, 0,
sizeof(ip->decsixel_buf));
ip->decsixel_x = 0;
ip->decsixel_y += 6;
return 0;
default:
if ('?' <= c && c <= '~'
&& ip->decsixel_x < MAX_SIXEL_WIDTH) {
uint32_t d;
d = table[c - '?'] * ip->decsixel_color;
ip->decsixel_buf[ip->decsixel_x] |= d;
ip->decsixel_x++;
} else {
/* ignore */
}
return 0;
}
break;
case DECSIXEL_REPEAT:
if ('0' <= c && c <= '9') {
ip->decsixel_repcount =
ip->decsixel_repcount * 10 + (c - '0');
} else if ('?' <= c && c <= '~') {
uint32_t d;
int i;
int cnt = MIN(ip->decsixel_repcount,
MAX_SIXEL_WIDTH - ip->decsixel_x);
d = table[c - '?'] * ip->decsixel_color;
for (i = 0; i < cnt; i++) {
ip->decsixel_buf[ip->decsixel_x + i] |=
d;
}
ip->decsixel_x += cnt;
ip->decsixel_state = DECSIXEL_INIT;
} else {
/* invalid ? */
ip->decsixel_state = DECSIXEL_INIT;
}
return 0;
case DECSIXEL_RASTER:
case DECSIXEL_RASTER_PAD:
case DECSIXEL_RASTER_PH:
case DECSIXEL_RASTER_PV:
switch (c) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
if (ip->ap < ip->argbuf + MAX_ARGSIZE)
*ip->ap++ = c;
return 0;
case ';':
default:
switch (ip->decsixel_state) {
case DECSIXEL_RASTER:
/* ignore PAN */
ip->ap = ip->argbuf;
ip->decsixel_state =
DECSIXEL_RASTER_PAD;
return 0;
case DECSIXEL_RASTER_PAD:
/* ignore PAD */
ip->ap = ip->argbuf;
ip->decsixel_state = DECSIXEL_RASTER_PH;
return 0;
case DECSIXEL_RASTER_PV:
/* ignore PV */
ip->decsixel_state = DECSIXEL_INIT;
/* c is a next sequence char. */
goto sixel_loop;
default:
/* NOTREACHED */
return 0;
}
}
return 0;
case DECSIXEL_COLOR:
switch (c) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ';':
if (ip->ap < ip->argbuf + MAX_ARGSIZE)
*ip->ap++ = c;
return 0;
default:
*ip->ap = '\0';
if (strchr(ip->argbuf, ';')) {
/* ignore the palette definition. */
} else {
/* otherwise, it specifies color. */
ip->decsixel_color =
ite_zargnum(ip) & 7;
}
ip->decsixel_state = DECSIXEL_INIT;
ip->ap = ip->argbuf;
/* c is a next sequence char. */
goto sixel_loop;
}
return 0;
}
break;
}
/*
* Return a priority in consdev->cn_pri field highest wins. This function
* is called before any devices have been probed.
*/
void
itecnprobe(struct consdev *cd)
{
int maj;
/* locate the major number */
maj = cdevsw_lookup_major(&ite_cdevsw);
/*
* return priority of the best ite (already picked from attach)
* or CN_DEAD.
*/
if (con_itesoftc.grf == NULL)
cd->cn_pri = CN_DEAD;
else {
con_itesoftc.flags = (ITE_ALIVE|ITE_CONSOLE);
/*
* hardcode the minor number.
* currently we support only one ITE, it is enough for now.
*/
con_itesoftc.isw = &itesw[0];
cd->cn_pri = CN_INTERNAL;
cd->cn_dev = makedev(maj, 0);
}
}
ip = getitesp(cd->cn_dev);
iteinit(cd->cn_dev); /* init console unit */
ip->flags |= ITE_ACTIVE | ITE_ISCONS;
kbdenable(0);
mfp_send_usart(0x49);
}
/*
* itecnfinish() is called in ite_init() when the device is
* being probed in the normal fashion, thus we can finish setting
* up this ite now that the system is more functional.
*/
void
itecnfinish(struct ite_softc *ip)
{
static int done;
if (done)
return;
done = 1;
}
/*ARGSUSED*/
int
itecngetc(dev_t dev)
{
int c;
do {
c = kbdcngetc();
c = ite_cnfilter(c);
} while (c == -1);
return (c);
}
void
itecnputc(dev_t dev, int c)
{
static int paniced = 0;
struct ite_softc *ip = getitesp(dev);
char ch = c;
#ifdef ITE_KERNEL_ATTR
short save_attribute;
#endif
#if defined(ITE_SIXEL)
int save_escape;
#endif