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