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

Commit bd1689cd authored by Takashi YOSHII's avatar Takashi YOSHII Committed by Paul Mundt
Browse files

ARM: mach-shmobile: fix cpu_base of gic_init() on sh73a0



The latest rmobile-latest doesn't run on ag5evm because of a
small mistake on initialization.
Though, I don't have any idea to write them smart.
anyway,

On sh73a0, GIC cpu_base is 0xf0000100 but 0xf0001000.

Signed-off-by: default avatarTakashi YOSHII <takashi.yoshii.zj@renesas.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 581548db
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -252,10 +252,11 @@ static irqreturn_t sh73a0_intcs_demux(int irq, void *dev_id)


void __init sh73a0_init_irq(void)
void __init sh73a0_init_irq(void)
{
{
	void __iomem *gic_base = __io(0xf0001000);
	void __iomem *gic_dist_base = __io(0xf0001000);
	void __iomem *gic_cpu_base = __io(0xf0000100);
	void __iomem *intevtsa = ioremap_nocache(0xffd20100, PAGE_SIZE);
	void __iomem *intevtsa = ioremap_nocache(0xffd20100, PAGE_SIZE);


	gic_init(0, 29, gic_base, gic_base);
	gic_init(0, 29, gic_dist_base, gic_cpu_base);


	register_intc_controller(&intcs_desc);
	register_intc_controller(&intcs_desc);