blob: b13ec9088ce5354c80bfb475641faab0b2770244 [file] [log] [blame]
Wolfram Sangc44e1822018-06-14 10:56:06 +09001// SPDX-License-Identifier: GPL-2.0
Magnus Dammf411fad2011-12-14 01:36:12 +09002/*
3 * r8a7779 processor support
4 *
Sergei Shtylyovdace48d2013-04-04 18:53:50 +00005 * Copyright (C) 2011, 2013 Renesas Solutions Corp.
Magnus Dammf411fad2011-12-14 01:36:12 +09006 * Copyright (C) 2011 Magnus Damm
Sergei Shtylyovdace48d2013-04-04 18:53:50 +00007 * Copyright (C) 2013 Cogent Embedded, Inc.
Magnus Dammf411fad2011-12-14 01:36:12 +09008 */
Magnus Dammf411fad2011-12-14 01:36:12 +09009#include <linux/init.h>
Kuninori Morimoto5b3859d2013-08-01 23:39:56 -070010#include <linux/irqchip.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020011
Magnus Dammf411fad2011-12-14 01:36:12 +090012#include <asm/mach/arch.h>
Magnus Damm3e353b872012-02-29 21:37:43 +090013#include <asm/mach/map.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020014
Magnus Dammfd44aa52014-06-17 16:47:37 +090015#include "common.h"
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020016#include "r8a7779.h"
Magnus Damm3e353b872012-02-29 21:37:43 +090017
18static struct map_desc r8a7779_io_desc[] __initdata = {
Geert Uytterhoeven3e940952014-11-14 17:07:05 +010019 /* 2M identity mapping for 0xf0000000 (MPCORE) */
Magnus Damm3e353b872012-02-29 21:37:43 +090020 {
21 .virtual = 0xf0000000,
22 .pfn = __phys_to_pfn(0xf0000000),
23 .length = SZ_2M,
24 .type = MT_DEVICE_NONSHARED
25 },
Geert Uytterhoeven3e940952014-11-14 17:07:05 +010026 /* 16M identity mapping for 0xfexxxxxx (DMAC-S/HPBREG/INTC2/LRAM/DBSC) */
Magnus Damm3e353b872012-02-29 21:37:43 +090027 {
28 .virtual = 0xfe000000,
29 .pfn = __phys_to_pfn(0xfe000000),
30 .length = SZ_16M,
31 .type = MT_DEVICE_NONSHARED
32 },
33};
34
Magnus Dammc99cd902015-07-16 16:54:03 +090035static void __init r8a7779_map_io(void)
Magnus Damm3e353b872012-02-29 21:37:43 +090036{
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +010037 debug_ll_io_init();
Magnus Damm3e353b872012-02-29 21:37:43 +090038 iotable_init(r8a7779_io_desc, ARRAY_SIZE(r8a7779_io_desc));
39}
Magnus Dammf411fad2011-12-14 01:36:12 +090040
Kuninori Morimoto5b3859d2013-08-01 23:39:56 -070041/* IRQ */
42#define INT2SMSKCR0 IOMEM(0xfe7822a0)
43#define INT2SMSKCR1 IOMEM(0xfe7822a4)
44#define INT2SMSKCR2 IOMEM(0xfe7822a8)
45#define INT2SMSKCR3 IOMEM(0xfe7822ac)
46#define INT2SMSKCR4 IOMEM(0xfe7822b0)
47
48#define INT2NTSR0 IOMEM(0xfe700060)
49#define INT2NTSR1 IOMEM(0xfe700064)
50
Magnus Dammc99cd902015-07-16 16:54:03 +090051static void __init r8a7779_init_irq_dt(void)
Kuninori Morimoto5b3859d2013-08-01 23:39:56 -070052{
Kuninori Morimoto5b3859d2013-08-01 23:39:56 -070053 irqchip_init();
Magnus Dammc99cd902015-07-16 16:54:03 +090054
Kuninori Morimoto5b3859d2013-08-01 23:39:56 -070055 /* route all interrupts to ARM */
56 __raw_writel(0xffffffff, INT2NTSR0);
57 __raw_writel(0x3fffffff, INT2NTSR1);
58
59 /* unmask all known interrupts in INTCS2 */
60 __raw_writel(0xfffffff0, INT2SMSKCR0);
61 __raw_writel(0xfff7ffff, INT2SMSKCR1);
62 __raw_writel(0xfffbffdf, INT2SMSKCR2);
63 __raw_writel(0xbffffffc, INT2SMSKCR3);
64 __raw_writel(0x003fee3f, INT2SMSKCR4);
65}
66
Nicolas Pitre19c233b2015-07-27 18:27:52 -040067static const char *const r8a7779_compat_dt[] __initconst = {
Simon Horman10e8d4f2012-11-21 22:00:15 +090068 "renesas,r8a7779",
69 NULL,
70};
71
Kuninori Morimotoabe0e142013-03-03 23:11:20 -080072DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)")
Magnus Damm44ade5e2015-07-13 15:15:02 +090073 .smp = smp_ops(r8a7779_smp_ops),
Simon Horman10e8d4f2012-11-21 22:00:15 +090074 .map_io = r8a7779_map_io,
Simon Horman0157b622014-05-16 13:42:59 +090075 .init_early = shmobile_init_delay,
Simon Horman10e8d4f2012-11-21 22:00:15 +090076 .init_irq = r8a7779_init_irq_dt,
Magnus Dammd5b00b92014-07-31 08:32:33 +090077 .init_late = shmobile_init_late,
Simon Horman10e8d4f2012-11-21 22:00:15 +090078 .dt_compat = r8a7779_compat_dt,
79MACHINE_END