Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: watchdog: qcom-wdt: Make the interrupt example edge triggered

As described in the patch ("arm64: dts: qcom: sc7180: Make watchdog
bark interrupt edge triggered"), the Qualcomm watchdog timer's bark
interrupt should be configured as edge triggered.

Update the example in the bindings.

Fixes: 7c631cdff391 ("dt-bindings: watchdog: qcom-wdt: allow interrupts")
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20231106144335.v2.9.Ie30c1d3f780666f6906fd2fd7c437632c229d987@changeid
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>

authored by

Douglas Anderson and committed by
Wim Van Sebroeck
eaea10a2 38d75297

+1 -1
+1 -1
Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
··· 123 123 compatible = "qcom,apss-wdt-sm8150", "qcom,kpss-wdt"; 124 124 reg = <0x17c10000 0x1000>; 125 125 clocks = <&sleep_clk>; 126 - interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>; 126 + interrupts = <GIC_SPI 0 IRQ_TYPE_EDGE_RISING>; 127 127 timeout-sec = <10>; 128 128 }; 129 129