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

Commit 7d377b17 authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt
Browse files

sh: intc: Allow triggering on both edges for ARM SoCs



Enable IRQ_TYPE_EDGE_BOTH on all R/SH-Mobile ARM SoCs.
This hardware feature is supported by sh7367, sh7377,
sh7372 and sh73a0.

Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent d6e15eef
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -186,7 +186,7 @@ static unsigned char intc_irq_sense_table[IRQ_TYPE_SENSE_MASK + 1] = {
    !defined(CONFIG_CPU_SUBTYPE_SH7709)
    !defined(CONFIG_CPU_SUBTYPE_SH7709)
	[IRQ_TYPE_LEVEL_HIGH] = VALID(3),
	[IRQ_TYPE_LEVEL_HIGH] = VALID(3),
#endif
#endif
#if defined(CONFIG_ARCH_SH7372)
#if defined(CONFIG_ARM) /* all recent SH-Mobile / R-Mobile ARM support this */
	[IRQ_TYPE_EDGE_BOTH] = VALID(4),
	[IRQ_TYPE_EDGE_BOTH] = VALID(4),
#endif
#endif
};
};