mmu.h 387 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  4. */
  5. #ifndef _ASM_ARC_MMU_H
  6. #define _ASM_ARC_MMU_H
  7. #ifndef __ASSEMBLY__
  8. #include <linux/threads.h> /* NR_CPUS */
  9. typedef struct {
  10. unsigned long asid[NR_CPUS]; /* 8 bit MMU PID + Generation cycle */
  11. } mm_context_t;
  12. #endif
  13. #include <asm/mmu-arcv2.h>
  14. #endif