The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/isa/spic.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: c30f810e6dc3650a3dd5189f28f35789


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.