1 /* 2 * Copyright 2013 Freescale Semiconductor, Inc. 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 * 8 */ 9 10 #include <linux/clk-provider.h> 11 #include <linux/irqchip.h> 12 #include <linux/of.h> 13 #include <linux/of_platform.h> 14 #include <asm/mach/arch.h> 15 #include <asm/mach/map.h> 16 17 #include "common.h" 18 19 static void __init imx6sl_init_machine(void) 20 { 21 mxc_arch_reset_init_dt(); 22 23 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); 24 } 25 26 static void __init imx6sl_init_irq(void) 27 { 28 imx_init_l2cache(); 29 imx_src_init(); 30 imx_gpc_init(); 31 irqchip_init(); 32 } 33 34 static void __init imx6sl_timer_init(void) 35 { 36 of_clk_init(NULL); 37 } 38 39 static const char *imx6sl_dt_compat[] __initdata = { 40 "fsl,imx6sl", 41 NULL, 42 }; 43 44 DT_MACHINE_START(IMX6SL, "Freescale i.MX6 SoloLite (Device Tree)") 45 .map_io = debug_ll_io_init, 46 .init_irq = imx6sl_init_irq, 47 .init_time = imx6sl_timer_init, 48 .init_machine = imx6sl_init_machine, 49 .dt_compat = imx6sl_dt_compat, 50 .restart = mxc_restart, 51 MACHINE_END 52