xref: /linux/arch/arm/mach-bcm/board_bcm23550.c (revision f26e8817b235d8764363bffcc9cbfc61867371f2)
1*4533d5f7SChris Brand /*
2*4533d5f7SChris Brand  * Copyright (C) 2016 Broadcom
3*4533d5f7SChris Brand  *
4*4533d5f7SChris Brand  * This program is free software; you can redistribute it and/or
5*4533d5f7SChris Brand  * modify it under the terms of the GNU General Public License as
6*4533d5f7SChris Brand  * published by the Free Software Foundation version 2.
7*4533d5f7SChris Brand  *
8*4533d5f7SChris Brand  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9*4533d5f7SChris Brand  * kind, whether express or implied; without even the implied warranty
10*4533d5f7SChris Brand  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11*4533d5f7SChris Brand  * GNU General Public License for more details.
12*4533d5f7SChris Brand  */
13*4533d5f7SChris Brand 
14*4533d5f7SChris Brand #include <linux/of_platform.h>
15*4533d5f7SChris Brand 
16*4533d5f7SChris Brand #include <asm/mach/arch.h>
17*4533d5f7SChris Brand 
18*4533d5f7SChris Brand static const char * const bcm23550_dt_compat[] = {
19*4533d5f7SChris Brand 	"brcm,bcm23550",
20*4533d5f7SChris Brand 	NULL,
21*4533d5f7SChris Brand };
22*4533d5f7SChris Brand 
23*4533d5f7SChris Brand DT_MACHINE_START(BCM23550_DT, "BCM23550 Broadcom Application Processor")
24*4533d5f7SChris Brand 	.dt_compat = bcm23550_dt_compat,
25*4533d5f7SChris Brand MACHINE_END
26