Merge branch 'vendor/GCC44'
[dragonfly.git] / sys / dev / misc / spigot / spigot.c
1 /*
2  * Video spigot capture driver.
3  *
4  * Copyright (c) 1995, Jim Lowe.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer. 2.
10  * Redistributions in binary form must reproduce the above copyright notice,
11  * this list of conditions and the following disclaimer in the documentation
12  * and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * This is the minimum driver code required to make a spigot work.
27  * Unfortunatly, I can't include a real driver since the information
28  * on the spigot is under non-disclosure.  You can pick up a library
29  * that will work with this driver from
30  * ftp://ftp.cs.uwm.edu/pub/FreeBSD-UWM.  The library contains the
31  * source that I can release as well as several object modules and
32  * functions that allows one to read spigot data.  See the code for
33  * spigot_grab.c that is included with the library data.
34  *
35  * The vendor will not allow me to release the spigot library code.
36  * Please don't ask me for it.
37  *
38  * To use this driver you will need the spigot library.  The library is
39  * available from:
40  *
41  *      ftp.cs.uwm.edu://pub/FreeBSD-UWM/spigot/spigot.tar.gz
42  *
43  * Version 1.7, December 1995.
44  *
45  * $FreeBSD: src/sys/i386/isa/spigot.c,v 1.44 2000/01/29 16:17:36 peter Exp $
46  *
47  */
48
49 #include        "use_spigot.h"
50
51 #if NSPIGOT > 1
52 error "Can only have 1 spigot configured."
53 #endif
54
55 #include        "opt_spigot.h"
56
57 #include        <sys/param.h>
58 #include        <sys/systm.h>
59 #include        <sys/conf.h>
60 #include        <sys/device.h>
61 #include        <sys/proc.h>
62 #include        <sys/priv.h>
63 #include        <sys/signalvar.h>
64 #include        <sys/mman.h>
65
66 #include        <machine/frame.h>
67 #include        <machine/md_var.h>
68 #include        <machine/spigot.h>
69 #include        <machine/psl.h>
70
71 #include        <bus/isa/isa_device.h>
72
73 static struct spigot_softc {
74         u_long          flags;
75         u_long          maddr;
76         struct proc     *p;
77         u_long          signal_num;
78         u_short         irq;
79 } spigot_softc[NSPIGOT];
80
81 /* flags in softc */
82 #define OPEN            0x01
83 #define ALIVE           0x02
84
85 #define UNIT(dev) minor(dev)
86
87 static int      spigot_probe(struct isa_device *id);
88 static int      spigot_attach(struct isa_device *id);
89
90 struct isa_driver       spigotdriver = {spigot_probe, spigot_attach, "spigot"};
91
92 static  d_open_t        spigot_open;
93 static  d_close_t       spigot_close;
94 static  d_read_t        spigot_read;
95 static  d_write_t       spigot_write;
96 static  d_ioctl_t       spigot_ioctl;
97 static  d_mmap_t        spigot_mmap;
98
99 static struct dev_ops spigot_ops = {
100         { "spigot", 0, 0 },
101         .d_open =       spigot_open,
102         .d_close =      spigot_close,
103         .d_read =       spigot_read,
104         .d_write =      spigot_write,
105         .d_ioctl =      spigot_ioctl,
106         .d_mmap =       spigot_mmap,
107 };
108
109 static void     spigintr(void *);
110
111 static int
112 spigot_probe(struct isa_device *devp)
113 {
114         struct spigot_softc *ss;
115         int status;
116
117         ss = (struct spigot_softc *)&spigot_softc[devp->id_unit];
118         ss->flags = 0;
119         ss->maddr = 0;
120         ss->irq = 0;
121
122         if(devp->id_iobase != 0xad6 || inb(0xad9) == 0xff) 
123                 status = 0;     /* not found */
124         else {
125                 status = 1;     /* found */
126                 ss->flags |= ALIVE;
127         }
128
129         return(status);
130 }
131
132 static int
133 spigot_attach(struct isa_device *devp)
134 {
135         int     unit;
136         struct  spigot_softc    *ss= &spigot_softc[unit = devp->id_unit];
137
138         devp->id_intr = (inthand2_t *)spigintr;
139         ss->maddr = kvtop(devp->id_maddr);
140         ss->irq = devp->id_irq;
141         make_dev(&spigot_ops, unit, 0, 0, 0644, "spigot%d", unit);
142         return 1;
143 }
144
145 static  int
146 spigot_open(struct dev_open_args *ap)
147 {
148         cdev_t dev = ap->a_head.a_dev;
149         int error;
150         struct spigot_softc *ss;
151
152         ss = (struct spigot_softc *)&spigot_softc[UNIT(dev)];
153
154         if((ss->flags & ALIVE) == 0)
155                 return ENXIO;
156
157         if(ss->flags & OPEN)
158                 return EBUSY;
159
160 #if !defined(SPIGOT_UNSECURE)
161         /*
162          * Don't allow open() unless the process has sufficient privileges,
163          * since mapping the i/o page and granting i/o privilege would
164          * require sufficient privilege soon and nothing much can be done
165          * without them.
166          */
167         error = priv_check_cred(ap->a_cred, PRIV_ROOT, 0);
168         if (error != 0)
169                 return error;
170         if (securelevel > 0)
171                 return EPERM;
172 #endif
173
174         ss->flags |= OPEN;
175         ss->p = 0;
176         ss->signal_num = 0;
177
178         return 0;
179 }
180
181 static  int
182 spigot_close(struct dev_close_args *ap)
183 {
184         cdev_t dev = ap->a_head.a_dev;
185         struct spigot_softc *ss;
186
187         ss = (struct spigot_softc *)&spigot_softc[UNIT(dev)];
188         ss->flags &= ~OPEN;
189         ss->p = 0;
190         ss->signal_num = 0;
191
192         outb(0xad6, 0);
193
194         return 0;
195 }
196
197 static  int
198 spigot_write(struct dev_write_args *ap)
199 {
200         return ENXIO;
201 }
202
203 static  int
204 spigot_read(struct dev_read_args *ap)
205 {
206         return ENXIO;
207 }
208
209
210 static  int
211 spigot_ioctl(struct dev_ioctl_args *ap)
212 {
213         cdev_t dev = ap->a_head.a_dev;
214         caddr_t data = ap->a_data;
215         int error;
216         struct spigot_softc *ss;
217         struct spigot_info *info;
218
219         ss = (struct spigot_softc *)&spigot_softc[UNIT(dev)];
220         if (data == NULL)
221                 return(EINVAL);
222
223         switch(ap->a_cmd){
224         case    SPIGOT_SETINT:
225                 if (*(int *)data < 0 || *(int *)data > _SIG_MAXSIG)
226                         return (EINVAL);
227                 ss->p = curproc;
228                 ss->signal_num = *((int *)data);
229                 break;
230         case    SPIGOT_IOPL_ON: /* allow access to the IO PAGE */
231 #if !defined(SPIGOT_UNSECURE)
232                 error = priv_check_cred(ap->a_cred, PRIV_ROOT, 0);
233                 if (error != 0)
234                         return error;
235                 if (securelevel > 0)
236                         return EPERM;
237 #endif
238                 curthread->td_lwp->lwp_md.md_regs->tf_eflags |= PSL_IOPL;
239                 break;
240         case    SPIGOT_IOPL_OFF: /* deny access to the IO PAGE */
241                 curthread->td_lwp->lwp_md.md_regs->tf_eflags &= ~PSL_IOPL;
242                 break;
243         case    SPIGOT_GET_INFO:
244                 info = (struct spigot_info *)data;
245                 info->maddr  = ss->maddr;
246                 info->irq = ss->irq;
247                 break;
248         default:
249                 return ENOTTY;
250         }
251
252         return 0;
253 }
254
255 /*
256  * Interrupt procedure.
257  * Just call a user level interrupt routine.
258  */
259 static void
260 spigintr(void *arg)
261 {
262         int unit = (int)arg;
263         struct spigot_softc *ss;
264
265         ss = (struct spigot_softc *)&spigot_softc[unit];
266         if(ss->p && ss->signal_num)
267                 ksignal(ss->p, ss->signal_num);
268 }
269
270 static  int
271 spigot_mmap(struct dev_mmap_args *ap)
272 {
273         struct spigot_softc *ss;
274
275         ss = (struct spigot_softc *)&spigot_softc[0];
276         if (ap->a_offset != 0) 
277                 return EINVAL;
278         if (ap->a_nprot & PROT_EXEC)
279                 return EINVAL;
280         ap->a_result = i386_btop(ss->maddr);
281         return(0);
282 }