All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
@ 2015-05-25 21:50 Ashwin Chaugule
  2015-05-26 21:22 ` Pandruvada, Srinivas
  2015-06-12 17:53 ` Ashwin Chaugule
  0 siblings, 2 replies; 7+ messages in thread
From: Ashwin Chaugule @ 2015-05-25 21:50 UTC (permalink / raw)
  To: rjw
  Cc: linux-pm, linaro-acpi, patches, jaswinder.singh, viresh.kumar,
	sudeep.holla, Ashwin Chaugule

The ACPI processor driver is currently tied too closely
to the ACPI C-states (CST), P-states (PSS) and other related
constructs for controlling CPU idle and CPU performance.

The newer ACPI specification (v5.1 onwards) introduces
alternative methods to CST and PSS. These new mechanisms
are described within each ACPI Processor object and so they
need to be scanned whenever a new Processor object is detected.
This patch introduces two new Kconfig symbols to allow for
finer configurability among the various options for controlling
CPU idle and performance states. There is no change in functionality
and these options are defaulted to enabled to maintain previous
behaviour.

The following patchwork introduces CPPC: A newer method of
controlling CPU performance. The OS is not expected to support CPPC
and PSS at runtime. So the kconfig option lets us make these two
mutually exclusive at compile time.

Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
---
 drivers/acpi/Kconfig            |  41 +++++++++++----
 drivers/acpi/Makefile           |   7 +--
 drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
 drivers/cpufreq/Kconfig         |   2 +-
 drivers/cpufreq/Kconfig.x86     |   2 +
 include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
 6 files changed, 187 insertions(+), 59 deletions(-)

diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index ab2cbb5..d98d304 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -163,23 +163,42 @@ config ACPI_FAN
 config ACPI_DOCK
 	bool "Dock"
 	help
-	  This driver supports ACPI-controlled docking stations and removable
-	  drive bays such as the IBM Ultrabay and the Dell Module Bay.
+	This driver supports ACPI-controlled docking stations and removable
+	drive bays such as the IBM Ultrabay and the Dell Module Bay.
+
+config ACPI_CST
+	bool "ACPI C states (CST) driver"
+	depends on ACPI_PROCESSOR
+	select CPU_IDLE
+	default y
+	help
+		This driver installs ACPI as the idle handler for Linux and uses
+		ACPI C2 and C3 processor states to save power on systems that
+		support it.
+
+config ACPI_PSS
+	bool "ACPI P States (PSS) driver"
+	depends on ACPI_PROCESSOR
+	select THERMAL
+	default y
+	help
+		This driver implements ACPI methods for controlling CPU performance
+		using PSS methods as described in the ACPI spec. It also enables support
+		for ACPI based performance throttling (TSS) and ACPI based thermal
+		monitoring. It is required by several flavors of cpufreq
+		performance-state drivers.
 
 config ACPI_PROCESSOR
 	tristate "Processor"
-	select THERMAL
-	select CPU_IDLE
-	depends on X86 || IA64
+	depends on X86 || IA64 || ARM64
 	default y
 	help
-	  This driver installs ACPI as the idle handler for Linux and uses
-	  ACPI C2 and C3 processor states to save power on systems that
-	  support it.  It is required by several flavors of cpufreq
-	  performance-state drivers.
+		This driver adds support for the ACPI Processor package. It is required
+		by several flavors of cpufreq performance-state, thermal, throttling and
+		idle drivers.
 
-	  To compile this driver as a module, choose M here:
-	  the module will be called processor.
+		To compile this driver as a module, choose M here:
+		the module will be called processor.
 
 config ACPI_IPMI
 	tristate "IPMI"
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index 8a063e2..30b2bfc 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -82,9 +82,10 @@ obj-$(CONFIG_ACPI_CUSTOM_METHOD)+= custom_method.o
 obj-$(CONFIG_ACPI_BGRT)		+= bgrt.o
 
 # processor has its own "processor." module_param namespace
-processor-y			:= processor_driver.o processor_throttling.o
-processor-y			+= processor_idle.o processor_thermal.o
-processor-$(CONFIG_CPU_FREQ)	+= processor_perflib.o
+processor-y			:= processor_driver.o
+processor-$(CONFIG_ACPI_CST)	+= processor_idle.o
+processor-$(CONFIG_ACPI_PSS)	+= processor_perflib.o	\
+	processor_throttling.o processor_thermal.o
 
 obj-$(CONFIG_ACPI_PROCESSOR_AGGREGATOR) += acpi_pad.o
 
diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
index d9f7158..f61c09b 100644
--- a/drivers/acpi/processor_driver.c
+++ b/drivers/acpi/processor_driver.c
@@ -163,34 +163,23 @@ static struct notifier_block __refdata acpi_cpu_notifier = {
 	    .notifier_call = acpi_cpu_soft_notify,
 };
 
-static int __acpi_processor_start(struct acpi_device *device)
+#ifdef CONFIG_ACPI_PSS
+static int acpi_pss_init(struct acpi_processor *pr, struct acpi_device *device)
 {
-	struct acpi_processor *pr = acpi_driver_data(device);
-	acpi_status status;
 	int result = 0;
 
-	if (!pr)
-		return -ENODEV;
-
-	if (pr->flags.need_hotplug_init)
-		return 0;
-
-#ifdef CONFIG_CPU_FREQ
 	acpi_processor_ppc_has_changed(pr, 0);
-#endif
+
 	acpi_processor_get_throttling_info(pr);
 
 	if (pr->flags.throttling)
 		pr->flags.limit = 1;
 
-	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
-		acpi_processor_power_init(pr);
-
 	pr->cdev = thermal_cooling_device_register("Processor", device,
 						   &processor_cooling_ops);
 	if (IS_ERR(pr->cdev)) {
 		result = PTR_ERR(pr->cdev);
-		goto err_power_exit;
+		return result;
 	}
 
 	dev_dbg(&device->dev, "registered as cooling_device%d\n",
@@ -204,6 +193,7 @@ static int __acpi_processor_start(struct acpi_device *device)
 			"Failed to create sysfs link 'thermal_cooling'\n");
 		goto err_thermal_unregister;
 	}
+
 	result = sysfs_create_link(&pr->cdev->device.kobj,
 				   &device->dev.kobj,
 				   "device");
@@ -213,17 +203,61 @@ static int __acpi_processor_start(struct acpi_device *device)
 		goto err_remove_sysfs_thermal;
 	}
 
-	status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
-					     acpi_processor_notify, device);
-	if (ACPI_SUCCESS(status))
-		return 0;
-
 	sysfs_remove_link(&pr->cdev->device.kobj, "device");
  err_remove_sysfs_thermal:
 	sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
  err_thermal_unregister:
 	thermal_cooling_device_unregister(pr->cdev);
- err_power_exit:
+
+	return result;
+}
+
+static void acpi_pss_exit(struct acpi_processor *pr,
+		struct acpi_device *device)
+{
+	if (pr->cdev) {
+		sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
+		sysfs_remove_link(&pr->cdev->device.kobj, "device");
+		thermal_cooling_device_unregister(pr->cdev);
+		pr->cdev = NULL;
+	}
+}
+#else
+static inline int acpi_pss_init(struct acpi_processor *pr,
+		struct acpi_device *device)
+{
+	return 0;
+}
+
+static inline void acpi_pss_exit(struct acpi_processor *pr,
+		struct acpi_device *device) {}
+#endif /* CONFIG_ACPI_PSS */
+
+static int __acpi_processor_start(struct acpi_device *device)
+{
+	struct acpi_processor *pr = acpi_driver_data(device);
+	acpi_status status;
+	int result = 0;
+
+	if (!pr)
+		return -ENODEV;
+
+	if (pr->flags.need_hotplug_init)
+		return 0;
+
+	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
+		acpi_processor_power_init(pr);
+
+	result = acpi_pss_init(pr, device);
+	if (result)
+		goto err_power_exit;
+
+	status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
+					     acpi_processor_notify, device);
+	if (ACPI_SUCCESS(status))
+		return 0;
+
+err_power_exit:
 	acpi_processor_power_exit(pr);
 	return result;
 }
@@ -252,15 +286,10 @@ static int acpi_processor_stop(struct device *dev)
 	pr = acpi_driver_data(device);
 	if (!pr)
 		return 0;
-
 	acpi_processor_power_exit(pr);
 
-	if (pr->cdev) {
-		sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
-		sysfs_remove_link(&pr->cdev->device.kobj, "device");
-		thermal_cooling_device_unregister(pr->cdev);
-		pr->cdev = NULL;
-	}
+	acpi_pss_exit(pr, device);
+
 	return 0;
 }
 
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
index 659879a..2f36e2a 100644
--- a/drivers/cpufreq/Kconfig
+++ b/drivers/cpufreq/Kconfig
@@ -223,7 +223,7 @@ endif
 if IA64
 config IA64_ACPI_CPUFREQ
 	tristate "ACPI Processor P-States driver"
-	depends on ACPI_PROCESSOR
+	depends on ACPI_PROCESSOR && ACPI_PSS && ACPI_CST
 	help
 	This driver adds a CPUFreq driver which utilizes the ACPI
 	Processor Performance States.
diff --git a/drivers/cpufreq/Kconfig.x86 b/drivers/cpufreq/Kconfig.x86
index c59bdcb..ee285a8 100644
--- a/drivers/cpufreq/Kconfig.x86
+++ b/drivers/cpufreq/Kconfig.x86
@@ -18,6 +18,7 @@ config X86_INTEL_PSTATE
 config X86_PCC_CPUFREQ
 	tristate "Processor Clocking Control interface driver"
 	depends on ACPI && ACPI_PROCESSOR
+	depends on ACPI_PSS && ACPI_CST
 	help
 	  This driver adds support for the PCC interface.
 
@@ -32,6 +33,7 @@ config X86_PCC_CPUFREQ
 config X86_ACPI_CPUFREQ
 	tristate "ACPI Processor P-States driver"
 	depends on ACPI_PROCESSOR
+	depends on ACPI_PSS && ACPI_CST
 	help
 	  This driver adds a CPUFreq driver which utilizes the ACPI
 	  Processor Performance States.
diff --git a/include/acpi/processor.h b/include/acpi/processor.h
index 4188a4d..659edd6 100644
--- a/include/acpi/processor.h
+++ b/include/acpi/processor.h
@@ -222,16 +222,6 @@ struct acpi_processor_errata {
 	} piix4;
 };
 
-extern int acpi_processor_preregister_performance(struct
-						  acpi_processor_performance
-						  __percpu *performance);
-
-extern int acpi_processor_register_performance(struct acpi_processor_performance
-					       *performance, unsigned int cpu);
-extern void acpi_processor_unregister_performance(struct
-						  acpi_processor_performance
-						  *performance,
-						  unsigned int cpu);
 
 /* note: this locks both the calling module and the processor module
          if a _PPC object exists, rmmod is disallowed then */
@@ -275,20 +265,55 @@ static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
 
 /* in processor_perflib.c */
 
-#ifdef CONFIG_CPU_FREQ
+#ifdef CONFIG_ACPI_PSS
+extern int acpi_processor_preregister_performance(struct
+						  acpi_processor_performance
+						  __percpu *performance);
+
+extern int acpi_processor_register_performance(struct acpi_processor_performance
+					       *performance, unsigned int cpu);
+extern void acpi_processor_unregister_performance(struct
+						  acpi_processor_performance
+						  *performance,
+						  unsigned int cpu);
 void acpi_processor_ppc_init(void);
 void acpi_processor_ppc_exit(void);
 int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag);
 extern int acpi_processor_get_bios_limit(int cpu, unsigned int *limit);
 #else
+static inline int acpi_processor_preregister_performance(struct
+		acpi_processor_performance
+		__percpu *performance)
+{
+	return -ENODEV;
+
+}
+
+static inline int acpi_processor_register_performance(struct acpi_processor_performance
+		*performance, unsigned int cpu)
+{
+	return -ENODEV;
+
+}
+
+static inline void acpi_processor_unregister_performance(struct
+		acpi_processor_performance
+		*performance,
+		unsigned int cpu)
+{
+	return;
+}
+
 static inline void acpi_processor_ppc_init(void)
 {
 	return;
 }
+
 static inline void acpi_processor_ppc_exit(void)
 {
 	return;
 }
+
 static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr,
 								int event_flag)
 {
@@ -302,12 +327,12 @@ static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr,
 	}
 	return 0;
 }
+
 static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit)
 {
 	return -ENODEV;
 }
-
-#endif				/* CONFIG_CPU_FREQ */
+#endif				/* CONFIG_ACPI_PSS */
 
 /* in processor_core.c */
 phys_cpuid_t acpi_get_phys_id(acpi_handle, int type, u32 acpi_id);
@@ -318,6 +343,7 @@ int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id);
 void acpi_processor_set_pdc(acpi_handle handle);
 
 /* in processor_throttling.c */
+#ifdef CONFIG_ACPI_PSS
 int acpi_processor_tstate_has_changed(struct acpi_processor *pr);
 int acpi_processor_get_throttling_info(struct acpi_processor *pr);
 extern int acpi_processor_set_throttling(struct acpi_processor *pr,
@@ -330,12 +356,63 @@ extern void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
 			unsigned long action);
 extern const struct file_operations acpi_processor_throttling_fops;
 extern void acpi_processor_throttling_init(void);
+#else
+static inline int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
+{
+	return 0;
+}
+
+static inline int acpi_processor_get_throttling_info(struct acpi_processor *pr)
+{
+	return -ENODEV;
+}
+
+static inline int acpi_processor_set_throttling(struct acpi_processor *pr,
+					 int state, bool force)
+{
+	return -ENODEV;
+}
+
+static inline void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
+			unsigned long action)
+{
+	return;
+}
+
+static inline void acpi_processor_throttling_init(void)
+{
+	return;
+}
+#endif	/* CONFIG_ACPI_PSS */
+
 /* in processor_idle.c */
+extern struct cpuidle_driver acpi_idle_driver;
+#ifdef CONFIG_ACPI_CST
 int acpi_processor_power_init(struct acpi_processor *pr);
 int acpi_processor_power_exit(struct acpi_processor *pr);
 int acpi_processor_cst_has_changed(struct acpi_processor *pr);
 int acpi_processor_hotplug(struct acpi_processor *pr);
-extern struct cpuidle_driver acpi_idle_driver;
+#else
+static inline int acpi_processor_power_init(struct acpi_processor *pr)
+{
+	return -ENODEV;
+}
+
+static inline int acpi_processor_power_exit(struct acpi_processor *pr)
+{
+	return -ENODEV;
+}
+
+static inline int acpi_processor_cst_has_changed(struct acpi_processor *pr)
+{
+	return -ENODEV;
+}
+
+static inline int acpi_processor_hotplug(struct acpi_processor *pr)
+{
+	return -ENODEV;
+}
+#endif	/* CONFIG_ACPI_CST */
 
 #ifdef CONFIG_PM_SLEEP
 void acpi_processor_syscore_init(void);
@@ -347,8 +424,8 @@ static inline void acpi_processor_syscore_exit(void) {}
 
 /* in processor_thermal.c */
 int acpi_processor_get_limit_info(struct acpi_processor *pr);
+#ifdef CONFIG_ACPI_PSS
 extern const struct thermal_cooling_device_ops processor_cooling_ops;
-#ifdef CONFIG_CPU_FREQ
 void acpi_thermal_cpufreq_init(void);
 void acpi_thermal_cpufreq_exit(void);
 #else
@@ -360,6 +437,6 @@ static inline void acpi_thermal_cpufreq_exit(void)
 {
 	return;
 }
-#endif
+#endif	/* CONFIG_ACPI_PSS */
 
 #endif
-- 
1.9.1


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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-05-25 21:50 [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible Ashwin Chaugule
@ 2015-05-26 21:22 ` Pandruvada, Srinivas
  2015-05-27 14:05   ` Ashwin Chaugule
  2015-06-12 17:53 ` Ashwin Chaugule
  1 sibling, 1 reply; 7+ messages in thread
From: Pandruvada, Srinivas @ 2015-05-26 21:22 UTC (permalink / raw)
  To: ashwin.chaugule
  Cc: patches, viresh.kumar, linaro-acpi, linux-pm, rjw, sudeep.holla,
	jaswinder.singh

On Mon, 2015-05-25 at 17:50 -0400, Ashwin Chaugule wrote:
> The ACPI processor driver is currently tied too closely
> to the ACPI C-states (CST), P-states (PSS) and other related
> constructs for controlling CPU idle and CPU performance.
> 
> The newer ACPI specification (v5.1 onwards) introduces
> alternative methods to CST and PSS. These new mechanisms
> are described within each ACPI Processor object and so they
> need to be scanned whenever a new Processor object is detected.
> This patch introduces two new Kconfig symbols to allow for
> finer configurability among the various options for controlling
> CPU idle and performance states. There is no change in functionality
> and these options are defaulted to enabled to maintain previous
> behaviour.
> 
> The following patchwork introduces CPPC: A newer method of
> controlling CPU performance. The OS is not expected to support CPPC
> and PSS at runtime. So the kconfig option lets us make these two
> mutually exclusive at compile time.
> 
> Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
> ---
>  drivers/acpi/Kconfig            |  41 +++++++++++----
>  drivers/acpi/Makefile           |   7 +--
>  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
>  drivers/cpufreq/Kconfig         |   2 +-
>  drivers/cpufreq/Kconfig.x86     |   2 +
>  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
>  6 files changed, 187 insertions(+), 59 deletions(-)
> 
> diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
> index ab2cbb5..d98d304 100644
> --- a/drivers/acpi/Kconfig
> +++ b/drivers/acpi/Kconfig
> @@ -163,23 +163,42 @@ config ACPI_FAN
>  config ACPI_DOCK
>  	bool "Dock"
>  	help
> -	  This driver supports ACPI-controlled docking stations and removable
> -	  drive bays such as the IBM Ultrabay and the Dell Module Bay.
> +	This driver supports ACPI-controlled docking stations and removable
> +	drive bays such as the IBM Ultrabay and the Dell Module Bay.
> +
To be consistent align help text to letter "l" of help.
Also checkpatch errors in this file.
> +config ACPI_CST
> +	bool "ACPI C states (CST) driver"
> +	depends on ACPI_PROCESSOR
> +	select CPU_IDLE
> +	default y
> +	help
> +		This driver installs ACPI as the idle handler for Linux and uses
> +		ACPI C2 and C3 processor states to save power on systems that
> +		support it.
> +
Also here tabs are used for help text alignment
> +config ACPI_PSS
> +	bool "ACPI P States (PSS) driver"
> +	depends on ACPI_PROCESSOR
> +	select THERMAL
> +	default y
> +	help
> +		This driver implements ACPI methods for controlling CPU performance
> +		using PSS methods as described in the ACPI spec. It also enables support
> +		for ACPI based performance throttling (TSS) and ACPI based thermal
> +		monitoring. It is required by several flavors of cpufreq
> +		performance-state drivers.
>  
>  config ACPI_PROCESSOR
>  	tristate "Processor"
> -	select THERMAL
> -	select CPU_IDLE
> -	depends on X86 || IA64
> +	depends on X86 || IA64 || ARM64
>  	default y
>  	help
> -	  This driver installs ACPI as the idle handler for Linux and uses
> -	  ACPI C2 and C3 processor states to save power on systems that
> -	  support it.  It is required by several flavors of cpufreq
> -	  performance-state drivers.
> +		This driver adds support for the ACPI Processor package. It is required
> +		by several flavors of cpufreq performance-state, thermal, throttling and
> +		idle drivers.
>  
> -	  To compile this driver as a module, choose M here:
> -	  the module will be called processor.
> +		To compile this driver as a module, choose M here:
> +		the module will be called processor.
>  
>  config ACPI_IPMI
>  	tristate "IPMI"
> diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
> index 8a063e2..30b2bfc 100644
> --- a/drivers/acpi/Makefile
> +++ b/drivers/acpi/Makefile
> @@ -82,9 +82,10 @@ obj-$(CONFIG_ACPI_CUSTOM_METHOD)+= custom_method.o
>  obj-$(CONFIG_ACPI_BGRT)		+= bgrt.o
>  
>  # processor has its own "processor." module_param namespace
> -processor-y			:= processor_driver.o processor_throttling.o
> -processor-y			+= processor_idle.o processor_thermal.o
> -processor-$(CONFIG_CPU_FREQ)	+= processor_perflib.o
> +processor-y			:= processor_driver.o
> +processor-$(CONFIG_ACPI_CST)	+= processor_idle.o
> +processor-$(CONFIG_ACPI_PSS)	+= processor_perflib.o	\
> +	processor_throttling.o processor_thermal.o
>  
>  obj-$(CONFIG_ACPI_PROCESSOR_AGGREGATOR) += acpi_pad.o
>  
> diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
> index d9f7158..f61c09b 100644
> --- a/drivers/acpi/processor_driver.c
> +++ b/drivers/acpi/processor_driver.c
> @@ -163,34 +163,23 @@ static struct notifier_block __refdata acpi_cpu_notifier = {
>  	    .notifier_call = acpi_cpu_soft_notify,
>  };
>  
> -static int __acpi_processor_start(struct acpi_device *device)
> +#ifdef CONFIG_ACPI_PSS
> +static int acpi_pss_init(struct acpi_processor *pr, struct acpi_device *device)
>  {
This name sounds to me that it it initializing something to do with _PSS
only. But this function does more than that. Like handling ppc change
and also thermal cdev register. Can we have some better name?

> -	struct acpi_processor *pr = acpi_driver_data(device);
> -	acpi_status status;
>  	int result = 0;
>  
> -	if (!pr)
> -		return -ENODEV;
> -
> -	if (pr->flags.need_hotplug_init)
> -		return 0;
> -
> -#ifdef CONFIG_CPU_FREQ
>  	acpi_processor_ppc_has_changed(pr, 0);
> -#endif
> +
>  	acpi_processor_get_throttling_info(pr);
When CPPC is present, you don't need support for _PTC, _TSS and _TPC?

>  
>  	if (pr->flags.throttling)
>  		pr->flags.limit = 1;
>  
> -	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
> -		acpi_processor_power_init(pr);
> -
>  	pr->cdev = thermal_cooling_device_register("Processor", device,
>  						   &processor_cooling_ops);
>  	if (IS_ERR(pr->cdev)) {
>  		result = PTR_ERR(pr->cdev);
> -		goto err_power_exit;
> +		return result;
>  	}
Don't you need this thermal_ call for when controlling via CPPC?
I think you should move to common start function.

I feel that all the old function did was relevant to CPPC support also.
except PPC change. So you may just need to add call to
acpi_cppc_processor_probe() for CPPC support.

Thanks,
Srinivas

>  
>  	dev_dbg(&device->dev, "registered as cooling_device%d\n",
> @@ -204,6 +193,7 @@ static int __acpi_processor_start(struct acpi_device *device)
>  			"Failed to create sysfs link 'thermal_cooling'\n");
>  		goto err_thermal_unregister;
>  	}
> +
>  	result = sysfs_create_link(&pr->cdev->device.kobj,
>  				   &device->dev.kobj,
>  				   "device");
> @@ -213,17 +203,61 @@ static int __acpi_processor_start(struct acpi_device *device)
>  		goto err_remove_sysfs_thermal;
>  	}
>  
> -	status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
> -					     acpi_processor_notify, device);
> -	if (ACPI_SUCCESS(status))
> -		return 0;
> -
>  	sysfs_remove_link(&pr->cdev->device.kobj, "device");
>   err_remove_sysfs_thermal:
>  	sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
>   err_thermal_unregister:
>  	thermal_cooling_device_unregister(pr->cdev);
> - err_power_exit:
> +
> +	return result;
> +}
> +
> +static void acpi_pss_exit(struct acpi_processor *pr,
> +		struct acpi_device *device)
> +{
> +	if (pr->cdev) {
> +		sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
> +		sysfs_remove_link(&pr->cdev->device.kobj, "device");
> +		thermal_cooling_device_unregister(pr->cdev);
> +		pr->cdev = NULL;
> +	}
> +}
> +#else
> +static inline int acpi_pss_init(struct acpi_processor *pr,
> +		struct acpi_device *device)
> +{
> +	return 0;
> +}
> +
> +static inline void acpi_pss_exit(struct acpi_processor *pr,
> +		struct acpi_device *device) {}
> +#endif /* CONFIG_ACPI_PSS */
> +
> +static int __acpi_processor_start(struct acpi_device *device)
> +{
> +	struct acpi_processor *pr = acpi_driver_data(device);
> +	acpi_status status;
> +	int result = 0;
> +
> +	if (!pr)
> +		return -ENODEV;
> +
> +	if (pr->flags.need_hotplug_init)
> +		return 0;
> +
> +	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
> +		acpi_processor_power_init(pr);
> +
> +	result = acpi_pss_init(pr, device);
> +	if (result)
> +		goto err_power_exit;
> +
> +	status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
> +					     acpi_processor_notify, device);
> +	if (ACPI_SUCCESS(status))
> +		return 0;
> +
> +err_power_exit:
>  	acpi_processor_power_exit(pr);
>  	return result;
>  }
> @@ -252,15 +286,10 @@ static int acpi_processor_stop(struct device *dev)
>  	pr = acpi_driver_data(device);
>  	if (!pr)
>  		return 0;
> -
>  	acpi_processor_power_exit(pr);
>  
> -	if (pr->cdev) {
> -		sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
> -		sysfs_remove_link(&pr->cdev->device.kobj, "device");
> -		thermal_cooling_device_unregister(pr->cdev);
> -		pr->cdev = NULL;
> -	}
> +	acpi_pss_exit(pr, device);
> +
>  	return 0;
>  }
>  
> diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
> index 659879a..2f36e2a 100644
> --- a/drivers/cpufreq/Kconfig
> +++ b/drivers/cpufreq/Kconfig
> @@ -223,7 +223,7 @@ endif
>  if IA64
>  config IA64_ACPI_CPUFREQ
>  	tristate "ACPI Processor P-States driver"
> -	depends on ACPI_PROCESSOR
> +	depends on ACPI_PROCESSOR && ACPI_PSS && ACPI_CST
>  	help
>  	This driver adds a CPUFreq driver which utilizes the ACPI
>  	Processor Performance States.
> diff --git a/drivers/cpufreq/Kconfig.x86 b/drivers/cpufreq/Kconfig.x86
> index c59bdcb..ee285a8 100644
> --- a/drivers/cpufreq/Kconfig.x86
> +++ b/drivers/cpufreq/Kconfig.x86
> @@ -18,6 +18,7 @@ config X86_INTEL_PSTATE
>  config X86_PCC_CPUFREQ
>  	tristate "Processor Clocking Control interface driver"
>  	depends on ACPI && ACPI_PROCESSOR
> +	depends on ACPI_PSS && ACPI_CST
>  	help
>  	  This driver adds support for the PCC interface.
>  
> @@ -32,6 +33,7 @@ config X86_PCC_CPUFREQ
>  config X86_ACPI_CPUFREQ
>  	tristate "ACPI Processor P-States driver"
>  	depends on ACPI_PROCESSOR
> +	depends on ACPI_PSS && ACPI_CST
>  	help
>  	  This driver adds a CPUFreq driver which utilizes the ACPI
>  	  Processor Performance States.
> diff --git a/include/acpi/processor.h b/include/acpi/processor.h
> index 4188a4d..659edd6 100644
> --- a/include/acpi/processor.h
> +++ b/include/acpi/processor.h
> @@ -222,16 +222,6 @@ struct acpi_processor_errata {
>  	} piix4;
>  };
>  
> -extern int acpi_processor_preregister_performance(struct
> -						  acpi_processor_performance
> -						  __percpu *performance);
> -
> -extern int acpi_processor_register_performance(struct acpi_processor_performance
> -					       *performance, unsigned int cpu);
> -extern void acpi_processor_unregister_performance(struct
> -						  acpi_processor_performance
> -						  *performance,
> -						  unsigned int cpu);
>  
>  /* note: this locks both the calling module and the processor module
>           if a _PPC object exists, rmmod is disallowed then */
> @@ -275,20 +265,55 @@ static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
>  
>  /* in processor_perflib.c */
>  
> -#ifdef CONFIG_CPU_FREQ
> +#ifdef CONFIG_ACPI_PSS
> +extern int acpi_processor_preregister_performance(struct
> +						  acpi_processor_performance
> +						  __percpu *performance);
> +
> +extern int acpi_processor_register_performance(struct acpi_processor_performance
> +					       *performance, unsigned int cpu);
> +extern void acpi_processor_unregister_performance(struct
> +						  acpi_processor_performance
> +						  *performance,
> +						  unsigned int cpu);
>  void acpi_processor_ppc_init(void);
>  void acpi_processor_ppc_exit(void);
>  int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag);
>  extern int acpi_processor_get_bios_limit(int cpu, unsigned int *limit);
>  #else
> +static inline int acpi_processor_preregister_performance(struct
> +		acpi_processor_performance
> +		__percpu *performance)
> +{
> +	return -ENODEV;
> +
> +}
> +
> +static inline int acpi_processor_register_performance(struct acpi_processor_performance
> +		*performance, unsigned int cpu)
> +{
> +	return -ENODEV;
> +
> +}
> +
> +static inline void acpi_processor_unregister_performance(struct
> +		acpi_processor_performance
> +		*performance,
> +		unsigned int cpu)
> +{
> +	return;
> +}
> +
>  static inline void acpi_processor_ppc_init(void)
>  {
>  	return;
>  }
> +
>  static inline void acpi_processor_ppc_exit(void)
>  {
>  	return;
>  }
> +
>  static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr,
>  								int event_flag)
>  {
> @@ -302,12 +327,12 @@ static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr,
>  	}
>  	return 0;
>  }
> +
>  static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit)
>  {
>  	return -ENODEV;
>  }
> -
> -#endif				/* CONFIG_CPU_FREQ */
> +#endif				/* CONFIG_ACPI_PSS */
>  
>  /* in processor_core.c */
>  phys_cpuid_t acpi_get_phys_id(acpi_handle, int type, u32 acpi_id);
> @@ -318,6 +343,7 @@ int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id);
>  void acpi_processor_set_pdc(acpi_handle handle);
>  
>  /* in processor_throttling.c */
> +#ifdef CONFIG_ACPI_PSS
>  int acpi_processor_tstate_has_changed(struct acpi_processor *pr);
>  int acpi_processor_get_throttling_info(struct acpi_processor *pr);
>  extern int acpi_processor_set_throttling(struct acpi_processor *pr,
> @@ -330,12 +356,63 @@ extern void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
>  			unsigned long action);
>  extern const struct file_operations acpi_processor_throttling_fops;
>  extern void acpi_processor_throttling_init(void);
> +#else
> +static inline int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
> +{
> +	return 0;
> +}
> +
> +static inline int acpi_processor_get_throttling_info(struct acpi_processor *pr)
> +{
> +	return -ENODEV;
> +}
> +
> +static inline int acpi_processor_set_throttling(struct acpi_processor *pr,
> +					 int state, bool force)
> +{
> +	return -ENODEV;
> +}
> +
> +static inline void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
> +			unsigned long action)
> +{
> +	return;
> +}
> +
> +static inline void acpi_processor_throttling_init(void)
> +{
> +	return;
> +}
> +#endif	/* CONFIG_ACPI_PSS */
> +
>  /* in processor_idle.c */
> +extern struct cpuidle_driver acpi_idle_driver;
> +#ifdef CONFIG_ACPI_CST
>  int acpi_processor_power_init(struct acpi_processor *pr);
>  int acpi_processor_power_exit(struct acpi_processor *pr);
>  int acpi_processor_cst_has_changed(struct acpi_processor *pr);
>  int acpi_processor_hotplug(struct acpi_processor *pr);
> -extern struct cpuidle_driver acpi_idle_driver;
> +#else
> +static inline int acpi_processor_power_init(struct acpi_processor *pr)
> +{
> +	return -ENODEV;
> +}
> +
> +static inline int acpi_processor_power_exit(struct acpi_processor *pr)
> +{
> +	return -ENODEV;
> +}
> +
> +static inline int acpi_processor_cst_has_changed(struct acpi_processor *pr)
> +{
> +	return -ENODEV;
> +}
> +
> +static inline int acpi_processor_hotplug(struct acpi_processor *pr)
> +{
> +	return -ENODEV;
> +}
> +#endif	/* CONFIG_ACPI_CST */
>  
>  #ifdef CONFIG_PM_SLEEP
>  void acpi_processor_syscore_init(void);
> @@ -347,8 +424,8 @@ static inline void acpi_processor_syscore_exit(void) {}
>  
>  /* in processor_thermal.c */
>  int acpi_processor_get_limit_info(struct acpi_processor *pr);
> +#ifdef CONFIG_ACPI_PSS
>  extern const struct thermal_cooling_device_ops processor_cooling_ops;
> -#ifdef CONFIG_CPU_FREQ
>  void acpi_thermal_cpufreq_init(void);
>  void acpi_thermal_cpufreq_exit(void);
>  #else
> @@ -360,6 +437,6 @@ static inline void acpi_thermal_cpufreq_exit(void)
>  {
>  	return;
>  }
> -#endif
> +#endif	/* CONFIG_ACPI_PSS */
>  
>  #endif


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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-05-26 21:22 ` Pandruvada, Srinivas
@ 2015-05-27 14:05   ` Ashwin Chaugule
  2015-05-27 15:22     ` Pandruvada, Srinivas
  0 siblings, 1 reply; 7+ messages in thread
From: Ashwin Chaugule @ 2015-05-27 14:05 UTC (permalink / raw)
  To: Pandruvada, Srinivas
  Cc: patches, viresh.kumar, linaro-acpi, linux-pm, rjw, sudeep.holla,
	jaswinder.singh

On 26 May 2015 at 17:22, Pandruvada, Srinivas
<srinivas.pandruvada@intel.com> wrote:
> On Mon, 2015-05-25 at 17:50 -0400, Ashwin Chaugule wrote:
>> The ACPI processor driver is currently tied too closely
>> to the ACPI C-states (CST), P-states (PSS) and other related
>> constructs for controlling CPU idle and CPU performance.
>>
>> The newer ACPI specification (v5.1 onwards) introduces
>> alternative methods to CST and PSS. These new mechanisms
>> are described within each ACPI Processor object and so they
>> need to be scanned whenever a new Processor object is detected.
>> This patch introduces two new Kconfig symbols to allow for
>> finer configurability among the various options for controlling
>> CPU idle and performance states. There is no change in functionality
>> and these options are defaulted to enabled to maintain previous
>> behaviour.
>>
>> The following patchwork introduces CPPC: A newer method of
>> controlling CPU performance. The OS is not expected to support CPPC
>> and PSS at runtime. So the kconfig option lets us make these two
>> mutually exclusive at compile time.
>>
>> Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
>> ---
>>  drivers/acpi/Kconfig            |  41 +++++++++++----
>>  drivers/acpi/Makefile           |   7 +--
>>  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
>>  drivers/cpufreq/Kconfig         |   2 +-
>>  drivers/cpufreq/Kconfig.x86     |   2 +
>>  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
>>  6 files changed, 187 insertions(+), 59 deletions(-)
>>
>> diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
>> index ab2cbb5..d98d304 100644
>> --- a/drivers/acpi/Kconfig
>> +++ b/drivers/acpi/Kconfig
>> @@ -163,23 +163,42 @@ config ACPI_FAN
>>  config ACPI_DOCK
>>       bool "Dock"
>>       help
>> -       This driver supports ACPI-controlled docking stations and removable
>> -       drive bays such as the IBM Ultrabay and the Dell Module Bay.
>> +     This driver supports ACPI-controlled docking stations and removable
>> +     drive bays such as the IBM Ultrabay and the Dell Module Bay.
>> +
> To be consistent align help text to letter "l" of help.

Ok.

> Also checkpatch errors in this file.

Arg. I ran checkpatch first, then made more mods and forgot to run it
again. Will make sure its done before sending out the final version.

>> -static int __acpi_processor_start(struct acpi_device *device)
>> +#ifdef CONFIG_ACPI_PSS
>> +static int acpi_pss_init(struct acpi_processor *pr, struct acpi_device *device)
>>  {
> This name sounds to me that it it initializing something to do with _PSS
> only. But this function does more than that. Like handling ppc change
> and also thermal cdev register. Can we have some better name?
>

True. I couldn't really come up with anything better. From the way
this thing was structured originally, everything seems linked to PSS
one way or another. (including CSS based idle).

How about acpi_legacy_perf_init() ?

>> -     struct acpi_processor *pr = acpi_driver_data(device);
>> -     acpi_status status;
>>       int result = 0;
>>
>> -     if (!pr)
>> -             return -ENODEV;
>> -
>> -     if (pr->flags.need_hotplug_init)
>> -             return 0;
>> -
>> -#ifdef CONFIG_CPU_FREQ
>>       acpi_processor_ppc_has_changed(pr, 0);
>> -#endif
>> +
>>       acpi_processor_get_throttling_info(pr);
> When CPPC is present, you don't need support for _PTC, _TSS and _TPC?

Nope.

----8<----
8.4.7.1.10 Relationship to other ACPI-defined Objects and Notifications
If _CPC is present, its use supersedes the use of the following
existing ACPI objects:
• The P_BLK P_CNT register
• _PTC
• _TSS
• _TPC
• _TSD
• _TDL
• _PCT
• _PSS
• _PPC
• _PDL
• Notify 0x80 on the processor device
• Notify 0x82 on the processor device
The _PSD object may be used to specify domain dependencies between
processors. On a system
with heterogeneous processors, all processors within a single domain
must have the same
performance capabilities.

----8<----

>
>>
>>       if (pr->flags.throttling)
>>               pr->flags.limit = 1;
>>
>> -     if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
>> -             acpi_processor_power_init(pr);
>> -
>>       pr->cdev = thermal_cooling_device_register("Processor", device,
>>                                                  &processor_cooling_ops);
>>       if (IS_ERR(pr->cdev)) {
>>               result = PTR_ERR(pr->cdev);
>> -             goto err_power_exit;
>> +             return result;
>>       }
> Don't you need this thermal_ call for when controlling via CPPC?
> I think you should move to common start function.

I'd prefer to keep thermal stuff outside of CPPC for now. Everyone
I've discussed with in the ARM64 server space plans to handle thermal
independently on a remote processor. If that changes, then we'll come
back to this. Anyway, as it is today, the thermal stuff in ACPI
depends on TSS, which will need changes for CPPC.

>
> I feel that all the old function did was relevant to CPPC support also.
> except PPC change. So you may just need to add call to
> acpi_cppc_processor_probe() for CPPC support.
>

I hope the above explains this.

Thanks,
Ashwin.

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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-05-27 14:05   ` Ashwin Chaugule
@ 2015-05-27 15:22     ` Pandruvada, Srinivas
  0 siblings, 0 replies; 7+ messages in thread
From: Pandruvada, Srinivas @ 2015-05-27 15:22 UTC (permalink / raw)
  To: ashwin.chaugule
  Cc: patches, viresh.kumar, linaro-acpi, linux-pm, rjw, sudeep.holla,
	jaswinder.singh

On Wed, 2015-05-27 at 10:05 -0400, Ashwin Chaugule wrote:
> On 26 May 2015 at 17:22, Pandruvada, Srinivas
> <srinivas.pandruvada@intel.com> wrote:
> > On Mon, 2015-05-25 at 17:50 -0400, Ashwin Chaugule wrote:
> >> The ACPI processor driver is currently tied too closely
> >> to the ACPI C-states (CST), P-states (PSS) and other related
> >> constructs for controlling CPU idle and CPU performance.
> >>
> >> The newer ACPI specification (v5.1 onwards) introduces
> >> alternative methods to CST and PSS. These new mechanisms
> >> are described within each ACPI Processor object and so they
> >> need to be scanned whenever a new Processor object is detected.
> >> This patch introduces two new Kconfig symbols to allow for
> >> finer configurability among the various options for controlling
> >> CPU idle and performance states. There is no change in functionality
> >> and these options are defaulted to enabled to maintain previous
> >> behaviour.
> >>
> >> The following patchwork introduces CPPC: A newer method of
> >> controlling CPU performance. The OS is not expected to support CPPC
> >> and PSS at runtime. So the kconfig option lets us make these two
> >> mutually exclusive at compile time.
> >>
> >> Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
> >> ---
> >>  drivers/acpi/Kconfig            |  41 +++++++++++----
> >>  drivers/acpi/Makefile           |   7 +--
> >>  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
> >>  drivers/cpufreq/Kconfig         |   2 +-
> >>  drivers/cpufreq/Kconfig.x86     |   2 +
> >>  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
> >>  6 files changed, 187 insertions(+), 59 deletions(-)
> >>
> >> diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
> >> index ab2cbb5..d98d304 100644
> >> --- a/drivers/acpi/Kconfig
> >> +++ b/drivers/acpi/Kconfig
> >> @@ -163,23 +163,42 @@ config ACPI_FAN
> >>  config ACPI_DOCK
> >>       bool "Dock"
> >>       help
> >> -       This driver supports ACPI-controlled docking stations and removable
> >> -       drive bays such as the IBM Ultrabay and the Dell Module Bay.
> >> +     This driver supports ACPI-controlled docking stations and removable
> >> +     drive bays such as the IBM Ultrabay and the Dell Module Bay.
> >> +
> > To be consistent align help text to letter "l" of help.
> 
> Ok.
> 
> > Also checkpatch errors in this file.
> 
> Arg. I ran checkpatch first, then made more mods and forgot to run it
> again. Will make sure its done before sending out the final version.
> 
> >> -static int __acpi_processor_start(struct acpi_device *device)
> >> +#ifdef CONFIG_ACPI_PSS
> >> +static int acpi_pss_init(struct acpi_processor *pr, struct acpi_device *device)
> >>  {
> > This name sounds to me that it it initializing something to do with _PSS
> > only. But this function does more than that. Like handling ppc change
> > and also thermal cdev register. Can we have some better name?
> >
> 
> True. I couldn't really come up with anything better. From the way
> this thing was structured originally, everything seems linked to PSS
> one way or another. (including CSS based idle).
> 
> How about acpi_legacy_perf_init() ?
It is not really legacy here. If you like acpi_pss_perf_init()..
> 
> >> -     struct acpi_processor *pr = acpi_driver_data(device);
> >> -     acpi_status status;
> >>       int result = 0;
> >>
> >> -     if (!pr)
> >> -             return -ENODEV;
> >> -
> >> -     if (pr->flags.need_hotplug_init)
> >> -             return 0;
> >> -
> >> -#ifdef CONFIG_CPU_FREQ
> >>       acpi_processor_ppc_has_changed(pr, 0);
> >> -#endif
> >> +
> >>       acpi_processor_get_throttling_info(pr);
> > When CPPC is present, you don't need support for _PTC, _TSS and _TPC?
> 
> Nope.
> 
> ----8<----
> 8.4.7.1.10 Relationship to other ACPI-defined Objects and Notifications
> If _CPC is present, its use supersedes the use of the following
> existing ACPI objects:
> • The P_BLK P_CNT register
> • _PTC
> • _TSS
> • _TPC
> • _TSD
> • _TDL
> • _PCT
> • _PSS
> • _PPC
> • _PDL
> • Notify 0x80 on the processor device
> • Notify 0x82 on the processor device
> The _PSD object may be used to specify domain dependencies between
> processors. On a system
> with heterogeneous processors, all processors within a single domain
> must have the same
> performance capabilities.
> 
> ----8<----
> 
> >
> >>
> >>       if (pr->flags.throttling)
> >>               pr->flags.limit = 1;
> >>
> >> -     if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
> >> -             acpi_processor_power_init(pr);
> >> -
> >>       pr->cdev = thermal_cooling_device_register("Processor", device,
> >>                                                  &processor_cooling_ops);
> >>       if (IS_ERR(pr->cdev)) {
> >>               result = PTR_ERR(pr->cdev);
> >> -             goto err_power_exit;
> >> +             return result;
> >>       }
> > Don't you need this thermal_ call for when controlling via CPPC?
> > I think you should move to common start function.
> 
> I'd prefer to keep thermal stuff outside of CPPC for now. Everyone
> I've discussed with in the ARM64 server space plans to handle thermal
> independently on a remote processor. If that changes, then we'll come
> back to this. Anyway, as it is today, the thermal stuff in ACPI
> depends on TSS, which will need changes for CPPC.
On x86 the cooling device register contain parts, one depends on TSS and
(state 4-10) and 0 - 3 are just performance states, which uses cpufreq
calls to irrespective of underlying mechanism (they translate to
whatever mechanism like Intel P State or ACPI cpufreq or anything else).
But here since thermal cooling device is not desired, so I am fine.
> 
> >
> > I feel that all the old function did was relevant to CPPC support also.
> > except PPC change. So you may just need to add call to
> > acpi_cppc_processor_probe() for CPPC support.
> >
> 
> I hope the above explains this.
> 
> Thanks,
> Ashwin.


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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-05-25 21:50 [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible Ashwin Chaugule
  2015-05-26 21:22 ` Pandruvada, Srinivas
@ 2015-06-12 17:53 ` Ashwin Chaugule
  2015-06-13  1:06   ` Rafael J. Wysocki
  1 sibling, 1 reply; 7+ messages in thread
From: Ashwin Chaugule @ 2015-06-12 17:53 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: linux-pm, Linaro ACPI Mailman List, Patch Tracking,
	Jaswinder Singh, Viresh Kumar, Sudeep Holla, Ashwin Chaugule

On 25 May 2015 at 17:50, Ashwin Chaugule <ashwin.chaugule@linaro.org> wrote:
> The ACPI processor driver is currently tied too closely
> to the ACPI C-states (CST), P-states (PSS) and other related
> constructs for controlling CPU idle and CPU performance.
>
> The newer ACPI specification (v5.1 onwards) introduces
> alternative methods to CST and PSS. These new mechanisms
> are described within each ACPI Processor object and so they
> need to be scanned whenever a new Processor object is detected.
> This patch introduces two new Kconfig symbols to allow for
> finer configurability among the various options for controlling
> CPU idle and performance states. There is no change in functionality
> and these options are defaulted to enabled to maintain previous
> behaviour.
>
> The following patchwork introduces CPPC: A newer method of
> controlling CPU performance. The OS is not expected to support CPPC
> and PSS at runtime. So the kconfig option lets us make these two
> mutually exclusive at compile time.
>
> Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
> ---
>  drivers/acpi/Kconfig            |  41 +++++++++++----
>  drivers/acpi/Makefile           |   7 +--
>  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
>  drivers/cpufreq/Kconfig         |   2 +-
>  drivers/cpufreq/Kconfig.x86     |   2 +
>  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
>  6 files changed, 187 insertions(+), 59 deletions(-)


Gentle reminder.. I'll address the function name as Srinivas
suggested. Any other comments here and the other patches in this
series?

Regards,
Ashwin.

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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-06-12 17:53 ` Ashwin Chaugule
@ 2015-06-13  1:06   ` Rafael J. Wysocki
  2015-06-15 15:23     ` Ashwin Chaugule
  0 siblings, 1 reply; 7+ messages in thread
From: Rafael J. Wysocki @ 2015-06-13  1:06 UTC (permalink / raw)
  To: Ashwin Chaugule
  Cc: linux-pm, Linaro ACPI Mailman List, Patch Tracking,
	Jaswinder Singh, Viresh Kumar, Sudeep Holla

On Friday, June 12, 2015 01:53:36 PM Ashwin Chaugule wrote:
> On 25 May 2015 at 17:50, Ashwin Chaugule <ashwin.chaugule@linaro.org> wrote:
> > The ACPI processor driver is currently tied too closely
> > to the ACPI C-states (CST), P-states (PSS) and other related
> > constructs for controlling CPU idle and CPU performance.
> >
> > The newer ACPI specification (v5.1 onwards) introduces
> > alternative methods to CST and PSS. These new mechanisms
> > are described within each ACPI Processor object and so they
> > need to be scanned whenever a new Processor object is detected.
> > This patch introduces two new Kconfig symbols to allow for
> > finer configurability among the various options for controlling
> > CPU idle and performance states. There is no change in functionality
> > and these options are defaulted to enabled to maintain previous
> > behaviour.
> >
> > The following patchwork introduces CPPC: A newer method of
> > controlling CPU performance. The OS is not expected to support CPPC
> > and PSS at runtime. So the kconfig option lets us make these two
> > mutually exclusive at compile time.
> >
> > Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
> > ---
> >  drivers/acpi/Kconfig            |  41 +++++++++++----
> >  drivers/acpi/Makefile           |   7 +--
> >  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
> >  drivers/cpufreq/Kconfig         |   2 +-
> >  drivers/cpufreq/Kconfig.x86     |   2 +
> >  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
> >  6 files changed, 187 insertions(+), 59 deletions(-)
> 
> 
> Gentle reminder.. I'll address the function name as Srinivas
> suggested. Any other comments here and the other patches in this
> series?

Can you please resend the patches with CCs to linux-acpi too, just in case the
people on that list have any comments?


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

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

* Re: [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible
  2015-06-13  1:06   ` Rafael J. Wysocki
@ 2015-06-15 15:23     ` Ashwin Chaugule
  0 siblings, 0 replies; 7+ messages in thread
From: Ashwin Chaugule @ 2015-06-15 15:23 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: linux-pm, Linaro ACPI Mailman List, Patch Tracking,
	Jaswinder Singh, Viresh Kumar, Sudeep Holla

On 12 June 2015 at 21:06, Rafael J. Wysocki <rjw@rjwysocki.net> wrote:
> On Friday, June 12, 2015 01:53:36 PM Ashwin Chaugule wrote:
>> On 25 May 2015 at 17:50, Ashwin Chaugule <ashwin.chaugule@linaro.org> wrote:
>> > The ACPI processor driver is currently tied too closely
>> > to the ACPI C-states (CST), P-states (PSS) and other related
>> > constructs for controlling CPU idle and CPU performance.
>> >
>> > The newer ACPI specification (v5.1 onwards) introduces
>> > alternative methods to CST and PSS. These new mechanisms
>> > are described within each ACPI Processor object and so they
>> > need to be scanned whenever a new Processor object is detected.
>> > This patch introduces two new Kconfig symbols to allow for
>> > finer configurability among the various options for controlling
>> > CPU idle and performance states. There is no change in functionality
>> > and these options are defaulted to enabled to maintain previous
>> > behaviour.
>> >
>> > The following patchwork introduces CPPC: A newer method of
>> > controlling CPU performance. The OS is not expected to support CPPC
>> > and PSS at runtime. So the kconfig option lets us make these two
>> > mutually exclusive at compile time.
>> >
>> > Signed-off-by: Ashwin Chaugule <ashwin.chaugule@linaro.org>
>> > ---
>> >  drivers/acpi/Kconfig            |  41 +++++++++++----
>> >  drivers/acpi/Makefile           |   7 +--
>> >  drivers/acpi/processor_driver.c |  85 ++++++++++++++++++++-----------
>> >  drivers/cpufreq/Kconfig         |   2 +-
>> >  drivers/cpufreq/Kconfig.x86     |   2 +
>> >  include/acpi/processor.h        | 109 ++++++++++++++++++++++++++++++++++------
>> >  6 files changed, 187 insertions(+), 59 deletions(-)
>>
>>
>> Gentle reminder.. I'll address the function name as Srinivas
>> suggested. Any other comments here and the other patches in this
>> series?
>
> Can you please resend the patches with CCs to linux-acpi too, just in case the
> people on that list have any comments?

Sure. Will do.

Thanks,
Ashwin.

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

end of thread, other threads:[~2015-06-15 15:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-25 21:50 [PATCH v5 2/6] ACPI: Make ACPI processor driver more extensible Ashwin Chaugule
2015-05-26 21:22 ` Pandruvada, Srinivas
2015-05-27 14:05   ` Ashwin Chaugule
2015-05-27 15:22     ` Pandruvada, Srinivas
2015-06-12 17:53 ` Ashwin Chaugule
2015-06-13  1:06   ` Rafael J. Wysocki
2015-06-15 15:23     ` Ashwin Chaugule

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.