1/*
2 * Device Tree board file for NXP LPC18xx/43xx
3 *
4 * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10
11#include <asm/mach/arch.h>
12
13static const char *const lpc18xx_43xx_compat[] __initconst = {
14	"nxp,lpc1850",
15	"nxp,lpc4350",
16	"nxp,lpc4370",
17	NULL
18};
19
20DT_MACHINE_START(LPC18XXDT, "NXP LPC18xx/43xx (Device Tree)")
21	.dt_compat = lpc18xx_43xx_compat,
22MACHINE_END
23