1*52e6676eSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2*52e6676eSThomas Gleixner // Copyright (C) 2014 Broadcom Corporation 31b475f8dSJonathan Richardson 41b475f8dSJonathan Richardson #include <asm/mach/arch.h> 51b475f8dSJonathan Richardson 63213e674SStefan Agner static const char * const bcm_cygnus_dt_compat[] __initconst = { 71b475f8dSJonathan Richardson "brcm,cygnus", 81b475f8dSJonathan Richardson NULL, 91b475f8dSJonathan Richardson }; 101b475f8dSJonathan Richardson 111b475f8dSJonathan Richardson DT_MACHINE_START(BCM_CYGNUS_DT, "Broadcom Cygnus SoC") 121b475f8dSJonathan Richardson .l2c_aux_val = 0, 131b475f8dSJonathan Richardson .l2c_aux_mask = ~0, 141b475f8dSJonathan Richardson .dt_compat = bcm_cygnus_dt_compat, 151b475f8dSJonathan Richardson MACHINE_END 16