Merge tag 'dlm-4.3' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
[deliverable/linux.git] / arch / arm / mach-imx / mach-imx7d.c
CommitLineData
5739b919
AH
1/*
2 * Copyright (C) 2015 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#include <linux/irqchip.h>
9#include <linux/of_platform.h>
10#include <asm/mach/arch.h>
11#include <asm/mach/map.h>
12
13#include "common.h"
14
15static void __init imx7d_init_machine(void)
16{
17 struct device *parent;
18
19 parent = imx_soc_device_init();
20 if (parent == NULL)
21 pr_warn("failed to initialize soc device\n");
22
23 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
24 imx_anatop_init();
25}
26
27static void __init imx7d_init_irq(void)
28{
29 imx_init_revision_from_anatop();
30 imx_src_init();
31 irqchip_init();
32}
33
19c233b7 34static const char *const imx7d_dt_compat[] __initconst = {
5739b919
AH
35 "fsl,imx7d",
36 NULL,
37};
38
39DT_MACHINE_START(IMX7D, "Freescale i.MX7 Dual (Device Tree)")
40 .init_irq = imx7d_init_irq,
41 .init_machine = imx7d_init_machine,
42 .dt_compat = imx7d_dt_compat,
43MACHINE_END
This page took 0.032105 seconds and 5 git commands to generate.