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/bhnd/cores/chipc/bhnd_pmu_chipc.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  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
    3  *
    4  * Copyright (c) 2016 Landon Fuller <landon@landonf.org>
    5  * All rights reserved.
    6  *
    7  * Redistribution and use in source and binary forms, with or without
    8  * modification, are permitted provided that the following conditions
    9  * are met:
   10  * 1. Redistributions of source code must retain the above copyright
   11  *    notice, this list of conditions and the following disclaimer,
   12  *    without modification.
   13  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
   14  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
   15  *    redistribution must be conditioned upon including a substantially
   16  *    similar Disclaimer requirement for further binary redistribution.
   17  *
   18  * NO WARRANTY
   19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   21  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
   22  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
   23  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
   24  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
   27  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
   29  * THE POSSIBILITY OF SUCH DAMAGES.
   30  */
   31 
   32 #include <sys/cdefs.h>
   33 __FBSDID("$FreeBSD$");
   34 
   35 /*
   36  * ChipCommon attachment support for the bhnd(4) PMU driver.
   37  * 
   38  * Supports non-AOB ("Always-on Bus") devices that map the PMU register blocks
   39  * via the ChipCommon core, rather than vending a distinct PMU core on the
   40  * bhnd bus.
   41  */
   42 
   43 #include <sys/param.h>
   44 #include <sys/kernel.h>
   45 #include <sys/bus.h>
   46 #include <sys/limits.h>
   47 #include <sys/malloc.h>
   48 #include <sys/module.h>
   49 #include <sys/systm.h>
   50 
   51 #include <dev/bhnd/bhnd.h>
   52 
   53 #include <dev/bhnd/cores/pmu/bhnd_pmuvar.h>
   54 #include <dev/bhnd/cores/pmu/bhnd_pmureg.h>
   55 
   56 #include "bhnd_chipc_if.h"
   57 #include "bhnd_pmu_if.h"
   58 
   59 #include "chipcvar.h"
   60 
   61 static int
   62 bhnd_pmu_chipc_probe(device_t dev)
   63 {
   64         struct chipc_caps       *ccaps;
   65         struct chipc_softc      *chipc_sc;
   66         device_t                 chipc;
   67         char                     desc[34];
   68         int                      error;
   69         uint32_t                 pcaps;
   70         uint8_t                  rev;
   71 
   72         /* Look for chipc parent */
   73         chipc = device_get_parent(dev);
   74         if (device_get_devclass(chipc) != devclass_find("bhnd_chipc"))
   75                 return (ENXIO);
   76 
   77         /* Check the chipc PMU capability flag. */
   78         ccaps = BHND_CHIPC_GET_CAPS(chipc);
   79         if (!ccaps->pmu)
   80                 return (ENXIO);
   81 
   82         /* Delegate to common driver implementation */
   83         if ((error = bhnd_pmu_probe(dev)) > 0)
   84                 return (error);
   85 
   86         /* Fetch PMU capability flags */
   87         chipc_sc = device_get_softc(chipc);
   88         pcaps = bhnd_bus_read_4(chipc_sc->core, BHND_PMU_CAP);
   89 
   90         /* Set description */
   91         rev = BHND_PMU_GET_BITS(pcaps, BHND_PMU_CAP_REV);
   92         snprintf(desc, sizeof(desc), "Broadcom ChipCommon PMU, rev %hhu", rev);
   93         device_set_desc_copy(dev, desc);
   94 
   95         return (BUS_PROBE_NOWILDCARD);
   96 }
   97 
   98 static int
   99 bhnd_pmu_chipc_attach(device_t dev)
  100 {
  101         struct chipc_softc      *chipc_sc;
  102         struct bhnd_resource    *r;
  103 
  104         /* Fetch core registers from ChipCommon parent */
  105         chipc_sc = device_get_softc(device_get_parent(dev));
  106         r = chipc_sc->core;
  107 
  108         return (bhnd_pmu_attach(dev, r));
  109 }
  110 
  111 static device_method_t bhnd_pmu_chipc_methods[] = {
  112         /* Device interface */
  113         DEVMETHOD(device_probe,                 bhnd_pmu_chipc_probe),
  114         DEVMETHOD(device_attach,                bhnd_pmu_chipc_attach),
  115 
  116         DEVMETHOD_END
  117 };
  118 
  119 DEFINE_CLASS_1(bhnd_pmu, bhnd_pmu_chipc_driver, bhnd_pmu_chipc_methods,
  120     sizeof(struct bhnd_pmu_softc), bhnd_pmu_driver);
  121 EARLY_DRIVER_MODULE(bhnd_pmu_chipc, bhnd_chipc, bhnd_pmu_chipc_driver,
  122     NULL, NULL, BUS_PASS_TIMER + BUS_PASS_ORDER_MIDDLE);
  123 
  124 MODULE_DEPEND(bhnd_pmu_chipc, bhnd, 1, 1, 1);
  125 MODULE_VERSION(bhnd_pmu_chipc, 1);

Cache object: 94400c06c0a2049fb963682a42135c57


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