All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI: processor: use dev_dbg() instead of dev_warn() when CPPC probe failed
@ 2017-07-26 10:40 Hanjun Guo
  2017-07-27 23:52 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: Hanjun Guo @ 2017-07-26 10:40 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: linux-acpi, Lorenzo Pieralisi, Hanjun Guo, Alexey Klimov,
	Srinivas Pandruvada

From: Hanjun Guo <hanjun.guo@linaro.org>

_CPC is a optinal object for processor device so it's
fine for processor devices in DSDT without CPPC data,
but when booting the system with CPPC enabled in the
kernel but without its support in the firmware, I got
lots of warnings on a 64 core system:

[    6.346016] acpi ACPI0007:00: CPPC data invalid or not present
[    6.346028] acpi ACPI0007:01: CPPC data invalid or not present
[    6.346039] acpi ACPI0007:02: CPPC data invalid or not present
[    6.346050] acpi ACPI0007:03: CPPC data invalid or not present
[    6.346063] acpi ACPI0007:04: CPPC data invalid or not present
...
[    6.346737] acpi ACPI0007:3f: CPPC data invalid or not present

This isn't much useful and a little bit noise, so
switch the dev_warn() to dev_dbg().

Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Cc: Alexey Klimov <alexey.klimov@arm.com>
Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/acpi/processor_driver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
index 591d1dd..9d6aff2 100644
--- a/drivers/acpi/processor_driver.c
+++ b/drivers/acpi/processor_driver.c
@@ -237,7 +237,7 @@ static int __acpi_processor_start(struct acpi_device *device)
 
 	result = acpi_cppc_processor_probe(pr);
 	if (result && !IS_ENABLED(CONFIG_ACPI_CPU_FREQ_PSS))
-		dev_warn(&device->dev, "CPPC data invalid or not present\n");
+		dev_dbg(&device->dev, "CPPC data invalid or not present\n");
 
 	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
 		acpi_processor_power_init(pr);
-- 
1.7.12.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ACPI: processor: use dev_dbg() instead of dev_warn() when CPPC probe failed
  2017-07-26 10:40 [PATCH] ACPI: processor: use dev_dbg() instead of dev_warn() when CPPC probe failed Hanjun Guo
@ 2017-07-27 23:52 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2017-07-27 23:52 UTC (permalink / raw)
  To: Hanjun Guo
  Cc: Rafael J. Wysocki, linux-acpi, Lorenzo Pieralisi, Hanjun Guo,
	Alexey Klimov, Srinivas Pandruvada

On Wednesday, July 26, 2017 06:40:12 PM Hanjun Guo wrote:
> From: Hanjun Guo <hanjun.guo@linaro.org>
> 
> _CPC is a optinal object for processor device so it's
> fine for processor devices in DSDT without CPPC data,
> but when booting the system with CPPC enabled in the
> kernel but without its support in the firmware, I got
> lots of warnings on a 64 core system:
> 
> [    6.346016] acpi ACPI0007:00: CPPC data invalid or not present
> [    6.346028] acpi ACPI0007:01: CPPC data invalid or not present
> [    6.346039] acpi ACPI0007:02: CPPC data invalid or not present
> [    6.346050] acpi ACPI0007:03: CPPC data invalid or not present
> [    6.346063] acpi ACPI0007:04: CPPC data invalid or not present
> ...
> [    6.346737] acpi ACPI0007:3f: CPPC data invalid or not present
> 
> This isn't much useful and a little bit noise, so
> switch the dev_warn() to dev_dbg().
> 
> Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
> Cc: Alexey Klimov <alexey.klimov@arm.com>
> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
> ---
>  drivers/acpi/processor_driver.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
> index 591d1dd..9d6aff2 100644
> --- a/drivers/acpi/processor_driver.c
> +++ b/drivers/acpi/processor_driver.c
> @@ -237,7 +237,7 @@ static int __acpi_processor_start(struct acpi_device *device)
>  
>  	result = acpi_cppc_processor_probe(pr);
>  	if (result && !IS_ENABLED(CONFIG_ACPI_CPU_FREQ_PSS))
> -		dev_warn(&device->dev, "CPPC data invalid or not present\n");
> +		dev_dbg(&device->dev, "CPPC data invalid or not present\n");
>  
>  	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
>  		acpi_processor_power_init(pr);
> 

Applied, thanks!


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-07-28  0:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-26 10:40 [PATCH] ACPI: processor: use dev_dbg() instead of dev_warn() when CPPC probe failed Hanjun Guo
2017-07-27 23:52 ` Rafael J. Wysocki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.