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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 1995, 1996, 1997, 2000, 2001 by Ralf Baechle
  7.  * Copyright (C) 2000 Silicon Graphics, Inc.
  8.  * Modified for further R[236]000 support by Paul M. Antoine, 1996.
  9.  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  10.  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  11.  */
  12. #ifndef _ASM_MIPSREGS_H
  13. #define _ASM_MIPSREGS_H
  14. #include <linux/linkage.h>
  15. /*
  16.  * The following macros are especially useful for __asm__
  17.  * inline assembler.
  18.  */
  19. #ifndef __STR
  20. #define __STR(x) #x
  21. #endif
  22. #ifndef STR
  23. #define STR(x) __STR(x)
  24. #endif
  25. /*
  26.  * Coprocessor 0 register names
  27.  */
  28. #define CP0_INDEX $0
  29. #define CP0_RANDOM $1
  30. #define CP0_ENTRYLO0 $2
  31. #define CP0_ENTRYLO1 $3
  32. #define CP0_CONF $3
  33. #define CP0_CONTEXT $4
  34. #define CP0_PAGEMASK $5
  35. #define CP0_WIRED $6
  36. #define CP0_INFO $7
  37. #define CP0_BADVADDR $8
  38. #define CP0_COUNT $9
  39. #define CP0_ENTRYHI $10
  40. #define CP0_COMPARE $11
  41. #define CP0_STATUS $12
  42. #define CP0_CAUSE $13
  43. #define CP0_EPC $14
  44. #define CP0_PRID $15
  45. #define CP0_CONFIG $16
  46. #define CP0_LLADDR $17
  47. #define CP0_WATCHLO $18
  48. #define CP0_WATCHHI $19
  49. #define CP0_XCONTEXT $20
  50. #define CP0_FRAMEMASK $21
  51. #define CP0_DIAGNOSTIC $22
  52. #define CP0_PERFORMANCE $25
  53. #define CP0_ECC $26
  54. #define CP0_CACHEERR $27
  55. #define CP0_TAGLO $28
  56. #define CP0_TAGHI $29
  57. #define CP0_ERROREPC $30
  58. /*
  59.  * R4640/R4650 cp0 register names.  These registers are listed
  60.  * here only for completeness; without MMU these CPUs are not useable
  61.  * by Linux.  A future ELKS port might take make Linux run on them
  62.  * though ...
  63.  */
  64. #define CP0_IBASE $0
  65. #define CP0_IBOUND $1
  66. #define CP0_DBASE $2
  67. #define CP0_DBOUND $3
  68. #define CP0_CALG $17
  69. #define CP0_IWATCH $18
  70. #define CP0_DWATCH $19
  71. /* 
  72.  * Coprocessor 0 Set 1 register names
  73.  */
  74. #define CP0_S1_DERRADDR0  $26
  75. #define CP0_S1_DERRADDR1  $27
  76. #define CP0_S1_INTCONTROL $20
  77. /*
  78.  * Coprocessor 1 (FPU) register names
  79.  */
  80. #define CP1_REVISION   $0
  81. #define CP1_STATUS     $31
  82. /*
  83.  * FPU Status Register Values
  84.  */
  85. /*
  86.  * Status Register Values
  87.  */
  88. #define FPU_CSR_FLUSH   0x01000000      /* flush denormalised results to 0 */
  89. #define FPU_CSR_COND    0x00800000      /* $fcc0 */
  90. #define FPU_CSR_COND0   0x00800000      /* $fcc0 */
  91. #define FPU_CSR_COND1   0x02000000      /* $fcc1 */
  92. #define FPU_CSR_COND2   0x04000000      /* $fcc2 */
  93. #define FPU_CSR_COND3   0x08000000      /* $fcc3 */
  94. #define FPU_CSR_COND4   0x10000000      /* $fcc4 */
  95. #define FPU_CSR_COND5   0x20000000      /* $fcc5 */
  96. #define FPU_CSR_COND6   0x40000000      /* $fcc6 */
  97. #define FPU_CSR_COND7   0x80000000      /* $fcc7 */
  98. /*
  99.  * X the exception cause indicator
  100.  * E the exception enable
  101.  * S the sticky/flag bit
  102. */
  103. #define FPU_CSR_ALL_X 0x0003f000
  104. #define FPU_CSR_UNI_X   0x00020000
  105. #define FPU_CSR_INV_X   0x00010000
  106. #define FPU_CSR_DIV_X   0x00008000
  107. #define FPU_CSR_OVF_X   0x00004000
  108. #define FPU_CSR_UDF_X   0x00002000
  109. #define FPU_CSR_INE_X   0x00001000
  110. #define FPU_CSR_ALL_E   0x00000f80
  111. #define FPU_CSR_INV_E   0x00000800
  112. #define FPU_CSR_DIV_E   0x00000400
  113. #define FPU_CSR_OVF_E   0x00000200
  114. #define FPU_CSR_UDF_E   0x00000100
  115. #define FPU_CSR_INE_E   0x00000080
  116. #define FPU_CSR_ALL_S   0x0000007c
  117. #define FPU_CSR_INV_S   0x00000040
  118. #define FPU_CSR_DIV_S   0x00000020
  119. #define FPU_CSR_OVF_S   0x00000010
  120. #define FPU_CSR_UDF_S   0x00000008
  121. #define FPU_CSR_INE_S   0x00000004
  122. /* rounding mode */
  123. #define FPU_CSR_RN      0x0     /* nearest */
  124. #define FPU_CSR_RZ      0x1     /* towards zero */
  125. #define FPU_CSR_RU      0x2     /* towards +Infinity */
  126. #define FPU_CSR_RD      0x3     /* towards -Infinity */
  127. /*
  128.  * Values for PageMask register
  129.  */
  130. #include <linux/config.h>
  131. #ifdef CONFIG_CPU_VR41XX
  132. #define PM_1K   0x00000000
  133. #define PM_4K   0x00001800
  134. #define PM_16K  0x00007800
  135. #define PM_64K  0x0001f800
  136. #define PM_256K 0x0007f800
  137. #else
  138. #define PM_4K   0x00000000
  139. #define PM_16K  0x00006000
  140. #define PM_64K  0x0001e000
  141. #define PM_256K 0x0007e000
  142. #define PM_1M   0x001fe000
  143. #define PM_4M   0x007fe000
  144. #define PM_16M  0x01ffe000
  145. #endif
  146. /*
  147.  * Values used for computation of new tlb entries
  148.  */
  149. #define PL_4K   12
  150. #define PL_16K  14
  151. #define PL_64K  16
  152. #define PL_256K 18
  153. #define PL_1M   20
  154. #define PL_4M   22
  155. #define PL_16M  24
  156. /*
  157.  * Macros to access the system control coprocessor
  158.  */
  159. #define read_32bit_cp0_register(source)                         
  160. ({ int __res;                                                   
  161.         __asm__ __volatile__(                                   
  162. ".settpushnt"
  163. ".settreordernt"
  164.         "mfc0t%0,"STR(source)"nt"                            
  165. ".settpop"
  166.         : "=r" (__res));                                        
  167.         __res;})
  168. #define read_32bit_cp0_set1_register(source)                    
  169. ({ int __res;                                                   
  170.         __asm__ __volatile__(                                   
  171. ".settpushnt"
  172. ".settreordernt"
  173.         "cfc0t%0,"STR(source)"nt"                            
  174. ".settpop"
  175.         : "=r" (__res));                                        
  176.         __res;})
  177. /*
  178.  * For now use this only with interrupts disabled!
  179.  */
  180. #define read_64bit_cp0_register(source)                         
  181. ({ int __res;                                                   
  182.         __asm__ __volatile__(                                   
  183.         ".settmips3nt"                                       
  184.         "dmfc0t%0,"STR(source)"nt"                           
  185.         ".settmips0"                                           
  186.         : "=r" (__res));                                        
  187.         __res;})
  188. #define write_32bit_cp0_register(register,value)                
  189.         __asm__ __volatile__(                                   
  190.         "mtc0t%0,"STR(register)"nt"
  191. "nop"
  192.         : : "r" (value));
  193. #define write_32bit_cp0_set1_register(register,value)           
  194.         __asm__ __volatile__(                                   
  195.         "ctc0t%0,"STR(register)"nt"
  196. "nop"
  197.         : : "r" (value));
  198. #define write_64bit_cp0_register(register,value)                
  199.         __asm__ __volatile__(                                   
  200.         ".settmips3nt"                                       
  201.         "dmtc0t%0,"STR(register)"nt"                         
  202.         ".settmips0"                                           
  203.         : : "r" (value))
  204. /* 
  205.  * This should be changed when we get a compiler that support the MIPS32 ISA. 
  206.  */
  207. #define read_mips32_cp0_config1()                               
  208. ({ int __res;                                                   
  209.         __asm__ __volatile__(                                   
  210. ".settnoreordernt"                                   
  211. ".settnoatnt"                                        
  212.       ".wordt0x40018001nt"                                 
  213. "movet%0,$1nt"                                       
  214. ".settatnt"                                          
  215. ".settreorder"                                         
  216. :"=r" (__res));                                         
  217.         __res;})
  218. /*
  219.  * R4x00 interrupt enable / cause bits
  220.  */
  221. #define IE_SW0          (1<< 8)
  222. #define IE_SW1          (1<< 9)
  223. #define IE_IRQ0         (1<<10)
  224. #define IE_IRQ1         (1<<11)
  225. #define IE_IRQ2         (1<<12)
  226. #define IE_IRQ3         (1<<13)
  227. #define IE_IRQ4         (1<<14)
  228. #define IE_IRQ5         (1<<15)
  229. /*
  230.  * R4x00 interrupt cause bits
  231.  */
  232. #define C_SW0           (1<< 8)
  233. #define C_SW1           (1<< 9)
  234. #define C_IRQ0          (1<<10)
  235. #define C_IRQ1          (1<<11)
  236. #define C_IRQ2          (1<<12)
  237. #define C_IRQ3          (1<<13)
  238. #define C_IRQ4          (1<<14)
  239. #define C_IRQ5          (1<<15)
  240. #ifndef _LANGUAGE_ASSEMBLY
  241. /*
  242.  * Manipulate the status register.
  243.  * Mostly used to access the interrupt bits.
  244.  */
  245. #define __BUILD_SET_CP0(name,register)                          
  246. extern __inline__ unsigned int                                  
  247. set_cp0_##name(unsigned int set)
  248. {                                                               
  249. unsigned int res;                                       
  250.                                                                 
  251. res = read_32bit_cp0_register(register);                
  252. res |= set;
  253. write_32bit_cp0_register(register, res);        
  254.                                                                 
  255. return res;                                             
  256. }
  257. extern __inline__ unsigned int                                  
  258. clear_cp0_##name(unsigned int clear)
  259. {                                                               
  260. unsigned int res;                                       
  261.                                                                 
  262. res = read_32bit_cp0_register(register);                
  263. res &= ~clear;
  264. write_32bit_cp0_register(register, res);
  265.                                                                 
  266. return res;                                             
  267. }
  268. extern __inline__ unsigned int                                  
  269. change_cp0_##name(unsigned int change, unsigned int new)
  270. {                                                               
  271. unsigned int res;                                       
  272.                                                                 
  273. res = read_32bit_cp0_register(register);                
  274. res &= ~change;                                         
  275. res |= (new & change);                                  
  276. if(change)                                              
  277. write_32bit_cp0_register(register, res);        
  278.                                                                 
  279. return res;                                             
  280. }
  281. __BUILD_SET_CP0(status,CP0_STATUS)
  282. __BUILD_SET_CP0(cause,CP0_CAUSE)
  283. __BUILD_SET_CP0(config,CP0_CONFIG)
  284. #endif /* defined (_LANGUAGE_ASSEMBLY) */
  285. /*
  286.  * Bitfields in the R4xx0 cp0 status register
  287.  */
  288. #define ST0_IE 0x00000001
  289. #define ST0_EXL 0x00000002
  290. #define ST0_ERL 0x00000004
  291. #define ST0_KSU 0x00000018
  292. #  define KSU_USER 0x00000010
  293. #  define KSU_SUPERVISOR 0x00000008
  294. #  define KSU_KERNEL 0x00000000
  295. #define ST0_UX 0x00000020
  296. #define ST0_SX 0x00000040
  297. #define ST0_KX  0x00000080
  298. #define ST0_DE 0x00010000
  299. #define ST0_CE 0x00020000
  300. /*
  301.  * Bitfields in the R[23]000 cp0 status register.
  302.  */
  303. #define ST0_IEC                 0x00000001
  304. #define ST0_KUC 0x00000002
  305. #define ST0_IEP 0x00000004
  306. #define ST0_KUP 0x00000008
  307. #define ST0_IEO 0x00000010
  308. #define ST0_KUO 0x00000020
  309. /* bits 6 & 7 are reserved on R[23]000 */
  310. #define ST0_ISC 0x00010000
  311. #define ST0_SWC 0x00020000
  312. #define ST0_CM 0x00080000
  313. /*
  314.  * Bits specific to the R4640/R4650
  315.  */
  316. #define ST0_UM                 (1   <<  4)
  317. #define ST0_IL                 (1   << 23)
  318. #define ST0_DL                 (1   << 24)
  319. /*
  320.  * Bitfields in the TX39 family CP0 Configuration Register 3
  321.  */
  322. #define TX39_CONF_ICS_SHIFT 19
  323. #define TX39_CONF_ICS_MASK 0x00380000
  324. #define TX39_CONF_ICS_1KB  0x00000000
  325. #define TX39_CONF_ICS_2KB  0x00080000
  326. #define TX39_CONF_ICS_4KB  0x00100000
  327. #define TX39_CONF_ICS_8KB  0x00180000
  328. #define TX39_CONF_ICS_16KB  0x00200000
  329. #define TX39_CONF_DCS_SHIFT 16
  330. #define TX39_CONF_DCS_MASK 0x00070000
  331. #define TX39_CONF_DCS_1KB  0x00000000
  332. #define TX39_CONF_DCS_2KB  0x00010000
  333. #define TX39_CONF_DCS_4KB  0x00020000
  334. #define TX39_CONF_DCS_8KB  0x00030000
  335. #define TX39_CONF_DCS_16KB  0x00040000
  336. #define TX39_CONF_CWFON  0x00004000
  337. #define TX39_CONF_WBON   0x00002000
  338. #define TX39_CONF_RF_SHIFT 10
  339. #define TX39_CONF_RF_MASK 0x00000c00
  340. #define TX39_CONF_DOZE 0x00000200
  341. #define TX39_CONF_HALT 0x00000100
  342. #define TX39_CONF_LOCK 0x00000080
  343. #define TX39_CONF_ICE 0x00000020
  344. #define TX39_CONF_DCE 0x00000010
  345. #define TX39_CONF_IRSIZE_SHIFT 2
  346. #define TX39_CONF_IRSIZE_MASK 0x0000000c
  347. #define TX39_CONF_DRSIZE_SHIFT 0
  348. #define TX39_CONF_DRSIZE_MASK 0x00000003
  349. /*
  350.  * Status register bits available in all MIPS CPUs.
  351.  */
  352. #define ST0_IM 0x0000ff00
  353. #define  STATUSB_IP0 8
  354. #define  STATUSF_IP0 (1   <<  8)
  355. #define  STATUSB_IP1 9
  356. #define  STATUSF_IP1 (1   <<  9)
  357. #define  STATUSB_IP2 10
  358. #define  STATUSF_IP2 (1   << 10)
  359. #define  STATUSB_IP3 11
  360. #define  STATUSF_IP3 (1   << 11)
  361. #define  STATUSB_IP4 12
  362. #define  STATUSF_IP4 (1   << 12)
  363. #define  STATUSB_IP5 13
  364. #define  STATUSF_IP5 (1   << 13)
  365. #define  STATUSB_IP6 14
  366. #define  STATUSF_IP6 (1   << 14)
  367. #define  STATUSB_IP7 15
  368. #define  STATUSF_IP7 (1   << 15)
  369. #define  STATUSB_IP8 0
  370. #define  STATUSF_IP8 (1   << 0)
  371. #define  STATUSB_IP9 1
  372. #define  STATUSF_IP9 (1   << 1)
  373. #define  STATUSB_IP10 2
  374. #define  STATUSF_IP10 (1   << 2)
  375. #define  STATUSB_IP11 3
  376. #define  STATUSF_IP11 (1   << 3)
  377. #define  STATUSB_IP12 4
  378. #define  STATUSF_IP12 (1   << 4)
  379. #define  STATUSB_IP13 5
  380. #define  STATUSF_IP13 (1   << 5)
  381. #define  STATUSB_IP14 6
  382. #define  STATUSF_IP14 (1   << 6)
  383. #define  STATUSB_IP15 7
  384. #define  STATUSF_IP15 (1   << 7)
  385. #define ST0_CH 0x00040000
  386. #define ST0_SR 0x00100000
  387. #define ST0_BEV 0x00400000
  388. #define ST0_RE 0x02000000
  389. #define ST0_FR 0x04000000
  390. #define ST0_CU 0xf0000000
  391. #define ST0_CU0 0x10000000
  392. #define ST0_CU1 0x20000000
  393. #define ST0_CU2 0x40000000
  394. #define ST0_CU3 0x80000000
  395. #define ST0_XX 0x80000000 /* MIPS IV naming */
  396. /*
  397.  * Bitfields and bit numbers in the coprocessor 0 cause register.
  398.  *
  399.  * Refer to your MIPS R4xx0 manual, chapter 5 for explanation.
  400.  */
  401. #define  CAUSEB_EXCCODE 2
  402. #define  CAUSEF_EXCCODE (31  <<  2)
  403. #define  CAUSEB_IP 8
  404. #define  CAUSEF_IP (255 <<  8)
  405. #define  CAUSEB_IP0 8
  406. #define  CAUSEF_IP0 (1   <<  8)
  407. #define  CAUSEB_IP1 9
  408. #define  CAUSEF_IP1 (1   <<  9)
  409. #define  CAUSEB_IP2 10
  410. #define  CAUSEF_IP2 (1   << 10)
  411. #define  CAUSEB_IP3 11
  412. #define  CAUSEF_IP3 (1   << 11)
  413. #define  CAUSEB_IP4 12
  414. #define  CAUSEF_IP4 (1   << 12)
  415. #define  CAUSEB_IP5 13
  416. #define  CAUSEF_IP5 (1   << 13)
  417. #define  CAUSEB_IP6 14
  418. #define  CAUSEF_IP6 (1   << 14)
  419. #define  CAUSEB_IP7 15
  420. #define  CAUSEF_IP7 (1   << 15)
  421. #define  CAUSEB_IV 23
  422. #define  CAUSEF_IV (1   << 23)
  423. #define  CAUSEB_CE 28
  424. #define  CAUSEF_CE (3   << 28)
  425. #define  CAUSEB_BD 31
  426. #define  CAUSEF_BD (1   << 31)
  427. /*
  428.  * Bits in the coprozessor 0 config register.
  429.  */
  430. #define CONF_CM_CACHABLE_NO_WA 0
  431. #define CONF_CM_CACHABLE_WA 1
  432. #define CONF_CM_UNCACHED 2
  433. #define CONF_CM_CACHABLE_NONCOHERENT 3
  434. #define CONF_CM_CACHABLE_CE 4
  435. #define CONF_CM_CACHABLE_COW 5
  436. #define CONF_CM_CACHABLE_CUW 6
  437. #define CONF_CM_CACHABLE_ACCELERATED 7
  438. #define CONF_CM_CMASK 7
  439. #define CONF_DB (1 <<  4)
  440. #define CONF_IB (1 <<  5)
  441. #define CONF_SC (1 << 17)
  442. #define CONF_AC                         (1 << 23)
  443. #define CONF_HALT                       (1 << 25)
  444. /*
  445.  * R10000 performance counter definitions.
  446.  *
  447.  * FIXME: The R10000 performance counter opens a nice way to implement CPU
  448.  *        time accounting with a precission of one cycle.  I don't have
  449.  *        R10000 silicon but just a manual, so ...
  450.  */
  451. /*
  452.  * Events counted by counter #0
  453.  */
  454. #define CE0_CYCLES 0
  455. #define CE0_INSN_ISSUED 1
  456. #define CE0_LPSC_ISSUED 2
  457. #define CE0_S_ISSUED 3
  458. #define CE0_SC_ISSUED 4
  459. #define CE0_SC_FAILED 5
  460. #define CE0_BRANCH_DECODED 6
  461. #define CE0_QW_WB_SECONDARY 7
  462. #define CE0_CORRECTED_ECC_ERRORS 8
  463. #define CE0_ICACHE_MISSES 9
  464. #define CE0_SCACHE_I_MISSES 10
  465. #define CE0_SCACHE_I_WAY_MISSPREDICTED 11
  466. #define CE0_EXT_INTERVENTIONS_REQ 12
  467. #define CE0_EXT_INVALIDATE_REQ 13
  468. #define CE0_VIRTUAL_COHERENCY_COND 14
  469. #define CE0_INSN_GRADUATED 15
  470. /*
  471.  * Events counted by counter #1
  472.  */
  473. #define CE1_CYCLES 0
  474. #define CE1_INSN_GRADUATED 1
  475. #define CE1_LPSC_GRADUATED 2
  476. #define CE1_S_GRADUATED 3
  477. #define CE1_SC_GRADUATED 4
  478. #define CE1_FP_INSN_GRADUATED 5
  479. #define CE1_QW_WB_PRIMARY 6
  480. #define CE1_TLB_REFILL 7
  481. #define CE1_BRANCH_MISSPREDICTED 8
  482. #define CE1_DCACHE_MISS 9
  483. #define CE1_SCACHE_D_MISSES 10
  484. #define CE1_SCACHE_D_WAY_MISSPREDICTED 11
  485. #define CE1_EXT_INTERVENTION_HITS 12
  486. #define CE1_EXT_INVALIDATE_REQ 13
  487. #define CE1_SP_HINT_TO_CEXCL_SC_BLOCKS 14
  488. #define CE1_SP_HINT_TO_SHARED_SC_BLOCKS 15
  489. /*
  490.  * These flags define in which priviledge mode the counters count events
  491.  */
  492. #define CEB_USER 8 /* Count events in user mode, EXL = ERL = 0 */
  493. #define CEB_SUPERVISOR 4 /* Count events in supvervisor mode EXL = ERL = 0 */
  494. #define CEB_KERNEL 2 /* Count events in kernel mode EXL = ERL = 0 */
  495. #define CEB_EXL 1 /* Count events with EXL = 1, ERL = 0 */
  496. #endif /* _ASM_MIPSREGS_H */