1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright 2012-2013 Freescale Semiconductor, Inc. 4 */ 5 6 #include <linux/of_platform.h> 7 #include <linux/irqchip.h> 8 #include <asm/mach/arch.h> 9 #include <asm/hardware/cache-l2x0.h> 10 11 static const char * const vf610_dt_compat[] __initconst = { 12 "fsl,vf500", 13 "fsl,vf510", 14 "fsl,vf600", 15 "fsl,vf610", 16 "fsl,vf610m4", 17 NULL, 18 }; 19 20 DT_MACHINE_START(VYBRID_VF610, "Freescale Vybrid VF5xx/VF6xx (Device Tree)") 21 .l2c_aux_val = 0, 22 .l2c_aux_mask = ~0, 23 .dt_compat = vf610_dt_compat, 24 MACHINE_END 25