blob: 7d1f687cee9cd5863345dc627a94dd64209fb48c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# SPDX-License-Identifier: GPL-2.0
%YAML 1.2
---
$id: http://devicetree.org/schemas/pwm/pwm.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: PWM controllers (providers)
maintainers:
- Thierry Reding <thierry.reding@gmail.com>
properties:
$nodename:
pattern: "^pwm(@.*|-[0-9a-f])*$"
"#pwm-cells":
description:
Number of cells in a PWM specifier.
required:
- "#pwm-cells"
additionalProperties: true
examples:
- |
pwm: pwm@7000a000 {
compatible = "nvidia,tegra20-pwm";
reg = <0x7000a000 0x100>;
#pwm-cells = <2>;
};
|