airoha.c 372 B

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