74xx_7xx.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * (C) Copyright 2001
  3. * Josh Huber, Mission Critical Linux, Inc. <huber@mclx.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * 74xx_7xx.h
  25. *
  26. * 74xx/7xx specific definitions
  27. */
  28. #ifndef __MPC74XX_H__
  29. #define __MPC74XX_H__
  30. /*----------------------------------------------------------------
  31. * Exception offsets (PowerPC standard)
  32. */
  33. #define EXC_OFF_SYS_RESET 0x0100 /* default system reset offset */
  34. #define _START_OFFSET EXC_OFF_SYS_RESET
  35. /*----------------------------------------------------------------
  36. * l2cr values
  37. */
  38. #define l2cr 1017
  39. #define L2CR_L2E 0x80000000 /* bit 0 - enable */
  40. #define L2CR_L2PE 0x40000000 /* bit 1 - data parity */
  41. #define L2CR_L2SIZ_2M 0x00000000 /* bits 2-3 - 2MB, MPC7400 only! */
  42. #define L2CR_L2SIZ_1M 0x30000000 /* ... 1MB */
  43. #define L2CR_L2SIZ_HM 0x20000000 /* ... 512K */
  44. #define L2CR_L2SIZ_QM 0x10000000 /* ... 256k */
  45. #define L2CR_L2CLK_1 0x02000000 /* bits 4-6 clock ratio div 1 */
  46. #define L2CR_L2CLK_1_5 0x04000000 /* bits 4-6 clock ratio div 1.5 */
  47. #define L2CR_L2CLK_2 0x08000000 /* bits 4-6 clock ratio div 2 */
  48. #define L2CR_L2CLK_2_5 0x0a000000 /* bits 4-6 clock ratio div 2.5 */
  49. #define L2CR_L2CLK_3 0x0c000000 /* bits 4-6 clock ratio div 3 */
  50. #define L2CR_L2CLK_3_5 0x06000000 /* bits 4-6 clock ratio div 3.5 */
  51. #define L2CR_L2CLK_4 0x0e000000 /* bits 4-6 clock ratio div 4 */
  52. #define L2CR_L2RAM_BURST 0x01000000 /* bits 7-8 - burst SRAM */
  53. #define L2CR_DO 0x00400000 /* bit 9 - enable caching of instr. in L2 */
  54. #define L2CR_L2I 0x00200000 /* bit 10 - global invalidate bit */
  55. #define L2CR_L2CTL 0x00100000 /* bit 11 - l2 ram control */
  56. #define L2CR_L2WT 0x00080000 /* bit 12 - l2 write-through */
  57. #define L2CR_TS 0x00040000 /* bit 13 - test support on */
  58. #define L2CR_TS_OFF -L2CR_TS /* bit 13 - test support off */
  59. #define L2CR_L2OH_5 0x00000000 /* bits 14-15 - output hold time = short */
  60. #define L2CR_L2OH_1 0x00010000 /* bits 14-15 - output hold time = medium */
  61. #define L2CR_L2OH_INV 0x00020000 /* bits 14-15 - output hold time = long */
  62. #define L2CR_L2IP 0x00000001 /* global invalidate in progress */
  63. /*----------------------------------------------------------------
  64. * BAT settings. Look in config_<BOARD>.h for the actual setup
  65. */
  66. #define BATU_BL_128K 0x00000000
  67. #define BATU_BL_256K 0x00000004
  68. #define BATU_BL_512K 0x0000000c
  69. #define BATU_BL_1M 0x0000001c
  70. #define BATU_BL_2M 0x0000003c
  71. #define BATU_BL_4M 0x0000007c
  72. #define BATU_BL_8M 0x000000fc
  73. #define BATU_BL_16M 0x000001fc
  74. #define BATU_BL_32M 0x000003fc
  75. #define BATU_BL_64M 0x000007fc
  76. #define BATU_BL_128M 0x00000ffc
  77. #define BATU_BL_256M 0x00001ffc
  78. #define BATU_VS 0x00000002
  79. #define BATU_VP 0x00000001
  80. #define BATU_INVALID 0x00000000
  81. #define BATL_WRITETHROUGH 0x00000040
  82. #define BATL_CACHEINHIBIT 0x00000020
  83. #define BATL_MEMCOHERENCE 0x00000010
  84. #define BATL_GUARDEDSTORAGE 0x00000008
  85. #define BATL_NO_ACCESS 0x00000000
  86. #define BATL_PP_MSK 0x00000003
  87. #define BATL_PP_00 0x00000000 /* No access */
  88. #define BATL_PP_01 0x00000001 /* Read-only */
  89. #define BATL_PP_10 0x00000002 /* Read-write */
  90. #define BATL_PP_11 0x00000003
  91. #define BATL_PP_NO_ACCESS BATL_PP_00
  92. #define BATL_PP_RO BATL_PP_01
  93. #define BATL_PP_RW BATL_PP_10
  94. #ifndef __ASSEMBLY__
  95. /* cpu ids we detect */
  96. typedef enum __cpu_t {
  97. CPU_740, CPU_750,
  98. CPU_740P, CPU_750P,
  99. CPU_745, CPU_755,
  100. CPU_750CX, CPU_750FX, CPU_750GX,
  101. CPU_7400,
  102. CPU_7410,
  103. CPU_7447A, CPU_7448,
  104. CPU_7450, CPU_7455, CPU_7457,
  105. CPU_UNKNOWN} cpu_t;
  106. extern cpu_t get_cpu_type(void);
  107. #define l1icache_enable icache_enable
  108. void l2cache_enable(void);
  109. void l1dcache_enable(void);
  110. static __inline__ unsigned long get_msr (void)
  111. {
  112. unsigned long msr;
  113. asm volatile("mfmsr %0" : "=r" (msr) :);
  114. return msr;
  115. }
  116. static __inline__ void set_msr (unsigned long msr)
  117. {
  118. asm volatile("mtmsr %0" : : "r" (msr));
  119. }
  120. static __inline__ unsigned long get_hid0 (void)
  121. {
  122. unsigned long hid0;
  123. asm volatile("mfspr %0, 1008" : "=r" (hid0) :);
  124. return hid0;
  125. }
  126. static __inline__ unsigned long get_hid1 (void)
  127. {
  128. unsigned long hid1;
  129. asm volatile("mfspr %0, 1009" : "=r" (hid1) :);
  130. return hid1;
  131. }
  132. static __inline__ void set_hid0 (unsigned long hid0)
  133. {
  134. asm volatile("mtspr 1008, %0" : : "r" (hid0));
  135. }
  136. static __inline__ void set_hid1 (unsigned long hid1)
  137. {
  138. asm volatile("mtspr 1009, %0" : : "r" (hid1));
  139. }
  140. #endif /* __ASSEMBLY__ */
  141. #endif /* __MPC74XX_H__ */