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 | { |
Markus Pargmann | b91af27 | 2013-03-27 14:01:32 +0100 | [diff] [blame] | 23 | struct platform_device_info devinfo = { .name = "cpufreq-cpu0", }; |
| 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 | |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 35 | static void __init imx27_timer_init(void) |
| 36 | { |
| 37 | mx27_clocks_init_dt(); |
| 38 | } |
| 39 | |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 40 | DT_MACHINE_START(IMX27_DT, "Freescale i.MX27 (Device Tree Support)") |
| 41 | .map_io = mx27_map_io, |
| 42 | .init_early = imx27_init_early, |
| 43 | .init_irq = mx27_init_irq, |
| 44 | .handle_irq = imx27_handle_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 45 | .init_time = imx27_timer_init, |
Sascha Hauer | 9f0749e | 2012-02-28 21:57:50 +0100 | [diff] [blame] | 46 | .init_machine = imx27_dt_init, |
| 47 | .dt_compat = imx27_dt_board_compat, |
| 48 | .restart = mxc_restart, |
| 49 | MACHINE_END |