blob: f4da205f57db9833684f0ce6b46104375e4e0181 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright 2013 Greg Ungerer <gerg@uclinux.org>
4 * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
5 * Copyright 2011 Linaro Ltd.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#include <linux/of_platform.h>
9#include <asm/mach/arch.h>
10
11#include "common.h"
12
13static const char * const imx50_dt_board_compat[] __initconst = {
14 "fsl,imx50",
15 NULL
16};
17
18DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)")
19 .dt_compat = imx50_dt_board_compat,
20MACHINE_END