Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Sascha Hauer, Pengutronix |
| 3 | * |
| 4 | * The code contained herein is licensed under the GNU General Public |
| 5 | * License. You may obtain a copy of the GNU General Public License |
| 6 | * Version 2 or later at the following locations: |
| 7 | * |
| 8 | * http://www.opensource.org/licenses/gpl-license.html |
| 9 | * http://www.gnu.org/copyleft/gpl.html |
| 10 | */ |
| 11 | |
| 12 | #include <linux/irq.h> |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 13 | #include <linux/of_irq.h> |
| 14 | #include <linux/of_platform.h> |
| 15 | #include <asm/mach/arch.h> |
| 16 | #include <asm/mach/time.h> |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 17 | |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 18 | #include "common.h" |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 19 | #include "mx27.h" |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 20 | |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 21 | static void __init imx27_dt_init(void) |
| 22 | { |
Viresh Kumar | bbcf071 | 2014-09-09 19:58:03 +0530 | [diff] [blame] | 23 | struct platform_device_info devinfo = { .name = "cpufreq-dt", }; |
Markus Pargmann | b91af27 | 2013-03-27 14:01:32 +0100 | [diff] [blame] | 24 | |
Fabio Estevam | c20736f | 2012-11-28 15:55:30 -0200 | [diff] [blame] | 25 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); |
Markus Pargmann | b91af27 | 2013-03-27 14:01:32 +0100 | [diff] [blame] | 26 | |
| 27 | platform_device_register_full(&devinfo); |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 28 | } |
| 29 | |
Uwe Kleine-König | 3e38656 | 2012-06-08 12:04:50 +0200 | [diff] [blame] | 30 | static const char * const imx27_dt_board_compat[] __initconst = { |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 31 | "fsl,imx27", |
| 32 | NULL |
| 33 | }; |
| 34 | |
| 35 | DT_MACHINE_START(IMX27_DT, "Freescale i.MX27 (Device Tree Support)") |
| 36 | .map_io = mx27_map_io, |
| 37 | .init_early = imx27_init_early, |
| 38 | .init_irq = mx27_init_irq, |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 39 | .init_machine = imx27_dt_init, |
| 40 | .dt_compat = imx27_dt_board_compat, |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 41 | MACHINE_END |