* [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate
@ 2019-01-15 14:17 David Hunt
2019-01-15 14:17 ` [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate David Hunt
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: David Hunt @ 2019-01-15 14:17 UTC (permalink / raw)
To: dev; +Cc: david.hunt, john.mcnamara, marko.kovacevic
With the addition of the patchset to allow auto-detection and use
of the intel_pstate kernel driver instead of the acpi-cpufreq kernel
driver, we need to reflect this in the documentation.
Now, instead of telling the user to disable intel_pstate in all cases,
it is now an optional step, should the user want to use acpi-cpufreq.
Signed-off-by: David Hunt <david.hunt@intel.com>
---
doc/guides/sample_app_ug/vm_power_management.rst | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/doc/guides/sample_app_ug/vm_power_management.rst b/doc/guides/sample_app_ug/vm_power_management.rst
index 5be9f24d5..14d432e78 100644
--- a/doc/guides/sample_app_ug/vm_power_management.rst
+++ b/doc/guides/sample_app_ug/vm_power_management.rst
@@ -131,10 +131,15 @@ can be accessed.
Host Operating System
~~~~~~~~~~~~~~~~~~~~~
-The Host OS must also have the *apci_cpufreq* module installed, in some cases
-the *intel_pstate* driver may be the default Power Management environment.
-To enable *acpi_cpufreq* and disable *intel_pstate*, add the following
-to the grub Linux command line:
+The DPDK Power Library can use either the *acpi_cpufreq* or *intel_pstate*
+kernel driver for the management of core frequencies. In many cases
+the *intel_pstate* driver is the default Power Management environment.
+
+Should the *acpi-cpufreq* driver be required, the *intel_pstate* module must
+be disabled, and *apci_cpufreq* module loaded in its place.
+
+To disable *intel_pstate* driver, add the following to the grub Linux
+command line:
.. code-block:: console
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate
2019-01-15 14:17 [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate David Hunt
@ 2019-01-15 14:17 ` David Hunt
2019-01-17 10:57 ` Kovacevic, Marko
2019-01-17 10:57 ` [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate Kovacevic, Marko
2019-01-20 13:46 ` Thomas Monjalon
2 siblings, 1 reply; 5+ messages in thread
From: David Hunt @ 2019-01-15 14:17 UTC (permalink / raw)
To: dev; +Cc: david.hunt, john.mcnamara, marko.kovacevic
Add release note update for 19.02 for intel_pstate support
to Power Management library
Signed-off-by: David Hunt <david.hunt@intel.com>
---
doc/guides/rel_notes/release_19_02.rst | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/doc/guides/rel_notes/release_19_02.rst b/doc/guides/rel_notes/release_19_02.rst
index 5a2f62ca9..57c595bba 100644
--- a/doc/guides/rel_notes/release_19_02.rst
+++ b/doc/guides/rel_notes/release_19_02.rst
@@ -147,6 +147,14 @@ New Features
Added a new performance test tool to test the compressdev PMD. The tool tests
compression ratio and compression throughput.
+* **Added intel_pstate support to Power Management library.**
+
+ Previously, using the power management library required the
+ disabling of the intel_pstate kernel driver, and the enabling of the
+ acpi_cpufreq kernel driver. This is no longer the case, as the use of
+ the intel_pstate kernel driver is now supported, and automatically
+ detected by the library.
+
Removed Items
-------------
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate
2019-01-15 14:17 [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate David Hunt
2019-01-15 14:17 ` [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate David Hunt
@ 2019-01-17 10:57 ` Kovacevic, Marko
2019-01-20 13:46 ` Thomas Monjalon
2 siblings, 0 replies; 5+ messages in thread
From: Kovacevic, Marko @ 2019-01-17 10:57 UTC (permalink / raw)
To: Hunt, David, dev; +Cc: Mcnamara, John
Acked-by: Marko Kovacevic <marko.kovacevic@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate
2019-01-15 14:17 ` [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate David Hunt
@ 2019-01-17 10:57 ` Kovacevic, Marko
0 siblings, 0 replies; 5+ messages in thread
From: Kovacevic, Marko @ 2019-01-17 10:57 UTC (permalink / raw)
To: Hunt, David, dev; +Cc: Mcnamara, John
Acked-by: Marko Kovacevic <marko.kovacevic@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate
2019-01-15 14:17 [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate David Hunt
2019-01-15 14:17 ` [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate David Hunt
2019-01-17 10:57 ` [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate Kovacevic, Marko
@ 2019-01-20 13:46 ` Thomas Monjalon
2 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2019-01-20 13:46 UTC (permalink / raw)
To: David Hunt; +Cc: dev, john.mcnamara, marko.kovacevic
15/01/2019 15:17, David Hunt:
> With the addition of the patchset to allow auto-detection and use
> of the intel_pstate kernel driver instead of the acpi-cpufreq kernel
> driver, we need to reflect this in the documentation.
>
> Now, instead of telling the user to disable intel_pstate in all cases,
> it is now an optional step, should the user want to use acpi-cpufreq.
>
> Signed-off-by: David Hunt <david.hunt@intel.com>
Applied with release notes squashed, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-01-20 13:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-15 14:17 [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate David Hunt
2019-01-15 14:17 ` [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate David Hunt
2019-01-17 10:57 ` Kovacevic, Marko
2019-01-17 10:57 ` [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate Kovacevic, Marko
2019-01-20 13:46 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).