/* $OpenBSD: wscons_machdep.c,v 1.2 2006/08/27 16:55:41 miod Exp $ */ /* * Copyright (c) 2006 Miodrag Vallat. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice, this permission notice, and the disclaimer below * appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include "wsdisplay.h" #include "wskbd.h" #include #include #include #include "dzkbd.h" #include #include #include #include "qsckbd.h" #include #include "gpx.h" #include "lcg.h" #include "lcspx.h" #include "smg.h" void (*wsfbcninit)(void) = NULL; #define FRAMEBUFFER_PROTOS(fb) \ extern int fb##cnprobe(void); \ extern void fb##cninit(void); #define FRAMEBUFFER_PROBE(fb) \ do { \ if (fb##cnprobe()) { \ wsfbcninit = fb##cninit; \ goto found; \ } \ } while (0) FRAMEBUFFER_PROTOS(gpx); FRAMEBUFFER_PROTOS(lcg); FRAMEBUFFER_PROTOS(lcspx); FRAMEBUFFER_PROTOS(smg); #include cons_decl(ws); void wscnprobe(struct consdev *cp) { extern int getmajor(void *); /* conf.c */ int major; major = getmajor(wsdisplayopen); if (major < 0) return; #if NGPX > 0 FRAMEBUFFER_PROBE(gpx); #endif #if NLCG > 0 FRAMEBUFFER_PROBE(lcg); #endif #if NLCSPX > 0 FRAMEBUFFER_PROBE(lcspx); #endif #if NSMG > 0 FRAMEBUFFER_PROBE(smg); #endif return; found: cp->cn_pri = CN_INTERNAL; cp->cn_dev = makedev(major, 0); } void wscninit(struct consdev *cp) { (*wsfbcninit)(); switch (vax_bustype) { case VAX_VSBUS: #if NDZKBD > 0 dzkbd_cnattach(0); /* Connect keyboard and screen together */ #endif break; case VAX_VXTBUS: #if NQSCKBD > 0 qsckbd_cnattach(QSC_LINE_KEYBOARD); #endif break; } } void wscnputc(dev_t dev, int c) { #if NWSDISPLAY > 0 wsdisplay_cnputc(dev, c); #endif } int wscngetc(dev_t dev) { #if NWSKBD > 0 return (wskbd_cngetc(dev)); #else return (0); #endif } void wscnpollc(dev_t dev, int on) { #if NWSKBD > 0 wskbd_cnpollc(dev, on); #endif }