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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  3.  * Copyright (C) 1997, 2001 Ralf Baechle (ralf@gnu.org)
  4.  * Copyright (C) 2000 Sibyte
  5.  *
  6.  * Written by Justin Carlson (carlson@sibyte.com)
  7.  *
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  */
  23. #include <linux/config.h>
  24. #include <asm/page.h>
  25. #ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
  26. #define SB1_PREF_LOAD_STREAMED_HINT "0"
  27. #define SB1_PREF_STORE_STREAMED_HINT "1"
  28. #else
  29. #define SB1_PREF_LOAD_STREAMED_HINT "4"
  30. #define SB1_PREF_STORE_STREAMED_HINT "5"
  31. #endif
  32. /* These are the functions hooked by the memory management function pointers */
  33. void sb1_clear_page(void *page)
  34. {
  35. /* JDCXXX - This should be bottlenecked by the write buffer, but these
  36.    things tend to be mildly unpredictable...should check this on the
  37.    performance model */
  38. /* We prefetch 4 lines ahead.  We're also "cheating" slightly here...
  39.    since we know we're on an SB1, we force the assembler to take
  40.    64-bit operands to speed things up */
  41. __asm__ __volatile__(
  42. ".set push                  n"
  43. ".set noreorder             n"
  44. ".set noat                  n"
  45. ".set mips4                 n"
  46. "     addiu     $1, %0, %2  n"  /* Calculate the end of the page to clear */
  47. #ifdef CONFIG_CPU_HAS_PREFETCH
  48. "     pref       " SB1_PREF_STORE_STREAMED_HINT ",  0(%0)  n"  /* Prefetch the first 4 lines */
  49. "     pref       " SB1_PREF_STORE_STREAMED_HINT ", 32(%0)  n"
  50. "     pref       " SB1_PREF_STORE_STREAMED_HINT ", 64(%0)  n"
  51. "     pref       " SB1_PREF_STORE_STREAMED_HINT ", 96(%0)  n"
  52. #endif
  53. "1:   sd        $0,  0(%0)  n"  /* Throw out a cacheline of 0's */
  54. "     sd        $0,  8(%0)  n"
  55. "     sd        $0, 16(%0)  n"
  56. "     sd        $0, 24(%0)  n"
  57. #ifdef CONFIG_CPU_HAS_PREFETCH
  58. "     pref       " SB1_PREF_STORE_STREAMED_HINT ",128(%0)  n"  /* Prefetch 4 lines ahead     */
  59. #endif
  60. "     bne       $1, %0, 1b  n"
  61. "     addiu     %0, %0, 32  n"  /* Next cacheline (This instruction better be short piped!) */
  62. ".set pop                   n"
  63. :"=r" (page)
  64. :"0" (page),
  65.  "I" (PAGE_SIZE-32)
  66. :"$1","memory");
  67. }
  68. void sb1_copy_page(void *to, void *from)
  69. {
  70. /* This should be optimized in assembly...can't use ld/sd, though,
  71.  * because the top 32 bits could be nuked if we took an interrupt
  72.  * during the routine. And this is not a good place to be cli()'ing
  73.  */
  74. /* The pref's used here are using "streaming" hints, which cause the
  75.  * copied data to be kicked out of the cache sooner.  A page copy often
  76.  * ends up copying a lot more data than is commonly used, so this seems
  77.  * to make sense in terms of reducing cache pollution, but I've no real
  78.  * performance data to back this up
  79.  */
  80. __asm__ __volatile__(
  81. ".set push                  n"
  82. ".set noreorder             n"
  83. ".set noat                  n"
  84. ".set mips4                 n"
  85. "     addiu     $1, %0, %4  n"  /* Calculate the end of the page to copy */
  86. #ifdef CONFIG_CPU_HAS_PREFETCH
  87. "     pref       " SB1_PREF_LOAD_STREAMED_HINT  ",  0(%0)  n"  /* Prefetch the first 3 lines */
  88. "     pref       " SB1_PREF_STORE_STREAMED_HINT ",  0(%1)  n"
  89. "     pref       " SB1_PREF_LOAD_STREAMED_HINT  ",  32(%0) n"
  90. "     pref       " SB1_PREF_STORE_STREAMED_HINT ",  32(%1) n"
  91. "     pref       " SB1_PREF_LOAD_STREAMED_HINT  ",  64(%0) n"
  92. "     pref       " SB1_PREF_STORE_STREAMED_HINT ",  64(%1) n"
  93. #endif
  94. "1:   lw        $2,  0(%0)  n"  /* Block copy a cacheline */
  95. "     lw        $3,  4(%0)  n"
  96. "     lw        $4,  8(%0)  n"
  97. "     lw        $5, 12(%0)  n"
  98. "     lw        $6, 16(%0)  n"
  99. "     lw        $7, 20(%0)  n"
  100. "     lw        $8, 24(%0)  n"
  101. "     lw        $9, 28(%0)  n"
  102. #ifdef CONFIG_CPU_HAS_PREFETCH
  103. "     pref       " SB1_PREF_LOAD_STREAMED_HINT  ", 96(%0)  n"  /* Prefetch ahead         */
  104. "     pref       " SB1_PREF_STORE_STREAMED_HINT ", 96(%1)  n"
  105. #endif
  106. "     sw        $2,  0(%1)  n"
  107. "     sw        $3,  4(%1)  n"
  108. "     sw        $4,  8(%1)  n"
  109. "     sw        $5, 12(%1)  n"
  110. "     sw        $6, 16(%1)  n"
  111. "     sw        $7, 20(%1)  n"
  112. "     sw        $8, 24(%1)  n"
  113. "     sw        $9, 28(%1)  n"
  114. "     addiu     %1, %1, 32  n"  /* Next cacheline */
  115. "     nop                   n"  /* Force next add to short pipe */
  116. "     nop                   n"  /* Force next add to short pipe */
  117. "     bne       $1, %0, 1b  n"
  118. "     addiu     %0, %0, 32  n"  /* Next cacheline */
  119. ".set pop                   n"
  120. :"=r" (to),
  121. "=r" (from)
  122. :
  123. "0" (from),
  124. "1" (to),
  125. "I" (PAGE_SIZE-32)
  126. :"$1","$2","$3","$4","$5","$6","$7","$8","$9","memory");
  127. /*
  128. unsigned long *src = from;
  129. unsigned long *dest = to;
  130. unsigned long *target = (unsigned long *) (((unsigned long)src) + PAGE_SIZE);
  131. while (src != target) {
  132. *dest++ = *src++;
  133. }
  134. */
  135. }