xref: /linux/arch/arm/mach-bcm/bcm_nsp.c (revision 9938b04472d5c59f8bd8152a548533a8599596a2)
1*1f3e9a6eSJon Mason /*
2*1f3e9a6eSJon Mason  * Copyright (C) 2015 Broadcom Corporation
3*1f3e9a6eSJon Mason  *
4*1f3e9a6eSJon Mason  * This program is free software; you can redistribute it and/or
5*1f3e9a6eSJon Mason  * modify it under the terms of the GNU General Public License as
6*1f3e9a6eSJon Mason  * published by the Free Software Foundation version 2.
7*1f3e9a6eSJon Mason  *
8*1f3e9a6eSJon Mason  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9*1f3e9a6eSJon Mason  * kind, whether express or implied; without even the implied warranty
10*1f3e9a6eSJon Mason  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11*1f3e9a6eSJon Mason  * GNU General Public License for more details.
12*1f3e9a6eSJon Mason  */
13*1f3e9a6eSJon Mason 
14*1f3e9a6eSJon Mason #include <asm/mach/arch.h>
15*1f3e9a6eSJon Mason 
16*1f3e9a6eSJon Mason static const char *const bcm_nsp_dt_compat[] __initconst = {
17*1f3e9a6eSJon Mason 	"brcm,nsp",
18*1f3e9a6eSJon Mason 	NULL,
19*1f3e9a6eSJon Mason };
20*1f3e9a6eSJon Mason 
21*1f3e9a6eSJon Mason DT_MACHINE_START(NSP_DT, "Broadcom Northstar Plus SoC")
22*1f3e9a6eSJon Mason 	.l2c_aux_val	= 0,
23*1f3e9a6eSJon Mason 	.l2c_aux_mask	= ~0,
24*1f3e9a6eSJon Mason 	.dt_compat = bcm_nsp_dt_compat,
25*1f3e9a6eSJon Mason MACHINE_END
26