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/hwmon/adi,axi-fan-control.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 # Copyright 2019 Analog Devices Inc.
    3 %YAML 1.2
    4 ---
    5 $id: http://devicetree.org/schemas/hwmon/adi,axi-fan-control.yaml#
    6 $schema: http://devicetree.org/meta-schemas/core.yaml#
    7 
    8 title: Analog Devices AXI FAN Control Device Tree Bindings
    9 
   10 maintainers:
   11   - Nuno Sá <nuno.sa@analog.com>
   12 
   13 description: |+
   14   Bindings for the Analog Devices AXI FAN Control driver. Spefications of the
   15   core can be found in:
   16 
   17   https://wiki.analog.com/resources/fpga/docs/axi_fan_control
   18 
   19 properties:
   20   compatible:
   21     enum:
   22       - adi,axi-fan-control-1.00.a
   23 
   24   reg:
   25     maxItems: 1
   26 
   27   clocks:
   28     maxItems: 1
   29 
   30   interrupts:
   31     maxItems: 1
   32 
   33   pulses-per-revolution:
   34     description:
   35       Value specifying the number of pulses per revolution of the controlled
   36       FAN.
   37     $ref: /schemas/types.yaml#/definitions/uint32
   38     enum: [1, 2, 4]
   39 
   40 required:
   41   - compatible
   42   - reg
   43   - clocks
   44   - interrupts
   45   - pulses-per-revolution
   46 
   47 additionalProperties: false
   48 
   49 examples:
   50   - |
   51     fpga_axi: fpga-axi {
   52             #address-cells = <0x2>;
   53             #size-cells = <0x1>;
   54 
   55             axi_fan_control: axi-fan-control@80000000 {
   56                     compatible = "adi,axi-fan-control-1.00.a";
   57                     reg = <0x0 0x80000000 0x10000>;
   58                     clocks = <&clk 71>;
   59                     interrupts = <0 110 0>;
   60                     pulses-per-revolution = <2>;
   61             };
   62     };
   63 ...

Cache object: 015006a98bc3fc3f60de5aeb7026c7ff


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