blob: ec5c3068715c3495d56c32f5b455692809b8d12c [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright 2012 Steffen Trumtrar, Pengutronix
4 *
5 * based on imx27-dt.c
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#include <linux/irq.h>
9#include <linux/irqdomain.h>
10#include <linux/of_irq.h>
11#include <linux/of_platform.h>
12#include <linux/clk-provider.h>
13#include <linux/clocksource.h>
14#include <asm/mach/arch.h>
15#include <asm/mach/time.h>
16#include <asm/hardware/cache-l2x0.h>
17#include "common.h"
18#include "mx35.h"
19
20static const char * const imx35_dt_board_compat[] __initconst = {
21 "fsl,imx35",
22 NULL
23};
24
25DT_MACHINE_START(IMX35_DT, "Freescale i.MX35 (Device Tree Support)")
26 .l2c_aux_val = 0,
27 .l2c_aux_mask = ~0,
28 .map_io = mx35_map_io,
29 .init_early = imx35_init_early,
30 .init_irq = mx35_init_irq,
31 .dt_compat = imx35_dt_board_compat,
32MACHINE_END