dtmachine.c 325 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/kernel.h>
  3. #include <asm/v7m.h>
  4. #include <asm/mach/arch.h>
  5. static const char *const efm32gg_compat[] __initconst = {
  6. "efm32,dk3750",
  7. NULL
  8. };
  9. DT_MACHINE_START(EFM32DT, "EFM32 (Device Tree Support)")
  10. .dt_compat = efm32gg_compat,
  11. .restart = armv7m_restart,
  12. MACHINE_END