/* $NetBSD: consinit.c,v 1.28.10.1 2019/06/12 10:17:32 martin Exp $ */ /* * Copyright (c) 1998 * Matthias Drochner. All rights reserved. * * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. * */ #include __KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.28.10.1 2019/06/12 10:17:32 martin Exp $"); #include "opt_kgdb.h" #include "opt_puc.h" #include #include #include #include #include #include #include #include #include "nullcons.h" #include "genfb.h" #include "vga.h" #include "ega.h" #include "pcdisplay.h" #include "com_puc.h" #if (NVGA > 0) || (NEGA > 0) || (NPCDISPLAY > 0) #include #include #if (NVGA > 0) #include #include #endif #if (NEGA > 0) #include #endif #if (NPCDISPLAY > 0) #include #endif #endif #include "pckbc.h" #if (NPCKBC > 0) #include #include #include #include #endif #include "pckbd.h" /* for pckbc_machdep_cnattach */ #if (NGENFB > 0) #include #endif #include "com.h" #if (NCOM > 0) #include #include #include #endif #if (NCOM_PUC > 0) #include #endif #include "ukbd.h" #if (NUKBD > 0) #include #endif #ifndef XEN #include "hvkbd.h" #if NHVKBD > 0 #include #endif #endif #ifndef CONSDEVNAME #define CONSDEVNAME "pc" #endif #if (NCOM > 0) #ifndef CONADDR #define CONADDR 0x3f8 #endif #ifndef CONSPEED #define CONSPEED TTYDEF_SPEED #endif #ifndef CONMODE #define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8) /* 8N1 */ #endif int comcnmode = CONMODE; #endif /* NCOM */ const struct btinfo_console default_consinfo = { {0, 0}, CONSDEVNAME, #if (NCOM > 0) CONADDR, CONSPEED #else 0, 0 #endif }; #ifdef KGDB #ifndef KGDB_DEVNAME #define KGDB_DEVNAME "com" #endif const char kgdb_devname[] = KGDB_DEVNAME; #if (NCOM > 0) #ifndef KGDB_DEVADDR #define KGDB_DEVADDR 0x3f8 #endif int comkgdbaddr = KGDB_DEVADDR; #ifndef KGDB_DEVRATE #define KGDB_DEVRATE TTYDEF_SPEED #endif int comkgdbrate = KGDB_DEVRATE; #ifndef KGDB_DEVMODE #define KGDB_DEVMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8) /* 8N1 */ #endif int comkgdbmode = KGDB_DEVMODE; #endif /* NCOM */ #endif /* KGDB */ /* * consinit: * initialize the system console. * XXX - shouldn't deal with this initted thing, but then, * it shouldn't be called from init386 either. */ void consinit(void) { const struct btinfo_console *consinfo; #if (NGENFB > 0) const struct btinfo_framebuffer *fbinfo; #endif static int initted; #if (NCOM > 0) int rv; #endif if (initted) return; initted = 1; #ifndef CONS_OVERRIDE consinfo = lookup_bootinfo(BTINFO_CONSOLE); if (!consinfo) #endif consinfo = &default_consinfo; #if (NGENFB > 0) fbinfo = lookup_bootinfo(BTINFO_FRAMEBUFFER); #endif if (!strcmp(consinfo->devname, "pc")) { int error; #if (NGENFB > 0) if (fbinfo && fbinfo->physaddr > 0) { if (x86_genfb_cnattach() == -1) { initted = 0; /* defer */ return; } genfb_cnattach(); goto dokbd; } genfb_disable(); #endif #if (NVGA > 0) if (!vga_cnattach(x86_bus_space_io, x86_bus_space_mem, -1, 1)) goto dokbd; #endif #if (NEGA > 0) if (!ega_cnattach(x86_bus_space_io, x86_bus_space_mem)) goto dokbd; #endif #if (NPCDISPLAY > 0) if (!pcdisplay_cnattach(x86_bus_space_io, x86_bus_space_mem)) goto dokbd; #endif if (0) goto dokbd; /* XXX stupid gcc */ dokbd: error = ENODEV; #if (NPCKBC > 0) error = pckbc_cnattach(x86_bus_space_io, IO_KBD, KBCMDP, PCKBC_KBD_SLOT, 0); #endif #if (NHVKBD > 0) if (error && vm_guest == VM_GUEST_HV) error = hvkbd_cnattach(); #endif #if (NUKBD > 0) if (error) error = ukbd_cnattach(); #endif if (error) printf("WARNING: no console keyboard, error=%d\n", error); return; } #if (NCOM > 0) if (!strcmp(consinfo->devname, "com")) { int addr = consinfo->addr; int speed = consinfo->speed; #if (NCOM_PUC > 0) && defined(PUC_CNAUTO) puc_cnprobe(NULL); rv = puc_cninit(NULL); if (rv == 0) return; #endif if (addr == 0) addr = CONADDR; if (speed == 0) speed = CONSPEED; rv = comcnattach(x86_bus_space_io, addr, speed, COM_FREQ, COM_TYPE_NORMAL, comcnmode); if (rv != 0) panic("can't init serial console @%x", consinfo->addr); return; } #endif #if (NNULLCONS > 0) if (!strcmp(consinfo->devname, "nullcons")) { void nullcninit(struct consdev *cn); nullcninit(0); return; } #endif panic("invalid console device %s", consinfo->devname); } #ifdef KGDB void kgdb_port_init(void) { #if (NCOM > 0) if(!strcmp(kgdb_devname, "com")) { com_kgdb_attach(x86_bus_space_io, comkgdbaddr, comkgdbrate, COM_FREQ, COM_TYPE_NORMAL, comkgdbmode); } #endif } #endif