linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
@ 2014-12-01  2:32 Ethan Zhao
  2014-12-01 15:11 ` Dirk Brandewie
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Ethan Zhao @ 2014-12-01  2:32 UTC (permalink / raw)
  To: dirk.j.brandewie, linda.knippers, viresh.kumar, rjw, corbet
  Cc: linux-doc, linux-kernel, linux-pm, ethan.kernel, Ethan Zhao,
	Dirk Brandewie

Oracle Sun X86 servers have dynamic power capping capability that works via
ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
enabled.

Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
Tested-by: Linda Knippers <linda.knippers@hp.com>
---
  v2: fix break HP Proliant issue.
  v3: expand the hardware vendor list.
  v4: refine code.
  v5v6: change enum PCC to PPC.

 drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
 1 file changed, 41 insertions(+), 4 deletions(-)

diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
index 27bb6d3..1bb62ca 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
 	return true;
 }
 
+static bool intel_pstate_has_acpi_ppc(void)
+{
+	int i;
+
+	for_each_possible_cpu(i) {
+		struct acpi_processor *pr = per_cpu(processors, i);
+
+		if (!pr)
+			continue;
+		if (acpi_has_method(pr->handle, "_PPC"))
+			return true;
+	}
+	return false;
+}
+
+enum {
+	PSS,
+	PPC,
+};
+
 struct hw_vendor_info {
 	u16  valid;
 	char oem_id[ACPI_OEM_ID_SIZE];
 	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
+	int  oem_pwr_table;
 };
 
 /* Hardware vendor-specific info that has its own power management modes */
 static struct hw_vendor_info vendor_info[] = {
-	{1, "HP    ", "ProLiant"},
+	{1, "HP    ", "ProLiant", PSS},
+	{1, "ORACLE", "X4-2    ", PPC},
+	{1, "ORACLE", "X4-2L   ", PPC},
+	{1, "ORACLE", "X4-2B   ", PPC},
+	{1, "ORACLE", "X3-2    ", PPC},
+	{1, "ORACLE", "X3-2L   ", PPC},
+	{1, "ORACLE", "X3-2B   ", PPC},
+	{1, "ORACLE", "X4470M2 ", PPC},
+	{1, "ORACLE", "X4270M3 ", PPC},
+	{1, "ORACLE", "X4270M2 ", PPC},
+	{1, "ORACLE", "X4170M2 ", PPC},
 	{0, "", ""},
 };
 
@@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
 
 	for (v_info = vendor_info; v_info->valid; v_info++) {
 		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
-		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
-		    intel_pstate_no_acpi_pss())
-			return true;
+			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
+						ACPI_OEM_TABLE_ID_SIZE))
+			switch (v_info->oem_pwr_table) {
+			case PSS:
+				return intel_pstate_no_acpi_pss();
+			case PPC:
+				return intel_pstate_has_acpi_ppc();
+			}
 	}
 
 	return false;
 }
 #else /* CONFIG_ACPI not enabled */
 static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
+static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
 #endif /* CONFIG_ACPI */
 
 static int __init intel_pstate_init(void)
-- 
1.8.3.1


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-01  2:32 [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method Ethan Zhao
@ 2014-12-01 15:11 ` Dirk Brandewie
  2014-12-01 22:03   ` Linda Knippers
  2014-12-02  1:02   ` ethan zhao
  2014-12-02 18:22 ` Kristen Carlson Accardi
  2014-12-04 23:33 ` Yasuaki Ishimatsu
  2 siblings, 2 replies; 8+ messages in thread
From: Dirk Brandewie @ 2014-12-01 15:11 UTC (permalink / raw)
  To: Ethan Zhao, dirk.j.brandewie, linda.knippers, viresh.kumar, rjw, corbet
  Cc: dirk.brandewie, linux-doc, linux-kernel, linux-pm, ethan.kernel

On 11/30/2014 06:32 PM, Ethan Zhao wrote:
> Oracle Sun X86 servers have dynamic power capping capability that works via
> ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
> enabled.
>
> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
> Tested-by: Linda Knippers <linda.knippers@hp.com>

In the future you should not add other peoples Signed-off-by or Tested-by
tags unless they have explicitly told you can do so. Other than that I
am fine with this patch.

--Dirk
> ---
>    v2: fix break HP Proliant issue.
>    v3: expand the hardware vendor list.
>    v4: refine code.
>    v5v6: change enum PCC to PPC.
>
>   drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
>   1 file changed, 41 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
> index 27bb6d3..1bb62ca 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>   	return true;
>   }
>
> +static bool intel_pstate_has_acpi_ppc(void)
> +{
> +	int i;
> +
> +	for_each_possible_cpu(i) {
> +		struct acpi_processor *pr = per_cpu(processors, i);
> +
> +		if (!pr)
> +			continue;
> +		if (acpi_has_method(pr->handle, "_PPC"))
> +			return true;
> +	}
> +	return false;
> +}
> +
> +enum {
> +	PSS,
> +	PPC,
> +};
> +
>   struct hw_vendor_info {
>   	u16  valid;
>   	char oem_id[ACPI_OEM_ID_SIZE];
>   	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
> +	int  oem_pwr_table;
>   };
>
>   /* Hardware vendor-specific info that has its own power management modes */
>   static struct hw_vendor_info vendor_info[] = {
> -	{1, "HP    ", "ProLiant"},
> +	{1, "HP    ", "ProLiant", PSS},
> +	{1, "ORACLE", "X4-2    ", PPC},
> +	{1, "ORACLE", "X4-2L   ", PPC},
> +	{1, "ORACLE", "X4-2B   ", PPC},
> +	{1, "ORACLE", "X3-2    ", PPC},
> +	{1, "ORACLE", "X3-2L   ", PPC},
> +	{1, "ORACLE", "X3-2B   ", PPC},
> +	{1, "ORACLE", "X4470M2 ", PPC},
> +	{1, "ORACLE", "X4270M3 ", PPC},
> +	{1, "ORACLE", "X4270M2 ", PPC},
> +	{1, "ORACLE", "X4170M2 ", PPC},
>   	{0, "", ""},
>   };
>
> @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
>
>   	for (v_info = vendor_info; v_info->valid; v_info++) {
>   		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
> -		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
> -		    intel_pstate_no_acpi_pss())
> -			return true;
> +			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
> +						ACPI_OEM_TABLE_ID_SIZE))
> +			switch (v_info->oem_pwr_table) {
> +			case PSS:
> +				return intel_pstate_no_acpi_pss();
> +			case PPC:
> +				return intel_pstate_has_acpi_ppc();
> +			}
>   	}
>
>   	return false;
>   }
>   #else /* CONFIG_ACPI not enabled */
>   static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>   #endif /* CONFIG_ACPI */
>
>   static int __init intel_pstate_init(void)
>


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-01 15:11 ` Dirk Brandewie
@ 2014-12-01 22:03   ` Linda Knippers
  2014-12-02  1:02   ` ethan zhao
  1 sibling, 0 replies; 8+ messages in thread
From: Linda Knippers @ 2014-12-01 22:03 UTC (permalink / raw)
  To: Dirk Brandewie, Ethan Zhao, dirk.j.brandewie, viresh.kumar, rjw, corbet
  Cc: linux-doc, linux-kernel, linux-pm, ethan.kernel

On 12/1/2014 10:11 AM, Dirk Brandewie wrote:
> On 11/30/2014 06:32 PM, Ethan Zhao wrote:
>> Oracle Sun X86 servers have dynamic power capping capability that works via
>> ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
>> enabled.
>>
>> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
>> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
>> Tested-by: Linda Knippers <linda.knippers@hp.com>
> 
> In the future you should not add other peoples Signed-off-by or Tested-by
> tags unless they have explicitly told you can do so. Other than that I
> am fine with this patch.

I hadn't previously testing this version of the patch but I have now so I'm
now ok with the Tested-by.

Thanks,

--ljk
> 
> --Dirk
>> ---
>>    v2: fix break HP Proliant issue.
>>    v3: expand the hardware vendor list.
>>    v4: refine code.
>>    v5v6: change enum PCC to PPC.
>>
>>   drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
>>   1 file changed, 41 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
>> index 27bb6d3..1bb62ca 100644
>> --- a/drivers/cpufreq/intel_pstate.c
>> +++ b/drivers/cpufreq/intel_pstate.c
>> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>>       return true;
>>   }
>>
>> +static bool intel_pstate_has_acpi_ppc(void)
>> +{
>> +    int i;
>> +
>> +    for_each_possible_cpu(i) {
>> +        struct acpi_processor *pr = per_cpu(processors, i);
>> +
>> +        if (!pr)
>> +            continue;
>> +        if (acpi_has_method(pr->handle, "_PPC"))
>> +            return true;
>> +    }
>> +    return false;
>> +}
>> +
>> +enum {
>> +    PSS,
>> +    PPC,
>> +};
>> +
>>   struct hw_vendor_info {
>>       u16  valid;
>>       char oem_id[ACPI_OEM_ID_SIZE];
>>       char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
>> +    int  oem_pwr_table;
>>   };
>>
>>   /* Hardware vendor-specific info that has its own power management modes */
>>   static struct hw_vendor_info vendor_info[] = {
>> -    {1, "HP    ", "ProLiant"},
>> +    {1, "HP    ", "ProLiant", PSS},
>> +    {1, "ORACLE", "X4-2    ", PPC},
>> +    {1, "ORACLE", "X4-2L   ", PPC},
>> +    {1, "ORACLE", "X4-2B   ", PPC},
>> +    {1, "ORACLE", "X3-2    ", PPC},
>> +    {1, "ORACLE", "X3-2L   ", PPC},
>> +    {1, "ORACLE", "X3-2B   ", PPC},
>> +    {1, "ORACLE", "X4470M2 ", PPC},
>> +    {1, "ORACLE", "X4270M3 ", PPC},
>> +    {1, "ORACLE", "X4270M2 ", PPC},
>> +    {1, "ORACLE", "X4170M2 ", PPC},
>>       {0, "", ""},
>>   };
>>
>> @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
>>
>>       for (v_info = vendor_info; v_info->valid; v_info++) {
>>           if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
>> -            !strncmp(hdr.oem_table_id, v_info->oem_table_id,
>> ACPI_OEM_TABLE_ID_SIZE) &&
>> -            intel_pstate_no_acpi_pss())
>> -            return true;
>> +            !strncmp(hdr.oem_table_id, v_info->oem_table_id,
>> +                        ACPI_OEM_TABLE_ID_SIZE))
>> +            switch (v_info->oem_pwr_table) {
>> +            case PSS:
>> +                return intel_pstate_no_acpi_pss();
>> +            case PPC:
>> +                return intel_pstate_has_acpi_ppc();
>> +            }
>>       }
>>
>>       return false;
>>   }
>>   #else /* CONFIG_ACPI not enabled */
>>   static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return
>> false; }
>> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>>   #endif /* CONFIG_ACPI */
>>
>>   static int __init intel_pstate_init(void)
>>
> 
> -- 
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-01 15:11 ` Dirk Brandewie
  2014-12-01 22:03   ` Linda Knippers
@ 2014-12-02  1:02   ` ethan zhao
  1 sibling, 0 replies; 8+ messages in thread
From: ethan zhao @ 2014-12-02  1:02 UTC (permalink / raw)
  To: Dirk Brandewie
  Cc: dirk.j.brandewie, linda.knippers, viresh.kumar, rjw, corbet,
	linux-doc, linux-kernel, linux-pm, ethan.kernel

Dirk,

On 2014/12/1 23:11, Dirk Brandewie wrote:
> On 11/30/2014 06:32 PM, Ethan Zhao wrote:
>> Oracle Sun X86 servers have dynamic power capping capability that 
>> works via
>> ACPI _PPC method etc, so skip loading this driver if Sun server has 
>> ACPI _PPC
>> enabled.
>>
>> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
>> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
>> Tested-by: Linda Knippers <linda.knippers@hp.com>
>
> In the future you should not add other peoples Signed-off-by or Tested-by
> tags unless they have explicitly told you can do so. Other than that I
> am fine with this patch.
   Got it. many thanks.

   Ethan
>
> --Dirk
>> ---
>>    v2: fix break HP Proliant issue.
>>    v3: expand the hardware vendor list.
>>    v4: refine code.
>>    v5v6: change enum PCC to PPC.
>>
>>   drivers/cpufreq/intel_pstate.c | 45 
>> ++++++++++++++++++++++++++++++++++++++----
>>   1 file changed, 41 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/cpufreq/intel_pstate.c 
>> b/drivers/cpufreq/intel_pstate.c
>> index 27bb6d3..1bb62ca 100644
>> --- a/drivers/cpufreq/intel_pstate.c
>> +++ b/drivers/cpufreq/intel_pstate.c
>> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>>       return true;
>>   }
>>
>> +static bool intel_pstate_has_acpi_ppc(void)
>> +{
>> +    int i;
>> +
>> +    for_each_possible_cpu(i) {
>> +        struct acpi_processor *pr = per_cpu(processors, i);
>> +
>> +        if (!pr)
>> +            continue;
>> +        if (acpi_has_method(pr->handle, "_PPC"))
>> +            return true;
>> +    }
>> +    return false;
>> +}
>> +
>> +enum {
>> +    PSS,
>> +    PPC,
>> +};
>> +
>>   struct hw_vendor_info {
>>       u16  valid;
>>       char oem_id[ACPI_OEM_ID_SIZE];
>>       char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
>> +    int  oem_pwr_table;
>>   };
>>
>>   /* Hardware vendor-specific info that has its own power management 
>> modes */
>>   static struct hw_vendor_info vendor_info[] = {
>> -    {1, "HP    ", "ProLiant"},
>> +    {1, "HP    ", "ProLiant", PSS},
>> +    {1, "ORACLE", "X4-2    ", PPC},
>> +    {1, "ORACLE", "X4-2L   ", PPC},
>> +    {1, "ORACLE", "X4-2B   ", PPC},
>> +    {1, "ORACLE", "X3-2    ", PPC},
>> +    {1, "ORACLE", "X3-2L   ", PPC},
>> +    {1, "ORACLE", "X3-2B   ", PPC},
>> +    {1, "ORACLE", "X4470M2 ", PPC},
>> +    {1, "ORACLE", "X4270M3 ", PPC},
>> +    {1, "ORACLE", "X4270M2 ", PPC},
>> +    {1, "ORACLE", "X4170M2 ", PPC},
>>       {0, "", ""},
>>   };
>>
>> @@ -966,15 +997,21 @@ static bool 
>> intel_pstate_platform_pwr_mgmt_exists(void)
>>
>>       for (v_info = vendor_info; v_info->valid; v_info++) {
>>           if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
>> -            !strncmp(hdr.oem_table_id, v_info->oem_table_id, 
>> ACPI_OEM_TABLE_ID_SIZE) &&
>> -            intel_pstate_no_acpi_pss())
>> -            return true;
>> +            !strncmp(hdr.oem_table_id, v_info->oem_table_id,
>> +                        ACPI_OEM_TABLE_ID_SIZE))
>> +            switch (v_info->oem_pwr_table) {
>> +            case PSS:
>> +                return intel_pstate_no_acpi_pss();
>> +            case PPC:
>> +                return intel_pstate_has_acpi_ppc();
>> +            }
>>       }
>>
>>       return false;
>>   }
>>   #else /* CONFIG_ACPI not enabled */
>>   static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { 
>> return false; }
>> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>>   #endif /* CONFIG_ACPI */
>>
>>   static int __init intel_pstate_init(void)
>>
>


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-01  2:32 [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method Ethan Zhao
  2014-12-01 15:11 ` Dirk Brandewie
@ 2014-12-02 18:22 ` Kristen Carlson Accardi
  2014-12-03  2:19   ` Rafael J. Wysocki
  2014-12-04 23:33 ` Yasuaki Ishimatsu
  2 siblings, 1 reply; 8+ messages in thread
From: Kristen Carlson Accardi @ 2014-12-02 18:22 UTC (permalink / raw)
  To: Ethan Zhao
  Cc: dirk.j.brandewie, linda.knippers, viresh.kumar, rjw, corbet,
	linux-doc, linux-kernel, linux-pm, ethan.kernel, Dirk Brandewie

On Mon, 1 Dec 2014 11:32:08 +0900
Ethan Zhao <ethan.zhao@oracle.com> wrote:

> Oracle Sun X86 servers have dynamic power capping capability that works via
> ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
> enabled.
> 
> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
> Tested-by: Linda Knippers <linda.knippers@hp.com>

Acked-by: Kristen Carlson Accardi <kristen@linux.intel.com>

> ---
>   v2: fix break HP Proliant issue.
>   v3: expand the hardware vendor list.
>   v4: refine code.
>   v5v6: change enum PCC to PPC.
> 
>  drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
>  1 file changed, 41 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
> index 27bb6d3..1bb62ca 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>  	return true;
>  }
>  
> +static bool intel_pstate_has_acpi_ppc(void)
> +{
> +	int i;
> +
> +	for_each_possible_cpu(i) {
> +		struct acpi_processor *pr = per_cpu(processors, i);
> +
> +		if (!pr)
> +			continue;
> +		if (acpi_has_method(pr->handle, "_PPC"))
> +			return true;
> +	}
> +	return false;
> +}
> +
> +enum {
> +	PSS,
> +	PPC,
> +};
> +
>  struct hw_vendor_info {
>  	u16  valid;
>  	char oem_id[ACPI_OEM_ID_SIZE];
>  	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
> +	int  oem_pwr_table;
>  };
>  
>  /* Hardware vendor-specific info that has its own power management modes */
>  static struct hw_vendor_info vendor_info[] = {
> -	{1, "HP    ", "ProLiant"},
> +	{1, "HP    ", "ProLiant", PSS},
> +	{1, "ORACLE", "X4-2    ", PPC},
> +	{1, "ORACLE", "X4-2L   ", PPC},
> +	{1, "ORACLE", "X4-2B   ", PPC},
> +	{1, "ORACLE", "X3-2    ", PPC},
> +	{1, "ORACLE", "X3-2L   ", PPC},
> +	{1, "ORACLE", "X3-2B   ", PPC},
> +	{1, "ORACLE", "X4470M2 ", PPC},
> +	{1, "ORACLE", "X4270M3 ", PPC},
> +	{1, "ORACLE", "X4270M2 ", PPC},
> +	{1, "ORACLE", "X4170M2 ", PPC},
>  	{0, "", ""},
>  };
>  
> @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
>  
>  	for (v_info = vendor_info; v_info->valid; v_info++) {
>  		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
> -		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
> -		    intel_pstate_no_acpi_pss())
> -			return true;
> +			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
> +						ACPI_OEM_TABLE_ID_SIZE))
> +			switch (v_info->oem_pwr_table) {
> +			case PSS:
> +				return intel_pstate_no_acpi_pss();
> +			case PPC:
> +				return intel_pstate_has_acpi_ppc();
> +			}
>  	}
>  
>  	return false;
>  }
>  #else /* CONFIG_ACPI not enabled */
>  static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>  #endif /* CONFIG_ACPI */
>  
>  static int __init intel_pstate_init(void)


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-02 18:22 ` Kristen Carlson Accardi
@ 2014-12-03  2:19   ` Rafael J. Wysocki
  2014-12-04  2:24     ` ethan zhao
  0 siblings, 1 reply; 8+ messages in thread
From: Rafael J. Wysocki @ 2014-12-03  2:19 UTC (permalink / raw)
  To: Kristen Carlson Accardi
  Cc: Ethan Zhao, dirk.j.brandewie, linda.knippers, viresh.kumar,
	corbet, linux-doc, linux-kernel, linux-pm, ethan.kernel,
	Dirk Brandewie

On Tuesday, December 02, 2014 10:22:31 AM Kristen Carlson Accardi wrote:
> On Mon, 1 Dec 2014 11:32:08 +0900
> Ethan Zhao <ethan.zhao@oracle.com> wrote:
> 
> > Oracle Sun X86 servers have dynamic power capping capability that works via
> > ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
> > enabled.
> > 
> > Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
> > Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
> > Tested-by: Linda Knippers <linda.knippers@hp.com>
> 
> Acked-by: Kristen Carlson Accardi <kristen@linux.intel.com>

Patch queued up for 3.19-rc1, thanks!

> > ---
> >   v2: fix break HP Proliant issue.
> >   v3: expand the hardware vendor list.
> >   v4: refine code.
> >   v5v6: change enum PCC to PPC.
> > 
> >  drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
> >  1 file changed, 41 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
> > index 27bb6d3..1bb62ca 100644
> > --- a/drivers/cpufreq/intel_pstate.c
> > +++ b/drivers/cpufreq/intel_pstate.c
> > @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
> >  	return true;
> >  }
> >  
> > +static bool intel_pstate_has_acpi_ppc(void)
> > +{
> > +	int i;
> > +
> > +	for_each_possible_cpu(i) {
> > +		struct acpi_processor *pr = per_cpu(processors, i);
> > +
> > +		if (!pr)
> > +			continue;
> > +		if (acpi_has_method(pr->handle, "_PPC"))
> > +			return true;
> > +	}
> > +	return false;
> > +}
> > +
> > +enum {
> > +	PSS,
> > +	PPC,
> > +};
> > +
> >  struct hw_vendor_info {
> >  	u16  valid;
> >  	char oem_id[ACPI_OEM_ID_SIZE];
> >  	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
> > +	int  oem_pwr_table;
> >  };
> >  
> >  /* Hardware vendor-specific info that has its own power management modes */
> >  static struct hw_vendor_info vendor_info[] = {
> > -	{1, "HP    ", "ProLiant"},
> > +	{1, "HP    ", "ProLiant", PSS},
> > +	{1, "ORACLE", "X4-2    ", PPC},
> > +	{1, "ORACLE", "X4-2L   ", PPC},
> > +	{1, "ORACLE", "X4-2B   ", PPC},
> > +	{1, "ORACLE", "X3-2    ", PPC},
> > +	{1, "ORACLE", "X3-2L   ", PPC},
> > +	{1, "ORACLE", "X3-2B   ", PPC},
> > +	{1, "ORACLE", "X4470M2 ", PPC},
> > +	{1, "ORACLE", "X4270M3 ", PPC},
> > +	{1, "ORACLE", "X4270M2 ", PPC},
> > +	{1, "ORACLE", "X4170M2 ", PPC},
> >  	{0, "", ""},
> >  };
> >  
> > @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
> >  
> >  	for (v_info = vendor_info; v_info->valid; v_info++) {
> >  		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
> > -		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
> > -		    intel_pstate_no_acpi_pss())
> > -			return true;
> > +			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
> > +						ACPI_OEM_TABLE_ID_SIZE))
> > +			switch (v_info->oem_pwr_table) {
> > +			case PSS:
> > +				return intel_pstate_no_acpi_pss();
> > +			case PPC:
> > +				return intel_pstate_has_acpi_ppc();
> > +			}
> >  	}
> >  
> >  	return false;
> >  }
> >  #else /* CONFIG_ACPI not enabled */
> >  static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
> > +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
> >  #endif /* CONFIG_ACPI */
> >  
> >  static int __init intel_pstate_init(void)
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-03  2:19   ` Rafael J. Wysocki
@ 2014-12-04  2:24     ` ethan zhao
  0 siblings, 0 replies; 8+ messages in thread
From: ethan zhao @ 2014-12-04  2:24 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Kristen Carlson Accardi, dirk.j.brandewie, linda.knippers,
	viresh.kumar, corbet, linux-doc, linux-kernel, linux-pm,
	ethan.kernel, Dirk Brandewie

if could please append

Tested-by: Alexey Kodanev <alexey.kodanev@oracle.com>

He has helped to test this patch on Lenovo machines.

Thanks,
Ethan

On 2014/12/3 10:19, Rafael J. Wysocki wrote:
> On Tuesday, December 02, 2014 10:22:31 AM Kristen Carlson Accardi wrote:
>> On Mon, 1 Dec 2014 11:32:08 +0900
>> Ethan Zhao <ethan.zhao@oracle.com> wrote:
>>
>>> Oracle Sun X86 servers have dynamic power capping capability that works via
>>> ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
>>> enabled.
>>>
>>> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
>>> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
>>> Tested-by: Linda Knippers <linda.knippers@hp.com>
>> Acked-by: Kristen Carlson Accardi <kristen@linux.intel.com>
> Patch queued up for 3.19-rc1, thanks!
>
>>> ---
>>>    v2: fix break HP Proliant issue.
>>>    v3: expand the hardware vendor list.
>>>    v4: refine code.
>>>    v5v6: change enum PCC to PPC.
>>>
>>>   drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
>>>   1 file changed, 41 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
>>> index 27bb6d3..1bb62ca 100644
>>> --- a/drivers/cpufreq/intel_pstate.c
>>> +++ b/drivers/cpufreq/intel_pstate.c
>>> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>>>   	return true;
>>>   }
>>>   
>>> +static bool intel_pstate_has_acpi_ppc(void)
>>> +{
>>> +	int i;
>>> +
>>> +	for_each_possible_cpu(i) {
>>> +		struct acpi_processor *pr = per_cpu(processors, i);
>>> +
>>> +		if (!pr)
>>> +			continue;
>>> +		if (acpi_has_method(pr->handle, "_PPC"))
>>> +			return true;
>>> +	}
>>> +	return false;
>>> +}
>>> +
>>> +enum {
>>> +	PSS,
>>> +	PPC,
>>> +};
>>> +
>>>   struct hw_vendor_info {
>>>   	u16  valid;
>>>   	char oem_id[ACPI_OEM_ID_SIZE];
>>>   	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
>>> +	int  oem_pwr_table;
>>>   };
>>>   
>>>   /* Hardware vendor-specific info that has its own power management modes */
>>>   static struct hw_vendor_info vendor_info[] = {
>>> -	{1, "HP    ", "ProLiant"},
>>> +	{1, "HP    ", "ProLiant", PSS},
>>> +	{1, "ORACLE", "X4-2    ", PPC},
>>> +	{1, "ORACLE", "X4-2L   ", PPC},
>>> +	{1, "ORACLE", "X4-2B   ", PPC},
>>> +	{1, "ORACLE", "X3-2    ", PPC},
>>> +	{1, "ORACLE", "X3-2L   ", PPC},
>>> +	{1, "ORACLE", "X3-2B   ", PPC},
>>> +	{1, "ORACLE", "X4470M2 ", PPC},
>>> +	{1, "ORACLE", "X4270M3 ", PPC},
>>> +	{1, "ORACLE", "X4270M2 ", PPC},
>>> +	{1, "ORACLE", "X4170M2 ", PPC},
>>>   	{0, "", ""},
>>>   };
>>>   
>>> @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
>>>   
>>>   	for (v_info = vendor_info; v_info->valid; v_info++) {
>>>   		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
>>> -		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
>>> -		    intel_pstate_no_acpi_pss())
>>> -			return true;
>>> +			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
>>> +						ACPI_OEM_TABLE_ID_SIZE))
>>> +			switch (v_info->oem_pwr_table) {
>>> +			case PSS:
>>> +				return intel_pstate_no_acpi_pss();
>>> +			case PPC:
>>> +				return intel_pstate_has_acpi_ppc();
>>> +			}
>>>   	}
>>>   
>>>   	return false;
>>>   }
>>>   #else /* CONFIG_ACPI not enabled */
>>>   static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
>>> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>>>   #endif /* CONFIG_ACPI */
>>>   
>>>   static int __init intel_pstate_init(void)
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html


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

* Re: [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method
  2014-12-01  2:32 [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method Ethan Zhao
  2014-12-01 15:11 ` Dirk Brandewie
  2014-12-02 18:22 ` Kristen Carlson Accardi
@ 2014-12-04 23:33 ` Yasuaki Ishimatsu
  2 siblings, 0 replies; 8+ messages in thread
From: Yasuaki Ishimatsu @ 2014-12-04 23:33 UTC (permalink / raw)
  To: Ethan Zhao, dirk.j.brandewie, linda.knippers, viresh.kumar, rjw, corbet
  Cc: linux-doc, linux-kernel, linux-pm, ethan.kernel, Dirk Brandewie

(2014/12/01 11:32), Ethan Zhao wrote:
> Oracle Sun X86 servers have dynamic power capping capability that works via
> ACPI _PPC method etc, so skip loading this driver if Sun server has ACPI _PPC
> enabled.
> 
> Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
> Tested-by: Linda Knippers <linda.knippers@hp.com>
> ---
Looks good to me.

Reviewed-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>

Thanks,
Yasuaki Ishimatsu

>    v2: fix break HP Proliant issue.
>    v3: expand the hardware vendor list.
>    v4: refine code.
>    v5v6: change enum PCC to PPC.
> 
>   drivers/cpufreq/intel_pstate.c | 45 ++++++++++++++++++++++++++++++++++++++----
>   1 file changed, 41 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
> index 27bb6d3..1bb62ca 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -943,15 +943,46 @@ static bool intel_pstate_no_acpi_pss(void)
>   	return true;
>   }
>   
> +static bool intel_pstate_has_acpi_ppc(void)
> +{
> +	int i;
> +
> +	for_each_possible_cpu(i) {
> +		struct acpi_processor *pr = per_cpu(processors, i);
> +
> +		if (!pr)
> +			continue;
> +		if (acpi_has_method(pr->handle, "_PPC"))
> +			return true;
> +	}
> +	return false;
> +}
> +
> +enum {
> +	PSS,
> +	PPC,
> +};
> +
>   struct hw_vendor_info {
>   	u16  valid;
>   	char oem_id[ACPI_OEM_ID_SIZE];
>   	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
> +	int  oem_pwr_table;
>   };
>   
>   /* Hardware vendor-specific info that has its own power management modes */
>   static struct hw_vendor_info vendor_info[] = {
> -	{1, "HP    ", "ProLiant"},
> +	{1, "HP    ", "ProLiant", PSS},
> +	{1, "ORACLE", "X4-2    ", PPC},
> +	{1, "ORACLE", "X4-2L   ", PPC},
> +	{1, "ORACLE", "X4-2B   ", PPC},
> +	{1, "ORACLE", "X3-2    ", PPC},
> +	{1, "ORACLE", "X3-2L   ", PPC},
> +	{1, "ORACLE", "X3-2B   ", PPC},
> +	{1, "ORACLE", "X4470M2 ", PPC},
> +	{1, "ORACLE", "X4270M3 ", PPC},
> +	{1, "ORACLE", "X4270M2 ", PPC},
> +	{1, "ORACLE", "X4170M2 ", PPC},
>   	{0, "", ""},
>   };
>   
> @@ -966,15 +997,21 @@ static bool intel_pstate_platform_pwr_mgmt_exists(void)
>   
>   	for (v_info = vendor_info; v_info->valid; v_info++) {
>   		if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
> -		    !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
> -		    intel_pstate_no_acpi_pss())
> -			return true;
> +			!strncmp(hdr.oem_table_id, v_info->oem_table_id,
> +						ACPI_OEM_TABLE_ID_SIZE))
> +			switch (v_info->oem_pwr_table) {
> +			case PSS:
> +				return intel_pstate_no_acpi_pss();
> +			case PPC:
> +				return intel_pstate_has_acpi_ppc();
> +			}
>   	}
>   
>   	return false;
>   }
>   #else /* CONFIG_ACPI not enabled */
>   static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
> +static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
>   #endif /* CONFIG_ACPI */
>   
>   static int __init intel_pstate_init(void)
> 

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

end of thread, other threads:[~2014-12-04 23:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-01  2:32 [PATCH 1/2 V6] intel_pstate: skip this driver if Sun server has _PPC method Ethan Zhao
2014-12-01 15:11 ` Dirk Brandewie
2014-12-01 22:03   ` Linda Knippers
2014-12-02  1:02   ` ethan zhao
2014-12-02 18:22 ` Kristen Carlson Accardi
2014-12-03  2:19   ` Rafael J. Wysocki
2014-12-04  2:24     ` ethan zhao
2014-12-04 23:33 ` Yasuaki Ishimatsu

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).