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