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/pwm/img-pwm.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 *Imagination Technologies PWM DAC driver
    2 
    3 Required properties:
    4   - compatible: Should be "img,pistachio-pwm"
    5   - reg: Should contain physical base address and length of pwm registers.
    6   - clocks: Must contain an entry for each entry in clock-names.
    7         See ../clock/clock-bindings.txt for details.
    8   - clock-names: Must include the following entries.
    9     - pwm: PWM operating clock.
   10     - sys: PWM system interface clock.
   11   - #pwm-cells: Should be 2. See pwm.yaml in this directory for the
   12         description of the cells format.
   13   - img,cr-periph: Must contain a phandle to the peripheral control
   14         syscon node which contains PWM control registers.
   15 
   16 Example:
   17         pwm: pwm@18101300 {
   18                 compatible = "img,pistachio-pwm";
   19                 reg = <0x18101300 0x100>;
   20                 clocks = <&pwm_clk>, <&system_clk>;
   21                 clock-names = "pwm", "sys";
   22                 #pwm-cells = <2>;
   23                 img,cr-periph = <&cr_periph>;
   24         };

Cache object: 93693de6bb2067a913feac34aa4accee


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