mmu_context.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * File: include/asm-blackfin/mmu_context.h
  3. * Based on:
  4. * Author:
  5. *
  6. * Created:
  7. * Description:
  8. *
  9. * Modified:
  10. * Copyright 2004-2006 Analog Devices Inc.
  11. *
  12. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, see the file COPYING, or write
  26. * to the Free Software Foundation, Inc.,
  27. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  28. */
  29. #ifndef __BLACKFIN_MMU_CONTEXT_H__
  30. #define __BLACKFIN_MMU_CONTEXT_H__
  31. #include <asm/setup.h>
  32. #include <asm/page.h>
  33. #include <asm/pgalloc.h>
  34. extern void *current_l1_stack_save;
  35. extern int nr_l1stack_tasks;
  36. extern void *l1_stack_base;
  37. extern unsigned long l1_stack_len;
  38. extern int l1sram_free(const void*);
  39. extern void *l1sram_alloc_max(void*);
  40. static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
  41. {
  42. }
  43. /* Called when creating a new context during fork() or execve(). */
  44. static inline int
  45. init_new_context(struct task_struct *tsk, struct mm_struct *mm)
  46. {
  47. return 0;
  48. }
  49. static inline void free_l1stack(void)
  50. {
  51. nr_l1stack_tasks--;
  52. if (nr_l1stack_tasks == 0)
  53. l1sram_free(l1_stack_base);
  54. }
  55. static inline void destroy_context(struct mm_struct *mm)
  56. {
  57. struct sram_list_struct *tmp;
  58. if (current_l1_stack_save == mm->context.l1_stack_save)
  59. current_l1_stack_save = 0;
  60. if (mm->context.l1_stack_save)
  61. free_l1stack();
  62. while ((tmp = mm->context.sram_list)) {
  63. mm->context.sram_list = tmp->next;
  64. sram_free(tmp->addr);
  65. kfree(tmp);
  66. }
  67. }
  68. static inline unsigned long
  69. alloc_l1stack(unsigned long length, unsigned long *stack_base)
  70. {
  71. if (nr_l1stack_tasks == 0) {
  72. l1_stack_base = l1sram_alloc_max(&l1_stack_len);
  73. if (!l1_stack_base)
  74. return 0;
  75. }
  76. if (l1_stack_len < length) {
  77. if (nr_l1stack_tasks == 0)
  78. l1sram_free(l1_stack_base);
  79. return 0;
  80. }
  81. *stack_base = (unsigned long)l1_stack_base;
  82. nr_l1stack_tasks++;
  83. return l1_stack_len;
  84. }
  85. static inline int
  86. activate_l1stack(struct mm_struct *mm, unsigned long sp_base)
  87. {
  88. if (current_l1_stack_save)
  89. memcpy(current_l1_stack_save, l1_stack_base, l1_stack_len);
  90. mm->context.l1_stack_save = current_l1_stack_save = (void*)sp_base;
  91. memcpy(l1_stack_base, current_l1_stack_save, l1_stack_len);
  92. return 1;
  93. }
  94. #define deactivate_mm(tsk,mm) do { } while (0)
  95. static inline void activate_mm(struct mm_struct *prev_mm,
  96. struct mm_struct *next_mm)
  97. {
  98. if (!next_mm->context.l1_stack_save)
  99. return;
  100. if (next_mm->context.l1_stack_save == current_l1_stack_save)
  101. return;
  102. if (current_l1_stack_save) {
  103. memcpy(current_l1_stack_save, l1_stack_base, l1_stack_len);
  104. }
  105. current_l1_stack_save = next_mm->context.l1_stack_save;
  106. memcpy(l1_stack_base, current_l1_stack_save, l1_stack_len);
  107. }
  108. static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
  109. struct task_struct *tsk)
  110. {
  111. activate_mm(prev, next);
  112. }
  113. #endif