1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 /* 28 * ANSI terminal emulator module; parse ANSI X3.64 escape sequences and 29 * the like. 30 * 31 * How Virtual Terminal Emulator Works: 32 * 33 * Every virtual terminal is associated with a tem_vt_state structure 34 * and maintains a virtual screen buffer in tvs_screen_buf, which contains 35 * all the characters which should be shown on the physical screen when 36 * the terminal is activated. There are also two other buffers, tvs_fg_buf 37 * and tvs_bg_buf, which track the foreground and background colors of the 38 * on screen characters 39 * 40 * Data written to a virtual terminal is composed of characters which 41 * should be displayed on the screen when this virtual terminal is 42 * activated, fg/bg colors of these characters, and other control 43 * information (escape sequence, etc). 44 * 45 * When data is passed to a virtual terminal it first is parsed for 46 * control information by tem_safe_parse(). Subsequently the character 47 * and color data are written to tvs_screen_buf, tvs_fg_buf, and 48 * tvs_bg_buf. They are saved in these buffers in order to refresh 49 * the screen when this terminal is activated. If the terminal is 50 * currently active, the data (characters and colors) are also written 51 * to the physical screen by invoking a callback function, 52 * tem_safe_text_callbacks() or tem_safe_pix_callbacks(). 53 * 54 * When rendering data to the framebuffer, if the framebuffer is in 55 * VIS_PIXEL mode, the character data will first be converted to pixel 56 * data using tem_safe_pix_bit2pix(), and then the pixels get displayed 57 * on the physical screen. We only store the character and color data in 58 * tem_vt_state since the bit2pix conversion only happens when actually 59 * rendering to the physical framebuffer. 60 */ 61 62 63 #include <sys/types.h> 64 #include <sys/file.h> 65 #include <sys/conf.h> 66 #include <sys/errno.h> 67 #include <sys/open.h> 68 #include <sys/cred.h> 69 #include <sys/kmem.h> 70 #include <sys/ascii.h> 71 #include <sys/consdev.h> 72 #include <sys/font.h> 73 #include <sys/fbio.h> 74 #include <sys/conf.h> 75 #include <sys/modctl.h> 76 #include <sys/strsubr.h> 77 #include <sys/stat.h> 78 #include <sys/visual_io.h> 79 #include <sys/mutex.h> 80 #include <sys/param.h> 81 #include <sys/debug.h> 82 #include <sys/cmn_err.h> 83 #include <sys/console.h> 84 #include <sys/ddi.h> 85 #include <sys/sunddi.h> 86 #include <sys/sunldi.h> 87 #include <sys/tem_impl.h> 88 #ifdef _HAVE_TEM_FIRMWARE 89 #include <sys/promif.h> 90 #endif /* _HAVE_TEM_FIRMWARE */ 91 #include <sys/consplat.h> 92 #include <sys/kd.h> 93 #include <sys/sysmacros.h> 94 #include <sys/note.h> 95 #include <sys/t_lock.h> 96 97 /* Terminal emulator internal helper functions */ 98 static void tems_setup_terminal(struct vis_devinit *, size_t, size_t); 99 static void tems_modechange_callback(struct vis_modechg_arg *, 100 struct vis_devinit *); 101 102 static void tems_reset_colormap(cred_t *, enum called_from); 103 104 static void tem_free_buf(struct tem_vt_state *); 105 static void tem_internal_init(struct tem_vt_state *, cred_t *, boolean_t, 106 boolean_t); 107 static void tems_get_initial_color(tem_color_t *pcolor); 108 109 /* 110 * Globals 111 */ 112 static ldi_ident_t term_li = NULL; 113 tem_state_t tems; /* common term info */ 114 _NOTE(MUTEX_PROTECTS_DATA(tems.ts_lock, tems)) 115 116 extern struct mod_ops mod_miscops; 117 118 static struct modlmisc modlmisc = { 119 &mod_miscops, /* modops */ 120 "ANSI Terminal Emulator", /* name */ 121 }; 122 123 static struct modlinkage modlinkage = { 124 MODREV_1, { (void *)&modlmisc, NULL } 125 }; 126 127 int 128 _init(void) 129 { 130 int ret; 131 ret = mod_install(&modlinkage); 132 if (ret != 0) 133 return (ret); 134 ret = ldi_ident_from_mod(&modlinkage, &term_li); 135 if (ret != 0) { 136 (void) mod_remove(&modlinkage); 137 return (ret); 138 } 139 140 mutex_init(&tems.ts_lock, (char *)NULL, MUTEX_DRIVER, NULL); 141 list_create(&tems.ts_list, sizeof (struct tem_vt_state), 142 offsetof(struct tem_vt_state, tvs_list_node)); 143 tems.ts_active = NULL; 144 145 return (0); 146 } 147 148 int 149 _fini() 150 { 151 int ret; 152 153 ret = mod_remove(&modlinkage); 154 if (ret == 0) { 155 ldi_ident_release(term_li); 156 term_li = NULL; 157 } 158 return (ret); 159 } 160 161 int 162 _info(struct modinfo *modinfop) 163 { 164 return (mod_info(&modlinkage, modinfop)); 165 } 166 167 static void 168 tem_add(struct tem_vt_state *tem) 169 { 170 ASSERT(MUTEX_HELD(&tems.ts_lock) && MUTEX_HELD(&tem->tvs_lock)); 171 172 list_insert_head(&tems.ts_list, tem); 173 } 174 175 static void 176 tem_rm(struct tem_vt_state *tem) 177 { 178 ASSERT(MUTEX_HELD(&tems.ts_lock) && MUTEX_HELD(&tem->tvs_lock)); 179 180 list_remove(&tems.ts_list, tem); 181 } 182 183 /* 184 * This is the main entry point to the module. It handles output requests 185 * during normal system operation, when (e.g.) mutexes are available. 186 */ 187 void 188 tem_write(tem_vt_state_t tem_arg, uchar_t *buf, ssize_t len, cred_t *credp) 189 { 190 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 191 192 mutex_enter(&tems.ts_lock); 193 mutex_enter(&tem->tvs_lock); 194 195 if (!tem->tvs_initialized) { 196 mutex_exit(&tem->tvs_lock); 197 mutex_exit(&tems.ts_lock); 198 return; 199 } 200 201 tem_safe_check_first_time(tem, credp, CALLED_FROM_NORMAL); 202 tem_safe_terminal_emulate(tem, buf, len, credp, CALLED_FROM_NORMAL); 203 204 mutex_exit(&tem->tvs_lock); 205 mutex_exit(&tems.ts_lock); 206 } 207 208 static void 209 tem_internal_init(struct tem_vt_state *ptem, cred_t *credp, 210 boolean_t init_color, boolean_t clear_screen) 211 { 212 unsigned i, j, width, height; 213 text_attr_t attr; 214 text_color_t fg; 215 text_color_t bg; 216 217 ASSERT(MUTEX_HELD(&tems.ts_lock) && MUTEX_HELD(&ptem->tvs_lock)); 218 219 if (tems.ts_display_mode == VIS_PIXEL) { 220 ptem->tvs_pix_data_size = tems.ts_pix_data_size; 221 ptem->tvs_pix_data = 222 kmem_alloc(ptem->tvs_pix_data_size, KM_SLEEP); 223 } 224 225 ptem->tvs_outbuf_size = tems.ts_c_dimension.width * 226 sizeof (*ptem->tvs_outbuf); 227 ptem->tvs_outbuf = kmem_alloc(ptem->tvs_outbuf_size, KM_SLEEP); 228 229 width = tems.ts_c_dimension.width; 230 height = tems.ts_c_dimension.height; 231 ptem->tvs_screen_history_size = height; 232 233 ptem->tvs_screen_buf_size = width * ptem->tvs_screen_history_size * 234 sizeof (*ptem->tvs_screen_buf); 235 ptem->tvs_screen_buf = kmem_alloc(ptem->tvs_screen_buf_size, KM_SLEEP); 236 ptem->tvs_screen_rows = kmem_alloc(ptem->tvs_screen_history_size * 237 sizeof (term_char_t *), KM_SLEEP); 238 239 ptem->tvs_maxtab = width / 8; 240 ptem->tvs_tabs = kmem_alloc(ptem->tvs_maxtab * sizeof (*ptem->tvs_tabs), 241 KM_SLEEP); 242 243 tem_safe_reset_display(ptem, credp, CALLED_FROM_NORMAL, 244 clear_screen, init_color); 245 246 ptem->tvs_utf8_left = 0; 247 ptem->tvs_utf8_partial = 0; 248 249 /* Get default attributes and fill up the screen buffer. */ 250 tem_safe_get_attr(ptem, &fg, &bg, &attr, TEM_ATTR_SCREEN_REVERSE); 251 for (i = 0; i < ptem->tvs_screen_history_size; i++) { 252 ptem->tvs_screen_rows[i] = &ptem->tvs_screen_buf[i * width]; 253 254 for (j = 0; j < width; j++) { 255 ptem->tvs_screen_rows[i][j].tc_fg_color = fg; 256 ptem->tvs_screen_rows[i][j].tc_bg_color = bg; 257 ptem->tvs_screen_rows[i][j].tc_char = 258 TEM_ATTR(attr) | ' '; 259 } 260 } 261 262 ptem->tvs_initialized = B_TRUE; 263 } 264 265 boolean_t 266 tem_initialized(tem_vt_state_t tem_arg) 267 { 268 struct tem_vt_state *ptem = (struct tem_vt_state *)tem_arg; 269 boolean_t ret; 270 271 mutex_enter(&ptem->tvs_lock); 272 ret = ptem->tvs_initialized; 273 mutex_exit(&ptem->tvs_lock); 274 275 return (ret); 276 } 277 278 tem_vt_state_t 279 tem_init(cred_t *credp) 280 { 281 struct tem_vt_state *ptem; 282 283 ptem = kmem_zalloc(sizeof (struct tem_vt_state), KM_SLEEP); 284 mutex_init(&ptem->tvs_lock, (char *)NULL, MUTEX_DRIVER, NULL); 285 286 mutex_enter(&tems.ts_lock); 287 mutex_enter(&ptem->tvs_lock); 288 289 ptem->tvs_isactive = B_FALSE; 290 ptem->tvs_fbmode = KD_TEXT; 291 292 /* 293 * A tem is regarded as initialized only after tem_internal_init(), 294 * will be set at the end of tem_internal_init(). 295 */ 296 ptem->tvs_initialized = B_FALSE; 297 298 299 if (!tems.ts_initialized) { 300 /* 301 * Only happens during early console configuration. 302 */ 303 tem_add(ptem); 304 mutex_exit(&ptem->tvs_lock); 305 mutex_exit(&tems.ts_lock); 306 return ((tem_vt_state_t)ptem); 307 } 308 309 tem_internal_init(ptem, credp, B_TRUE, B_FALSE); 310 tem_add(ptem); 311 mutex_exit(&ptem->tvs_lock); 312 mutex_exit(&tems.ts_lock); 313 314 return ((tem_vt_state_t)ptem); 315 } 316 317 /* 318 * re-init the tem after video mode has changed and tems_info has 319 * been re-inited. The lock is already held. 320 */ 321 static void 322 tem_reinit(struct tem_vt_state *tem, boolean_t reset_display) 323 { 324 ASSERT(MUTEX_HELD(&tems.ts_lock) && MUTEX_HELD(&tem->tvs_lock)); 325 326 tem_free_buf(tem); /* only free virtual buffers */ 327 328 /* reserve color */ 329 tem_internal_init(tem, kcred, B_FALSE, reset_display); 330 } 331 332 static void 333 tem_free_buf(struct tem_vt_state *tem) 334 { 335 ASSERT(tem != NULL && MUTEX_HELD(&tem->tvs_lock)); 336 337 if (tem->tvs_outbuf != NULL) 338 kmem_free(tem->tvs_outbuf, tem->tvs_outbuf_size); 339 if (tem->tvs_pix_data != NULL) 340 kmem_free(tem->tvs_pix_data, tem->tvs_pix_data_size); 341 if (tem->tvs_screen_buf != NULL) 342 kmem_free(tem->tvs_screen_buf, tem->tvs_screen_buf_size); 343 if (tem->tvs_screen_rows != NULL) { 344 kmem_free(tem->tvs_screen_rows, tem->tvs_screen_history_size * 345 sizeof (term_char_t *)); 346 } 347 if (tem->tvs_tabs != NULL) { 348 kmem_free(tem->tvs_tabs, tem->tvs_maxtab * 349 sizeof (*tem->tvs_tabs)); 350 } 351 } 352 353 void 354 tem_destroy(tem_vt_state_t tem_arg, cred_t *credp) 355 { 356 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 357 358 mutex_enter(&tems.ts_lock); 359 mutex_enter(&tem->tvs_lock); 360 361 if (tem->tvs_isactive && tem->tvs_fbmode == KD_TEXT) 362 tem_safe_blank_screen(tem, credp, CALLED_FROM_NORMAL); 363 364 tem_free_buf(tem); 365 tem_rm(tem); 366 367 if (tems.ts_active == tem) 368 tems.ts_active = NULL; 369 370 mutex_exit(&tem->tvs_lock); 371 mutex_exit(&tems.ts_lock); 372 373 kmem_free(tem, sizeof (struct tem_vt_state)); 374 } 375 376 static int 377 tems_failed(cred_t *credp, boolean_t finish_ioctl) 378 { 379 int lyr_rval; 380 381 ASSERT(MUTEX_HELD(&tems.ts_lock)); 382 383 if (finish_ioctl) 384 (void) ldi_ioctl(tems.ts_hdl, VIS_DEVFINI, 0, 385 FWRITE | FKIOCTL, credp, &lyr_rval); 386 387 (void) ldi_close(tems.ts_hdl, 0, credp); 388 tems.ts_hdl = NULL; 389 return (ENXIO); 390 } 391 392 /* 393 * only called once during boot 394 */ 395 int 396 tem_info_init(char *pathname, cred_t *credp) 397 { 398 int lyr_rval, ret; 399 struct vis_devinit temargs; 400 char *pathbuf; 401 size_t height = 0; 402 size_t width = 0; 403 struct tem_vt_state *p; 404 405 mutex_enter(&tems.ts_lock); 406 407 if (tems.ts_initialized) { 408 mutex_exit(&tems.ts_lock); 409 return (0); 410 } 411 412 /* 413 * Open the layered device using the devfs physical device name 414 * after adding the /devices prefix. 415 */ 416 pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP); 417 (void) strcpy(pathbuf, "/devices"); 418 if (i_ddi_prompath_to_devfspath(pathname, 419 pathbuf + strlen("/devices")) != DDI_SUCCESS) { 420 cmn_err(CE_WARN, "terminal-emulator: path conversion error"); 421 kmem_free(pathbuf, MAXPATHLEN); 422 423 mutex_exit(&tems.ts_lock); 424 return (ENXIO); 425 } 426 if (ldi_open_by_name(pathbuf, FWRITE, credp, 427 &tems.ts_hdl, term_li) != 0) { 428 cmn_err(CE_WARN, "terminal-emulator: device path open error"); 429 kmem_free(pathbuf, MAXPATHLEN); 430 431 mutex_exit(&tems.ts_lock); 432 return (ENXIO); 433 } 434 kmem_free(pathbuf, MAXPATHLEN); 435 436 temargs.modechg_cb = (vis_modechg_cb_t)tems_modechange_callback; 437 temargs.modechg_arg = NULL; 438 439 /* 440 * Initialize the console and get the device parameters 441 */ 442 if (ldi_ioctl(tems.ts_hdl, VIS_DEVINIT, 443 (intptr_t)&temargs, FWRITE|FKIOCTL, credp, &lyr_rval) != 0) { 444 cmn_err(CE_WARN, "terminal emulator: Compatible fb not found"); 445 ret = tems_failed(credp, B_FALSE); 446 mutex_exit(&tems.ts_lock); 447 return (ret); 448 } 449 450 /* Make sure the fb driver and terminal emulator versions match */ 451 if (temargs.version != VIS_CONS_REV) { 452 cmn_err(CE_WARN, 453 "terminal emulator: VIS_CONS_REV %d (see sys/visual_io.h) " 454 "of console fb driver not supported", temargs.version); 455 ret = tems_failed(credp, B_TRUE); 456 mutex_exit(&tems.ts_lock); 457 return (ret); 458 } 459 460 if ((tems.ts_fb_polledio = temargs.polledio) == NULL) { 461 cmn_err(CE_WARN, "terminal emulator: fb doesn't support polled " 462 "I/O"); 463 ret = tems_failed(credp, B_TRUE); 464 mutex_exit(&tems.ts_lock); 465 return (ret); 466 } 467 468 /* other sanity checks */ 469 if (!((temargs.depth == 4) || (temargs.depth == 8) || 470 (temargs.depth == 15) || (temargs.depth == 16) || 471 (temargs.depth == 24) || (temargs.depth == 32))) { 472 cmn_err(CE_WARN, "terminal emulator: unsupported depth"); 473 ret = tems_failed(credp, B_TRUE); 474 mutex_exit(&tems.ts_lock); 475 return (ret); 476 } 477 478 if ((temargs.mode != VIS_TEXT) && (temargs.mode != VIS_PIXEL)) { 479 cmn_err(CE_WARN, "terminal emulator: unsupported mode"); 480 ret = tems_failed(credp, B_TRUE); 481 mutex_exit(&tems.ts_lock); 482 return (ret); 483 } 484 485 if ((temargs.mode == VIS_PIXEL) && plat_stdout_is_framebuffer()) 486 plat_tem_get_prom_size(&height, &width); 487 488 /* 489 * Initialize the common terminal emulator info 490 */ 491 tems_setup_terminal(&temargs, height, width); 492 493 tems_reset_colormap(credp, CALLED_FROM_NORMAL); 494 tems_get_initial_color(&tems.ts_init_color); 495 496 tems.ts_initialized = 1; /* initialization flag */ 497 498 for (p = list_head(&tems.ts_list); p != NULL; 499 p = list_next(&tems.ts_list, p)) { 500 mutex_enter(&p->tvs_lock); 501 tem_internal_init(p, credp, B_TRUE, B_FALSE); 502 tem_align(p, credp, CALLED_FROM_NORMAL); 503 mutex_exit(&p->tvs_lock); 504 } 505 506 mutex_exit(&tems.ts_lock); 507 return (0); 508 } 509 510 #define TEMS_DEPTH_DIFF 0x01 511 #define TEMS_DIMENSION_DIFF 0x02 512 513 static uchar_t 514 tems_check_videomode(struct vis_devinit *tp) 515 { 516 uchar_t result = 0; 517 518 if (tems.ts_pdepth != tp->depth) 519 result |= TEMS_DEPTH_DIFF; 520 521 if (tp->mode == VIS_TEXT) { 522 if (tems.ts_c_dimension.width != tp->width || 523 tems.ts_c_dimension.height != tp->height) 524 result |= TEMS_DIMENSION_DIFF; 525 } else { 526 if (tems.ts_p_dimension.width != tp->width || 527 tems.ts_p_dimension.height != tp->height) 528 result |= TEMS_DIMENSION_DIFF; 529 } 530 531 return (result); 532 } 533 534 static void 535 tems_setup_font(screen_size_t height, screen_size_t width) 536 { 537 bitmap_data_t *font_data; 538 int i; 539 540 /* 541 * set_font() will select an appropriate sized font for 542 * the number of rows and columns selected. If we don't 543 * have a font that will fit, then it will use the 544 * default builtin font and adjust the rows and columns 545 * to fit on the screen. 546 */ 547 font_data = set_font(&tems.ts_c_dimension.height, 548 &tems.ts_c_dimension.width, height, width); 549 550 /* 551 * To use loaded font, we assign the loaded font data to tems.ts_font. 552 * In case of next load, the previously loaded data is freed 553 * when loading the new font. 554 */ 555 for (i = 0; i < VFNT_MAPS; i++) { 556 tems.ts_font.vf_map[i] = 557 font_data->font->vf_map[i]; 558 tems.ts_font.vf_map_count[i] = 559 font_data->font->vf_map_count[i]; 560 } 561 562 tems.ts_font.vf_bytes = font_data->font->vf_bytes; 563 tems.ts_font.vf_width = font_data->font->vf_width; 564 tems.ts_font.vf_height = font_data->font->vf_height; 565 } 566 567 static void 568 tems_setup_terminal(struct vis_devinit *tp, size_t height, size_t width) 569 { 570 int old_blank_buf_size = tems.ts_c_dimension.width * 571 sizeof (*tems.ts_blank_line); 572 573 ASSERT(MUTEX_HELD(&tems.ts_lock)); 574 575 tems.ts_pdepth = tp->depth; 576 tems.ts_linebytes = tp->linebytes; 577 tems.ts_display_mode = tp->mode; 578 tems.ts_color_map = tp->color_map; 579 580 switch (tp->mode) { 581 case VIS_TEXT: 582 tems.ts_p_dimension.width = 0; 583 tems.ts_p_dimension.height = 0; 584 tems.ts_c_dimension.width = tp->width; 585 tems.ts_c_dimension.height = tp->height; 586 tems.ts_callbacks = &tem_safe_text_callbacks; 587 588 tems_setup_font(16 * tp->height + BORDER_PIXELS, 589 8 * tp->width + BORDER_PIXELS); 590 591 break; 592 593 case VIS_PIXEL: 594 /* 595 * First check to see if the user has specified a screen size. 596 * If so, use those values. Else use 34x80 as the default. 597 */ 598 if (width == 0) { 599 width = TEM_DEFAULT_COLS; 600 height = TEM_DEFAULT_ROWS; 601 } 602 tems.ts_c_dimension.height = (screen_size_t)height; 603 tems.ts_c_dimension.width = (screen_size_t)width; 604 tems.ts_p_dimension.height = tp->height; 605 tems.ts_p_dimension.width = tp->width; 606 tems.ts_callbacks = &tem_safe_pix_callbacks; 607 608 tems_setup_font(tp->height, tp->width); 609 610 tems.ts_p_offset.y = (tems.ts_p_dimension.height - 611 (tems.ts_c_dimension.height * tems.ts_font.vf_height)) / 2; 612 tems.ts_p_offset.x = (tems.ts_p_dimension.width - 613 (tems.ts_c_dimension.width * tems.ts_font.vf_width)) / 2; 614 615 tems.ts_pix_data_size = 616 tems.ts_font.vf_width * tems.ts_font.vf_height; 617 tems.ts_pix_data_size *= 4; 618 tems.ts_pdepth = tp->depth; 619 620 break; 621 } 622 623 /* Now virtual cls also uses the blank_line buffer */ 624 if (tems.ts_blank_line) 625 kmem_free(tems.ts_blank_line, old_blank_buf_size); 626 627 tems.ts_blank_line = kmem_alloc(tems.ts_c_dimension.width * 628 sizeof (*tems.ts_blank_line), KM_SLEEP); 629 } 630 631 /* 632 * This is a callback function that we register with the frame 633 * buffer driver layered underneath. It gets invoked from 634 * the underlying frame buffer driver to reconfigure the terminal 635 * emulator to a new screen size and depth in conjunction with 636 * framebuffer videomode changes. 637 * Here we keep the foreground/background color and attributes, 638 * which may be different with the initial settings, so that 639 * the color won't change while the framebuffer videomode changes. 640 * And we also reset the kernel terminal emulator and clear the 641 * whole screen. 642 */ 643 /* ARGSUSED */ 644 void 645 tems_modechange_callback(struct vis_modechg_arg *arg, 646 struct vis_devinit *devinit) 647 { 648 uchar_t diff; 649 struct tem_vt_state *p; 650 tem_modechg_cb_t cb; 651 tem_modechg_cb_arg_t cb_arg; 652 653 ASSERT(!(list_is_empty(&tems.ts_list))); 654 655 mutex_enter(&tems.ts_lock); 656 657 /* 658 * currently only for pixel mode 659 */ 660 diff = tems_check_videomode(devinit); 661 if (diff == 0) { 662 mutex_exit(&tems.ts_lock); 663 return; 664 } 665 666 diff = diff & TEMS_DIMENSION_DIFF; 667 668 if (diff == 0) { 669 /* 670 * Only need to reinit the active tem. 671 */ 672 struct tem_vt_state *active = tems.ts_active; 673 tems.ts_pdepth = devinit->depth; 674 675 mutex_enter(&active->tvs_lock); 676 ASSERT(active->tvs_isactive); 677 tem_reinit(active, B_TRUE); 678 mutex_exit(&active->tvs_lock); 679 680 mutex_exit(&tems.ts_lock); 681 return; 682 } 683 684 tems_setup_terminal(devinit, tems.ts_c_dimension.height, 685 tems.ts_c_dimension.width); 686 687 for (p = list_head(&tems.ts_list); p != NULL; 688 p = list_next(&tems.ts_list, p)) { 689 mutex_enter(&p->tvs_lock); 690 tem_reinit(p, p->tvs_isactive); 691 mutex_exit(&p->tvs_lock); 692 } 693 694 695 if (tems.ts_modechg_cb == NULL) { 696 mutex_exit(&tems.ts_lock); 697 return; 698 } 699 700 cb = tems.ts_modechg_cb; 701 cb_arg = tems.ts_modechg_arg; 702 703 /* 704 * Release the lock while doing callback. 705 */ 706 mutex_exit(&tems.ts_lock); 707 cb(cb_arg); 708 } 709 710 /* 711 * This function is used to clear entire screen via the underlying framebuffer 712 * driver. 713 */ 714 int 715 tems_cls_layered(struct vis_consclear *pda, 716 cred_t *credp) 717 { 718 int rval; 719 720 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCLEAR, 721 (intptr_t)pda, FKIOCTL, credp, &rval); 722 return (rval); 723 } 724 725 /* 726 * This function is used to display a rectangular blit of data 727 * of a given size and location via the underlying framebuffer driver. 728 * The blit can be as small as a pixel or as large as the screen. 729 */ 730 void 731 tems_display_layered(struct vis_consdisplay *pda, 732 cred_t *credp) 733 { 734 int rval; 735 736 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSDISPLAY, 737 (intptr_t)pda, FKIOCTL, credp, &rval); 738 } 739 740 /* 741 * This function is used to invoke a block copy operation in the 742 * underlying framebuffer driver. Rectangle copies are how scrolling 743 * is implemented, as well as horizontal text shifting escape seqs. 744 * such as from vi when deleting characters and words. 745 */ 746 void 747 tems_copy_layered(struct vis_conscopy *pma, 748 cred_t *credp) 749 { 750 int rval; 751 752 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCOPY, 753 (intptr_t)pma, FKIOCTL, credp, &rval); 754 } 755 756 /* 757 * This function is used to show or hide a rectangluar monochrom 758 * pixel inverting, text block cursor via the underlying framebuffer. 759 */ 760 void 761 tems_cursor_layered(struct vis_conscursor *pca, 762 cred_t *credp) 763 { 764 int rval; 765 766 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCURSOR, 767 (intptr_t)pca, FKIOCTL, credp, &rval); 768 } 769 770 static void 771 tem_kdsetmode(int mode, cred_t *credp) 772 { 773 int rval; 774 775 (void) ldi_ioctl(tems.ts_hdl, KDSETMODE, 776 (intptr_t)mode, FKIOCTL, credp, &rval); 777 778 } 779 780 static void 781 tems_reset_colormap(cred_t *credp, enum called_from called_from) 782 { 783 struct vis_cmap cm; 784 int rval; 785 786 if (called_from == CALLED_FROM_STANDALONE) 787 return; 788 789 switch (tems.ts_pdepth) { 790 case 8: 791 cm.index = 0; 792 cm.count = 16; 793 cm.red = (uint8_t *)cmap4_to_24.red; 794 cm.blue = (uint8_t *)cmap4_to_24.blue; 795 cm.green = (uint8_t *)cmap4_to_24.green; 796 (void) ldi_ioctl(tems.ts_hdl, VIS_PUTCMAP, (intptr_t)&cm, 797 FKIOCTL, credp, &rval); 798 break; 799 } 800 } 801 802 void 803 tem_get_size(ushort_t *r, ushort_t *c, ushort_t *x, ushort_t *y) 804 { 805 mutex_enter(&tems.ts_lock); 806 *r = (ushort_t)tems.ts_c_dimension.height; 807 *c = (ushort_t)tems.ts_c_dimension.width; 808 *x = (ushort_t)tems.ts_p_dimension.width; 809 *y = (ushort_t)tems.ts_p_dimension.height; 810 mutex_exit(&tems.ts_lock); 811 } 812 813 void 814 tem_register_modechg_cb(tem_modechg_cb_t func, tem_modechg_cb_arg_t arg) 815 { 816 mutex_enter(&tems.ts_lock); 817 818 tems.ts_modechg_cb = func; 819 tems.ts_modechg_arg = arg; 820 821 mutex_exit(&tems.ts_lock); 822 } 823 824 /* 825 * This function is to scroll up the OBP output, which has 826 * different screen height and width with our kernel console. 827 */ 828 static void 829 tem_prom_scroll_up(struct tem_vt_state *tem, int nrows, cred_t *credp, 830 enum called_from called_from) 831 { 832 struct vis_conscopy ma; 833 int ncols, width; 834 835 /* copy */ 836 ma.s_row = nrows * tems.ts_font.vf_height; 837 ma.e_row = tems.ts_p_dimension.height - 1; 838 ma.t_row = 0; 839 840 ma.s_col = 0; 841 ma.e_col = tems.ts_p_dimension.width - 1; 842 ma.t_col = 0; 843 844 tems_safe_copy(&ma, credp, called_from); 845 846 /* clear */ 847 width = tems.ts_font.vf_width; 848 ncols = (tems.ts_p_dimension.width + (width - 1))/ width; 849 850 tem_safe_pix_cls_range(tem, 0, nrows, tems.ts_p_offset.y, 851 0, ncols, 0, B_TRUE, credp, called_from); 852 } 853 854 #define PROM_DEFAULT_FONT_HEIGHT 22 855 #define PROM_DEFAULT_WINDOW_TOP 0x8a 856 857 /* 858 * This function is to compute the starting row of the console, according to 859 * PROM cursor's position. Here we have to take different fonts into account. 860 */ 861 static int 862 tem_adjust_row(struct tem_vt_state *tem, int prom_row, cred_t *credp, 863 enum called_from called_from) 864 { 865 int tem_row; 866 int tem_y; 867 int prom_charheight = 0; 868 int prom_window_top = 0; 869 int scroll_up_lines; 870 871 if (tems.ts_display_mode == VIS_TEXT) 872 return (prom_row); 873 874 plat_tem_get_prom_font_size(&prom_charheight, &prom_window_top); 875 if (prom_charheight == 0) 876 prom_charheight = PROM_DEFAULT_FONT_HEIGHT; 877 if (prom_window_top == 0) 878 prom_window_top = PROM_DEFAULT_WINDOW_TOP; 879 880 tem_y = (prom_row + 1) * prom_charheight + prom_window_top - 881 tems.ts_p_offset.y; 882 tem_row = (tem_y + tems.ts_font.vf_height - 1) / 883 tems.ts_font.vf_height - 1; 884 885 if (tem_row < 0) { 886 tem_row = 0; 887 } else if (tem_row >= (tems.ts_c_dimension.height - 1)) { 888 /* 889 * Scroll up the prom outputs if the PROM cursor's position is 890 * below our tem's lower boundary. 891 */ 892 scroll_up_lines = tem_row - 893 (tems.ts_c_dimension.height - 1); 894 tem_prom_scroll_up(tem, scroll_up_lines, credp, called_from); 895 tem_row = tems.ts_c_dimension.height - 1; 896 } 897 898 return (tem_row); 899 } 900 901 void 902 tem_align(struct tem_vt_state *tem, cred_t *credp, 903 enum called_from called_from) 904 { 905 uint32_t row = 0; 906 uint32_t col = 0; 907 908 plat_tem_hide_prom_cursor(); 909 910 /* 911 * We are getting the current cursor position in pixel 912 * mode so that we don't over-write the console output 913 * during boot. 914 */ 915 plat_tem_get_prom_pos(&row, &col); 916 917 /* 918 * Adjust the row if necessary when the font of our 919 * kernel console tem is different with that of prom 920 * tem. 921 */ 922 row = tem_adjust_row(tem, row, credp, called_from); 923 924 /* first line of our kernel console output */ 925 tem->tvs_first_line = row + 1; 926 927 /* re-set and align cursor position */ 928 tem->tvs_s_cursor.row = tem->tvs_c_cursor.row = 929 (screen_pos_t)row; 930 tem->tvs_s_cursor.col = tem->tvs_c_cursor.col = 0; 931 932 /* 933 * When tem is starting up, part of the screen is filled 934 * with information from boot loader and early boot. 935 * For tem, the screen content above current cursor 936 * should be treated as image. 937 */ 938 for (; row > 0; row--) { 939 for (col = 0; col < tems.ts_c_dimension.width; col++) { 940 tem->tvs_screen_rows[row][col].tc_char = 941 TEM_ATTR(TEM_ATTR_IMAGE); 942 } 943 } 944 } 945 946 static void 947 tems_get_inverses(boolean_t *p_inverse, boolean_t *p_inverse_screen) 948 { 949 int i_inverse = 0; 950 int i_inverse_screen = 0; 951 952 plat_tem_get_inverses(&i_inverse, &i_inverse_screen); 953 954 *p_inverse = (i_inverse == 0) ? B_FALSE : B_TRUE; 955 *p_inverse_screen = (i_inverse_screen == 0) ? B_FALSE : B_TRUE; 956 } 957 958 /* 959 * Get the foreground/background color and attributes from the initial 960 * PROM, so that our kernel console can keep the same visual behaviour. 961 */ 962 static void 963 tems_get_initial_color(tem_color_t *pcolor) 964 { 965 boolean_t inverse, inverse_screen; 966 unsigned short flags = 0; 967 uint8_t fg, bg; 968 969 fg = DEFAULT_ANSI_FOREGROUND; 970 bg = DEFAULT_ANSI_BACKGROUND; 971 #ifndef _HAVE_TEM_FIRMWARE 972 /* 973 * _HAVE_TEM_FIRMWARE is defined on SPARC, at this time, the 974 * plat_tem_get_colors() is implemented only on x86. 975 */ 976 977 plat_tem_get_colors(&fg, &bg); 978 #endif 979 pcolor->fg_color.n = fg; 980 pcolor->bg_color.n = bg; 981 982 tems_get_inverses(&inverse, &inverse_screen); 983 if (inverse) 984 flags |= TEM_ATTR_REVERSE; 985 if (inverse_screen) 986 flags |= TEM_ATTR_SCREEN_REVERSE; 987 988 #ifdef _HAVE_TEM_FIRMWARE 989 if (flags != 0) { 990 /* 991 * If either reverse flag is set, the screen is in 992 * white-on-black mode. We set the bold flag to 993 * improve readability. 994 */ 995 flags |= TEM_ATTR_BOLD; 996 } else { 997 /* 998 * Otherwise, the screen is in black-on-white mode. 999 * The SPARC PROM console, which starts in this mode, 1000 * uses the bright white background colour so we 1001 * match it here. 1002 */ 1003 if (pcolor->bg_color.n == ANSI_COLOR_WHITE) 1004 flags |= TEM_ATTR_BRIGHT_BG; 1005 } 1006 #else 1007 if (flags != 0) { 1008 if (pcolor->fg_color.n == ANSI_COLOR_WHITE) 1009 flags |= TEM_ATTR_BRIGHT_BG; 1010 1011 if (pcolor->fg_color.n == ANSI_COLOR_BLACK) 1012 flags &= ~TEM_ATTR_BRIGHT_BG; 1013 } else { 1014 /* 1015 * In case of black on white we want bright white for BG. 1016 */ 1017 if (pcolor->bg_color.n == ANSI_COLOR_WHITE) 1018 flags |= TEM_ATTR_BRIGHT_BG; 1019 } 1020 #endif 1021 1022 pcolor->a_flags = flags; 1023 } 1024 1025 uchar_t 1026 tem_get_fbmode(tem_vt_state_t tem_arg) 1027 { 1028 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1029 1030 uchar_t fbmode; 1031 1032 mutex_enter(&tem->tvs_lock); 1033 fbmode = tem->tvs_fbmode; 1034 mutex_exit(&tem->tvs_lock); 1035 1036 return (fbmode); 1037 } 1038 1039 void 1040 tem_set_fbmode(tem_vt_state_t tem_arg, uchar_t fbmode, cred_t *credp) 1041 { 1042 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1043 1044 mutex_enter(&tems.ts_lock); 1045 mutex_enter(&tem->tvs_lock); 1046 1047 if (fbmode == tem->tvs_fbmode) { 1048 mutex_exit(&tem->tvs_lock); 1049 mutex_exit(&tems.ts_lock); 1050 return; 1051 } 1052 1053 tem->tvs_fbmode = fbmode; 1054 1055 if (tem->tvs_isactive) { 1056 tem_kdsetmode(tem->tvs_fbmode, credp); 1057 if (fbmode == KD_TEXT) 1058 tem_safe_unblank_screen(tem, credp, CALLED_FROM_NORMAL); 1059 } 1060 1061 mutex_exit(&tem->tvs_lock); 1062 mutex_exit(&tems.ts_lock); 1063 } 1064 1065 void 1066 tem_activate(tem_vt_state_t tem_arg, boolean_t unblank, cred_t *credp) 1067 { 1068 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1069 1070 mutex_enter(&tems.ts_lock); 1071 tems.ts_active = tem; 1072 1073 mutex_enter(&tem->tvs_lock); 1074 tem->tvs_isactive = B_TRUE; 1075 1076 tem_kdsetmode(tem->tvs_fbmode, credp); 1077 1078 if (unblank) 1079 tem_safe_unblank_screen(tem, credp, CALLED_FROM_NORMAL); 1080 1081 mutex_exit(&tem->tvs_lock); 1082 mutex_exit(&tems.ts_lock); 1083 } 1084 1085 void 1086 tem_switch(tem_vt_state_t tem_arg1, tem_vt_state_t tem_arg2, cred_t *credp) 1087 { 1088 struct tem_vt_state *cur = (struct tem_vt_state *)tem_arg1; 1089 struct tem_vt_state *tobe = (struct tem_vt_state *)tem_arg2; 1090 1091 mutex_enter(&tems.ts_lock); 1092 mutex_enter(&tobe->tvs_lock); 1093 mutex_enter(&cur->tvs_lock); 1094 1095 tems.ts_active = tobe; 1096 cur->tvs_isactive = B_FALSE; 1097 tobe->tvs_isactive = B_TRUE; 1098 1099 mutex_exit(&cur->tvs_lock); 1100 1101 if (cur->tvs_fbmode != tobe->tvs_fbmode) 1102 tem_kdsetmode(tobe->tvs_fbmode, credp); 1103 1104 if (tobe->tvs_fbmode == KD_TEXT) 1105 tem_safe_unblank_screen(tobe, credp, CALLED_FROM_NORMAL); 1106 1107 mutex_exit(&tobe->tvs_lock); 1108 mutex_exit(&tems.ts_lock); 1109 } 1110