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/contrib/device-tree/Bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/hwlock/allwinner,sun6i-a31-hwspinlock.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: SUN6I hardware spinlock driver for Allwinner sun6i compatible SoCs
    8 
    9 maintainers:
   10   - Wilken Gottwalt <wilken.gottwalt@posteo.net>
   11 
   12 description:
   13   The hardware unit provides semaphores between the ARM cores and the embedded
   14   companion core on the SoC.
   15 
   16 properties:
   17   compatible:
   18     const: allwinner,sun6i-a31-hwspinlock
   19 
   20   reg:
   21     maxItems: 1
   22 
   23   clocks:
   24     maxItems: 1
   25 
   26   resets:
   27     maxItems: 1
   28 
   29 required:
   30   - compatible
   31   - reg
   32   - clocks
   33   - resets
   34 
   35 additionalProperties: false
   36 
   37 examples:
   38   - |
   39     #include <dt-bindings/clock/sun8i-a23-a33-ccu.h>
   40     #include <dt-bindings/reset/sun8i-a23-a33-ccu.h>
   41 
   42     hwlock@1c18000 {
   43         compatible = "allwinner,sun6i-a31-hwspinlock";
   44         reg = <0x01c18000 0x1000>;
   45         clocks = <&ccu CLK_BUS_SPINLOCK>;
   46         resets = <&ccu RST_BUS_SPINLOCK>;
   47     };
   48 ...

Cache object: c7d3b5b509934c79bd52db28cf39524d


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