r4kcache.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * r4kcache.h: Inline assembly cache operations.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  *
  6.  * $Id: r4kcache.h,v 1.7 1997/12/18 13:00:45 ralf Exp $
  7.  *
  8.  * FIXME: Handle split L2 caches.
  9.  */
  10. #ifndef _MIPS_R4KCACHE_H
  11. #define _MIPS_R4KCACHE_H
  12. #include <asm/asm.h>
  13. #include <asm/cacheops.h>
  14. extern inline void flush_icache_line_indexed(unsigned long addr)
  15. {
  16. __asm__ __volatile__(
  17. ".set noreordernt"
  18. ".set mips3nt"
  19. "cache %1, (%0)nt"
  20. ".set mips0nt"
  21. ".set reorder"
  22. :
  23. : "r" (addr),
  24.   "i" (Index_Invalidate_I));
  25. }
  26. extern inline void flush_dcache_line_indexed(unsigned long addr)
  27. {
  28. __asm__ __volatile__(
  29. ".set noreordernt"
  30. ".set mips3nt"
  31. "cache %1, (%0)nt"
  32. ".set mips0nt"
  33. ".set reorder"
  34. :
  35. : "r" (addr),
  36.   "i" (Index_Writeback_Inv_D));
  37. }
  38. extern inline void flush_scache_line_indexed(unsigned long addr)
  39. {
  40. __asm__ __volatile__(
  41. ".set noreordernt"
  42. ".set mips3nt"
  43. "cache %1, (%0)nt"
  44. ".set mips0nt"
  45. ".set reorder"
  46. :
  47. : "r" (addr),
  48.   "i" (Index_Writeback_Inv_SD));
  49. }
  50. extern inline void flush_icache_line(unsigned long addr)
  51. {
  52. __asm__ __volatile__(
  53. ".set noreordernt"
  54. ".set mips3nt"
  55. "cache %1, (%0)nt"
  56. ".set mips0nt"
  57. ".set reorder"
  58. :
  59. : "r" (addr),
  60.   "i" (Hit_Invalidate_I));
  61. }
  62. extern inline void flush_dcache_line(unsigned long addr)
  63. {
  64. __asm__ __volatile__(
  65. ".set noreordernt"
  66. ".set mips3nt"
  67. "cache %1, (%0)nt"
  68. ".set mips0nt"
  69. ".set reorder"
  70. :
  71. : "r" (addr),
  72.   "i" (Hit_Writeback_Inv_D));
  73. }
  74. extern inline void invalidate_dcache_line(unsigned long addr)
  75. {
  76. __asm__ __volatile__(
  77. ".set noreordernt"
  78. ".set mips3nt"
  79. "cache %1, (%0)nt"
  80. ".set mips0nt"
  81. ".set reorder"
  82. :
  83. : "r" (addr),
  84.   "i" (Hit_Invalidate_D));
  85. }
  86. extern inline void invalidate_scache_line(unsigned long addr)
  87. {
  88. __asm__ __volatile__(
  89. ".set noreordernt"
  90. ".set mips3nt"
  91. "cache %1, (%0)nt"
  92. ".set mips0nt"
  93. ".set reorder"
  94. :
  95. : "r" (addr),
  96.   "i" (Hit_Invalidate_SD));
  97. }
  98. extern inline void flush_scache_line(unsigned long addr)
  99. {
  100. __asm__ __volatile__(
  101. ".set noreordernt"
  102. ".set mips3nt"
  103. "cache %1, (%0)nt"
  104. ".set mips0nt"
  105. ".set reorder"
  106. :
  107. : "r" (addr),
  108.   "i" (Hit_Writeback_Inv_SD));
  109. }
  110. /*
  111.  * The next two are for badland addresses like signal trampolines.
  112.  */
  113. extern inline void protected_flush_icache_line(unsigned long addr)
  114. {
  115. __asm__ __volatile__(
  116. ".set noreordernt"
  117. ".set mips3n"
  118. "1:tcache %1,(%0)n"
  119. "2:t.set mips0nt"
  120. ".set reordernt"
  121. ".sectiont__ex_table,"a"nt"
  122. STR(PTR)"t1b,2bnt"
  123. ".previous"
  124. :
  125. : "r" (addr),
  126.   "i" (Hit_Invalidate_I));
  127. }
  128. extern inline void protected_writeback_dcache_line(unsigned long addr)
  129. {
  130. __asm__ __volatile__(
  131. ".set noreordernt"
  132. ".set mips3n"
  133. "1:tcache %1,(%0)n"
  134. "2:t.set mips0nt"
  135. ".set reordernt"
  136. ".sectiont__ex_table,"a"nt"
  137. STR(PTR)"t1b,2bnt"
  138. ".previous"
  139. :
  140. : "r" (addr),
  141.   "i" (Hit_Writeback_D));
  142. }
  143. #define cache16_unroll32(base,op)
  144. __asm__ __volatile__("
  145. .set noreorder;
  146. .set mips3;
  147. cache %1, 0x000(%0); cache %1, 0x010(%0);
  148. cache %1, 0x020(%0); cache %1, 0x030(%0);
  149. cache %1, 0x040(%0); cache %1, 0x050(%0);
  150. cache %1, 0x060(%0); cache %1, 0x070(%0);
  151. cache %1, 0x080(%0); cache %1, 0x090(%0);
  152. cache %1, 0x0a0(%0); cache %1, 0x0b0(%0);
  153. cache %1, 0x0c0(%0); cache %1, 0x0d0(%0);
  154. cache %1, 0x0e0(%0); cache %1, 0x0f0(%0);
  155. cache %1, 0x100(%0); cache %1, 0x110(%0);
  156. cache %1, 0x120(%0); cache %1, 0x130(%0);
  157. cache %1, 0x140(%0); cache %1, 0x150(%0);
  158. cache %1, 0x160(%0); cache %1, 0x170(%0);
  159. cache %1, 0x180(%0); cache %1, 0x190(%0);
  160. cache %1, 0x1a0(%0); cache %1, 0x1b0(%0);
  161. cache %1, 0x1c0(%0); cache %1, 0x1d0(%0);
  162. cache %1, 0x1e0(%0); cache %1, 0x1f0(%0);
  163. .set mips0;
  164. .set reorder"
  165. :
  166. : "r" (base),
  167.   "i" (op));
  168. extern inline void blast_dcache16(void)
  169. {
  170. unsigned long start = KSEG0;
  171. unsigned long end = (start + dcache_size);
  172. while(start < end) {
  173. cache16_unroll32(start,Index_Writeback_Inv_D);
  174. start += 0x200;
  175. }
  176. }
  177. extern inline void blast_dcache16_page(unsigned long page)
  178. {
  179. unsigned long start = page;
  180. unsigned long end = (start + PAGE_SIZE);
  181. while(start < end) {
  182. cache16_unroll32(start,Hit_Writeback_Inv_D);
  183. start += 0x200;
  184. }
  185. }
  186. extern inline void blast_dcache16_page_indexed(unsigned long page)
  187. {
  188. unsigned long start = page;
  189. unsigned long end = (start + PAGE_SIZE);
  190. while(start < end) {
  191. cache16_unroll32(start,Index_Writeback_Inv_D);
  192. start += 0x200;
  193. }
  194. }
  195. extern inline void blast_icache16(void)
  196. {
  197. unsigned long start = KSEG0;
  198. unsigned long end = (start + icache_size);
  199. while(start < end) {
  200. cache16_unroll32(start,Index_Invalidate_I);
  201. start += 0x200;
  202. }
  203. }
  204. extern inline void blast_icache16_page(unsigned long page)
  205. {
  206. unsigned long start = page;
  207. unsigned long end = (start + PAGE_SIZE);
  208. while(start < end) {
  209. cache16_unroll32(start,Hit_Invalidate_I);
  210. start += 0x200;
  211. }
  212. }
  213. extern inline void blast_icache16_page_indexed(unsigned long page)
  214. {
  215. unsigned long start = page;
  216. unsigned long end = (start + PAGE_SIZE);
  217. while(start < end) {
  218. cache16_unroll32(start,Index_Invalidate_I);
  219. start += 0x200;
  220. }
  221. }
  222. extern inline void blast_scache16(void)
  223. {
  224. unsigned long start = KSEG0;
  225. unsigned long end = KSEG0 + scache_size;
  226. while(start < end) {
  227. cache16_unroll32(start,Index_Writeback_Inv_SD);
  228. start += 0x200;
  229. }
  230. }
  231. extern inline void blast_scache16_page(unsigned long page)
  232. {
  233. unsigned long start = page;
  234. unsigned long end = page + PAGE_SIZE;
  235. while(start < end) {
  236. cache16_unroll32(start,Hit_Writeback_Inv_SD);
  237. start += 0x200;
  238. }
  239. }
  240. extern inline void blast_scache16_page_indexed(unsigned long page)
  241. {
  242. unsigned long start = page;
  243. unsigned long end = page + PAGE_SIZE;
  244. while(start < end) {
  245. cache16_unroll32(start,Index_Writeback_Inv_SD);
  246. start += 0x200;
  247. }
  248. }
  249. #define cache32_unroll32(base,op)
  250. __asm__ __volatile__("
  251. .set noreorder;
  252. .set mips3;
  253. cache %1, 0x000(%0); cache %1, 0x020(%0);
  254. cache %1, 0x040(%0); cache %1, 0x060(%0);
  255. cache %1, 0x080(%0); cache %1, 0x0a0(%0);
  256. cache %1, 0x0c0(%0); cache %1, 0x0e0(%0);
  257. cache %1, 0x100(%0); cache %1, 0x120(%0);
  258. cache %1, 0x140(%0); cache %1, 0x160(%0);
  259. cache %1, 0x180(%0); cache %1, 0x1a0(%0);
  260. cache %1, 0x1c0(%0); cache %1, 0x1e0(%0);
  261. cache %1, 0x200(%0); cache %1, 0x220(%0);
  262. cache %1, 0x240(%0); cache %1, 0x260(%0);
  263. cache %1, 0x280(%0); cache %1, 0x2a0(%0);
  264. cache %1, 0x2c0(%0); cache %1, 0x2e0(%0);
  265. cache %1, 0x300(%0); cache %1, 0x320(%0);
  266. cache %1, 0x340(%0); cache %1, 0x360(%0);
  267. cache %1, 0x380(%0); cache %1, 0x3a0(%0);
  268. cache %1, 0x3c0(%0); cache %1, 0x3e0(%0);
  269. .set mips0;
  270. .set reorder"
  271. :
  272. : "r" (base),
  273.   "i" (op));
  274. extern inline void blast_dcache32(void)
  275. {
  276. unsigned long start = KSEG0;
  277. unsigned long end = (start + dcache_size);
  278. while(start < end) {
  279. cache32_unroll32(start,Index_Writeback_Inv_D);
  280. start += 0x400;
  281. }
  282. }
  283. /*
  284.  * Call this function only with interrupts disabled or R4600 V2.0 may blow
  285.  * up on you.
  286.  *
  287.  * R4600 v2.0 bug: "The CACHE instructions Hit_Writeback_Inv_D,
  288.  * Hit_Writeback_D, Hit_Invalidate_D and Create_Dirty_Excl_D will only
  289.  * operate correctly if the internal data cache refill buffer is empty.  These
  290.  * CACHE instructions should be separated from any potential data cache miss
  291.  * by a load instruction to an uncached address to empty the response buffer."
  292.  * (Revision 2.0 device errata from IDT available on http://www.idt.com/
  293.  * in .pdf format.)
  294.  */
  295. extern inline void blast_dcache32_page(unsigned long page)
  296. {
  297. unsigned long start = page;
  298. unsigned long end = (start + PAGE_SIZE);
  299. /*
  300.  * Sigh ... workaround for R4600 v1.7 bug.  Explanation see above.
  301.  */
  302. *(volatile unsigned long *)KSEG1;
  303. __asm__ __volatile__("nop;nop;nop;nop");
  304. while(start < end) {
  305. cache32_unroll32(start,Hit_Writeback_Inv_D);
  306. start += 0x400;
  307. }
  308. }
  309. extern inline void blast_dcache32_page_indexed(unsigned long page)
  310. {
  311. unsigned long start = page;
  312. unsigned long end = (start + PAGE_SIZE);
  313. while(start < end) {
  314. cache32_unroll32(start,Index_Writeback_Inv_D);
  315. start += 0x400;
  316. }
  317. }
  318. extern inline void blast_icache32(void)
  319. {
  320. unsigned long start = KSEG0;
  321. unsigned long end = (start + icache_size);
  322. while(start < end) {
  323. cache32_unroll32(start,Index_Invalidate_I);
  324. start += 0x400;
  325. }
  326. }
  327. extern inline void blast_icache32_page(unsigned long page)
  328. {
  329. unsigned long start = page;
  330. unsigned long end = (start + PAGE_SIZE);
  331. while(start < end) {
  332. cache32_unroll32(start,Hit_Invalidate_I);
  333. start += 0x400;
  334. }
  335. }
  336. extern inline void blast_icache32_page_indexed(unsigned long page)
  337. {
  338. unsigned long start = page;
  339. unsigned long end = (start + PAGE_SIZE);
  340. while(start < end) {
  341. cache32_unroll32(start,Index_Invalidate_I);
  342. start += 0x400;
  343. }
  344. }
  345. extern inline void blast_scache32(void)
  346. {
  347. unsigned long start = KSEG0;
  348. unsigned long end = KSEG0 + scache_size;
  349. while(start < end) {
  350. cache32_unroll32(start,Index_Writeback_Inv_SD);
  351. start += 0x400;
  352. }
  353. }
  354. extern inline void blast_scache32_page(unsigned long page)
  355. {
  356. unsigned long start = page;
  357. unsigned long end = page + PAGE_SIZE;
  358. while(start < end) {
  359. cache32_unroll32(start,Hit_Writeback_Inv_SD);
  360. start += 0x400;
  361. }
  362. }
  363. extern inline void blast_scache32_page_indexed(unsigned long page)
  364. {
  365. unsigned long start = page;
  366. unsigned long end = page + PAGE_SIZE;
  367. while(start < end) {
  368. cache32_unroll32(start,Index_Writeback_Inv_SD);
  369. start += 0x400;
  370. }
  371. }
  372. #define cache64_unroll32(base,op)
  373. __asm__ __volatile__("
  374. .set noreorder;
  375. .set mips3;
  376. cache %1, 0x000(%0); cache %1, 0x040(%0);
  377. cache %1, 0x080(%0); cache %1, 0x0c0(%0);
  378. cache %1, 0x100(%0); cache %1, 0x140(%0);
  379. cache %1, 0x180(%0); cache %1, 0x1c0(%0);
  380. cache %1, 0x200(%0); cache %1, 0x240(%0);
  381. cache %1, 0x280(%0); cache %1, 0x2c0(%0);
  382. cache %1, 0x300(%0); cache %1, 0x340(%0);
  383. cache %1, 0x380(%0); cache %1, 0x3c0(%0);
  384. cache %1, 0x400(%0); cache %1, 0x440(%0);
  385. cache %1, 0x480(%0); cache %1, 0x4c0(%0);
  386. cache %1, 0x500(%0); cache %1, 0x540(%0);
  387. cache %1, 0x580(%0); cache %1, 0x5c0(%0);
  388. cache %1, 0x600(%0); cache %1, 0x640(%0);
  389. cache %1, 0x680(%0); cache %1, 0x6c0(%0);
  390. cache %1, 0x700(%0); cache %1, 0x740(%0);
  391. cache %1, 0x780(%0); cache %1, 0x7c0(%0);
  392. .set mips0;
  393. .set reorder"
  394. :
  395. : "r" (base),
  396.   "i" (op));
  397. extern inline void blast_scache64(void)
  398. {
  399. unsigned long start = KSEG0;
  400. unsigned long end = KSEG0 + scache_size;
  401. while(start < end) {
  402. cache64_unroll32(start,Index_Writeback_Inv_SD);
  403. start += 0x800;
  404. }
  405. }
  406. extern inline void blast_scache64_page(unsigned long page)
  407. {
  408. unsigned long start = page;
  409. unsigned long end = page + PAGE_SIZE;
  410. while(start < end) {
  411. cache64_unroll32(start,Hit_Writeback_Inv_SD);
  412. start += 0x800;
  413. }
  414. }
  415. extern inline void blast_scache64_page_indexed(unsigned long page)
  416. {
  417. unsigned long start = page;
  418. unsigned long end = page + PAGE_SIZE;
  419. while(start < end) {
  420. cache64_unroll32(start,Index_Writeback_Inv_SD);
  421. start += 0x800;
  422. }
  423. }
  424. #define cache128_unroll32(base,op)
  425. __asm__ __volatile__("
  426. .set noreorder;
  427. .set mips3;
  428. cache %1, 0x000(%0); cache %1, 0x080(%0);
  429. cache %1, 0x100(%0); cache %1, 0x180(%0);
  430. cache %1, 0x200(%0); cache %1, 0x280(%0);
  431. cache %1, 0x300(%0); cache %1, 0x380(%0);
  432. cache %1, 0x400(%0); cache %1, 0x480(%0);
  433. cache %1, 0x500(%0); cache %1, 0x580(%0);
  434. cache %1, 0x600(%0); cache %1, 0x680(%0);
  435. cache %1, 0x700(%0); cache %1, 0x780(%0);
  436. cache %1, 0x800(%0); cache %1, 0x880(%0);
  437. cache %1, 0x900(%0); cache %1, 0x980(%0);
  438. cache %1, 0xa00(%0); cache %1, 0xa80(%0);
  439. cache %1, 0xb00(%0); cache %1, 0xb80(%0);
  440. cache %1, 0xc00(%0); cache %1, 0xc80(%0);
  441. cache %1, 0xd00(%0); cache %1, 0xd80(%0);
  442. cache %1, 0xe00(%0); cache %1, 0xe80(%0);
  443. cache %1, 0xf00(%0); cache %1, 0xf80(%0);
  444. .set mips0;
  445. .set reorder"
  446. :
  447. : "r" (base),
  448.   "i" (op));
  449. extern inline void blast_scache128(void)
  450. {
  451. unsigned long start = KSEG0;
  452. unsigned long end = KSEG0 + scache_size;
  453. while(start < end) {
  454. cache128_unroll32(start,Index_Writeback_Inv_SD);
  455. start += 0x1000;
  456. }
  457. }
  458. extern inline void blast_scache128_page(unsigned long page)
  459. {
  460. cache128_unroll32(page,Hit_Writeback_Inv_SD);
  461. }
  462. extern inline void blast_scache128_page_indexed(unsigned long page)
  463. {
  464. cache128_unroll32(page,Index_Writeback_Inv_SD);
  465. }
  466. #endif /* !(_MIPS_R4KCACHE_H) */