amd-powernow.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. PowerNow! and Cool'n'Quiet are AMD names for frequency
  2. management capabilities in AMD processors. As the hardware
  3. implementation changes in new generations of the processors,
  4. there is a different cpu-freq driver for each generation.
  5. Note that the driver's will not load on the "wrong" hardware,
  6. so it is safe to try each driver in turn when in doubt as to
  7. which is the correct driver.
  8. Note that the functionality to change frequency (and voltage)
  9. is not available in all processors. The drivers will refuse
  10. to load on processors without this capability. The capability
  11. is detected with the cpuid instruction.
  12. The drivers use BIOS supplied tables to obtain frequency and
  13. voltage information appropriate for a particular platform.
  14. Frequency transitions will be unavailable if the BIOS does
  15. not supply these tables.
  16. 6th Generation: powernow-k6
  17. 7th Generation: powernow-k7: Athlon, Duron, Geode.
  18. 8th Generation: powernow-k8: Athlon, Athlon 64, Opteron, Sempron.
  19. Documentation on this functionality in 8th generation processors
  20. is available in the "BIOS and Kernel Developer's Guide", publication
  21. 26094, in chapter 9, available for download from www.amd.com.
  22. BIOS supplied data, for powernow-k7 and for powernow-k8, may be
  23. from either the PSB table or from ACPI objects. The ACPI support
  24. is only available if the kernel config sets CONFIG_ACPI_PROCESSOR.
  25. The powernow-k8 driver will attempt to use ACPI if so configured,
  26. and fall back to PST if that fails.
  27. The powernow-k7 driver will try to use the PSB support first, and
  28. fall back to ACPI if the PSB support fails. A module parameter,
  29. acpi_force, is provided to force ACPI support to be used instead
  30. of PSB support.