aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/boot/dts/mpc8610_hpcd.dts16
-rw-r--r--arch/powerpc/platforms/86xx/mpc8610_hpcd.c3
2 files changed, 18 insertions, 1 deletions
diff --git a/arch/powerpc/boot/dts/mpc8610_hpcd.dts b/arch/powerpc/boot/dts/mpc8610_hpcd.dts
index 08a780d89807..fa9c297501aa 100644
--- a/arch/powerpc/boot/dts/mpc8610_hpcd.dts
+++ b/arch/powerpc/boot/dts/mpc8610_hpcd.dts
@@ -182,6 +182,22 @@
182 big-endian; 182 big-endian;
183 }; 183 };
184 184
185 msi@41600 {
186 compatible = "fsl,mpc8610-msi", "fsl,mpic-msi";
187 reg = <0x41600 0x80>;
188 msi-available-ranges = <0 0x100>;
189 interrupts = <
190 0xe0 0
191 0xe1 0
192 0xe2 0
193 0xe3 0
194 0xe4 0
195 0xe5 0
196 0xe6 0
197 0xe7 0>;
198 interrupt-parent = <&mpic>;
199 };
200
185 global-utilities@e0000 { 201 global-utilities@e0000 {
186 compatible = "fsl,mpc8610-guts"; 202 compatible = "fsl,mpc8610-guts";
187 reg = <0xe0000 0x1000>; 203 reg = <0xe0000 0x1000>;
diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
index dea13208bf64..eb16208b29d9 100644
--- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
+++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
@@ -70,7 +70,8 @@ static void __init mpc86xx_hpcd_init_irq(void)
70 70
71 /* Alloc mpic structure and per isu has 16 INT entries. */ 71 /* Alloc mpic structure and per isu has 16 INT entries. */
72 mpic1 = mpic_alloc(np, res.start, 72 mpic1 = mpic_alloc(np, res.start,
73 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN, 73 MPIC_PRIMARY | MPIC_WANTS_RESET |
74 MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS,
74 0, 256, " MPIC "); 75 0, 256, " MPIC ");
75 BUG_ON(mpic1 == NULL); 76 BUG_ON(mpic1 == NULL);
76 77