mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
afc3bca4cf
DT unit addresses should be lower case hex. Fix all the binding examples. Converted with the following command from Krzysztof Kozlowski: sed -e 's/@\([a-fA-F0-9_-]*\) {/@\L\1 {/' -i $(find Documentation/devicetree/bindings -name '*.txt') Signed-off-by: Rob Herring <robh@kernel.org>
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
* NXP PNX watchdog timer
|
|
|
|
Required properties:
|
|
- compatible: must be "nxp,pnx4008-wdt"
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
|
|
Optional properties:
|
|
- timeout-sec: contains the watchdog timeout in seconds.
|
|
|
|
Example:
|
|
|
|
watchdog@4003c000 {
|
|
compatible = "nxp,pnx4008-wdt";
|
|
reg = <0x4003C000 0x1000>;
|
|
timeout-sec = <10>;
|
|
};
|