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/qcom-hwspinlock.txt

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 Qualcomm Hardware Mutex Block:
    2 
    3 The hardware block provides mutexes utilized between different processors on
    4 the SoC as part of the communication protocol used by these processors.
    5 
    6 - compatible:
    7         Usage: required
    8         Value type: <string>
    9         Definition: must be one of:
   10                     "qcom,sfpb-mutex",
   11                     "qcom,tcsr-mutex"
   12 
   13 - syscon:
   14         Usage: required
   15         Value type: <prop-encoded-array>
   16         Definition: one cell containing:
   17                     syscon phandle
   18                     offset of the hwmutex block within the syscon
   19                     stride of the hwmutex registers
   20 
   21 - #hwlock-cells:
   22         Usage: required
   23         Value type: <u32>
   24         Definition: must be 1, the specified cell represent the lock id
   25                     (hwlock standard property, see hwlock.txt)
   26 
   27 Example:
   28 
   29         tcsr_mutex_block: syscon@fd484000 {
   30                 compatible = "syscon";
   31                 reg = <0xfd484000 0x2000>;
   32         };
   33 
   34         hwlock@fd484000 {
   35                 compatible = "qcom,tcsr-mutex";
   36                 syscon = <&tcsr_mutex_block 0 0x80>;
   37 
   38                 #hwlock-cells = <1>;
   39         };

Cache object: ac1b14e81fd46b00ceee5c6cd78d9f1e


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