mmu.h 462 B

1234567891011121314151617181920212223
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2001 - 2013 Tensilica Inc.
  7. */
  8. #ifndef _XTENSA_MMU_H
  9. #define _XTENSA_MMU_H
  10. #ifndef CONFIG_MMU
  11. #include <asm-generic/mmu.h>
  12. #else
  13. typedef struct {
  14. unsigned long asid[NR_CPUS];
  15. unsigned int cpu;
  16. } mm_context_t;
  17. #endif /* CONFIG_MMU */
  18. #endif /* _XTENSA_MMU_H */