1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Device Tree support for Airoha SoCs 4 * 5 * Copyright (c) 2022 Felix Fietkau <nbd@nbd.name> 6 */ 7 #include <asm/mach/arch.h> 8 9 static const char * const airoha_board_dt_compat[] = { 10 "airoha,en7523", 11 NULL, 12 }; 13 14 DT_MACHINE_START(MEDIATEK_DT, "Airoha Cortex-A53 (Device Tree)") 15 .dt_compat = airoha_board_dt_compat, 16 MACHINE_END 17