pg-mips32.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * This program is free software; you can distribute it and/or modify it
  6.  * under the terms of the GNU General Public License (Version 2) as
  7.  * published by the Free Software Foundation.
  8.  *
  9.  * This program is distributed in the hope it will be useful, but WITHOUT
  10.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12.  * for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  17.  *
  18.  * MIPS32 CPU variant specific MMU/Cache routines.
  19.  */
  20. #include <linux/sched.h>
  21. #include <linux/mm.h>
  22. #include <asm/bootinfo.h>
  23. #include <asm/cacheops.h>
  24. #include <asm/cpu.h>
  25. extern int dc_lsize, ic_lsize, sc_lsize;
  26. /*
  27.  * Zero an entire page.
  28.  */
  29. void mips32_clear_page_dc(unsigned long page)
  30. {
  31. unsigned long i;
  32.         if (mips_cpu.options & MIPS_CPU_CACHE_CDEX) {
  33.         for (i=page; i<page+PAGE_SIZE; i+=dc_lsize) {
  34.         __asm__ __volatile__(
  35.         ".settnoreordernt"
  36. ".settnoatnt"
  37. ".settmips3nt"
  38. "cachet%2,(%0)nt"
  39. ".settmips0nt"
  40. ".settatnt"
  41. ".settreorder"
  42. :"=r" (i)
  43. :"0" (i),
  44. "I" (Create_Dirty_Excl_D));
  45. }
  46. }
  47. for (i=page; i<page+PAGE_SIZE; i+=4)
  48.         *(unsigned long *)(i) = 0;
  49. }
  50. void mips32_clear_page_sc(unsigned long page)
  51. {
  52. unsigned long i;
  53.         if (mips_cpu.options & MIPS_CPU_CACHE_CDEX) {
  54.         for (i=page; i<page+PAGE_SIZE; i+=sc_lsize) {
  55.         __asm__ __volatile__(
  56. ".settnoreordernt"
  57. ".settnoatnt"
  58. ".settmips3nt"
  59. "cachet%2,(%0)nt"
  60. ".settmips0nt"
  61. ".settatnt"
  62. ".settreorder"
  63. :"=r" (i)
  64. :"0" (i),
  65. "I" (Create_Dirty_Excl_SD));
  66. }
  67. }
  68. for (i=page; i<page+PAGE_SIZE; i+=4)
  69.         *(unsigned long *)(i) = 0;
  70. }
  71. void mips32_copy_page_dc(unsigned long to, unsigned long from)
  72. {
  73. unsigned long i;
  74.         if (mips_cpu.options & MIPS_CPU_CACHE_CDEX) {
  75.         for (i=to; i<to+PAGE_SIZE; i+=dc_lsize) {
  76.         __asm__ __volatile__(
  77.         ".settnoreordernt"
  78. ".settnoatnt"
  79. ".settmips3nt"
  80. "cachet%2,(%0)nt"
  81. ".settmips0nt"
  82. ".settatnt"
  83. ".settreorder"
  84. :"=r" (i)
  85. :"0" (i),
  86. "I" (Create_Dirty_Excl_D));
  87. }
  88. }
  89. for (i=0; i<PAGE_SIZE; i+=4)
  90.         *(unsigned long *)(to+i) = *(unsigned long *)(from+i);
  91. }
  92. void mips32_copy_page_sc(unsigned long to, unsigned long from)
  93. {
  94. unsigned long i;
  95.         if (mips_cpu.options & MIPS_CPU_CACHE_CDEX) {
  96.         for (i=to; i<to+PAGE_SIZE; i+=sc_lsize) {
  97.         __asm__ __volatile__(
  98. ".settnoreordernt"
  99. ".settnoatnt"
  100. ".settmips3nt"
  101. "cachet%2,(%0)nt"
  102. ".settmips0nt"
  103. ".settatnt"
  104. ".settreorder"
  105. :"=r" (i)
  106. :"0" (i),
  107. "I" (Create_Dirty_Excl_SD));
  108. }
  109. }
  110. for (i=0; i<PAGE_SIZE; i+=4)
  111.         *(unsigned long *)(to+i) = *(unsigned long *)(from+i);
  112. }
  113. void pgd_init(unsigned long page)
  114. {
  115. unsigned long *p = (unsigned long *) page;
  116. int i;
  117. for(i = 0; i < USER_PTRS_PER_PGD; i+=8) {
  118. p[i + 0] = (unsigned long) invalid_pte_table;
  119. p[i + 1] = (unsigned long) invalid_pte_table;
  120. p[i + 2] = (unsigned long) invalid_pte_table;
  121. p[i + 3] = (unsigned long) invalid_pte_table;
  122. p[i + 4] = (unsigned long) invalid_pte_table;
  123. p[i + 5] = (unsigned long) invalid_pte_table;
  124. p[i + 6] = (unsigned long) invalid_pte_table;
  125. p[i + 7] = (unsigned long) invalid_pte_table;
  126. }
  127. }