Commit 6c16dedf authored by Chander Kashyap's avatar Chander Kashyap Committed by Kukjin Kim

clocksource: mct: extend mct to support 8 local interrupts for Exynos5420

Exynos5420 is octa-core SoC from Samsung. Hence extend exynos-mct clocksource
driver to support 8 local interrupts.

Also extend dts entries for 8 interrupts.
Signed-off-by: default avatarChander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 01eb4636
...@@ -135,7 +135,8 @@ mct@101C0000 { ...@@ -135,7 +135,8 @@ mct@101C0000 {
interrupt-controller; interrupt-controller;
#interrups-cells = <1>; #interrups-cells = <1>;
interrupt-parent = <&mct_map>; interrupt-parent = <&mct_map>;
interrupts = <0>, <1>, <2>, <3>, <4>, <5>, <6>, <7>; interrupts = <0>, <1>, <2>, <3>, <4>, <5>, <6>, <7>,
<8>, <9>, <10>, <11>;
clocks = <&clock 1>, <&clock 315>; clocks = <&clock 1>, <&clock 315>;
clock-names = "fin_pll", "mct"; clock-names = "fin_pll", "mct";
...@@ -150,7 +151,11 @@ mct_map: mct-map { ...@@ -150,7 +151,11 @@ mct_map: mct-map {
<4 &gic 0 120 0>, <4 &gic 0 120 0>,
<5 &gic 0 121 0>, <5 &gic 0 121 0>,
<6 &gic 0 122 0>, <6 &gic 0 122 0>,
<7 &gic 0 123 0>; <7 &gic 0 123 0>,
<8 &gic 0 128 0>,
<9 &gic 0 129 0>,
<10 &gic 0 130 0>,
<11 &gic 0 131 0>;
}; };
}; };
......
...@@ -71,6 +71,10 @@ enum { ...@@ -71,6 +71,10 @@ enum {
MCT_L1_IRQ, MCT_L1_IRQ,
MCT_L2_IRQ, MCT_L2_IRQ,
MCT_L3_IRQ, MCT_L3_IRQ,
MCT_L4_IRQ,
MCT_L5_IRQ,
MCT_L6_IRQ,
MCT_L7_IRQ,
MCT_NR_IRQS, MCT_NR_IRQS,
}; };
......
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