ark1668.c 546 B

12345678910111213141516171819202122232425
  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,ark1668",
  17. "arkmicro,n141",
  18. NULL,
  19. };
  20. DT_MACHINE_START(ARKMIDRO_DT, "Arkmicro arm soc Family")
  21. .dt_compat = ark_board_dt_compat,
  22. .l2c_aux_mask = ~0UL,
  23. MACHINE_END