forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bindings/watchdog: apple,t8103-wdt.txt: bindings for Apple M1 WDT
Signed-off-by: Pip Cet <pipcet@gmail.com>
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
Documentation/devicetree/bindings/watchdog/apple,t8103-wdt.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,38 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
%YAML 1.2 | ||
-- | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Apple M1 Watchdog Timer Device Tree Bindings | ||
|
||
maintainers: | ||
- Pip Cet <pipcet@gmail.com> | ||
|
||
allOf: | ||
- $ref: watchdog.yaml# | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- apple,t8103-wdt | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- clocks | ||
- reg | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
watchdog@23bd20000 { | ||
compatible = "apple,t8103-wdt"; | ||
reg = <0x2 0x3bd20000 0x0 0x4000>; | ||
clocks = <&clk24>; | ||
}; |