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/dev/acpica/acpi_acad.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 Takanori Watanabe
    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  * $FreeBSD: releng/5.2/sys/dev/acpica/acpi_acad.c 121493 2003-10-25 05:03:25Z njl $
   27  */
   28 
   29 #include "opt_acpi.h"
   30 #include <sys/param.h>
   31 #include <sys/kernel.h>
   32 #include <sys/bus.h>
   33 
   34 #include <machine/bus.h>
   35 #include <machine/resource.h>
   36 #include <sys/rman.h>
   37 #include <sys/ioccom.h>
   38 #include <sys/malloc.h>
   39 #include <sys/conf.h>
   40 #include <sys/power.h>
   41 
   42 #include "acpi.h"
   43 #include <dev/acpica/acpivar.h>
   44 #include <dev/acpica/acpiio.h>
   45  
   46 /* Hooks for the ACPI CA debugging infrastructure */
   47 #define _COMPONENT      ACPI_AC_ADAPTER
   48 ACPI_MODULE_NAME("AC_ADAPTER")
   49 
   50 /* Number of times to retry initialization before giving up. */
   51 #define ACPI_ACAD_RETRY_MAX             6
   52 
   53 #define ACPI_DEVICE_CHECK_PNP           0x00
   54 #define ACPI_DEVICE_CHECK_EXISTENCE     0x01
   55 #define ACPI_POWERSOURCE_STAT_CHANGE    0x80
   56 
   57 struct  acpi_acad_softc {
   58     int status;
   59     int initializing;
   60 };
   61 
   62 static void     acpi_acad_get_status(void *);
   63 static void     acpi_acad_notify_handler(ACPI_HANDLE, UINT32, void *);
   64 static int      acpi_acad_probe(device_t);
   65 static int      acpi_acad_attach(device_t);
   66 static int      acpi_acad_ioctl(u_long, caddr_t, void *);
   67 static int      acpi_acad_sysctl(SYSCTL_HANDLER_ARGS);
   68 static void     acpi_acad_init_acline(void *arg);
   69 
   70 static device_method_t acpi_acad_methods[] = {
   71     /* Device interface */
   72     DEVMETHOD(device_probe,     acpi_acad_probe),
   73     DEVMETHOD(device_attach,    acpi_acad_attach),
   74 
   75     {0, 0}
   76 };
   77 
   78 static driver_t acpi_acad_driver = {
   79     "acpi_acad",
   80     acpi_acad_methods,
   81     sizeof(struct acpi_acad_softc),
   82 };
   83 
   84 static devclass_t acpi_acad_devclass;
   85 DRIVER_MODULE(acpi_acad, acpi, acpi_acad_driver, acpi_acad_devclass, 0, 0);
   86 
   87 static void
   88 acpi_acad_get_status(void *context)
   89 {
   90     struct acpi_acad_softc *sc;
   91     device_t    dev;
   92     ACPI_HANDLE h;
   93     int         newstatus;
   94 
   95     dev = context;
   96     sc = device_get_softc(dev);
   97     h = acpi_get_handle(dev);
   98     if (ACPI_FAILURE(acpi_EvaluateInteger(h, "_PSR", &newstatus))) {
   99         sc->status = -1;
  100         return;
  101     }
  102 
  103     if (sc->status != newstatus) {
  104         sc->status = newstatus;
  105 
  106         /* Set system power profile based on AC adapter status */
  107         power_profile_set_state(sc->status ? POWER_PROFILE_PERFORMANCE :
  108                                 POWER_PROFILE_ECONOMY);
  109         ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
  110                     "%s Line\n", sc->status ? "On" : "Off");
  111 
  112         acpi_UserNotify("ACAD", h, sc->status);
  113     }
  114 }
  115 
  116 static void
  117 acpi_acad_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
  118 {
  119     device_t dev = context;
  120 
  121     ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
  122                 "Notify 0x%x\n", notify);
  123 
  124     switch (notify) {
  125     case ACPI_DEVICE_CHECK_PNP:
  126     case ACPI_DEVICE_CHECK_EXISTENCE:
  127     case ACPI_POWERSOURCE_STAT_CHANGE:
  128         /* Temporarily.  It is better to notify policy manager */
  129         AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_acad_get_status, context);
  130         break;
  131     default:
  132         break;
  133     }
  134 }
  135 
  136 static int
  137 acpi_acad_probe(device_t dev)
  138 {
  139     if (acpi_get_type(dev) == ACPI_TYPE_DEVICE &&
  140         acpi_MatchHid(dev, "ACPI0003")) {
  141 
  142         device_set_desc(dev, "AC Adapter");
  143         return (0);
  144     }
  145     return (ENXIO);
  146 }
  147 
  148 static int
  149 acpi_acad_attach(device_t dev)
  150 {
  151     struct acpi_acad_softc *sc;
  152     struct acpi_softc      *acpi_sc;
  153     ACPI_HANDLE handle;
  154     int         error;
  155 
  156     sc = device_get_softc(dev);
  157     if (sc == NULL)
  158         return (ENXIO);
  159     handle = acpi_get_handle(dev);
  160 
  161     error = acpi_register_ioctl(ACPIIO_ACAD_GET_STATUS, acpi_acad_ioctl, dev);
  162     if (error != 0)
  163         return (error);
  164 
  165     if (device_get_unit(dev) == 0) {
  166         acpi_sc = acpi_device_get_parent_softc(dev);
  167         SYSCTL_ADD_PROC(&acpi_sc->acpi_sysctl_ctx,
  168                         SYSCTL_CHILDREN(acpi_sc->acpi_sysctl_tree),
  169                         OID_AUTO, "acline", CTLTYPE_INT | CTLFLAG_RD,
  170                         &sc->status, 0, acpi_acad_sysctl, "I", "");
  171     }
  172 
  173     /* Get initial status after whole system is up. */
  174     sc->status = -1;
  175     sc->initializing = 0;
  176 
  177     /*
  178      * Also install a system notify handler even though this is not
  179      * required by the specification.  The Casio FIVA needs this.
  180      */
  181     AcpiInstallNotifyHandler(handle, ACPI_SYSTEM_NOTIFY,
  182                              acpi_acad_notify_handler, dev);
  183     AcpiInstallNotifyHandler(handle, ACPI_DEVICE_NOTIFY,
  184                              acpi_acad_notify_handler, dev);
  185     AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_acad_init_acline, dev);
  186 
  187     return (0);
  188 }
  189 
  190 static int
  191 acpi_acad_ioctl(u_long cmd, caddr_t addr, void *arg)
  192 {
  193     struct acpi_acad_softc *sc;
  194     device_t dev;
  195 
  196     dev = (device_t)arg;
  197     sc = device_get_softc(dev);
  198     if (sc == NULL)
  199         return (ENXIO);
  200 
  201     /*
  202      * No security check required: information retrieval only.  If
  203      * new functions are added here, a check might be required.
  204      */
  205     switch (cmd) {
  206     case ACPIIO_ACAD_GET_STATUS:
  207         acpi_acad_get_status(dev);
  208         *(int *)addr = sc->status;
  209         break;
  210     default:
  211         break;
  212     }
  213 
  214     return (0);
  215 }
  216 
  217 static int
  218 acpi_acad_sysctl(SYSCTL_HANDLER_ARGS)
  219 {
  220     int val, error;
  221 
  222     if (acpi_acad_get_acline(&val) != 0)
  223         return (ENXIO);
  224 
  225     val = *(u_int *)oidp->oid_arg1;
  226     error = sysctl_handle_int(oidp, &val, 0, req);
  227     return (error);
  228 }
  229 
  230 static void
  231 acpi_acad_init_acline(void *arg)
  232 {
  233     struct acpi_acad_softc *sc;
  234     device_t    dev;
  235     int         retry, status;
  236 
  237     dev = (device_t)arg;
  238     sc = device_get_softc(dev);
  239     if (sc->initializing)
  240         return;
  241 
  242     sc->initializing = 1;
  243     ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
  244                 "acline initialization start\n");
  245 
  246     status = 0;
  247     for (retry = 0; retry < ACPI_ACAD_RETRY_MAX; retry++) {
  248         acpi_acad_get_status(dev);
  249         if (status != sc->status)
  250             break;
  251         AcpiOsSleep(10, 0);
  252     }
  253 
  254     sc->initializing = 0;
  255     ACPI_VPRINT(dev, acpi_device_get_parent_softc(dev),
  256                 "acline initialization done, tried %d times\n", retry + 1);
  257 }
  258 
  259 /*
  260  * Public interfaces.
  261  */
  262 int
  263 acpi_acad_get_acline(int *status)
  264 {
  265     struct acpi_acad_softc *sc;
  266     device_t dev;
  267 
  268     dev = devclass_get_device(acpi_acad_devclass, 0);
  269     if (dev == NULL)
  270         return (ENXIO);
  271     sc = device_get_softc(dev);
  272     if (sc == NULL)
  273         return (ENXIO);
  274 
  275     acpi_acad_get_status(dev);
  276     *status = sc->status;
  277 
  278     return (0);
  279 }

Cache object: 2a783e01a65dbdd7fe10d96bd2b8a262


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