Greg Ungerer | 374daac | 2013-11-04 10:13:40 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Greg Ungerer <gerg@uclinux.org> |
| 3 | * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved. |
| 4 | * Copyright 2011 Linaro Ltd. |
| 5 | * |
| 6 | * The code contained herein is licensed under the GNU General Public |
| 7 | * License. You may obtain a copy of the GNU General Public License |
| 8 | * Version 2 or later at the following locations: |
| 9 | * |
| 10 | * http://www.opensource.org/licenses/gpl-license.html |
| 11 | * http://www.gnu.org/copyleft/gpl.html |
| 12 | */ |
| 13 | |
| 14 | #include <linux/of_platform.h> |
| 15 | #include <asm/mach/arch.h> |
| 16 | |
| 17 | #include "common.h" |
| 18 | |
| 19 | static void __init imx50_dt_init(void) |
| 20 | { |
| 21 | mxc_arch_reset_init_dt(); |
| 22 | |
| 23 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); |
| 24 | } |
| 25 | |
Shawn Guo | df79bc9 | 2013-12-09 14:04:35 +0800 | [diff] [blame] | 26 | static const char *imx50_dt_board_compat[] __initconst = { |
Greg Ungerer | 374daac | 2013-11-04 10:13:40 +1000 | [diff] [blame] | 27 | "fsl,imx50", |
| 28 | NULL |
| 29 | }; |
| 30 | |
| 31 | DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)") |
| 32 | .map_io = mx53_map_io, |
| 33 | .init_irq = mx53_init_irq, |
| 34 | .handle_irq = imx50_handle_irq, |
| 35 | .init_machine = imx50_dt_init, |
| 36 | .dt_compat = imx50_dt_board_compat, |
| 37 | .restart = mxc_restart, |
| 38 | MACHINE_END |