diff options
author | Magnus Damm <damm@opensource.se> | 2013-09-18 16:11:11 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-10-07 20:53:00 -0400 |
commit | e3da5b36d48a8e55d1549da016e4c38ff3c0d0fc (patch) | |
tree | 20328faba54834a82ec34559edc49d33123331df /arch/arm/mach-shmobile/setup-r7s72100.c | |
parent | cd8344f4ddfe58ef9ca1743eff3a121f00b75302 (diff) |
ARM: shmobile: Initial r7s72100 SoC support
Add initial support for the r7272100 SoC including:
- Single Cortex-A9 CPU Core
- GIC
No static virtual mappings are used, all the components
make use of ioremap(). DT_MACHINE_START is still wrapped
in CONFIG_USE_OF to match other mach-shmobile code.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/setup-r7s72100.c')
-rw-r--r-- | arch/arm/mach-shmobile/setup-r7s72100.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c new file mode 100644 index 000000000000..c1aded0984a8 --- /dev/null +++ b/arch/arm/mach-shmobile/setup-r7s72100.c | |||
@@ -0,0 +1,43 @@ | |||
1 | /* | ||
2 | * r7s72100 processor support | ||
3 | * | ||
4 | * Copyright (C) 2013 Renesas Solutions Corp. | ||
5 | * Copyright (C) 2013 Magnus Damm | ||
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. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
19 | */ | ||
20 | |||
21 | #include <linux/irq.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/of_platform.h> | ||
24 | #include <mach/common.h> | ||
25 | #include <mach/r7s72100.h> | ||
26 | #include <asm/mach/arch.h> | ||
27 | |||
28 | void __init r7s72100_init_early(void) | ||
29 | { | ||
30 | shmobile_setup_delay(400, 1, 3); /* Cortex-A9 @ 400MHz */ | ||
31 | } | ||
32 | |||
33 | #ifdef CONFIG_USE_OF | ||
34 | static const char *r7s72100_boards_compat_dt[] __initdata = { | ||
35 | "renesas,r7s72100", | ||
36 | NULL, | ||
37 | }; | ||
38 | |||
39 | DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)") | ||
40 | .init_early = r7s72100_init_early, | ||
41 | .dt_compat = r7s72100_boards_compat_dt, | ||
42 | MACHINE_END | ||
43 | #endif /* CONFIG_USE_OF */ | ||