mmu.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* mmu.h: memory management context for FR-V with or without MMU support
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_MMU_H
  12. #define _ASM_MMU_H
  13. typedef struct {
  14. #ifdef CONFIG_MMU
  15. struct list_head id_link; /* link in list of context ID owners */
  16. unsigned short id; /* MMU context ID */
  17. unsigned short id_busy; /* true if ID is in CXNR */
  18. unsigned long itlb_cached_pge; /* [SCR0] PGE cached for insn TLB handler */
  19. unsigned long itlb_ptd_mapping; /* [DAMR4] PTD mapping for itlb cached PGE */
  20. unsigned long dtlb_cached_pge; /* [SCR1] PGE cached for data TLB handler */
  21. unsigned long dtlb_ptd_mapping; /* [DAMR5] PTD mapping for dtlb cached PGE */
  22. #else
  23. unsigned long end_brk;
  24. #endif
  25. #ifdef CONFIG_BINFMT_ELF_FDPIC
  26. unsigned long exec_fdpic_loadmap;
  27. unsigned long interp_fdpic_loadmap;
  28. #endif
  29. } mm_context_t;
  30. #ifdef CONFIG_MMU
  31. extern int __nongpreldata cxn_pinned;
  32. extern int cxn_pin_by_pid(pid_t pid);
  33. #endif
  34. #endif /* _ASM_MMU_H */