Merge from vendor branch GCC:
[dragonfly.git] / sys / dev / misc / syscons / scvesactl.c
1 /*-
2  * Copyright (c) 1998 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to The DragonFly Project
6  * by Sascha Wildner <saw@online.de>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer as
13  *    the first lines of this file unmodified.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * $FreeBSD: src/sys/dev/syscons/scvesactl.c,v 1.15 2000/01/29 15:08:47 peter Exp $
30  * $DragonFly: src/sys/dev/misc/syscons/Attic/scvesactl.c,v 1.6 2004/09/04 06:15:08 dillon Exp $
31  */
32
33 #include "opt_vga.h"
34
35 #ifndef VGA_NO_MODE_CHANGE
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/conf.h>
40 #include <sys/tty.h>
41 #include <sys/kernel.h>
42
43 #include <machine/console.h>
44 #include <machine/pc/vesa.h>
45
46 #include <dev/video/fb/fbreg.h>
47 #include "syscons.h"
48
49 static d_ioctl_t *prev_user_ioctl;
50
51 static int
52 vesa_ioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
53 {
54         scr_stat *scp;
55         struct tty *tp;
56         int mode;
57
58         tp = dev->si_tty;
59         if (!tp)
60                 return ENXIO;
61         scp = SC_STAT(tp->t_dev);
62
63         switch (cmd) {
64
65         /* generic text modes */
66         case SW_TEXT_132x25: case SW_TEXT_132x30:
67         case SW_TEXT_132x43: case SW_TEXT_132x50:
68         case SW_TEXT_132x60:
69                 if (!(scp->sc->adp->va_flags & V_ADP_MODECHANGE))
70                         return ENODEV;
71                 return sc_set_text_mode(scp, tp, cmd & 0xff, 0, 0, 0);
72
73         /* text modes */
74         case SW_VESA_C80x60:
75         case SW_VESA_C132x25:
76         case SW_VESA_C132x43:
77         case SW_VESA_C132x50:
78         case SW_VESA_C132x60:
79                 if (!(scp->sc->adp->va_flags & V_ADP_MODECHANGE))
80                         return ENODEV;
81                 mode = (cmd & 0xff) + M_VESA_BASE;
82                 return sc_set_text_mode(scp, tp, mode, 0, 0, 0);
83
84         /* graphics modes */
85         case SW_VESA_32K_320:   case SW_VESA_64K_320: 
86         case SW_VESA_FULL_320:
87
88         case SW_VESA_CG640x400:
89
90         case SW_VESA_CG640x480:
91         case SW_VESA_32K_640:   case SW_VESA_64K_640:
92         case SW_VESA_FULL_640:
93
94         case SW_VESA_800x600:   case SW_VESA_CG800x600:
95         case SW_VESA_32K_800:   case SW_VESA_64K_800:
96         case SW_VESA_FULL_800:
97
98         case SW_VESA_1024x768:  case SW_VESA_CG1024x768:
99         case SW_VESA_32K_1024:  case SW_VESA_64K_1024:
100         case SW_VESA_FULL_1024:
101
102         case SW_VESA_1280x1024: case SW_VESA_CG1280x1024:
103         case SW_VESA_32K_1280:  case SW_VESA_64K_1280:
104         case SW_VESA_FULL_1280:
105                 if (!(scp->sc->adp->va_flags & V_ADP_MODECHANGE))
106                         return ENODEV;
107                 mode = (cmd & 0xff) + M_VESA_BASE;
108                 return sc_set_graphics_mode(scp, tp, mode);
109         default:
110                 if (IOCGROUP(cmd) == 'V') {
111                         if (!(scp->sc->adp->va_flags & V_ADP_MODECHANGE))
112                                 return ENODEV;
113
114                         mode = (cmd & 0xff) + M_VESA_BASE;
115
116                         if ((mode > M_VESA_FULL_1280) &&
117                             (mode < M_VESA_MODE_MAX))
118                                 return sc_set_graphics_mode(scp, tp, mode);
119                 }
120         }
121
122         if (prev_user_ioctl)
123                 return (*prev_user_ioctl)(dev, cmd, data, flag, td);
124         else
125                 return ENOIOCTL;
126 }
127
128 int
129 vesa_load_ioctl(void)
130 {
131         if (prev_user_ioctl)
132                 return EBUSY;
133         prev_user_ioctl = sc_user_ioctl;
134         sc_user_ioctl = vesa_ioctl;
135         return 0;
136 }
137
138 int
139 vesa_unload_ioctl(void)
140 {
141         if (sc_user_ioctl != vesa_ioctl)
142                 return EBUSY;
143         sc_user_ioctl = prev_user_ioctl;
144         prev_user_ioctl = NULL;
145         return 0;
146 }
147
148 #endif  /* SC_NO_MODE_CHANGE */