14533d5f7SChris Brand /*
24533d5f7SChris Brand  * Copyright (C) 2016 Broadcom
34533d5f7SChris Brand  *
44533d5f7SChris Brand  * This program is free software; you can redistribute it and/or
54533d5f7SChris Brand  * modify it under the terms of the GNU General Public License as
64533d5f7SChris Brand  * published by the Free Software Foundation version 2.
74533d5f7SChris Brand  *
84533d5f7SChris Brand  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
94533d5f7SChris Brand  * kind, whether express or implied; without even the implied warranty
104533d5f7SChris Brand  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
114533d5f7SChris Brand  * GNU General Public License for more details.
124533d5f7SChris Brand  */
134533d5f7SChris Brand 
144533d5f7SChris Brand #include <linux/of_platform.h>
154533d5f7SChris Brand 
164533d5f7SChris Brand #include <asm/mach/arch.h>
174533d5f7SChris Brand 
184533d5f7SChris Brand static const char * const bcm23550_dt_compat[] = {
194533d5f7SChris Brand 	"brcm,bcm23550",
204533d5f7SChris Brand 	NULL,
214533d5f7SChris Brand };
224533d5f7SChris Brand 
234533d5f7SChris Brand DT_MACHINE_START(BCM23550_DT, "BCM23550 Broadcom Application Processor")
244533d5f7SChris Brand 	.dt_compat = bcm23550_dt_compat,
254533d5f7SChris Brand MACHINE_END
26