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