powernow-k8.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * (c) 2003, 2004 Advanced Micro Devices, Inc.
  3. * Your use of this code is subject to the terms and conditions of the
  4. * GNU general public license version 2. See "COPYING" or
  5. * http://www.gnu.org/licenses/gpl.html
  6. */
  7. struct powernow_k8_data {
  8. unsigned int cpu;
  9. u32 numps; /* number of p-states */
  10. u32 batps; /* number of p-states supported on battery */
  11. /* these values are constant when the PSB is used to determine
  12. * vid/fid pairings, but are modified during the ->target() call
  13. * when ACPI is used */
  14. u32 rvo; /* ramp voltage offset */
  15. u32 irt; /* isochronous relief time */
  16. u32 vidmvs; /* usable value calculated from mvs */
  17. u32 vstable; /* voltage stabilization time, units 20 us */
  18. u32 plllock; /* pll lock time, units 1 us */
  19. /* keep track of the current fid / vid */
  20. u32 currvid, currfid;
  21. /* the powernow_table includes all frequency and vid/fid pairings:
  22. * fid are the lower 8 bits of the index, vid are the upper 8 bits.
  23. * frequency is in kHz */
  24. struct cpufreq_frequency_table *powernow_table;
  25. #ifdef CONFIG_X86_POWERNOW_K8_ACPI
  26. /* the acpi table needs to be kept. it's only available if ACPI was
  27. * used to determine valid frequency/vid/fid states */
  28. struct acpi_processor_performance acpi_data;
  29. #endif
  30. };
  31. /* processor's cpuid instruction support */
  32. #define CPUID_PROCESSOR_SIGNATURE 1 /* function 1 */
  33. #define CPUID_XFAM 0x0ff00000 /* extended family */
  34. #define CPUID_XFAM_K8 0
  35. #define CPUID_XMOD 0x000f0000 /* extended model */
  36. #define CPUID_XMOD_REV_E 0x00020000
  37. #define CPUID_USE_XFAM_XMOD 0x00000f00
  38. #define CPUID_GET_MAX_CAPABILITIES 0x80000000
  39. #define CPUID_FREQ_VOLT_CAPABILITIES 0x80000007
  40. #define P_STATE_TRANSITION_CAPABLE 6
  41. /* Model Specific Registers for p-state transitions. MSRs are 64-bit. For */
  42. /* writes (wrmsr - opcode 0f 30), the register number is placed in ecx, and */
  43. /* the value to write is placed in edx:eax. For reads (rdmsr - opcode 0f 32), */
  44. /* the register number is placed in ecx, and the data is returned in edx:eax. */
  45. #define MSR_FIDVID_CTL 0xc0010041
  46. #define MSR_FIDVID_STATUS 0xc0010042
  47. /* Field definitions within the FID VID Low Control MSR : */
  48. #define MSR_C_LO_INIT_FID_VID 0x00010000
  49. #define MSR_C_LO_NEW_VID 0x00001f00
  50. #define MSR_C_LO_NEW_FID 0x0000002f
  51. #define MSR_C_LO_VID_SHIFT 8
  52. /* Field definitions within the FID VID High Control MSR : */
  53. #define MSR_C_HI_STP_GNT_TO 0x000fffff
  54. /* Field definitions within the FID VID Low Status MSR : */
  55. #define MSR_S_LO_CHANGE_PENDING 0x80000000 /* cleared when completed */
  56. #define MSR_S_LO_MAX_RAMP_VID 0x1f000000
  57. #define MSR_S_LO_MAX_FID 0x003f0000
  58. #define MSR_S_LO_START_FID 0x00003f00
  59. #define MSR_S_LO_CURRENT_FID 0x0000003f
  60. /* Field definitions within the FID VID High Status MSR : */
  61. #define MSR_S_HI_MAX_WORKING_VID 0x001f0000
  62. #define MSR_S_HI_START_VID 0x00001f00
  63. #define MSR_S_HI_CURRENT_VID 0x0000001f
  64. #define MSR_C_HI_STP_GNT_BENIGN 0x00000001
  65. /*
  66. * There are restrictions frequencies have to follow:
  67. * - only 1 entry in the low fid table ( <=1.4GHz )
  68. * - lowest entry in the high fid table must be >= 2 * the entry in the
  69. * low fid table
  70. * - lowest entry in the high fid table must be a <= 200MHz + 2 * the entry
  71. * in the low fid table
  72. * - the parts can only step at 200 MHz intervals, so 1.9 GHz is never valid
  73. * - lowest frequency must be >= interprocessor hypertransport link speed
  74. * (only applies to MP systems obviously)
  75. */
  76. /* fids (frequency identifiers) are arranged in 2 tables - lo and hi */
  77. #define LO_FID_TABLE_TOP 6 /* fid values marking the boundary */
  78. #define HI_FID_TABLE_BOTTOM 8 /* between the low and high tables */
  79. #define LO_VCOFREQ_TABLE_TOP 1400 /* corresponding vco frequency values */
  80. #define HI_VCOFREQ_TABLE_BOTTOM 1600
  81. #define MIN_FREQ_RESOLUTION 200 /* fids jump by 2 matching freq jumps by 200 */
  82. #define MAX_FID 0x2a /* Spec only gives FID values as far as 5 GHz */
  83. #define LEAST_VID 0x1e /* Lowest (numerically highest) useful vid value */
  84. #define MIN_FREQ 800 /* Min and max freqs, per spec */
  85. #define MAX_FREQ 5000
  86. #define INVALID_FID_MASK 0xffffffc1 /* not a valid fid if these bits are set */
  87. #define INVALID_VID_MASK 0xffffffe0 /* not a valid vid if these bits are set */
  88. #define STOP_GRANT_5NS 1 /* min poss memory access latency for voltage change */
  89. #define PLL_LOCK_CONVERSION (1000/5) /* ms to ns, then divide by clock period */
  90. #define MAXIMUM_VID_STEPS 1 /* Current cpus only allow a single step of 25mV */
  91. #define VST_UNITS_20US 20 /* Voltage Stabalization Time is in units of 20us */
  92. /*
  93. * Most values of interest are enocoded in a single field of the _PSS
  94. * entries: the "control" value.
  95. */
  96. #define IRT_SHIFT 30
  97. #define RVO_SHIFT 28
  98. #define PLL_L_SHIFT 20
  99. #define MVS_SHIFT 18
  100. #define VST_SHIFT 11
  101. #define VID_SHIFT 6
  102. #define IRT_MASK 3
  103. #define RVO_MASK 3
  104. #define PLL_L_MASK 0x7f
  105. #define MVS_MASK 3
  106. #define VST_MASK 0x7f
  107. #define VID_MASK 0x1f
  108. #define FID_MASK 0x3f
  109. /*
  110. * Version 1.4 of the PSB table. This table is constructed by BIOS and is
  111. * to tell the OS's power management driver which VIDs and FIDs are
  112. * supported by this particular processor.
  113. * If the data in the PSB / PST is wrong, then this driver will program the
  114. * wrong values into hardware, which is very likely to lead to a crash.
  115. */
  116. #define PSB_ID_STRING "AMDK7PNOW!"
  117. #define PSB_ID_STRING_LEN 10
  118. #define PSB_VERSION_1_4 0x14
  119. struct psb_s {
  120. u8 signature[10];
  121. u8 tableversion;
  122. u8 flags1;
  123. u16 vstable;
  124. u8 flags2;
  125. u8 num_tables;
  126. u32 cpuid;
  127. u8 plllocktime;
  128. u8 maxfid;
  129. u8 maxvid;
  130. u8 numps;
  131. };
  132. /* Pairs of fid/vid values are appended to the version 1.4 PSB table. */
  133. struct pst_s {
  134. u8 fid;
  135. u8 vid;
  136. };
  137. #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "powernow-k8", msg)
  138. static int core_voltage_pre_transition(struct powernow_k8_data *data, u32 reqvid);
  139. static int core_voltage_post_transition(struct powernow_k8_data *data, u32 reqvid);
  140. static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid);
  141. static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned int index);
  142. #ifndef for_each_cpu_mask
  143. #define for_each_cpu_mask(i,mask) for (i=0;i<1;i++)
  144. #endif
  145. #ifdef CONFIG_SMP
  146. static inline void define_siblings(int cpu, cpumask_t cpu_sharedcore_mask[])
  147. {
  148. }
  149. #else
  150. static inline void define_siblings(int cpu, cpumask_t cpu_sharedcore_mask[])
  151. {
  152. cpu_set(0, cpu_sharedcore_mask[0]);
  153. }
  154. #endif