0547feb641593e7a221e42b5b8228e3e26c813ed
[dragonfly.git] / sys / dev / misc / spic / spic.c
1 /*
2  * Copyright (c) 2000  Nick Sayer
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER 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  * spic -- the Sony Programmable I/O Controller
27  *
28  * This device exists on most recent Sony laptops. It is the means by which
29  * you can watch the Jog Dial and some other functions.
30  *
31  * At the moment, this driver merely tries to turn the jog dial into a
32  * device that moused can park on, with the intent of supplying a Z axis
33  * and mouse button out of the jog dial. I suspect that this device will
34  * end up having to support at least 2 different minor devices: One to be
35  * the jog wheel device for moused to camp out on and the other to perform
36  * all of the other miscelaneous functions of this device. But for now,
37  * the jog wheel is all you get.
38  *
39  * At the moment, the data sent back by the device is rather primitive.
40  * It sends a single character per event:
41  * u = up, d = down -- that's the jog button
42  * l = left, r = right -- that's the dial.
43  * "left" and "right" are rather caprecious. They actually represent
44  * ccw and cw, respectively
45  *
46  * What documentation exists is thanks to Andrew Tridge, and his page at
47  * http://samba.org/picturebook/ Special thanks also to Ian Dowse, who
48  * also provided sample code upon which this driver was based.
49  *
50  * $FreeBSD: src/sys/i386/isa/spic.c,v 1.4.2.1 2002/04/15 00:52:12 will Exp $
51  * $DragonFly: src/sys/dev/misc/spic/spic.c,v 1.11 2004/09/19 01:56:29 dillon Exp $
52  */
53
54 #include <sys/param.h>
55 #include <sys/systm.h>
56 #include <sys/kernel.h>
57 #include <sys/bus.h>
58 #include <machine/bus.h>
59 #include <sys/rman.h>
60 #include <machine/resource.h>
61 #include <bus/isa/isavar.h>
62 #include <sys/poll.h>
63 #include <machine/pci_cfgreg.h>
64 #include <machine/clock.h>
65 #include <sys/tty.h>
66 #include <sys/conf.h>
67 #include <sys/fcntl.h>
68 #include <sys/dkstat.h>
69 #include <sys/malloc.h>
70 #include <sys/sysctl.h>
71 #include <sys/uio.h>
72 #include <sys/proc.h>
73
74 #include "spicreg.h"
75
76 static int spic_pollrate;
77
78 SYSCTL_INT(_machdep, OID_AUTO, spic_pollrate, CTLFLAG_RW, &spic_pollrate, 0, "")
79 ;
80
81 devclass_t spic_devclass;
82
83 static d_open_t         spicopen;
84 static d_close_t        spicclose;
85 static d_read_t         spicread;
86 static d_ioctl_t        spicioctl;
87 static d_poll_t         spicpoll;
88
89 static struct cdevsw spic_cdevsw = {
90         /* name */      "spic",
91         /* maj */       CDEV_MAJOR,
92         /* flags */     0,
93         /* port */      NULL,
94         /* clone */     NULL,
95
96         /* open */      spicopen,
97         /* close */     spicclose,
98         /* read */      spicread,
99         /* write */     nowrite,
100         /* ioctl */     spicioctl,
101         /* poll */      spicpoll,
102         /* mmap */      nommap,
103         /* strategy */  nostrategy,
104         /* dump */      nodump,
105         /* psize */     nopsize
106 };
107
108 #define SCBUFLEN 128
109
110 struct spic_softc {
111         u_short sc_port_addr;
112         u_char sc_intr;
113         struct resource *sc_port_res,*sc_intr_res;
114         int     sc_port_rid,sc_intr_rid;
115         int sc_opened;
116         int sc_sleeping;
117         int sc_buttonlast;
118         struct callout  sc_timeout_ch;
119         device_t sc_dev;
120         struct selinfo sc_rsel;
121         u_char sc_buf[SCBUFLEN];
122         int sc_count;
123         int sc_model;
124 };
125
126 static void
127 write_port1(struct spic_softc *sc, u_char val)
128 {
129         DELAY(10);
130         outb(sc->sc_port_addr, val);
131 }
132
133 static void
134 write_port2(struct spic_softc *sc, u_char val)
135 {
136         DELAY(10);
137         outb(sc->sc_port_addr + 4, val);
138 }
139
140 static u_char
141 read_port1(struct spic_softc *sc)
142 {
143         DELAY(10);
144         return inb(sc->sc_port_addr);
145 }
146
147 static u_char
148 read_port2(struct spic_softc *sc)
149 {
150         DELAY(10);
151         return inb(sc->sc_port_addr + 4);
152 }
153
154 static u_char
155 read_port_cst(struct spic_softc *sc)
156 {
157         DELAY(10);
158         return inb(SPIC_CST_IOPORT);
159 }
160
161 static void
162 busy_wait(struct spic_softc *sc)
163 {
164         int i=0;
165
166         while(read_port2(sc) & 2) {
167                 DELAY(10);
168                 if (i++>10000) {
169                         printf("spic busy wait abort\n");
170                         return;
171                 }
172         }
173 }
174
175 static void
176 busy_wait_cst(struct spic_softc *sc, int mask)
177 {
178         int i=0;
179
180         while(read_port_cst(sc) & mask) {
181                 DELAY(10);
182                 if (i++>10000) {
183                         printf("spic busy wait abort\n");
184                         return;
185                 }
186         }
187 }
188
189 static u_char
190 spic_call1(struct spic_softc *sc, u_char dev) {
191         busy_wait(sc);
192         write_port2(sc, dev);
193         read_port2(sc);
194         return read_port1(sc);
195 }
196
197 static u_char
198 spic_call2(struct spic_softc *sc, u_char dev, u_char fn)
199 {
200         busy_wait(sc);
201         write_port2(sc, dev);
202         busy_wait(sc);
203         write_port1(sc, fn);
204         return read_port1(sc);
205 }
206
207 static void
208 spic_ecrset(struct spic_softc *sc, u_int16_t addr, u_int16_t value)
209 {
210         busy_wait_cst(sc, 3);
211         outb(SPIC_CST_IOPORT, 0x81);
212         busy_wait_cst(sc, 2);
213         outb(SPIC_DATA_IOPORT, addr);
214         busy_wait_cst(sc, 2);
215         outb(SPIC_DATA_IOPORT, value);
216         busy_wait_cst(sc, 2);
217 }
218
219 static void
220 spic_type2_srs(struct spic_softc *sc)
221 {
222         spic_ecrset(sc, SPIC_SHIB, (sc->sc_port_addr & 0xFF00) >> 8);
223         spic_ecrset(sc, SPIC_SLOB,  sc->sc_port_addr & 0x00FF);
224         spic_ecrset(sc, SPIC_SIRQ,  0x00); /* using polling mode (IRQ=0)*/
225         DELAY(10);
226 }
227
228 static int
229 spic_probe(device_t dev)
230 {
231         struct spic_softc *sc;
232         u_char t, spic_irq;
233
234         sc = device_get_softc(dev);
235
236         /*
237          * We can only have 1 of these. Attempting to probe for a unit 1
238          * will destroy the work we did for unit 0
239          */
240         if (device_get_unit(dev))
241                 return ENXIO;
242
243
244         bzero(sc, sizeof(struct spic_softc));
245
246         if (!(sc->sc_port_res = bus_alloc_resource(dev, SYS_RES_IOPORT,
247                 &sc->sc_port_rid, 0, ~0, 5, RF_ACTIVE))) {
248                 device_printf(dev,"Couldn't map I/O\n");
249                 return ENXIO;
250         }
251         sc->sc_port_addr = (u_short)rman_get_start(sc->sc_port_res);
252
253 #ifdef notyet
254         if (!(sc->sc_intr_res = bus_alloc_resource(dev, SYS_RES_IRQ,
255                 &sc->sc_intr_rid, 0, ~0, 1, RF_ACTIVE))) {
256                 device_printf(dev,"Couldn't map IRQ\n");
257                 bus_release_resource(dev, SYS_RES_IOPORT,
258                         sc->sc_port_rid, sc->sc_port_res);
259                 return ENXIO;
260         }
261         sc->sc_intr = (u_short)rman_get_start(sc->sc_intr_res);
262
263         switch (sc->sc_intr) {
264                 case 0: spic_irq = 3; break;
265                 case 5: spic_irq = 0; break;
266                 case 0xa: spic_irq = 1; break;
267                 case 0xb: spic_irq = 2; break;
268                 default: device_printf(dev,"Invalid IRQ\n");
269                         bus_release_resource(dev, SYS_RES_IOPORT,
270                                 sc->sc_port_rid, sc->sc_port_res);
271                         bus_release_resource(dev, SYS_RES_IRQ,
272                                 sc->sc_intr_rid, sc->sc_intr_res);
273                         return ENXIO;
274         }
275 #else
276         spic_irq = 3;
277 #endif
278
279 #if 0
280         if (sc->sc_port_addr != 0x10A0) {
281                 bus_release_resource(dev, SYS_RES_IOPORT,
282                         sc->sc_port_rid, sc->sc_port_res);
283                 bus_release_resource(dev, SYS_RES_IRQ,
284                         sc->sc_intr_rid, sc->sc_intr_res);
285                 return ENXIO;
286         }
287 #endif
288
289         /* PIIX4 chipset at least? */
290         if (pci_cfgregread(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, 0, 4) ==
291                 PIIX4_DEVID) {
292                 sc->sc_model = SPIC_DEVICE_MODEL_TYPE1;
293         } else {
294                 /* For newer VAIOs (R505, SRX7, ...) */
295                 sc->sc_model = SPIC_DEVICE_MODEL_TYPE2;
296         }
297
298         /*
299          * This is an ugly hack. It is necessary until ACPI works correctly.
300          *
301          * The SPIC consists of 2 registers. They are mapped onto I/O by the
302          * PIIX4's General Device 10 function. There is also an interrupt
303          * control port at a somewhat magic location, but this first pass is
304          * polled.
305          *
306          * So the first thing we need to do is map the G10 space in.
307          *
308          */
309
310         /* Enable ACPI mode to get Fn key events */
311         /* XXX This may slow down your VAIO if ACPI is not supported in the kernel.
312         outb(0xb2, 0xf0);
313          */
314
315         device_printf(dev,"device model type = %d\n", sc->sc_model);
316         
317         if(sc->sc_model == SPIC_DEVICE_MODEL_TYPE1) {
318                 pci_cfgregwrite(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, G10A,
319                                 sc->sc_port_addr, 2);
320                 t = pci_cfgregread(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, G10L, 1);
321                 t &= 0xf0;
322                 t |= 4;
323                 pci_cfgregwrite(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, G10L, t, 1);
324                 outw(SPIC_IRQ_PORT, (inw(SPIC_IRQ_PORT) & ~(0x3 << SPIC_IRQ_SHIFT)) | (spic_irq << SPIC_IRQ_SHIFT));
325                 t = pci_cfgregread(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, G10L, 1);
326                 t &= 0x1f;
327                 t |= 0xc0;
328                 pci_cfgregwrite(PIIX4_BUS, PIIX4_SLOT, PIIX4_FUNC, G10L, t, 1);
329         } else {
330                 spic_type2_srs(sc);
331         }
332
333         /*
334          * XXX: Should try and see if there's anything actually there.
335          */
336
337         device_set_desc(dev, "Sony Programmable I/O Controller");
338
339         return 0;
340 }
341
342 static int
343 spic_attach(device_t dev)
344 {
345         struct spic_softc *sc;
346
347         sc = device_get_softc(dev);
348
349         sc->sc_dev = dev;
350         callout_init(&sc->sc_timeout_ch);
351         
352         spic_pollrate = (hz/50); /* Every 50th of a second */
353
354         spic_call1(sc, 0x82);
355         spic_call2(sc, 0x81, 0xff);
356         spic_call1(sc, 0x92);
357
358         /* There can be only one */
359         cdevsw_add(&spic_cdevsw, -1, device_get_unit(dev));
360         make_dev(&spic_cdevsw, device_get_unit(dev), 0, 0, 0600, "jogdial");
361
362         return 0;
363 }
364
365 static void
366 spictimeout(void *arg)
367 {
368         struct spic_softc *sc = arg;
369         u_char b, event, param;
370         int j;
371
372         if (!sc->sc_opened) {
373                 device_printf(sc->sc_dev, "timeout called while closed!\n");
374                 return;
375         }
376
377         event = read_port2(sc);
378         param = read_port1(sc);
379
380         if ((event != 4) && (!(event & 0x1)))
381                 switch(event) {
382                         case 0x10: /* jog wheel event (type1) */
383                                 if (sc->sc_model == SPIC_DEVICE_MODEL_TYPE1) {
384                                         b = !!(param & 0x40);
385                                         if (b != sc->sc_buttonlast) {
386                                                 sc->sc_buttonlast = b;
387                                                 sc->sc_buf[sc->sc_count++] =
388                                                         b?'d':'u';
389                                         }
390                                         j = (param & 0xf) | ((param & 0x10)? ~0xf:0);
391                                         if (j<0)
392                                                 while(j++!=0) {
393                                                         sc->sc_buf[sc->sc_count++] =
394                                                                 'l';
395                                                 }
396                                         else if (j>0)
397                                                 while(j--!=0) {
398                                                         sc->sc_buf[sc->sc_count++] =
399                                                                 'r';
400                                                 }
401                                 }
402                                 break;
403                         case 0x08: /* jog wheel event (type2) */
404                         case 0x00: 
405                                 /* SPIC_DEVICE_MODEL_TYPE2 returns jog wheel event=0x00 */
406                                 if (sc->sc_model == SPIC_DEVICE_MODEL_TYPE2) {
407                                         b = !!(param & 0x40);
408                                         if (b != sc->sc_buttonlast) {
409                                                 sc->sc_buttonlast = b;
410                                                 sc->sc_buf[sc->sc_count++] =
411                                                         b?'d':'u';
412                                         }
413                                         j = (param & 0xf) | ((param & 0x10)? ~0xf:0);
414                                         if (j<0)
415                                                 while(j++!=0) {
416                                                         sc->sc_buf[sc->sc_count++] =
417                                                                 'l';
418                                                 }
419                                         else if (j>0)
420                                                 while(j--!=0) {
421                                                         sc->sc_buf[sc->sc_count++] =
422                                                                 'r';
423                                                 }
424                                 }
425                                 break;
426                         case 0x60: /* Capture button */
427                                 printf("Capture button event: %x\n",param);
428                                 break;
429                         case 0x30: /* Lid switch */
430                                 printf("Lid switch event: %x\n",param);
431                                 break;
432                         default:
433                                 printf("Unknown event: event %02x param %02x\n", event, param);
434                                 break;
435                 }
436         else {
437                 /* No event. Wait some more */
438                 callout_reset(&sc->sc_timeout_ch, spic_pollrate,
439                                 spictimeout, sc);
440                 return;
441         }
442
443         if (sc->sc_count) {
444                 if (sc->sc_sleeping) {
445                         sc->sc_sleeping = 0;
446                         wakeup((caddr_t) sc);
447                 }
448                 selwakeup(&sc->sc_rsel);
449         }
450         spic_call2(sc, 0x81, 0xff); /* Clear event */
451
452         callout_reset(&sc->sc_timeout_ch, spic_pollrate, spictimeout, sc);
453 }
454
455 static int
456 spicopen(dev_t dev, int flag, int fmt, struct thread *td)
457 {
458         struct spic_softc *sc;
459
460         sc = devclass_get_softc(spic_devclass, 0);
461
462         if (sc->sc_opened)
463                 return EBUSY;
464
465         sc->sc_opened++;
466         sc->sc_count=0;
467
468         /* Start the polling */
469         callout_reset(&sc->sc_timeout_ch, spic_pollrate, spictimeout, sc);
470         return 0;
471 }
472
473 static int
474 spicclose(dev_t dev, int flag, int fmt, struct thread *td)
475 {
476         struct spic_softc *sc;
477
478         sc = devclass_get_softc(spic_devclass, 0);
479
480         /* Stop polling */
481         callout_stop(&sc->sc_timeout_ch);
482         sc->sc_opened = 0;
483         return 0;
484 }
485
486 static int
487 spicread(dev_t dev, struct uio *uio, int flag)
488 {
489         struct spic_softc *sc;
490         int l, s, error;
491         u_char buf[SCBUFLEN];
492
493         sc = devclass_get_softc(spic_devclass, 0);
494
495         if (uio->uio_resid <= 0) /* What kind of a read is this?! */
496                 return 0;
497
498         s = spltty();
499         while (!(sc->sc_count)) {
500                 sc->sc_sleeping=1;
501                 error = tsleep((caddr_t) sc, PCATCH, "jogrea", 0);
502                 sc->sc_sleeping=0;
503                 if (error) {
504                         splx(s);
505                         return error;
506                 }
507         }
508         splx(s);
509
510         s = spltty();
511         l = min(uio->uio_resid, sc->sc_count);
512         bcopy(sc->sc_buf, buf, l);
513         sc->sc_count -= l;
514         bcopy(sc->sc_buf + l, sc->sc_buf, l);
515         splx(s);
516         return uiomove(buf, l, uio);
517
518 }
519
520 static int
521 spicioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
522 {
523         struct spic_softc *sc;
524
525         sc = devclass_get_softc(spic_devclass, 0);
526
527         return EIO;
528 }
529
530 static int
531 spicpoll(dev_t dev, int events, struct thread *td)
532 {
533         struct spic_softc *sc;
534         struct proc *p;
535         struct proc *p1;
536         int revents = 0, s;
537
538         p = td->td_proc;
539         KKASSERT(p);
540
541         sc = devclass_get_softc(spic_devclass, 0);
542         s = spltty();
543         if (events & (POLLIN | POLLRDNORM)) {
544                 if (sc->sc_count)
545                         revents |= events & (POLLIN | POLLRDNORM);
546                 else {
547                         if (sc->sc_rsel.si_pid && (p1=pfind(sc->sc_rsel.si_pid))
548                                         && p1->p_wchan == (caddr_t)&selwait)
549                                 sc->sc_rsel.si_flags = SI_COLL;
550                         else
551                                 sc->sc_rsel.si_pid = p->p_pid;
552                 }
553         }
554         splx(s);
555
556         return revents;
557 }
558
559
560 static device_method_t spic_methods[] = {
561         DEVMETHOD(device_probe,         spic_probe),
562         DEVMETHOD(device_attach,        spic_attach),
563
564         { 0, 0 }
565 };
566
567 static driver_t spic_driver = {
568         "spic",
569         spic_methods,
570         sizeof(struct spic_softc),
571 };
572
573 DRIVER_MODULE(spic, isa, spic_driver, spic_devclass, 0, 0);
574