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/pwm-sprd.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 Spreadtrum PWM controller
    2 
    3 Spreadtrum SoCs PWM controller provides 4 PWM channels.
    4 
    5 Required properties:
    6 - compatible : Should be "sprd,ums512-pwm".
    7 - reg: Physical base address and length of the controller's registers.
    8 - clocks: The phandle and specifier referencing the controller's clocks.
    9 - clock-names: Should contain following entries:
   10   "pwmn": used to derive the functional clock for PWM channel n (n range: 0 ~ 3).
   11   "enablen": for PWM channel n enable clock (n range: 0 ~ 3).
   12 - #pwm-cells: Should be 2. See pwm.yaml in this directory for a description of
   13   the cells format.
   14 
   15 Optional properties:
   16 - assigned-clocks: Reference to the PWM clock entries.
   17 - assigned-clock-parents: The phandle of the parent clock of PWM clock.
   18 
   19 Example:
   20         pwms: pwm@32260000 {
   21                 compatible = "sprd,ums512-pwm";
   22                 reg = <0 0x32260000 0 0x10000>;
   23                 clock-names = "pwm0", "enable0",
   24                         "pwm1", "enable1",
   25                         "pwm2", "enable2",
   26                         "pwm3", "enable3";
   27                 clocks = <&aon_clk CLK_PWM0>, <&aonapb_gate CLK_PWM0_EB>,
   28                        <&aon_clk CLK_PWM1>, <&aonapb_gate CLK_PWM1_EB>,
   29                        <&aon_clk CLK_PWM2>, <&aonapb_gate CLK_PWM2_EB>,
   30                        <&aon_clk CLK_PWM3>, <&aonapb_gate CLK_PWM3_EB>;
   31                 assigned-clocks = <&aon_clk CLK_PWM0>,
   32                         <&aon_clk CLK_PWM1>,
   33                         <&aon_clk CLK_PWM2>,
   34                         <&aon_clk CLK_PWM3>;
   35                 assigned-clock-parents = <&ext_26m>,
   36                         <&ext_26m>,
   37                         <&ext_26m>,
   38                         <&ext_26m>;
   39                 #pwm-cells = <2>;
   40         };

Cache object: 0c6f877abc608ba7b0f40a86e7a94441


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