Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 // Copyright (c) 2018 Nuvoton Technology corporation.
0003 // Copyright 2018 Google, Inc.
0004 
0005 #include <linux/kernel.h>
0006 #include <linux/types.h>
0007 #include <asm/mach/arch.h>
0008 #include <asm/mach-types.h>
0009 #include <asm/mach/map.h>
0010 #include <asm/hardware/cache-l2x0.h>
0011 
0012 static const char *const npcm7xx_dt_match[] = {
0013     "nuvoton,npcm750",
0014     NULL
0015 };
0016 
0017 DT_MACHINE_START(NPCM7XX_DT, "NPCM7XX Chip family")
0018     .atag_offset    = 0x100,
0019     .dt_compat  = npcm7xx_dt_match,
0020     .l2c_aux_val    = 0x0,
0021     .l2c_aux_mask   = ~0x0,
0022 MACHINE_END