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/arm/xscale/ixp425/avila_led.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) 2006 Kevin Lo.  All rights reserved.
    3  *
    4  * Redistribution and use in source and binary forms, with or without
    5  * modification, are permitted provided that the following conditions
    6  * are met:
    7  * 1. Redistributions of source code must retain the above copyright
    8  *    notice, this list of conditions and the following disclaimer.
    9  * 2. Redistributions in binary form must reproduce the above copyright
   10  *    notice, this list of conditions and the following disclaimer in the
   11  *    documentation and/or other materials provided with the distribution.
   12  *
   13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   23  */
   24 
   25 #include <sys/cdefs.h>
   26 __FBSDID("$FreeBSD: releng/8.3/sys/arm/xscale/ixp425/avila_led.c 194015 2009-06-11 17:05:13Z avg $");
   27 
   28 #include <sys/param.h>
   29 #include <sys/systm.h>
   30 #include <sys/kernel.h>
   31 #include <sys/module.h>
   32 #include <sys/bus.h>
   33 
   34 #include <arm/xscale/ixp425/ixp425reg.h>
   35 #include <arm/xscale/ixp425/ixp425var.h>
   36 
   37 #include <dev/led/led.h>
   38 
   39 #define GPIO_LED_STATUS 3
   40 #define GPIO_LED_STATUS_BIT     (1U << GPIO_LED_STATUS)
   41 
   42 struct led_avila_softc {
   43         device_t                sc_dev;
   44         bus_space_tag_t         sc_iot;
   45         bus_space_handle_t      sc_gpio_ioh;
   46         struct cdev             *sc_led;
   47 };
   48 
   49 static void
   50 led_func(void *arg, int onoff)
   51 {
   52         struct led_avila_softc *sc = arg;
   53         uint32_t reg;
   54 
   55         reg = GPIO_CONF_READ_4(sc, IXP425_GPIO_GPOUTR);
   56         if (onoff)
   57                 reg &= ~GPIO_LED_STATUS_BIT;
   58         else
   59                 reg |= GPIO_LED_STATUS_BIT;
   60         GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPOUTR, reg);
   61 }
   62 
   63 static int
   64 led_avila_probe(device_t dev)
   65 {
   66         device_set_desc(dev, "Gateworks Avila Front Panel LED");
   67         return (0);
   68 }
   69 
   70 static int
   71 led_avila_attach(device_t dev)
   72 {
   73         struct led_avila_softc *sc = device_get_softc(dev);
   74         struct ixp425_softc *sa = device_get_softc(device_get_parent(dev));
   75 
   76         sc->sc_dev = dev;
   77         sc->sc_iot = sa->sc_iot;
   78         sc->sc_gpio_ioh = sa->sc_gpio_ioh;
   79 
   80         /* Configure LED GPIO pin as output */
   81         GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPOER,
   82             GPIO_CONF_READ_4(sc, IXP425_GPIO_GPOER) &~ GPIO_LED_STATUS_BIT);
   83 
   84         sc->sc_led = led_create(led_func, sc, "gpioled");
   85 
   86         led_func(sc, 1);                /* Turn on LED */
   87 
   88         return (0);
   89 }
   90 
   91 static int
   92 led_avila_detach(device_t dev)
   93 {
   94         struct led_avila_softc *sc = device_get_softc(dev);
   95 
   96         if (sc->sc_led != NULL)
   97                 led_destroy(sc->sc_led);
   98         return (0);
   99 }
  100 
  101 static device_method_t led_avila_methods[] = {
  102         DEVMETHOD(device_probe,         led_avila_probe),
  103         DEVMETHOD(device_attach,        led_avila_attach),
  104         DEVMETHOD(device_detach,        led_avila_detach),
  105 
  106         {0, 0},
  107 };
  108 
  109 static driver_t led_avila_driver = {
  110         "led_avila",
  111         led_avila_methods,
  112         sizeof(struct led_avila_softc),
  113 };
  114 static devclass_t led_avila_devclass;
  115 
  116 DRIVER_MODULE(led_avila, ixp, led_avila_driver, led_avila_devclass, 0, 0);

Cache object: a53e3a8c60949a5bf94051b772b01109


[ 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.