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/pxa-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 Marvell PWM controller
    2 
    3 Required properties:
    4 - compatible: should be one or more of:
    5   - "marvell,pxa250-pwm"
    6   - "marvell,pxa270-pwm"
    7   - "marvell,pxa168-pwm"
    8   - "marvell,pxa910-pwm"
    9 - reg: Physical base address and length of the registers used by the PWM channel
   10   Note that one device instance must be created for each PWM that is used, so the
   11   length covers only the register window for one PWM output, not that of the
   12   entire PWM controller.  Currently length is 0x10 for all supported devices.
   13 - #pwm-cells: Should be 1.  This cell is used to specify the period in
   14   nanoseconds.
   15 
   16 Example PWM device node:
   17 
   18 pwm0: pwm@40b00000 {
   19         compatible = "marvell,pxa250-pwm";
   20         reg = <0x40b00000 0x10>;
   21         #pwm-cells = <1>;
   22 };
   23 
   24 Example PWM client node:
   25 
   26 backlight {
   27         compatible = "pwm-backlight";
   28         pwms = <&pwm0 5000000>;
   29         ...
   30 }

Cache object: 8b0fc9931850c98723c3e87b7f1678f6


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