tlb.h 714 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2008-2009 PetaLogix
  4. * Copyright (C) 2006 Atmark Techno, Inc.
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #ifndef _ASM_MICROBLAZE_TLB_H
  11. #define _ASM_MICROBLAZE_TLB_H
  12. #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
  13. #include <linux/pagemap.h>
  14. #ifdef CONFIG_MMU
  15. #define tlb_start_vma(tlb, vma) do { } while (0)
  16. #define tlb_end_vma(tlb, vma) do { } while (0)
  17. #define __tlb_remove_tlb_entry(tlb, pte, address) do { } while (0)
  18. #endif
  19. #include <asm-generic/tlb.h>
  20. #endif /* _ASM_MICROBLAZE_TLB_H */