mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
f6cc8b355c
Since commitad67b74d24
("printk: hash addresses printed with %p"), i6300esb prints "____ptrval____" instead of actual addresses: i6300ESB timer 0000:00:03.0: initialized (0x(____ptrval____)). heartbeat=30 sec (nowayout=1) Instead of changing the print to "%px", and leaking kernel addresses, just remove the print completely, cfr. e.g. commit071929dbdd
("arm64: Stop printing the virtual memory layout"). Signed-off-by: Matteo Croce <mcroce@redhat.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
26 lines
734 B
Plaintext
26 lines
734 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
|
|
"mediatek,mt7629-wdt", "mediatek,mt6589-wdt": for MT7629
|
|
"mediatek,mt8516-wdt", "mediatek,mt6589-wdt": for MT8516
|
|
|
|
- reg : Specifies base physical address and size of the registers.
|
|
|
|
Optional properties:
|
|
- timeout-sec: contains the watchdog timeout in seconds.
|
|
|
|
Example:
|
|
|
|
wdt: watchdog@10000000 {
|
|
compatible = "mediatek,mt6589-wdt";
|
|
reg = <0x10000000 0x18>;
|
|
timeout-sec = <10>;
|
|
};
|