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