npcm7xx.c 533 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (c) 2018 Nuvoton Technology corporation.
  3. // Copyright 2018 Google, Inc.
  4. #include <linux/kernel.h>
  5. #include <linux/types.h>
  6. #include <asm/mach/arch.h>
  7. #include <asm/mach-types.h>
  8. #include <asm/mach/map.h>
  9. #include <asm/hardware/cache-l2x0.h>
  10. static const char *const npcm7xx_dt_match[] = {
  11. "nuvoton,npcm750",
  12. NULL
  13. };
  14. DT_MACHINE_START(NPCM7XX_DT, "NPCM7XX Chip family")
  15. .atag_offset = 0x100,
  16. .dt_compat = npcm7xx_dt_match,
  17. .l2c_aux_val = 0x0,
  18. .l2c_aux_mask = ~0x0,
  19. MACHINE_END