blob: f4da205f57db9833684f0ce6b46104375e4e0181 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright 2013 Greg Ungerer <gerg@uclinux.org>
4 * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
5 * Copyright 2011 Linaro Ltd.
6 */
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