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/iio/samsung,sensorhub-rinato.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 OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/iio/samsung,sensorhub-rinato.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Samsung Sensorhub driver
    8 
    9 maintainers:
   10   - Jonathan Cameron <jic23@kernel.org>
   11 
   12 description: |
   13   Sensorhub is a MCU which manages several sensors and also plays the role
   14   of a virtual sensor device.
   15 
   16 properties:
   17   compatible:
   18     enum:
   19       - samsung,sensorhub-rinato
   20       - samsung,sensorhub-thermostat
   21 
   22   reg:
   23     maxItems: 1
   24 
   25   interrupts:
   26     maxItems: 1
   27 
   28   ap-mcu-gpios:
   29     maxItems: 1
   30     description:
   31       Application Processor to sensorhub line - used during communication
   32 
   33   mcu-ap-gpios:
   34     maxItems: 1
   35     description:
   36       Sensorhub to Application Processor - used during communication
   37 
   38   mcu-reset-gpios:
   39     maxItems: 1
   40     description:
   41       Reset the sensorhub.
   42 
   43   spi-max-frequency: true
   44 
   45 additionalProperties: false
   46 
   47 required:
   48   - compatible
   49   - reg
   50   - interrupts
   51   - ap-mcu-gpios
   52   - mcu-ap-gpios
   53   - mcu-reset-gpios
   54 
   55 examples:
   56   - |
   57     spi {
   58         #address-cells = <1>;
   59         #size-cells = <0>;
   60 
   61         sensorhub@0 {
   62             compatible = "samsung,sensorhub-rinato";
   63             reg = <0>;
   64             spi-max-frequency = <5000000>;
   65             interrupt-parent = <&gpx0>;
   66             interrupts = <2 0>;
   67             ap-mcu-gpios = <&gpx0 0 0>;
   68             mcu-ap-gpios = <&gpx0 4 0>;
   69             mcu-reset-gpios = <&gpx0 5 0>;
   70         };
   71     };
   72 ...

Cache object: f888e5d802f85eff85a726301c1bc880


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