mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 03:17:59 +07:00
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
20 lines
518 B
Plaintext
20 lines
518 B
Plaintext
Mediatek SoCs Watchdog timer
|
|
|
|
Required properties:
|
|
|
|
- compatible should contain:
|
|
"mediatek,mt2701-wdt", "mediatek,mt6589-wdt": for MT2701
|
|
"mediatek,mt6589-wdt": for MT6589
|
|
"mediatek,mt6797-wdt", "mediatek,mt6589-wdt": for MT6797
|
|
"mediatek,mt7622-wdt", "mediatek,mt6589-wdt": for MT7622
|
|
"mediatek,mt7623-wdt", "mediatek,mt6589-wdt": for MT7623
|
|
|
|
- reg : Specifies base physical address and size of the registers.
|
|
|
|
Example:
|
|
|
|
wdt: watchdog@10000000 {
|
|
compatible = "mediatek,mt6589-wdt";
|
|
reg = <0x10000000 0x18>;
|
|
};
|