amd.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. #include <linux/init.h>
  2. #include <linux/bitops.h>
  3. #include <linux/mm.h>
  4. #include <asm/io.h>
  5. #include <asm/processor.h>
  6. #include "cpu.h"
  7. /*
  8. * B step AMD K6 before B 9730xxxx have hardware bugs that can cause
  9. * misexecution of code under Linux. Owners of such processors should
  10. * contact AMD for precise details and a CPU swap.
  11. *
  12. * See http://www.multimania.com/poulot/k6bug.html
  13. * http://www.amd.com/K6/k6docs/revgd.html
  14. *
  15. * The following test is erm.. interesting. AMD neglected to up
  16. * the chip setting when fixing the bug but they also tweaked some
  17. * performance at the same time..
  18. */
  19. extern void vide(void);
  20. __asm__(".align 4\nvide: ret");
  21. static void __init init_amd(struct cpuinfo_x86 *c)
  22. {
  23. #ifdef CONFIG_SMP
  24. int cpu = c == &boot_cpu_data ? 0 : c - cpu_data;
  25. #endif
  26. u32 l, h;
  27. int mbytes = num_physpages >> (20-PAGE_SHIFT);
  28. int r;
  29. /*
  30. * FIXME: We should handle the K5 here. Set up the write
  31. * range and also turn on MSR 83 bits 4 and 31 (write alloc,
  32. * no bus pipeline)
  33. */
  34. /* Bit 31 in normal CPUID used for nonstandard 3DNow ID;
  35. 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway */
  36. clear_bit(0*32+31, c->x86_capability);
  37. r = get_model_name(c);
  38. switch(c->x86)
  39. {
  40. case 4:
  41. /*
  42. * General Systems BIOSen alias the cpu frequency registers
  43. * of the Elan at 0x000df000. Unfortuantly, one of the Linux
  44. * drivers subsequently pokes it, and changes the CPU speed.
  45. * Workaround : Remove the unneeded alias.
  46. */
  47. #define CBAR (0xfffc) /* Configuration Base Address (32-bit) */
  48. #define CBAR_ENB (0x80000000)
  49. #define CBAR_KEY (0X000000CB)
  50. if (c->x86_model==9 || c->x86_model == 10) {
  51. if (inl (CBAR) & CBAR_ENB)
  52. outl (0 | CBAR_KEY, CBAR);
  53. }
  54. break;
  55. case 5:
  56. if( c->x86_model < 6 )
  57. {
  58. /* Based on AMD doc 20734R - June 2000 */
  59. if ( c->x86_model == 0 ) {
  60. clear_bit(X86_FEATURE_APIC, c->x86_capability);
  61. set_bit(X86_FEATURE_PGE, c->x86_capability);
  62. }
  63. break;
  64. }
  65. if ( c->x86_model == 6 && c->x86_mask == 1 ) {
  66. const int K6_BUG_LOOP = 1000000;
  67. int n;
  68. void (*f_vide)(void);
  69. unsigned long d, d2;
  70. printk(KERN_INFO "AMD K6 stepping B detected - ");
  71. /*
  72. * It looks like AMD fixed the 2.6.2 bug and improved indirect
  73. * calls at the same time.
  74. */
  75. n = K6_BUG_LOOP;
  76. f_vide = vide;
  77. rdtscl(d);
  78. while (n--)
  79. f_vide();
  80. rdtscl(d2);
  81. d = d2-d;
  82. /* Knock these two lines out if it debugs out ok */
  83. printk(KERN_INFO "AMD K6 stepping B detected - ");
  84. /* -- cut here -- */
  85. if (d > 20*K6_BUG_LOOP)
  86. printk("system stability may be impaired when more than 32 MB are used.\n");
  87. else
  88. printk("probably OK (after B9730xxxx).\n");
  89. printk(KERN_INFO "Please see http://membres.lycos.fr/poulot/k6bug.html\n");
  90. }
  91. /* K6 with old style WHCR */
  92. if (c->x86_model < 8 ||
  93. (c->x86_model== 8 && c->x86_mask < 8)) {
  94. /* We can only write allocate on the low 508Mb */
  95. if(mbytes>508)
  96. mbytes=508;
  97. rdmsr(MSR_K6_WHCR, l, h);
  98. if ((l&0x0000FFFF)==0) {
  99. unsigned long flags;
  100. l=(1<<0)|((mbytes/4)<<1);
  101. local_irq_save(flags);
  102. wbinvd();
  103. wrmsr(MSR_K6_WHCR, l, h);
  104. local_irq_restore(flags);
  105. printk(KERN_INFO "Enabling old style K6 write allocation for %d Mb\n",
  106. mbytes);
  107. }
  108. break;
  109. }
  110. if ((c->x86_model == 8 && c->x86_mask >7) ||
  111. c->x86_model == 9 || c->x86_model == 13) {
  112. /* The more serious chips .. */
  113. if(mbytes>4092)
  114. mbytes=4092;
  115. rdmsr(MSR_K6_WHCR, l, h);
  116. if ((l&0xFFFF0000)==0) {
  117. unsigned long flags;
  118. l=((mbytes>>2)<<22)|(1<<16);
  119. local_irq_save(flags);
  120. wbinvd();
  121. wrmsr(MSR_K6_WHCR, l, h);
  122. local_irq_restore(flags);
  123. printk(KERN_INFO "Enabling new style K6 write allocation for %d Mb\n",
  124. mbytes);
  125. }
  126. /* Set MTRR capability flag if appropriate */
  127. if (c->x86_model == 13 || c->x86_model == 9 ||
  128. (c->x86_model == 8 && c->x86_mask >= 8))
  129. set_bit(X86_FEATURE_K6_MTRR, c->x86_capability);
  130. break;
  131. }
  132. break;
  133. case 6: /* An Athlon/Duron */
  134. /* Bit 15 of Athlon specific MSR 15, needs to be 0
  135. * to enable SSE on Palomino/Morgan/Barton CPU's.
  136. * If the BIOS didn't enable it already, enable it here.
  137. */
  138. if (c->x86_model >= 6 && c->x86_model <= 10) {
  139. if (!cpu_has(c, X86_FEATURE_XMM)) {
  140. printk(KERN_INFO "Enabling disabled K7/SSE Support.\n");
  141. rdmsr(MSR_K7_HWCR, l, h);
  142. l &= ~0x00008000;
  143. wrmsr(MSR_K7_HWCR, l, h);
  144. set_bit(X86_FEATURE_XMM, c->x86_capability);
  145. }
  146. }
  147. /* It's been determined by AMD that Athlons since model 8 stepping 1
  148. * are more robust with CLK_CTL set to 200xxxxx instead of 600xxxxx
  149. * As per AMD technical note 27212 0.2
  150. */
  151. if ((c->x86_model == 8 && c->x86_mask>=1) || (c->x86_model > 8)) {
  152. rdmsr(MSR_K7_CLK_CTL, l, h);
  153. if ((l & 0xfff00000) != 0x20000000) {
  154. printk ("CPU: CLK_CTL MSR was %x. Reprogramming to %x\n", l,
  155. ((l & 0x000fffff)|0x20000000));
  156. wrmsr(MSR_K7_CLK_CTL, (l & 0x000fffff)|0x20000000, h);
  157. }
  158. }
  159. break;
  160. }
  161. switch (c->x86) {
  162. case 15:
  163. set_bit(X86_FEATURE_K8, c->x86_capability);
  164. break;
  165. case 6:
  166. set_bit(X86_FEATURE_K7, c->x86_capability);
  167. break;
  168. }
  169. display_cacheinfo(c);
  170. if (cpuid_eax(0x80000000) >= 0x80000008) {
  171. c->x86_num_cores = (cpuid_ecx(0x80000008) & 0xff) + 1;
  172. if (c->x86_num_cores & (c->x86_num_cores - 1))
  173. c->x86_num_cores = 1;
  174. }
  175. #ifdef CONFIG_SMP
  176. /*
  177. * On a AMD dual core setup the lower bits of the APIC id
  178. * distingush the cores. Assumes number of cores is a power
  179. * of two.
  180. */
  181. if (c->x86_num_cores > 1) {
  182. cpu_core_id[cpu] = cpu >> hweight32(c->x86_num_cores - 1);
  183. printk(KERN_INFO "CPU %d(%d) -> Core %d\n",
  184. cpu, c->x86_num_cores, cpu_core_id[cpu]);
  185. }
  186. #endif
  187. }
  188. static unsigned int amd_size_cache(struct cpuinfo_x86 * c, unsigned int size)
  189. {
  190. /* AMD errata T13 (order #21922) */
  191. if ((c->x86 == 6)) {
  192. if (c->x86_model == 3 && c->x86_mask == 0) /* Duron Rev A0 */
  193. size = 64;
  194. if (c->x86_model == 4 &&
  195. (c->x86_mask==0 || c->x86_mask==1)) /* Tbird rev A1/A2 */
  196. size = 256;
  197. }
  198. return size;
  199. }
  200. static struct cpu_dev amd_cpu_dev __initdata = {
  201. .c_vendor = "AMD",
  202. .c_ident = { "AuthenticAMD" },
  203. .c_models = {
  204. { .vendor = X86_VENDOR_AMD, .family = 4, .model_names =
  205. {
  206. [3] = "486 DX/2",
  207. [7] = "486 DX/2-WB",
  208. [8] = "486 DX/4",
  209. [9] = "486 DX/4-WB",
  210. [14] = "Am5x86-WT",
  211. [15] = "Am5x86-WB"
  212. }
  213. },
  214. },
  215. .c_init = init_amd,
  216. .c_identify = generic_identify,
  217. .c_size_cache = amd_size_cache,
  218. };
  219. int __init amd_init_cpu(void)
  220. {
  221. cpu_devs[X86_VENDOR_AMD] = &amd_cpu_dev;
  222. return 0;
  223. }
  224. //early_arch_initcall(amd_init_cpu);