2019-05-27 09:55:08 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2013-11-04 04:13:40 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Greg Ungerer <gerg@uclinux.org>
|
|
|
|
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
|
|
* Copyright 2011 Linaro Ltd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2014-07-01 12:03:00 +04:00
|
|
|
static const char * const imx50_dt_board_compat[] __initconst = {
|
2013-11-04 04:13:40 +04:00
|
|
|
"fsl,imx50",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)")
|
|
|
|
.dt_compat = imx50_dt_board_compat,
|
|
|
|
MACHINE_END
|