Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 1 | /* |
| 2 | * marzen board support - Reference DT implementation |
| 3 | * |
| 4 | * Copyright (C) 2011 Renesas Solutions Corp. |
| 5 | * Copyright (C) 2011 Magnus Damm |
| 6 | * Copyright (C) 2013 Simon Horman |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 22 | #include <mach/r8a7779.h> |
| 23 | #include <mach/common.h> |
| 24 | #include <mach/irqs.h> |
| 25 | #include <asm/irq.h> |
| 26 | #include <asm/mach/arch.h> |
| 27 | |
Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 28 | static void __init marzen_init(void) |
| 29 | { |
Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 30 | r8a7779_add_standard_devices_dt(); |
Kuninori Morimoto | 7d4bde8 | 2013-10-02 01:39:48 -0700 | [diff] [blame] | 31 | r8a7779_init_irq_extpin_dt(1); /* IRQ1 as individual interrupt */ |
Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | static const char *marzen_boards_compat_dt[] __initdata = { |
| 35 | "renesas,marzen-reference", |
| 36 | NULL, |
| 37 | }; |
| 38 | |
| 39 | DT_MACHINE_START(MARZEN, "marzen") |
| 40 | .smp = smp_ops(r8a7779_smp_ops), |
| 41 | .map_io = r8a7779_map_io, |
| 42 | .init_early = r8a7779_init_delay, |
| 43 | .nr_irqs = NR_IRQS_LEGACY, |
| 44 | .init_irq = r8a7779_init_irq_dt, |
| 45 | .init_machine = marzen_init, |
Simon Horman | 73d6a69 | 2013-01-29 11:40:18 +0900 | [diff] [blame] | 46 | .dt_compat = marzen_boards_compat_dt, |
| 47 | MACHINE_END |