]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-shmobile/setup-r8a7740.c
Merge tag 'openrisc-for-linus' of git://github.com/openrisc/linux
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-shmobile / setup-r8a7740.c
CommitLineData
6c01ba44
KM
1/*
2 * R8A7740 processor support
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
6c01ba44
KM
15 */
16#include <linux/kernel.h>
17#include <linux/init.h>
6831f3a9 18#include <linux/io.h>
70e3f3d4
KM
19#include <linux/irqchip.h>
20#include <linux/irqchip/arm-gic.h>
9e38b84b 21
d3ab7221 22#include <asm/mach/map.h>
6c01ba44 23#include <asm/mach/arch.h>
23e5bc03 24#include <asm/mach/time.h>
9e38b84b 25
fd44aa5e 26#include "common.h"
6c01ba44 27
d49679e5
KM
28/*
29 * r8a7740 chip has lasting errata on MERAM buffer.
30 * this is work-around for it.
31 * see
32 * "Media RAM (MERAM)" on r8a7740 documentation
33 */
34#define MEBUFCNTR 0xFE950098
44d88c75 35static void __init r8a7740_meram_workaround(void)
d49679e5
KM
36{
37 void __iomem *reg;
38
39 reg = ioremap_nocache(MEBUFCNTR, 4);
40 if (reg) {
41 iowrite32(0x01600164, reg);
42 iounmap(reg);
43 }
44}
45
44d88c75 46static void __init r8a7740_init_irq_of(void)
70e3f3d4
KM
47{
48 void __iomem *intc_prio_base = ioremap_nocache(0xe6900010, 0x10);
49 void __iomem *intc_msk_base = ioremap_nocache(0xe6900040, 0x10);
50 void __iomem *pfc_inta_ctrl = ioremap_nocache(0xe605807c, 0x4);
51
52 irqchip_init();
53
54 /* route signals to GIC */
55 iowrite32(0x0, pfc_inta_ctrl);
56
57 /*
58 * To mask the shared interrupt to SPI 149 we must ensure to set
59 * PRIO *and* MASK. Else we run into IRQ floods when registering
60 * the intc_irqpin devices
61 */
62 iowrite32(0x0, intc_prio_base + 0x0);
63 iowrite32(0x0, intc_prio_base + 0x4);
64 iowrite32(0x0, intc_prio_base + 0x8);
65 iowrite32(0x0, intc_prio_base + 0xc);
66 iowrite8(0xff, intc_msk_base + 0x0);
67 iowrite8(0xff, intc_msk_base + 0x4);
68 iowrite8(0xff, intc_msk_base + 0x8);
69 iowrite8(0xff, intc_msk_base + 0xc);
70
71 iounmap(intc_prio_base);
72 iounmap(intc_msk_base);
73 iounmap(pfc_inta_ctrl);
74}
75
744fdc8d
BH
76static void __init r8a7740_generic_init(void)
77{
c41215b7 78 r8a7740_meram_workaround();
744fdc8d
BH
79}
80
19c233b7 81static const char *const r8a7740_boards_compat_dt[] __initconst = {
755d57b2
MD
82 "renesas,r8a7740",
83 NULL,
84};
85
a41acc4a 86DT_MACHINE_START(R8A7740_DT, "Generic R8A7740 (Flattened Device Tree)")
4a6cc501
GU
87 .l2c_aux_val = 0,
88 .l2c_aux_mask = ~0,
a0c1fb0c 89 .init_early = shmobile_init_delay,
744fdc8d
BH
90 .init_irq = r8a7740_init_irq_of,
91 .init_machine = r8a7740_generic_init,
34b9fa40 92 .init_late = shmobile_init_late,
755d57b2
MD
93 .dt_compat = r8a7740_boards_compat_dt,
94MACHINE_END