-
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: reset: convert Atmel/Microchip reset controller to YAML
Convert Atmel/Microchip reset controller to YAML. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
- Loading branch information
Claudiu Beznea
authored and
Sebastian Reichel
committed
Jun 17, 2022
1 parent
f2906aa
commit e9405be
Showing
2 changed files
with
49 additions
and
15 deletions.
There are no files selected for viewing
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
49 changes: 49 additions & 0 deletions
49
Documentation/devicetree/bindings/reset/atmel,at91sam9260-reset.yaml
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,49 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/reset/atmel,at91sam9260-reset.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Atmel/Microchip System Reset Controller | ||
|
||
maintainers: | ||
- Claudiu Beznea <claudiu.beznea@microchip.com> | ||
|
||
description: | | ||
The system reset controller can be used to reset the CPU. | ||
properties: | ||
compatible: | ||
oneOf: | ||
- items: | ||
- enum: | ||
- atmel,at91sam9260-rstc | ||
- atmel,at91sam9g45-rstc | ||
- atmel,sama5d3-rstc | ||
- microchip,sam9x60-rstc | ||
- items: | ||
- const: atmel,sama5d3-rstc | ||
- const: atmel,at91sam9g45-rstc | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/at91.h> | ||
reset-controller@fffffd00 { | ||
compatible = "atmel,at91sam9260-rstc"; | ||
reg = <0xfffffd00 0x10>; | ||
clocks = <&pmc PMC_TYPE_CORE PMC_SLOW>; | ||
}; |