Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4da77319 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Rafael J. Wysocki
Browse files

ARM: mach-shmobile: sh73a0: fixup PINT/IRQ16-IRQ31 irq number conflict



Current IRQ16-IRQ31 irq number are located around 800 from
1ee8299a
(ARM: mach-shmobile: Use 0x3400 as INTCS vector offset)

But, the PINT0/1 IRQ number are also located around 800 from
0df1a838
(ARM: mach-shmobile: sh73a0 PINT IRQ base fix)

This patch relocates PINT0/1 IRQ number to around 700 where is not used,
and adds current IRQ location table in comment area.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent c8241085
Loading
Loading
Loading
Loading
+31 −3
Original line number Original line Diff line number Diff line
@@ -515,8 +515,36 @@ enum {
	SHDMA_SLAVE_MMCIF_RX,
	SHDMA_SLAVE_MMCIF_RX,
};
};


/* PINT interrupts are located at Linux IRQ 800 and up */
/*
#define SH73A0_PINT0_IRQ(irq) ((irq) + 800)
 *		SH73A0 IRQ LOCATION TABLE
#define SH73A0_PINT1_IRQ(irq) ((irq) + 832)
 *
 * 416	-----------------------------------------
 *		IRQ0-IRQ15
 * 431	-----------------------------------------
 * ...
 * 448	-----------------------------------------
 *		sh73a0-intcs
 *		sh73a0-intca-irq-pins
 * 680	-----------------------------------------
 * ...
 * 700	-----------------------------------------
 *		sh73a0-pint0
 * 731	-----------------------------------------
 * 732	-----------------------------------------
 *		sh73a0-pint1
 * 739	-----------------------------------------
 * ...
 * 800	-----------------------------------------
 *		IRQ16-IRQ31
 * 815	-----------------------------------------
 * ...
 * 928	-----------------------------------------
 *		sh73a0-intca-irq-pins
 * 943	-----------------------------------------
 */

/* PINT interrupts are located at Linux IRQ 700 and up */
#define SH73A0_PINT0_IRQ(irq) ((irq) + 700)
#define SH73A0_PINT1_IRQ(irq) ((irq) + 732)


#endif /* __ASM_SH73A0_H__ */
#endif /* __ASM_SH73A0_H__ */