drm/vc4: mark vc4_bo_cache_purge() static
[linux-2.6-block.git] / arch / arm / mach-imx / imx35-dt.c
CommitLineData
a55a3d72
ST
1/*
2 * Copyright 2012 Steffen Trumtrar, Pengutronix
3 *
4 * based on imx27-dt.c
5 *
6 * This program is free software; you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License version 2 as published by the
8 * Free Software Foundation.
9 */
10
11#include <linux/irq.h>
12#include <linux/irqdomain.h>
13#include <linux/of_irq.h>
14#include <linux/of_platform.h>
15#include <linux/clk-provider.h>
16#include <linux/clocksource.h>
17#include <asm/mach/arch.h>
18#include <asm/mach/time.h>
19#include <asm/hardware/cache-l2x0.h>
20#include "common.h"
21#include "mx35.h"
22
8756dd92 23static const char * const imx35_dt_board_compat[] __initconst = {
a55a3d72
ST
24 "fsl,imx35",
25 NULL
26};
27
28DT_MACHINE_START(IMX35_DT, "Freescale i.MX35 (Device Tree Support)")
510aca64
AS
29 .l2c_aux_val = 0,
30 .l2c_aux_mask = ~0,
a55a3d72
ST
31 .map_io = mx35_map_io,
32 .init_early = imx35_init_early,
510aca64 33 .init_irq = mx35_init_irq,
a55a3d72 34 .dt_compat = imx35_dt_board_compat,
a55a3d72 35MACHINE_END