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

Commit 53abf911 authored by Luca Santini's avatar Luca Santini Committed by Paul Mundt
Browse files

sh: Enable IRLM mode for SH7760 IRQ_MODE_IRQ.



Follows the same setting as SH7750.

Signed-off-by: default avatarLuca Santini <luca.santini@spesonline.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 205a3b43
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
#include <linux/init.h>
#include <linux/serial.h>
#include <linux/serial_sci.h>
#include <linux/io.h>

enum {
	UNUSED = 0,
@@ -178,10 +179,14 @@ static int __init sh7760_devices_setup(void)
}
__initcall(sh7760_devices_setup);

#define INTC_ICR	0xffd00000UL
#define INTC_ICR_IRLM	(1 << 7)

void __init plat_irq_setup_pins(int mode)
{
	switch (mode) {
	case IRQ_MODE_IRQ:
		ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
		register_intc_controller(&intc_desc_irq);
		break;
	default: