11b475f8dSJonathan Richardson /* 21b475f8dSJonathan Richardson * Copyright (C) 2014 Broadcom Corporation 31b475f8dSJonathan Richardson * 41b475f8dSJonathan Richardson * This program is free software; you can redistribute it and/or 51b475f8dSJonathan Richardson * modify it under the terms of the GNU General Public License as 61b475f8dSJonathan Richardson * published by the Free Software Foundation version 2. 71b475f8dSJonathan Richardson * 81b475f8dSJonathan Richardson * This program is distributed "as is" WITHOUT ANY WARRANTY of any 91b475f8dSJonathan Richardson * kind, whether express or implied; without even the implied warranty 101b475f8dSJonathan Richardson * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 111b475f8dSJonathan Richardson * GNU General Public License for more details. 121b475f8dSJonathan Richardson */ 131b475f8dSJonathan Richardson 141b475f8dSJonathan Richardson #include <asm/mach/arch.h> 151b475f8dSJonathan Richardson 16*3213e674SStefan Agner static const char * const bcm_cygnus_dt_compat[] __initconst = { 171b475f8dSJonathan Richardson "brcm,cygnus", 181b475f8dSJonathan Richardson NULL, 191b475f8dSJonathan Richardson }; 201b475f8dSJonathan Richardson 211b475f8dSJonathan Richardson DT_MACHINE_START(BCM_CYGNUS_DT, "Broadcom Cygnus SoC") 221b475f8dSJonathan Richardson .l2c_aux_val = 0, 231b475f8dSJonathan Richardson .l2c_aux_mask = ~0, 241b475f8dSJonathan Richardson .dt_compat = bcm_cygnus_dt_compat, 251b475f8dSJonathan Richardson MACHINE_END 26