Commit 36d1c9cd authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

arm64: dts: exynos: Use human-friendly symbols for timer interrupt flags

Replace hex flags with human-readable symbols from arm-gic.h header
which makes it easier to recognize what is configured.
Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
parent 29b4817d
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
*/ */
#include <dt-bindings/clock/exynos7-clk.h> #include <dt-bindings/clock/exynos7-clk.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
/ { / {
compatible = "samsung,exynos7"; compatible = "samsung,exynos7";
...@@ -473,10 +474,14 @@ hsi2c_11: hsi2c@136a0000 { ...@@ -473,10 +474,14 @@ hsi2c_11: hsi2c@136a0000 {
timer { timer {
compatible = "arm,armv8-timer"; compatible = "arm,armv8-timer";
interrupts = <1 13 0xff01>, interrupts = <GIC_PPI 13
<1 14 0xff01>, (GIC_CPU_MASK_SIMPLE(8) | IRQ_TYPE_EDGE_RISING)>,
<1 11 0xff01>, <GIC_PPI 14
<1 10 0xff01>; (GIC_CPU_MASK_SIMPLE(8) | IRQ_TYPE_EDGE_RISING)>,
<GIC_PPI 11
(GIC_CPU_MASK_SIMPLE(8) | IRQ_TYPE_EDGE_RISING)>,
<GIC_PPI 10
(GIC_CPU_MASK_SIMPLE(8) | IRQ_TYPE_EDGE_RISING)>;
}; };
pmu_system_controller: system-controller@105c0000 { pmu_system_controller: system-controller@105c0000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment