diff options
| author | Tom Rini <[email protected]> | 2021-10-12 11:49:15 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-12 11:49:15 -0400 |
| commit | 618c77d99a23c72b16e31a7380b6f3b96e6dfa40 (patch) | |
| tree | 3c3c908810f0f7cc280e6279fdca5925a4d0c2f5 /doc | |
| parent | 2aab77f7263bb6e27120cfea82fc5efa4f625014 (diff) | |
| parent | 1f83bda7886c0e3fbb9aaf1d36dcaac27a7c92ea (diff) | |
Merge tag 'u-boot-at91-2022.01-b' of https://source.denx.de/u-boot/custodians/u-boot-at91
Second set of u-boot-at91 features for the 2022.01 cycle:
This small feature set adds the support for PWM driver for the sama5d2
SoC. It also adds a node in the DT for this SoC.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/device-tree-bindings/pwm/pwm-at91.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/pwm/pwm-at91.txt b/doc/device-tree-bindings/pwm/pwm-at91.txt new file mode 100644 index 00000000000..a03da404f5e --- /dev/null +++ b/doc/device-tree-bindings/pwm/pwm-at91.txt @@ -0,0 +1,16 @@ +Microchip AT91 PWM controller for SAMA5D2 + +Required properties: + - compatible: Should be "atmel,sama5d2-pwm" + - reg: Physical base address and length of the controller's registers. + - clocks: Should contain a clock identifier for the PWM's parent clock. + - #pwm-cells: Should be 3. + +Example: + +pwm0: pwm@f802c000 { + compatible = "atmel,sama5d2-pwm"; + reg = <0xf802c000 0x4000>; + clocks = <&pwm_clk>; + #pwm-cells = <3>; +}; |
