/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ /* * isa-specific console configuration routines */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(__xpv) #include #include #endif extern int pseudo_isa; int plat_use_polled_debug() { return (0); } int plat_support_serial_kbd_and_ms() { return (0); } #define A_CNT(arr) (sizeof (arr) / sizeof (arr[0])) #define CONS_INVALID -1 #define CONS_SCREEN 0 #define CONS_TTYA 1 #define CONS_TTYB 2 #define CONS_USBSER 3 #define CONS_HYPERVISOR 4 char *plat_fbpath(void); static int console_type() { static int boot_console = CONS_INVALID; char *cons; dev_info_t *root; if (boot_console != CONS_INVALID) return (boot_console); #if defined(__xpv) if (!DOMAIN_IS_INITDOMAIN(xen_info) || bcons_hypervisor_redirect()) { boot_console = CONS_HYPERVISOR; return (boot_console); } #endif /* __xpv */ /* * console is defined by "console" property, with * fallback on the old "input-device" property. * If "input-device" is not defined either, also check "output-device". */ boot_console = CONS_SCREEN; /* default is screen/kb */ root = ddi_root_node(); if ((ddi_prop_lookup_string(DDI_DEV_T_ANY, root, DDI_PROP_DONTPASS, "console", &cons) == DDI_SUCCESS) || (ddi_prop_lookup_string(DDI_DEV_T_ANY, root, DDI_PROP_DONTPASS, "input-device", &cons) == DDI_SUCCESS) || (ddi_prop_lookup_string(DDI_DEV_T_ANY, root, DDI_PROP_DONTPASS, "output-device", &cons) == DDI_SUCCESS)) { if (strcmp(cons, "ttya") == 0) { boot_console = CONS_TTYA; } else if (strcmp(cons, "ttyb") == 0) { boot_console = CONS_TTYB; } else if (strcmp(cons, "usb-serial") == 0) { (void) i_ddi_attach_hw_nodes("ehci"); (void) i_ddi_attach_hw_nodes("uhci"); (void) i_ddi_attach_hw_nodes("ohci"); /* * USB device enumerate asynchronously. * Wait 2 seconds for USB serial devices to attach. */ delay(drv_usectohz(2000000)); boot_console = CONS_USBSER; #if defined(__xpv) } else if (strcmp(cons, "hypervisor") == 0) { boot_console = CONS_HYPERVISOR; #endif /* __xpv */ } ddi_prop_free(cons); } /* * If the console is configured to use a framebuffer but none * could be found, fallback to "ttya" since it's likely to exist * and it matches longstanding behavior on SPARC. */ if (boot_console == CONS_SCREEN && plat_fbpath() == NULL) boot_console = CONS_TTYA; return (boot_console); } int plat_stdin_is_keyboard(void) { return (console_type() == CONS_SCREEN); } int plat_stdout_is_framebuffer(void) { return (console_type() == CONS_SCREEN); } static char * plat_devpath(char *name, char *path) { major_t major; dev_info_t *dip, *pdip; if ((major = ddi_name_to_major(name)) == (major_t)-1) return (NULL); if ((dip = devnamesp[major].dn_head) == NULL) return (NULL); pdip = ddi_get_parent(dip); if (i_ddi_attach_node_hierarchy(pdip) != DDI_SUCCESS) return (NULL); if (ddi_initchild(pdip, dip) != DDI_SUCCESS) return (NULL); (void) ddi_pathname(dip, path); return (path); } /* * Return generic path to keyboard device from the alias. */ char * plat_kbdpath(void) { static char kbpath[MAXPATHLEN]; /* * Hardcode to isa keyboard path * XXX make it settable via bootprop? */ if (pseudo_isa) return ("/isa/i8042@1,60/keyboard@0"); if (plat_devpath("kb8042", kbpath) == NULL) return (NULL); return (kbpath); } static int find_fb_dev(dev_info_t *dip, void *found_dip) { char *dev_type; dev_info_t *pdip; char *parent_type; if (dip == ddi_root_node()) return (DDI_WALK_CONTINUE); if (ddi_prop_lookup_string(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, "device_type", &dev_type) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); if ((strcmp(dev_type, "isa") == 0) || (strcmp(dev_type, "eisa") == 0)) { ddi_prop_free(dev_type); return (DDI_WALK_CONTINUE); } if ((strcmp(dev_type, "pci") == 0) || (strcmp(dev_type, "pciex") == 0)) { ddi_acc_handle_t pci_conf; uint16_t data16; char *nodename; ddi_prop_free(dev_type); nodename = ddi_node_name(dip); if (strcmp(nodename, "pci") == 0) { /* pci root dip */ return (DDI_WALK_CONTINUE); } if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); if (pci_config_setup(dip, &pci_conf) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); data16 = pci_config_get16(pci_conf, PCI_BCNF_BCNTRL); pci_config_teardown(&pci_conf); if (data16 & PCI_BCNF_BCNTRL_VGA_ENABLE) return (DDI_WALK_CONTINUE); return (DDI_WALK_PRUNECHILD); } if (strcmp(dev_type, "display") != 0) { ddi_prop_free(dev_type); return (DDI_WALK_CONTINUE); } ddi_prop_free(dev_type); if ((pdip = ddi_get_parent(dip)) == NULL) return (DDI_WALK_PRUNECHILD); if (ddi_prop_lookup_string(DDI_DEV_T_ANY, pdip, DDI_PROP_DONTPASS, "device_type", &parent_type) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); if ((strcmp(parent_type, "isa") == 0) || (strcmp(parent_type, "eisa") == 0)) { *(dev_info_t **)found_dip = dip; ddi_prop_free(parent_type); return (DDI_WALK_TERMINATE); } if ((strcmp(parent_type, "pci") == 0) || (strcmp(parent_type, "pciex") == 0)) { ddi_acc_handle_t pci_conf; uint16_t data16; ddi_prop_free(parent_type); if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); if (pci_config_setup(dip, &pci_conf) != DDI_SUCCESS) return (DDI_WALK_PRUNECHILD); data16 = pci_config_get16(pci_conf, PCI_CONF_COMM); pci_config_teardown(&pci_conf); if (!(data16 & PCI_COMM_IO)) return (DDI_WALK_PRUNECHILD); *(dev_info_t **)found_dip = dip; return (DDI_WALK_TERMINATE); } ddi_prop_free(parent_type); return (DDI_WALK_PRUNECHILD); } /* * Conduct a width-first traverse searching for a display device which * has either: * 1) a VGA device. * 2) a PCI VGA compatible device whose IO space is enabled * and the VGA Enable bit of any PCI-PCI bridge above it is set. * * Return the device path as the console fb path. */ char * plat_fbpath(void) { dev_info_t *fb_dip = NULL; static char *fbpath = NULL; static char fbpath_buf[MAXPATHLEN]; ddi_walk_devs(ddi_root_node(), find_fb_dev, &fb_dip); if (fb_dip == NULL) return (NULL); (void) ddi_pathname(fb_dip, fbpath_buf); fbpath = fbpath_buf; return (fbpath); } char * plat_mousepath(void) { static char mpath[MAXPATHLEN]; /* * Hardcode to isa mouse path * XXX make it settable via bootprop? */ if (pseudo_isa) return ("/isa/i8042@1,60/mouse@1"); if (plat_devpath("mouse8042", mpath) == NULL) return (NULL); return (mpath); } /* return path of first usb serial device */ static char * plat_usbser_path(void) { extern dev_info_t *usbser_first_device(void); dev_info_t *us_dip; static char *us_path = NULL; if (us_path) return (us_path); us_dip = usbser_first_device(); if (us_dip == NULL) return (NULL); us_path = kmem_alloc(MAXPATHLEN, KM_SLEEP); (void) ddi_pathname(us_dip, us_path); ndi_rele_devi(us_dip); /* held from usbser_first_device */ return (us_path); } static char * plat_ttypath(int inum) { static char *defaultpath[] = { "/isa/asy@1,3f8:a", "/isa/asy@1,2f8:b" }; static char path[MAXPATHLEN]; char *bp; major_t major; dev_info_t *dip; if (pseudo_isa) return (defaultpath[inum]); if ((major = ddi_name_to_major("asy")) == (major_t)-1) return (NULL); if ((dip = devnamesp[major].dn_head) == NULL) return (NULL); for (; dip != NULL; dip = ddi_get_next(dip)) { if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS) return (NULL); if (DEVI(dip)->devi_minor->ddm_name[0] == ('a' + (char)inum)) break; } if (dip == NULL) return (NULL); (void) ddi_pathname(dip, path); bp = path + strlen(path); (void) snprintf(bp, 3, ":%s", DEVI(dip)->devi_minor->ddm_name); return (path); } /* * Lacking support for com2 and com3, if that matters. * Another possible enhancement could be to use properties * for the port mapping rather than simply hard-code them. */ char * plat_stdinpath(void) { switch (console_type()) { #if defined(__xpv) case CONS_HYPERVISOR: return ("/xpvd/xencons@0"); #endif /* __xpv */ case CONS_TTYA: return (plat_ttypath(0)); case CONS_TTYB: return (plat_ttypath(1)); case CONS_USBSER: return (plat_usbser_path()); case CONS_SCREEN: default: break; }; return (plat_kbdpath()); } char * plat_stdoutpath(void) { switch (console_type()) { #if defined(__xpv) case CONS_HYPERVISOR: return ("/xpvd/xencons@0"); #endif /* __xpv */ case CONS_TTYA: return (plat_ttypath(0)); case CONS_TTYB: return (plat_ttypath(1)); case CONS_USBSER: return (plat_usbser_path()); case CONS_SCREEN: default: break; }; return (plat_fbpath()); } /* * If VIS_PIXEL mode will be implemented on x86, these following * functions should be re-considered. Now these functions are * unused on x86. */ void plat_tem_get_inverses(int *inverse, int *inverse_screen) { *inverse = 0; *inverse_screen = 0; } void plat_tem_get_prom_font_size(int *charheight, int *windowtop) { *charheight = 0; *windowtop = 0; } /*ARGSUSED*/ void plat_tem_get_prom_size(size_t *height, size_t *width) { panic("unimplemented at line %d of %s", __LINE__, __FILE__); } void plat_tem_hide_prom_cursor(void) { panic("unimplemented at line %d of %s", __LINE__, __FILE__); } /*ARGSUSED*/ void plat_tem_get_prom_pos(uint32_t *row, uint32_t *col) { panic("unimplemented at line %d of %s", __LINE__, __FILE__); }