-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: pwm: brcm,kona-pwm: convert to YAML
Convert Broadcom Kona family PWM controller bindings to DT schema. Change during conversion: - add used, but previously undocumented brcm,bcm11351-pwm compatible Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
- Loading branch information
Stanislav Jakubek
authored and
Thierry Reding
committed
Jul 28, 2023
1 parent
b2c71e9
commit 8b9d91d
Showing
2 changed files
with
51 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/pwm/brcm,kona-pwm.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Broadcom Kona family PWM controller | ||
|
||
description: | ||
This controller has 6 channels. | ||
|
||
maintainers: | ||
- Florian Fainelli <f.fainelli@gmail.com> | ||
|
||
allOf: | ||
- $ref: pwm.yaml# | ||
|
||
properties: | ||
compatible: | ||
items: | ||
- enum: | ||
- brcm,bcm11351-pwm | ||
- const: brcm,kona-pwm | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
'#pwm-cells': | ||
const: 3 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/bcm281xx.h> | ||
pwm@3e01a000 { | ||
compatible = "brcm,bcm11351-pwm", "brcm,kona-pwm"; | ||
reg = <0x3e01a000 0xcc>; | ||
clocks = <&slave_ccu BCM281XX_SLAVE_CCU_PWM>; | ||
#pwm-cells = <3>; | ||
}; | ||
... |