xref: /linux/arch/arm/mach-lpc18xx/board-dt.c (revision 2da68a77)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Device Tree board file for NXP LPC18xx/43xx
4  *
5  * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
6  */
7 
8 #include <asm/mach/arch.h>
9 
10 static const char *const lpc18xx_43xx_compat[] __initconst = {
11 	"nxp,lpc1850",
12 	"nxp,lpc4350",
13 	"nxp,lpc4370",
14 	NULL
15 };
16 
17 DT_MACHINE_START(LPC18XXDT, "NXP LPC18xx/43xx (Device Tree)")
18 	.dt_compat = lpc18xx_43xx_compat,
19 MACHINE_END
20