Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
0004  */
0005 
0006 #ifndef _ASM_ARC_MMU_H
0007 #define _ASM_ARC_MMU_H
0008 
0009 #ifndef __ASSEMBLY__
0010 
0011 #include <linux/threads.h>  /* NR_CPUS */
0012 
0013 typedef struct {
0014     unsigned long asid[NR_CPUS];    /* 8 bit MMU PID + Generation cycle */
0015 } mm_context_t;
0016 
0017 #endif
0018 
0019 #include <asm/mmu-arcv2.h>
0020 
0021 #endif