amt630h.c 528 B

123456789101112131415161718192021222324
  1. /*
  2. * Setup code for arkmicro soc
  3. *
  4. * Licensed under GPLv2 or later.
  5. */
  6. #include <linux/of.h>
  7. #include <linux/of_platform.h>
  8. #include <linux/amba/serial.h>
  9. #include <linux/dma/dw.h>
  10. #include <linux/device.h>
  11. #include <linux/of.h>
  12. #include <asm/mach/arch.h>
  13. #include <asm/mach/map.h>
  14. #include <asm/system_misc.h>
  15. static const char * const ark_board_dt_compat[] = {
  16. "arkmicro,amt630h",
  17. NULL,
  18. };
  19. DT_MACHINE_START(ARKMIDRO_DT, "Arkmicro arm soc Family")
  20. .dt_compat = ark_board_dt_compat,
  21. .l2c_aux_mask = ~0UL,
  22. MACHINE_END