mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Both described in the binding PWM controllers depend on supply clocks, thus it's necessary to specify 'clocks' property in the correspondent device tree nodes. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com> Acked-by: Rob Herring (Arm) <robh@kernel.org> Link: https://patch.msgid.link/20251228224907.1729627-2-vz@mleia.com Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
49 lines
795 B
YAML
49 lines
795 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/pwm/nxp,lpc3220-pwm.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: NXP LPC32XX PWM controller
|
|
|
|
maintainers:
|
|
- Frank Li <Frank.Li@nxp.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- nxp,lpc3220-pwm
|
|
- nxp,lpc3220-motor-pwm
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
'#pwm-cells':
|
|
const: 3
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- '#pwm-cells'
|
|
|
|
allOf:
|
|
- $ref: pwm.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/lpc32xx-clock.h>
|
|
|
|
pwm@4005c000 {
|
|
compatible = "nxp,lpc3220-pwm";
|
|
reg = <0x4005c000 0x4>;
|
|
clocks = <&clk LPC32XX_CLK_PWM1>;
|
|
#pwm-cells = <3>;
|
|
};
|
|
|