]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/dev/i386/km.c
xnu-792.13.8.tar.gz
[apple/xnu.git] / bsd / dev / i386 / km.c
index 3078987366c5ad513b858e367d215294e9bfcde6..46c6f2287f90b8a16765aa6baf3df34eb7f43ce9 100644 (file)
@@ -1,26 +1,31 @@
 /*
  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
- * 
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
+ * This file contains Original Code and/or Modifications of Original Code 
+ * as defined in and that are subject to the Apple Public Source License 
+ * Version 2.0 (the 'License'). You may not use this file except in 
+ * compliance with the License.  The rights granted to you under the 
+ * License may not be used to create, or enable the creation or 
+ * redistribution of, unlawful or unlicensed copies of an Apple operating 
+ * system, or to circumvent, violate, or enable the circumvention or 
+ * violation of, any terms of an Apple operating system software license 
+ * agreement.
+ *
+ * Please obtain a copy of the License at 
+ * http://www.opensource.apple.com/apsl/ and read it before using this 
  * file.
- * 
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
+ *
+ * The Original Code and all software distributed under the License are 
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
+ * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
+ * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
+ * Please see the License for the specific language governing rights and 
  * limitations under the License.
- * 
- * @APPLE_LICENSE_HEADER_END@
+ *
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
  */
 /*     Copyright (c) 1992 NeXT Computer, Inc.  All rights reserved. 
  *
 #include <sys/time.h>
 #include <dev/kmreg_com.h>
 #include <pexpert/pexpert.h>
+#include <pexpert/i386/boot.h>
+
+extern int hz;
+
+extern void cnputcusr(char);
+extern int  cngetc(void);
+
+void   kminit(void);
+int    kmopen(dev_t dev, int flag, int devtype, struct proc *pp);
+int    kmclose(dev_t dev, int flag, int mode, struct proc *p);
+int    kmread(dev_t dev, struct uio *uio, int ioflag);
+int    kmwrite(dev_t dev, struct uio *uio, int ioflag);
+int    kmioctl(dev_t dev, int cmd, caddr_t data, int flag, struct proc *p);
+int    kmputc(int c);
+int    kmgetc(dev_t dev);
+int    kmgetc_silent(dev_t dev);
+void   cons_cinput(char ch);
 
 /*
  * 'Global' variables, shared only by this file and conf.c.
  */
-extern struct tty      cons;
 struct tty *km_tty[1] = { &cons };
 
 /*
@@ -66,9 +87,10 @@ static void kmstart(struct tty *tp);
 
 extern void KeyboardOpen(void);
 
-int kminit()
+void
+kminit(void)
 {
-        cons.t_dev = makedev(12, 0);
+       cons.t_dev = makedev(12, 0);
        initialized = 1;
 }
 /*
@@ -78,10 +100,9 @@ int
 kmopen(
        dev_t dev, 
        int flag,
-       int devtype, 
+       __unused int devtype, 
        struct proc *pp)
 {
-       int rtn;
        int unit;
        struct tty *tp;
        struct winsize *wp;
@@ -104,7 +125,7 @@ kmopen(
                tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
                termioschars(&tp->t_termios);
                ttsetwater(tp);
-       } else if ((tp->t_state & TS_XCLUDE) && pp->p_ucred->cr_uid != 0)
+       } else if ((tp->t_state & TS_XCLUDE) && proc_suser(pp))
                return EBUSY;
 
        tp->t_state |= TS_CARR_ON; /* lie and say carrier exists and is on. */
@@ -123,7 +144,10 @@ kmopen(
 
                bzero(&video, sizeof(video));
                PE_current_console(&video);
-               if( video.v_width != 0 && video.v_height != 0 ) {
+                if( video.v_display == VGA_TEXT_MODE ) {
+                        wp->ws_col = video.v_width;
+                        wp->ws_row = video.v_height;
+                } else if( video.v_width != 0 && video.v_height != 0 ) {
                        wp->ws_col = video.v_width / wp->ws_xpixel;
                        wp->ws_row = video.v_height / wp->ws_ypixel;
                } else {
@@ -136,10 +160,10 @@ kmopen(
 
 int 
 kmclose(
-       dev_t dev, 
+       __unused dev_t dev, 
        int flag,
-       int mode,
-       struct proc *p)
+       __unused int mode,
+       __unused struct proc *p)
 {
         
        struct tty *tp;
@@ -152,7 +176,7 @@ kmclose(
 
 int 
 kmread(
-       dev_t dev, 
+       __unused dev_t dev, 
        struct uio *uio,
        int ioflag)
 {
@@ -164,7 +188,7 @@ kmread(
 
 int 
 kmwrite(
-       dev_t dev, 
+       __unused dev_t dev, 
        struct uio *uio,
        int ioflag)
 {
@@ -176,7 +200,7 @@ kmwrite(
 
 int 
 kmioctl(
-       dev_t dev, 
+       __unused dev_t dev, 
        int cmd, 
        caddr_t data, 
        int flag,
@@ -212,16 +236,9 @@ kmioctl(
            }
            default:            
                error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
-               if (error >= 0) {
+               if (ENOTTY != error)
                        return error;
-               }
-               error = ttioctl (tp, cmd, data, flag, p);
-               if (error >= 0) {
-                       return error;
-               }
-               else {
-                       return ENOTTY;
-               }
+               return ttioctl (tp, cmd, data, flag, p);
        }
 }
 
@@ -237,16 +254,16 @@ kmputc(
                return( 0);
 
        if(c == '\n')
-               cnputc('\r');
+               cnputcusr('\r');
 
-       cnputc(c);
+       cnputcusr(c);
 
        return 0;
 }
 
 int 
 kmgetc(
-       dev_t dev)
+       __unused dev_t dev)
 {
        int c;
        
@@ -255,13 +272,13 @@ kmgetc(
        if (c == '\r') {
                c = '\n';
        }
-       cnputc(c);
+       cnputcusr(c);
        return c;
 }
 
 int 
 kmgetc_silent(
-       dev_t dev)
+       __unused dev_t dev)
 {
        int c;
        
@@ -282,31 +299,17 @@ static void
 kmstart(
        struct tty *tp)
 {
-       extern int hz;
        if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP))
                goto out;
        if (tp->t_outq.c_cc == 0)
                goto out;
        tp->t_state |= TS_BUSY;
-       if (tp->t_outq.c_cc > tp->t_lowat) {
-               /*
-                * Start immediately.
-                */
-               kmoutput(tp);
-       }
-       else {
-               /*
-                * Wait a bit...
-                */
-#if 0
-               /* FIXME */
-               timeout(kmtimeout, tp, hz);
-#else
-               kmoutput(tp);
-#endif
-       }
+       kmoutput(tp);
+       return;
+
 out:
-       ttwwakeup(tp);
+       (*linesw[tp->t_line].l_start)(tp);
+       return;
 }
 
 static void
@@ -331,7 +334,6 @@ kmoutput(
        char            buf[80];
        char            *cp;
        int             cc = -1;
-       extern int hz;
 
 
        while (tp->t_outq.c_cc > 0) {
@@ -348,17 +350,16 @@ kmoutput(
                timeout(kmtimeout, tp, hz);
        }
        tp->t_state &= ~TS_BUSY;
-       ttwwakeup(tp);
+       (*linesw[tp->t_line].l_start)(tp);
 
        return 0;
 }
+
+void
 cons_cinput(char ch)
 {
        struct tty *tp = &cons;
-       boolean_t       funnel_state;
-
        
        (*linesw[tp->t_line].l_rint) (ch, tp);
-
 }