hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// SPDX-License-Identifier: GPL-2.0
/*
 * r8a7779 processor support
 *
 * Copyright (C) 2011, 2013  Renesas Solutions Corp.
 * Copyright (C) 2011  Magnus Damm
 * Copyright (C) 2013  Cogent Embedded, Inc.
 */
#include <linux/init.h>
#include <linux/irqchip.h>
 
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
 
#include "common.h"
#include "r8a7779.h"
 
static struct map_desc r8a7779_io_desc[] __initdata = {
   /* 2M identity mapping for 0xf0000000 (MPCORE) */
   {
       .virtual    = 0xf0000000,
       .pfn        = __phys_to_pfn(0xf0000000),
       .length        = SZ_2M,
       .type        = MT_DEVICE_NONSHARED
   },
   /* 16M identity mapping for 0xfexxxxxx (DMAC-S/HPBREG/INTC2/LRAM/DBSC) */
   {
       .virtual    = 0xfe000000,
       .pfn        = __phys_to_pfn(0xfe000000),
       .length        = SZ_16M,
       .type        = MT_DEVICE_NONSHARED
   },
};
 
static void __init r8a7779_map_io(void)
{
   debug_ll_io_init();
   iotable_init(r8a7779_io_desc, ARRAY_SIZE(r8a7779_io_desc));
}
 
/* IRQ */
#define INT2SMSKCR0 IOMEM(0xfe7822a0)
#define INT2SMSKCR1 IOMEM(0xfe7822a4)
#define INT2SMSKCR2 IOMEM(0xfe7822a8)
#define INT2SMSKCR3 IOMEM(0xfe7822ac)
#define INT2SMSKCR4 IOMEM(0xfe7822b0)
 
#define INT2NTSR0 IOMEM(0xfe700060)
#define INT2NTSR1 IOMEM(0xfe700064)
 
static void __init r8a7779_init_irq_dt(void)
{
   irqchip_init();
 
   /* route all interrupts to ARM */
   __raw_writel(0xffffffff, INT2NTSR0);
   __raw_writel(0x3fffffff, INT2NTSR1);
 
   /* unmask all known interrupts in INTCS2 */
   __raw_writel(0xfffffff0, INT2SMSKCR0);
   __raw_writel(0xfff7ffff, INT2SMSKCR1);
   __raw_writel(0xfffbffdf, INT2SMSKCR2);
   __raw_writel(0xbffffffc, INT2SMSKCR3);
   __raw_writel(0x003fee3f, INT2SMSKCR4);
}
 
static const char *const r8a7779_compat_dt[] __initconst = {
   "renesas,r8a7779",
   NULL,
};
 
DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)")
   .smp        = smp_ops(r8a7779_smp_ops),
   .map_io        = r8a7779_map_io,
   .init_irq    = r8a7779_init_irq_dt,
   .init_late    = shmobile_init_late,
   .dt_compat    = r8a7779_compat_dt,
MACHINE_END