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 tem_safe_reset_display(ptem, credp, CALLED_FROM_NORMAL, 240 clear_screen, init_color); 241 242 ptem->tvs_utf8_left = 0; 243 ptem->tvs_utf8_partial = 0; 244 245 /* Get default attributes and fill up the screen buffer. */ 246 tem_safe_get_attr(ptem, &fg, &bg, &attr, TEM_ATTR_SCREEN_REVERSE); 247 for (i = 0; i < ptem->tvs_screen_history_size; i++) { 248 ptem->tvs_screen_rows[i] = &ptem->tvs_screen_buf[i * width]; 249 250 for (j = 0; j < width; j++) { 251 ptem->tvs_screen_rows[i][j].tc_fg_color = fg; 252 ptem->tvs_screen_rows[i][j].tc_bg_color = bg; 253 ptem->tvs_screen_rows[i][j].tc_char = 254 TEM_ATTR(attr) | ' '; 255 } 256 } 257 258 ptem->tvs_initialized = B_TRUE; 259 } 260 261 boolean_t 262 tem_initialized(tem_vt_state_t tem_arg) 263 { 264 struct tem_vt_state *ptem = (struct tem_vt_state *)tem_arg; 265 boolean_t ret; 266 267 mutex_enter(&ptem->tvs_lock); 268 ret = ptem->tvs_initialized; 269 mutex_exit(&ptem->tvs_lock); 270 271 return (ret); 272 } 273 274 tem_vt_state_t 275 tem_init(cred_t *credp) 276 { 277 struct tem_vt_state *ptem; 278 279 ptem = kmem_zalloc(sizeof (struct tem_vt_state), KM_SLEEP); 280 mutex_init(&ptem->tvs_lock, (char *)NULL, MUTEX_DRIVER, NULL); 281 282 mutex_enter(&tems.ts_lock); 283 mutex_enter(&ptem->tvs_lock); 284 285 ptem->tvs_isactive = B_FALSE; 286 ptem->tvs_fbmode = KD_TEXT; 287 288 /* 289 * A tem is regarded as initialized only after tem_internal_init(), 290 * will be set at the end of tem_internal_init(). 291 */ 292 ptem->tvs_initialized = B_FALSE; 293 294 295 if (!tems.ts_initialized) { 296 /* 297 * Only happens during early console configuration. 298 */ 299 tem_add(ptem); 300 mutex_exit(&ptem->tvs_lock); 301 mutex_exit(&tems.ts_lock); 302 return ((tem_vt_state_t)ptem); 303 } 304 305 tem_internal_init(ptem, credp, B_TRUE, B_FALSE); 306 tem_add(ptem); 307 mutex_exit(&ptem->tvs_lock); 308 mutex_exit(&tems.ts_lock); 309 310 return ((tem_vt_state_t)ptem); 311 } 312 313 /* 314 * re-init the tem after video mode has changed and tems_info has 315 * been re-inited. The lock is already held. 316 */ 317 static void 318 tem_reinit(struct tem_vt_state *tem, boolean_t reset_display) 319 { 320 ASSERT(MUTEX_HELD(&tems.ts_lock) && MUTEX_HELD(&tem->tvs_lock)); 321 322 tem_free_buf(tem); /* only free virtual buffers */ 323 324 /* reserve color */ 325 tem_internal_init(tem, kcred, B_FALSE, reset_display); 326 } 327 328 static void 329 tem_free_buf(struct tem_vt_state *tem) 330 { 331 ASSERT(tem != NULL && MUTEX_HELD(&tem->tvs_lock)); 332 333 if (tem->tvs_outbuf != NULL) 334 kmem_free(tem->tvs_outbuf, tem->tvs_outbuf_size); 335 if (tem->tvs_pix_data != NULL) 336 kmem_free(tem->tvs_pix_data, tem->tvs_pix_data_size); 337 if (tem->tvs_screen_buf != NULL) 338 kmem_free(tem->tvs_screen_buf, tem->tvs_screen_buf_size); 339 if (tem->tvs_screen_rows != NULL) { 340 kmem_free(tem->tvs_screen_rows, tem->tvs_screen_history_size * 341 sizeof (term_char_t *)); 342 } 343 } 344 345 void 346 tem_destroy(tem_vt_state_t tem_arg, cred_t *credp) 347 { 348 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 349 350 mutex_enter(&tems.ts_lock); 351 mutex_enter(&tem->tvs_lock); 352 353 if (tem->tvs_isactive && tem->tvs_fbmode == KD_TEXT) 354 tem_safe_blank_screen(tem, credp, CALLED_FROM_NORMAL); 355 356 tem_free_buf(tem); 357 tem_rm(tem); 358 359 if (tems.ts_active == tem) 360 tems.ts_active = NULL; 361 362 mutex_exit(&tem->tvs_lock); 363 mutex_exit(&tems.ts_lock); 364 365 kmem_free(tem, sizeof (struct tem_vt_state)); 366 } 367 368 static int 369 tems_failed(cred_t *credp, boolean_t finish_ioctl) 370 { 371 int lyr_rval; 372 373 ASSERT(MUTEX_HELD(&tems.ts_lock)); 374 375 if (finish_ioctl) 376 (void) ldi_ioctl(tems.ts_hdl, VIS_DEVFINI, 0, 377 FWRITE | FKIOCTL, credp, &lyr_rval); 378 379 (void) ldi_close(tems.ts_hdl, 0, credp); 380 tems.ts_hdl = NULL; 381 return (ENXIO); 382 } 383 384 /* 385 * only called once during boot 386 */ 387 int 388 tem_info_init(char *pathname, cred_t *credp) 389 { 390 int lyr_rval, ret; 391 struct vis_devinit temargs; 392 char *pathbuf; 393 size_t height = 0; 394 size_t width = 0; 395 struct tem_vt_state *p; 396 397 mutex_enter(&tems.ts_lock); 398 399 if (tems.ts_initialized) { 400 mutex_exit(&tems.ts_lock); 401 return (0); 402 } 403 404 /* 405 * Open the layered device using the devfs physical device name 406 * after adding the /devices prefix. 407 */ 408 pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP); 409 (void) strcpy(pathbuf, "/devices"); 410 if (i_ddi_prompath_to_devfspath(pathname, 411 pathbuf + strlen("/devices")) != DDI_SUCCESS) { 412 cmn_err(CE_WARN, "terminal-emulator: path conversion error"); 413 kmem_free(pathbuf, MAXPATHLEN); 414 415 mutex_exit(&tems.ts_lock); 416 return (ENXIO); 417 } 418 if (ldi_open_by_name(pathbuf, FWRITE, credp, 419 &tems.ts_hdl, term_li) != 0) { 420 cmn_err(CE_WARN, "terminal-emulator: device path open error"); 421 kmem_free(pathbuf, MAXPATHLEN); 422 423 mutex_exit(&tems.ts_lock); 424 return (ENXIO); 425 } 426 kmem_free(pathbuf, MAXPATHLEN); 427 428 temargs.modechg_cb = (vis_modechg_cb_t)tems_modechange_callback; 429 temargs.modechg_arg = NULL; 430 431 /* 432 * Initialize the console and get the device parameters 433 */ 434 if (ldi_ioctl(tems.ts_hdl, VIS_DEVINIT, 435 (intptr_t)&temargs, FWRITE|FKIOCTL, credp, &lyr_rval) != 0) { 436 cmn_err(CE_WARN, "terminal emulator: Compatible fb not found"); 437 ret = tems_failed(credp, B_FALSE); 438 mutex_exit(&tems.ts_lock); 439 return (ret); 440 } 441 442 /* Make sure the fb driver and terminal emulator versions match */ 443 if (temargs.version != VIS_CONS_REV) { 444 cmn_err(CE_WARN, 445 "terminal emulator: VIS_CONS_REV %d (see sys/visual_io.h) " 446 "of console fb driver not supported", temargs.version); 447 ret = tems_failed(credp, B_TRUE); 448 mutex_exit(&tems.ts_lock); 449 return (ret); 450 } 451 452 if ((tems.ts_fb_polledio = temargs.polledio) == NULL) { 453 cmn_err(CE_WARN, "terminal emulator: fb doesn't support polled " 454 "I/O"); 455 ret = tems_failed(credp, B_TRUE); 456 mutex_exit(&tems.ts_lock); 457 return (ret); 458 } 459 460 /* other sanity checks */ 461 if (!((temargs.depth == 4) || (temargs.depth == 8) || 462 (temargs.depth == 15) || (temargs.depth == 16) || 463 (temargs.depth == 24) || (temargs.depth == 32))) { 464 cmn_err(CE_WARN, "terminal emulator: unsupported depth"); 465 ret = tems_failed(credp, B_TRUE); 466 mutex_exit(&tems.ts_lock); 467 return (ret); 468 } 469 470 if ((temargs.mode != VIS_TEXT) && (temargs.mode != VIS_PIXEL)) { 471 cmn_err(CE_WARN, "terminal emulator: unsupported mode"); 472 ret = tems_failed(credp, B_TRUE); 473 mutex_exit(&tems.ts_lock); 474 return (ret); 475 } 476 477 if ((temargs.mode == VIS_PIXEL) && plat_stdout_is_framebuffer()) 478 plat_tem_get_prom_size(&height, &width); 479 480 /* 481 * Initialize the common terminal emulator info 482 */ 483 tems_setup_terminal(&temargs, height, width); 484 485 tems_reset_colormap(credp, CALLED_FROM_NORMAL); 486 tems_get_initial_color(&tems.ts_init_color); 487 488 tems.ts_initialized = 1; /* initialization flag */ 489 490 for (p = list_head(&tems.ts_list); p != NULL; 491 p = list_next(&tems.ts_list, p)) { 492 mutex_enter(&p->tvs_lock); 493 tem_internal_init(p, credp, B_TRUE, B_FALSE); 494 tem_align(p, credp, CALLED_FROM_NORMAL); 495 mutex_exit(&p->tvs_lock); 496 } 497 498 mutex_exit(&tems.ts_lock); 499 return (0); 500 } 501 502 #define TEMS_DEPTH_DIFF 0x01 503 #define TEMS_DIMENSION_DIFF 0x02 504 505 static uchar_t 506 tems_check_videomode(struct vis_devinit *tp) 507 { 508 uchar_t result = 0; 509 510 if (tems.ts_pdepth != tp->depth) 511 result |= TEMS_DEPTH_DIFF; 512 513 if (tp->mode == VIS_TEXT) { 514 if (tems.ts_c_dimension.width != tp->width || 515 tems.ts_c_dimension.height != tp->height) 516 result |= TEMS_DIMENSION_DIFF; 517 } else { 518 if (tems.ts_p_dimension.width != tp->width || 519 tems.ts_p_dimension.height != tp->height) 520 result |= TEMS_DIMENSION_DIFF; 521 } 522 523 return (result); 524 } 525 526 static void 527 tems_setup_font(screen_size_t height, screen_size_t width) 528 { 529 bitmap_data_t *font_data; 530 int i; 531 532 /* 533 * set_font() will select an appropriate sized font for 534 * the number of rows and columns selected. If we don't 535 * have a font that will fit, then it will use the 536 * default builtin font and adjust the rows and columns 537 * to fit on the screen. 538 */ 539 font_data = set_font(&tems.ts_c_dimension.height, 540 &tems.ts_c_dimension.width, height, width); 541 542 /* 543 * To use loaded font, we assign the loaded font data to tems.ts_font. 544 * In case of next load, the previously loaded data is freed 545 * when loading the new font. 546 */ 547 for (i = 0; i < VFNT_MAPS; i++) { 548 tems.ts_font.vf_map[i] = 549 font_data->font->vf_map[i]; 550 tems.ts_font.vf_map_count[i] = 551 font_data->font->vf_map_count[i]; 552 } 553 554 tems.ts_font.vf_bytes = font_data->font->vf_bytes; 555 tems.ts_font.vf_width = font_data->font->vf_width; 556 tems.ts_font.vf_height = font_data->font->vf_height; 557 } 558 559 static void 560 tems_setup_terminal(struct vis_devinit *tp, size_t height, size_t width) 561 { 562 int old_blank_buf_size = tems.ts_c_dimension.width * 563 sizeof (*tems.ts_blank_line); 564 565 ASSERT(MUTEX_HELD(&tems.ts_lock)); 566 567 tems.ts_pdepth = tp->depth; 568 tems.ts_linebytes = tp->linebytes; 569 tems.ts_display_mode = tp->mode; 570 tems.ts_color_map = tp->color_map; 571 572 switch (tp->mode) { 573 case VIS_TEXT: 574 tems.ts_p_dimension.width = 0; 575 tems.ts_p_dimension.height = 0; 576 tems.ts_c_dimension.width = tp->width; 577 tems.ts_c_dimension.height = tp->height; 578 tems.ts_callbacks = &tem_safe_text_callbacks; 579 580 tems_setup_font(16 * tp->height + BORDER_PIXELS, 581 8 * tp->width + BORDER_PIXELS); 582 583 break; 584 585 case VIS_PIXEL: 586 /* 587 * First check to see if the user has specified a screen size. 588 * If so, use those values. Else use 34x80 as the default. 589 */ 590 if (width == 0) { 591 width = TEM_DEFAULT_COLS; 592 height = TEM_DEFAULT_ROWS; 593 } 594 tems.ts_c_dimension.height = (screen_size_t)height; 595 tems.ts_c_dimension.width = (screen_size_t)width; 596 tems.ts_p_dimension.height = tp->height; 597 tems.ts_p_dimension.width = tp->width; 598 tems.ts_callbacks = &tem_safe_pix_callbacks; 599 600 tems_setup_font(tp->height, tp->width); 601 602 tems.ts_p_offset.y = (tems.ts_p_dimension.height - 603 (tems.ts_c_dimension.height * tems.ts_font.vf_height)) / 2; 604 tems.ts_p_offset.x = (tems.ts_p_dimension.width - 605 (tems.ts_c_dimension.width * tems.ts_font.vf_width)) / 2; 606 607 tems.ts_pix_data_size = 608 tems.ts_font.vf_width * tems.ts_font.vf_height; 609 tems.ts_pix_data_size *= 4; 610 tems.ts_pdepth = tp->depth; 611 612 break; 613 } 614 615 /* Now virtual cls also uses the blank_line buffer */ 616 if (tems.ts_blank_line) 617 kmem_free(tems.ts_blank_line, old_blank_buf_size); 618 619 tems.ts_blank_line = kmem_alloc(tems.ts_c_dimension.width * 620 sizeof (*tems.ts_blank_line), KM_SLEEP); 621 } 622 623 /* 624 * This is a callback function that we register with the frame 625 * buffer driver layered underneath. It gets invoked from 626 * the underlying frame buffer driver to reconfigure the terminal 627 * emulator to a new screen size and depth in conjunction with 628 * framebuffer videomode changes. 629 * Here we keep the foreground/background color and attributes, 630 * which may be different with the initial settings, so that 631 * the color won't change while the framebuffer videomode changes. 632 * And we also reset the kernel terminal emulator and clear the 633 * whole screen. 634 */ 635 /* ARGSUSED */ 636 void 637 tems_modechange_callback(struct vis_modechg_arg *arg, 638 struct vis_devinit *devinit) 639 { 640 uchar_t diff; 641 struct tem_vt_state *p; 642 tem_modechg_cb_t cb; 643 tem_modechg_cb_arg_t cb_arg; 644 645 ASSERT(!(list_is_empty(&tems.ts_list))); 646 647 mutex_enter(&tems.ts_lock); 648 649 /* 650 * currently only for pixel mode 651 */ 652 diff = tems_check_videomode(devinit); 653 if (diff == 0) { 654 mutex_exit(&tems.ts_lock); 655 return; 656 } 657 658 diff = diff & TEMS_DIMENSION_DIFF; 659 660 if (diff == 0) { 661 /* 662 * Only need to reinit the active tem. 663 */ 664 struct tem_vt_state *active = tems.ts_active; 665 tems.ts_pdepth = devinit->depth; 666 667 mutex_enter(&active->tvs_lock); 668 ASSERT(active->tvs_isactive); 669 tem_reinit(active, B_TRUE); 670 mutex_exit(&active->tvs_lock); 671 672 mutex_exit(&tems.ts_lock); 673 return; 674 } 675 676 tems_setup_terminal(devinit, tems.ts_c_dimension.height, 677 tems.ts_c_dimension.width); 678 679 for (p = list_head(&tems.ts_list); p != NULL; 680 p = list_next(&tems.ts_list, p)) { 681 mutex_enter(&p->tvs_lock); 682 tem_reinit(p, p->tvs_isactive); 683 mutex_exit(&p->tvs_lock); 684 } 685 686 687 if (tems.ts_modechg_cb == NULL) { 688 mutex_exit(&tems.ts_lock); 689 return; 690 } 691 692 cb = tems.ts_modechg_cb; 693 cb_arg = tems.ts_modechg_arg; 694 695 /* 696 * Release the lock while doing callback. 697 */ 698 mutex_exit(&tems.ts_lock); 699 cb(cb_arg); 700 } 701 702 /* 703 * This function is used to clear entire screen via the underlying framebuffer 704 * driver. 705 */ 706 int 707 tems_cls_layered(struct vis_consclear *pda, 708 cred_t *credp) 709 { 710 int rval; 711 712 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCLEAR, 713 (intptr_t)pda, FKIOCTL, credp, &rval); 714 return (rval); 715 } 716 717 /* 718 * This function is used to display a rectangular blit of data 719 * of a given size and location via the underlying framebuffer driver. 720 * The blit can be as small as a pixel or as large as the screen. 721 */ 722 void 723 tems_display_layered(struct vis_consdisplay *pda, 724 cred_t *credp) 725 { 726 int rval; 727 728 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSDISPLAY, 729 (intptr_t)pda, FKIOCTL, credp, &rval); 730 } 731 732 /* 733 * This function is used to invoke a block copy operation in the 734 * underlying framebuffer driver. Rectangle copies are how scrolling 735 * is implemented, as well as horizontal text shifting escape seqs. 736 * such as from vi when deleting characters and words. 737 */ 738 void 739 tems_copy_layered(struct vis_conscopy *pma, 740 cred_t *credp) 741 { 742 int rval; 743 744 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCOPY, 745 (intptr_t)pma, FKIOCTL, credp, &rval); 746 } 747 748 /* 749 * This function is used to show or hide a rectangluar monochrom 750 * pixel inverting, text block cursor via the underlying framebuffer. 751 */ 752 void 753 tems_cursor_layered(struct vis_conscursor *pca, 754 cred_t *credp) 755 { 756 int rval; 757 758 (void) ldi_ioctl(tems.ts_hdl, VIS_CONSCURSOR, 759 (intptr_t)pca, FKIOCTL, credp, &rval); 760 } 761 762 static void 763 tem_kdsetmode(int mode, cred_t *credp) 764 { 765 int rval; 766 767 (void) ldi_ioctl(tems.ts_hdl, KDSETMODE, 768 (intptr_t)mode, FKIOCTL, credp, &rval); 769 770 } 771 772 static void 773 tems_reset_colormap(cred_t *credp, enum called_from called_from) 774 { 775 struct vis_cmap cm; 776 int rval; 777 778 if (called_from == CALLED_FROM_STANDALONE) 779 return; 780 781 switch (tems.ts_pdepth) { 782 case 8: 783 cm.index = 0; 784 cm.count = 16; 785 cm.red = (uint8_t *)cmap4_to_24.red; 786 cm.blue = (uint8_t *)cmap4_to_24.blue; 787 cm.green = (uint8_t *)cmap4_to_24.green; 788 (void) ldi_ioctl(tems.ts_hdl, VIS_PUTCMAP, (intptr_t)&cm, 789 FKIOCTL, credp, &rval); 790 break; 791 } 792 } 793 794 void 795 tem_get_size(ushort_t *r, ushort_t *c, ushort_t *x, ushort_t *y) 796 { 797 mutex_enter(&tems.ts_lock); 798 *r = (ushort_t)tems.ts_c_dimension.height; 799 *c = (ushort_t)tems.ts_c_dimension.width; 800 *x = (ushort_t)tems.ts_p_dimension.width; 801 *y = (ushort_t)tems.ts_p_dimension.height; 802 mutex_exit(&tems.ts_lock); 803 } 804 805 void 806 tem_register_modechg_cb(tem_modechg_cb_t func, tem_modechg_cb_arg_t arg) 807 { 808 mutex_enter(&tems.ts_lock); 809 810 tems.ts_modechg_cb = func; 811 tems.ts_modechg_arg = arg; 812 813 mutex_exit(&tems.ts_lock); 814 } 815 816 /* 817 * This function is to scroll up the OBP output, which has 818 * different screen height and width with our kernel console. 819 */ 820 static void 821 tem_prom_scroll_up(struct tem_vt_state *tem, int nrows, cred_t *credp, 822 enum called_from called_from) 823 { 824 struct vis_conscopy ma; 825 int ncols, width; 826 827 /* copy */ 828 ma.s_row = nrows * tems.ts_font.vf_height; 829 ma.e_row = tems.ts_p_dimension.height - 1; 830 ma.t_row = 0; 831 832 ma.s_col = 0; 833 ma.e_col = tems.ts_p_dimension.width - 1; 834 ma.t_col = 0; 835 836 tems_safe_copy(&ma, credp, called_from); 837 838 /* clear */ 839 width = tems.ts_font.vf_width; 840 ncols = (tems.ts_p_dimension.width + (width - 1))/ width; 841 842 tem_safe_pix_cls_range(tem, 0, nrows, tems.ts_p_offset.y, 843 0, ncols, 0, B_TRUE, credp, called_from); 844 } 845 846 #define PROM_DEFAULT_FONT_HEIGHT 22 847 #define PROM_DEFAULT_WINDOW_TOP 0x8a 848 849 /* 850 * This function is to compute the starting row of the console, according to 851 * PROM cursor's position. Here we have to take different fonts into account. 852 */ 853 static int 854 tem_adjust_row(struct tem_vt_state *tem, int prom_row, cred_t *credp, 855 enum called_from called_from) 856 { 857 int tem_row; 858 int tem_y; 859 int prom_charheight = 0; 860 int prom_window_top = 0; 861 int scroll_up_lines; 862 863 if (tems.ts_display_mode == VIS_TEXT) 864 return (prom_row); 865 866 plat_tem_get_prom_font_size(&prom_charheight, &prom_window_top); 867 if (prom_charheight == 0) 868 prom_charheight = PROM_DEFAULT_FONT_HEIGHT; 869 if (prom_window_top == 0) 870 prom_window_top = PROM_DEFAULT_WINDOW_TOP; 871 872 tem_y = (prom_row + 1) * prom_charheight + prom_window_top - 873 tems.ts_p_offset.y; 874 tem_row = (tem_y + tems.ts_font.vf_height - 1) / 875 tems.ts_font.vf_height - 1; 876 877 if (tem_row < 0) { 878 tem_row = 0; 879 } else if (tem_row >= (tems.ts_c_dimension.height - 1)) { 880 /* 881 * Scroll up the prom outputs if the PROM cursor's position is 882 * below our tem's lower boundary. 883 */ 884 scroll_up_lines = tem_row - 885 (tems.ts_c_dimension.height - 1); 886 tem_prom_scroll_up(tem, scroll_up_lines, credp, called_from); 887 tem_row = tems.ts_c_dimension.height - 1; 888 } 889 890 return (tem_row); 891 } 892 893 void 894 tem_align(struct tem_vt_state *tem, cred_t *credp, 895 enum called_from called_from) 896 { 897 uint32_t row = 0; 898 uint32_t col = 0; 899 900 plat_tem_hide_prom_cursor(); 901 902 /* 903 * We are getting the current cursor position in pixel 904 * mode so that we don't over-write the console output 905 * during boot. 906 */ 907 plat_tem_get_prom_pos(&row, &col); 908 909 /* 910 * Adjust the row if necessary when the font of our 911 * kernel console tem is different with that of prom 912 * tem. 913 */ 914 row = tem_adjust_row(tem, row, credp, called_from); 915 916 /* first line of our kernel console output */ 917 tem->tvs_first_line = row + 1; 918 919 /* re-set and align cursor position */ 920 tem->tvs_s_cursor.row = tem->tvs_c_cursor.row = 921 (screen_pos_t)row; 922 tem->tvs_s_cursor.col = tem->tvs_c_cursor.col = 0; 923 924 /* 925 * When tem is starting up, part of the screen is filled 926 * with information from boot loader and early boot. 927 * For tem, the screen content above current cursor 928 * should be treated as image. 929 */ 930 for (; row > 0; row--) { 931 for (col = 0; col < tems.ts_c_dimension.width; col++) { 932 tem->tvs_screen_rows[row][col].tc_char = 933 TEM_ATTR(TEM_ATTR_IMAGE); 934 } 935 } 936 } 937 938 static void 939 tems_get_inverses(boolean_t *p_inverse, boolean_t *p_inverse_screen) 940 { 941 int i_inverse = 0; 942 int i_inverse_screen = 0; 943 944 plat_tem_get_inverses(&i_inverse, &i_inverse_screen); 945 946 *p_inverse = (i_inverse == 0) ? B_FALSE : B_TRUE; 947 *p_inverse_screen = (i_inverse_screen == 0) ? B_FALSE : B_TRUE; 948 } 949 950 /* 951 * Get the foreground/background color and attributes from the initial 952 * PROM, so that our kernel console can keep the same visual behaviour. 953 */ 954 static void 955 tems_get_initial_color(tem_color_t *pcolor) 956 { 957 boolean_t inverse, inverse_screen; 958 unsigned short flags = 0; 959 960 pcolor->fg_color = DEFAULT_ANSI_FOREGROUND; 961 pcolor->bg_color = DEFAULT_ANSI_BACKGROUND; 962 #ifndef _HAVE_TEM_FIRMWARE 963 /* 964 * _HAVE_TEM_FIRMWARE is defined on SPARC, at this time, the 965 * plat_tem_get_colors() is implemented only on x86. 966 */ 967 plat_tem_get_colors(&pcolor->fg_color, &pcolor->bg_color); 968 #endif 969 970 tems_get_inverses(&inverse, &inverse_screen); 971 if (inverse) 972 flags |= TEM_ATTR_REVERSE; 973 if (inverse_screen) 974 flags |= TEM_ATTR_SCREEN_REVERSE; 975 976 #ifdef _HAVE_TEM_FIRMWARE 977 if (flags != 0) { 978 /* 979 * If either reverse flag is set, the screen is in 980 * white-on-black mode. We set the bold flag to 981 * improve readability. 982 */ 983 flags |= TEM_ATTR_BOLD; 984 } else { 985 /* 986 * Otherwise, the screen is in black-on-white mode. 987 * The SPARC PROM console, which starts in this mode, 988 * uses the bright white background colour so we 989 * match it here. 990 */ 991 if (pcolor->bg_color == ANSI_COLOR_WHITE) 992 flags |= TEM_ATTR_BRIGHT_BG; 993 } 994 #else 995 if (flags != 0) { 996 if (pcolor->fg_color == ANSI_COLOR_WHITE) 997 flags |= TEM_ATTR_BRIGHT_BG; 998 999 if (pcolor->fg_color == ANSI_COLOR_BLACK) 1000 flags &= ~TEM_ATTR_BRIGHT_BG; 1001 } else { 1002 /* 1003 * In case of black on white we want bright white for BG. 1004 */ 1005 if (pcolor->bg_color == ANSI_COLOR_WHITE) 1006 flags |= TEM_ATTR_BRIGHT_BG; 1007 } 1008 #endif 1009 1010 pcolor->a_flags = flags; 1011 } 1012 1013 uchar_t 1014 tem_get_fbmode(tem_vt_state_t tem_arg) 1015 { 1016 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1017 1018 uchar_t fbmode; 1019 1020 mutex_enter(&tem->tvs_lock); 1021 fbmode = tem->tvs_fbmode; 1022 mutex_exit(&tem->tvs_lock); 1023 1024 return (fbmode); 1025 } 1026 1027 void 1028 tem_set_fbmode(tem_vt_state_t tem_arg, uchar_t fbmode, cred_t *credp) 1029 { 1030 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1031 1032 mutex_enter(&tems.ts_lock); 1033 mutex_enter(&tem->tvs_lock); 1034 1035 if (fbmode == tem->tvs_fbmode) { 1036 mutex_exit(&tem->tvs_lock); 1037 mutex_exit(&tems.ts_lock); 1038 return; 1039 } 1040 1041 tem->tvs_fbmode = fbmode; 1042 1043 if (tem->tvs_isactive) { 1044 tem_kdsetmode(tem->tvs_fbmode, credp); 1045 if (fbmode == KD_TEXT) 1046 tem_safe_unblank_screen(tem, credp, CALLED_FROM_NORMAL); 1047 } 1048 1049 mutex_exit(&tem->tvs_lock); 1050 mutex_exit(&tems.ts_lock); 1051 } 1052 1053 void 1054 tem_activate(tem_vt_state_t tem_arg, boolean_t unblank, cred_t *credp) 1055 { 1056 struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg; 1057 1058 mutex_enter(&tems.ts_lock); 1059 tems.ts_active = tem; 1060 1061 mutex_enter(&tem->tvs_lock); 1062 tem->tvs_isactive = B_TRUE; 1063 1064 tem_kdsetmode(tem->tvs_fbmode, credp); 1065 1066 if (unblank) 1067 tem_safe_unblank_screen(tem, credp, CALLED_FROM_NORMAL); 1068 1069 mutex_exit(&tem->tvs_lock); 1070 mutex_exit(&tems.ts_lock); 1071 } 1072 1073 void 1074 tem_switch(tem_vt_state_t tem_arg1, tem_vt_state_t tem_arg2, cred_t *credp) 1075 { 1076 struct tem_vt_state *cur = (struct tem_vt_state *)tem_arg1; 1077 struct tem_vt_state *tobe = (struct tem_vt_state *)tem_arg2; 1078 1079 mutex_enter(&tems.ts_lock); 1080 mutex_enter(&tobe->tvs_lock); 1081 mutex_enter(&cur->tvs_lock); 1082 1083 tems.ts_active = tobe; 1084 cur->tvs_isactive = B_FALSE; 1085 tobe->tvs_isactive = B_TRUE; 1086 1087 mutex_exit(&cur->tvs_lock); 1088 1089 if (cur->tvs_fbmode != tobe->tvs_fbmode) 1090 tem_kdsetmode(tobe->tvs_fbmode, credp); 1091 1092 if (tobe->tvs_fbmode == KD_TEXT) 1093 tem_safe_unblank_screen(tobe, credp, CALLED_FROM_NORMAL); 1094 1095 mutex_exit(&tobe->tvs_lock); 1096 mutex_exit(&tems.ts_lock); 1097 } 1098