All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Punit Agrawal <punit.agrawal@arm.com>
To: linux-arm-kernel@lists.infradead.org
Cc: devicetree@vger.kernel.org, sudeep.holla@arm.com,
	linux-pm@vger.kernel.org, lm-sensors@lm-sensors.org,
	liviu.dudau@arm.com, edubezval@gmail.com, mark.rutland@arm.com,
	linux@roeck-us.net, linux-kernel@vger.kernel.org,
	robh+dt@kernel.org
Subject: Re: [Patch v3 4/5] hwmon: Support registration of thermal zones for SCP temperature sensors
Date: Mon, 14 Sep 2015 14:19:18 +0100	[thread overview]
Message-ID: <9hhlhc9f8a1.fsf@e105922-lin.cambridge.arm.com> (raw)
In-Reply-To: <1442235619-4029-5-git-send-email-punit.agrawal@arm.com> (Punit Agrawal's message of "Mon, 14 Sep 2015 14:00:17 +0100")

Please ignore this particular patch. I had an earlier one lying around
when I used git send-email *.

Punit Agrawal <punit.agrawal@arm.com> writes:

> Add support to create thermal zones based on the temperature sensors
> provided by the SCP. The thermal zones can be defined using the
> thermal DT bindings and should refer to the SCP sensor id to select
> the sensor.
>
> Signed-off-by: Punit Agrawal <punit.agrawal@arm.com>
> Acked-by: Guenter Roeck <linux@roeck-us.net>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> ---
>  drivers/hwmon/scpi-hwmon.c | 104 ++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 103 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/scpi-hwmon.c b/drivers/hwmon/scpi-hwmon.c
> index c7d1d14..2c1241b 100644
> --- a/drivers/hwmon/scpi-hwmon.c
> +++ b/drivers/hwmon/scpi-hwmon.c
> @@ -20,6 +20,7 @@
>  #include <linux/scpi_protocol.h>
>  #include <linux/slab.h>
>  #include <linux/sysfs.h>
> +#include <linux/thermal.h>
>  
>  struct sensor_data {
>  	struct scpi_sensor_info info;
> @@ -29,14 +30,39 @@ struct sensor_data {
>  	char label[20];
>  };
>  
> +struct scpi_thermal_zone {
> +	struct list_head list;
> +	int sensor_id;
> +	struct scpi_sensors *scpi_sensors;
> +	struct thermal_zone_device *tzd;
> +};
> +
>  struct scpi_sensors {
>  	struct scpi_ops *scpi_ops;
>  	struct sensor_data *data;
> +	struct list_head thermal_zones;
>  	struct attribute **attrs;
>  	struct attribute_group group;
>  	const struct attribute_group *groups[2];
>  };
>  
> +static int scpi_read_temp(void *dev, int *temp)
> +{
> +	struct scpi_thermal_zone *zone = dev;
> +	struct scpi_sensors *scpi_sensors = zone->scpi_sensors;
> +	struct scpi_ops *scpi_ops = scpi_sensors->scpi_ops;
> +	struct sensor_data *sensor = &scpi_sensors->data[zone->sensor_id];
> +	u32 value;
> +	int ret;
> +
> +	ret = scpi_ops->sensor_get_value(sensor->info.sensor_id, &value);
> +	if (ret)
> +		return ret;
> +
> +	*temp = value;
> +	return 0;
> +}
> +
>  /* hwmon callback functions */
>  static ssize_t
>  scpi_show_sensor(struct device *dev, struct device_attribute *attr, char *buf)
> @@ -66,6 +92,24 @@ scpi_show_label(struct device *dev, struct device_attribute *attr, char *buf)
>  	return sprintf(buf, "%s\n", sensor->info.name);
>  }
>  
> +static void
> +unregister_thermal_zones(struct platform_device *pdev,
> +			 struct scpi_sensors *scpi_sensors)
> +{
> +	struct list_head *pos;
> +
> +	list_for_each(pos, &scpi_sensors->thermal_zones) {
> +		struct scpi_thermal_zone *zone;
> +
> +		zone = list_entry(pos, struct scpi_thermal_zone, list);
> +		thermal_zone_of_sensor_unregister(&pdev->dev, zone->tzd);
> +	}
> +}
> +
> +static struct thermal_zone_of_device_ops scpi_sensor_ops = {
> +	.get_temp = scpi_read_temp,
> +};
> +
>  static int scpi_hwmon_probe(struct platform_device *pdev)
>  {
>  	u16 nr_sensors, i;
> @@ -160,10 +204,67 @@ static int scpi_hwmon_probe(struct platform_device *pdev)
>  	scpi_sensors->group.attrs = scpi_sensors->attrs;
>  	scpi_sensors->groups[0] = &scpi_sensors->group;
>  
> +	platform_set_drvdata(pdev, scpi_sensors);
> +
>  	hwdev = devm_hwmon_device_register_with_groups(dev,
>  			"scpi_sensors", scpi_sensors, scpi_sensors->groups);
>  
> -	return PTR_ERR_OR_ZERO(hwdev);
> +	if (IS_ERR(hwdev))
> +		return PTR_ERR(hwdev);
> +
> +	/*
> +	 * Register the temperature sensors with the thermal framework
> +	 * to allow their usage in setting up the thermal zones from
> +	 * device tree.
> +	 *
> +	 * NOTE: Not all temperature sensors maybe used for thermal
> +	 * control
> +	 */
> +	INIT_LIST_HEAD(&scpi_sensors->thermal_zones);
> +	for (i = 0; i < nr_sensors; i++) {
> +		struct sensor_data *sensor = &scpi_sensors->data[i];
> +		struct scpi_thermal_zone *zone;
> +
> +		if (sensor->info.class != TEMPERATURE)
> +			continue;
> +
> +		zone = devm_kzalloc(dev, sizeof(*zone), GFP_KERNEL);
> +		if (!zone) {
> +			ret = -ENOMEM;
> +			goto unregister_tzd;
> +		}
> +
> +		zone->sensor_id = i;
> +		zone->scpi_sensors = scpi_sensors;
> +		zone->tzd = thermal_zone_of_sensor_register(dev, i, zone,
> +							    &scpi_sensor_ops);
> +		/*
> +		 * The call to thermal_zone_of_sensor_register returns
> +		 * an error for sensors that are not associated with
> +		 * any thermal zones or if the thermal subsystem is
> +		 * not configured.
> +		 */
> +		if (IS_ERR(zone->tzd)) {
> +			devm_kfree(dev, zone);
> +			continue;
> +		}
> +		list_add(&zone->list, &scpi_sensors->thermal_zones);
> +	}
> +
> +	return 0;
> +
> +unregister_tzd:
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +	return ret;
> +}
> +
> +static int scpi_hwmon_remove(struct platform_device *pdev)
> +{
> +	struct scpi_sensors *scpi_sensors = platform_get_drvdata(pdev);
> +
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +
> +	return 0;
>  }
>  
>  static const struct of_device_id scpi_of_match[] = {
> @@ -178,6 +279,7 @@ static struct platform_driver scpi_hwmon_platdrv = {
>  		.of_match_table = scpi_of_match,
>  	},
>  	.probe		= scpi_hwmon_probe,
> +	.remove		= scpi_hwmon_remove,
>  };
>  module_platform_driver(scpi_hwmon_platdrv);

WARNING: multiple messages have this Message-ID (diff)
From: Punit Agrawal <punit.agrawal-5wv7dgnIgG8@public.gmane.org>
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	sudeep.holla-5wv7dgnIgG8@public.gmane.org,
	linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	lm-sensors-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org,
	liviu.dudau-5wv7dgnIgG8@public.gmane.org,
	edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	mark.rutland-5wv7dgnIgG8@public.gmane.org,
	linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Subject: Re: [Patch v3 4/5] hwmon: Support registration of thermal zones for SCP temperature sensors
Date: Mon, 14 Sep 2015 14:19:18 +0100	[thread overview]
Message-ID: <9hhlhc9f8a1.fsf@e105922-lin.cambridge.arm.com> (raw)
In-Reply-To: <1442235619-4029-5-git-send-email-punit.agrawal-5wv7dgnIgG8@public.gmane.org> (Punit Agrawal's message of "Mon, 14 Sep 2015 14:00:17 +0100")

Please ignore this particular patch. I had an earlier one lying around
when I used git send-email *.

Punit Agrawal <punit.agrawal-5wv7dgnIgG8@public.gmane.org> writes:

> Add support to create thermal zones based on the temperature sensors
> provided by the SCP. The thermal zones can be defined using the
> thermal DT bindings and should refer to the SCP sensor id to select
> the sensor.
>
> Signed-off-by: Punit Agrawal <punit.agrawal-5wv7dgnIgG8@public.gmane.org>
> Acked-by: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
> Cc: Eduardo Valentin <edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>  drivers/hwmon/scpi-hwmon.c | 104 ++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 103 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/scpi-hwmon.c b/drivers/hwmon/scpi-hwmon.c
> index c7d1d14..2c1241b 100644
> --- a/drivers/hwmon/scpi-hwmon.c
> +++ b/drivers/hwmon/scpi-hwmon.c
> @@ -20,6 +20,7 @@
>  #include <linux/scpi_protocol.h>
>  #include <linux/slab.h>
>  #include <linux/sysfs.h>
> +#include <linux/thermal.h>
>  
>  struct sensor_data {
>  	struct scpi_sensor_info info;
> @@ -29,14 +30,39 @@ struct sensor_data {
>  	char label[20];
>  };
>  
> +struct scpi_thermal_zone {
> +	struct list_head list;
> +	int sensor_id;
> +	struct scpi_sensors *scpi_sensors;
> +	struct thermal_zone_device *tzd;
> +};
> +
>  struct scpi_sensors {
>  	struct scpi_ops *scpi_ops;
>  	struct sensor_data *data;
> +	struct list_head thermal_zones;
>  	struct attribute **attrs;
>  	struct attribute_group group;
>  	const struct attribute_group *groups[2];
>  };
>  
> +static int scpi_read_temp(void *dev, int *temp)
> +{
> +	struct scpi_thermal_zone *zone = dev;
> +	struct scpi_sensors *scpi_sensors = zone->scpi_sensors;
> +	struct scpi_ops *scpi_ops = scpi_sensors->scpi_ops;
> +	struct sensor_data *sensor = &scpi_sensors->data[zone->sensor_id];
> +	u32 value;
> +	int ret;
> +
> +	ret = scpi_ops->sensor_get_value(sensor->info.sensor_id, &value);
> +	if (ret)
> +		return ret;
> +
> +	*temp = value;
> +	return 0;
> +}
> +
>  /* hwmon callback functions */
>  static ssize_t
>  scpi_show_sensor(struct device *dev, struct device_attribute *attr, char *buf)
> @@ -66,6 +92,24 @@ scpi_show_label(struct device *dev, struct device_attribute *attr, char *buf)
>  	return sprintf(buf, "%s\n", sensor->info.name);
>  }
>  
> +static void
> +unregister_thermal_zones(struct platform_device *pdev,
> +			 struct scpi_sensors *scpi_sensors)
> +{
> +	struct list_head *pos;
> +
> +	list_for_each(pos, &scpi_sensors->thermal_zones) {
> +		struct scpi_thermal_zone *zone;
> +
> +		zone = list_entry(pos, struct scpi_thermal_zone, list);
> +		thermal_zone_of_sensor_unregister(&pdev->dev, zone->tzd);
> +	}
> +}
> +
> +static struct thermal_zone_of_device_ops scpi_sensor_ops = {
> +	.get_temp = scpi_read_temp,
> +};
> +
>  static int scpi_hwmon_probe(struct platform_device *pdev)
>  {
>  	u16 nr_sensors, i;
> @@ -160,10 +204,67 @@ static int scpi_hwmon_probe(struct platform_device *pdev)
>  	scpi_sensors->group.attrs = scpi_sensors->attrs;
>  	scpi_sensors->groups[0] = &scpi_sensors->group;
>  
> +	platform_set_drvdata(pdev, scpi_sensors);
> +
>  	hwdev = devm_hwmon_device_register_with_groups(dev,
>  			"scpi_sensors", scpi_sensors, scpi_sensors->groups);
>  
> -	return PTR_ERR_OR_ZERO(hwdev);
> +	if (IS_ERR(hwdev))
> +		return PTR_ERR(hwdev);
> +
> +	/*
> +	 * Register the temperature sensors with the thermal framework
> +	 * to allow their usage in setting up the thermal zones from
> +	 * device tree.
> +	 *
> +	 * NOTE: Not all temperature sensors maybe used for thermal
> +	 * control
> +	 */
> +	INIT_LIST_HEAD(&scpi_sensors->thermal_zones);
> +	for (i = 0; i < nr_sensors; i++) {
> +		struct sensor_data *sensor = &scpi_sensors->data[i];
> +		struct scpi_thermal_zone *zone;
> +
> +		if (sensor->info.class != TEMPERATURE)
> +			continue;
> +
> +		zone = devm_kzalloc(dev, sizeof(*zone), GFP_KERNEL);
> +		if (!zone) {
> +			ret = -ENOMEM;
> +			goto unregister_tzd;
> +		}
> +
> +		zone->sensor_id = i;
> +		zone->scpi_sensors = scpi_sensors;
> +		zone->tzd = thermal_zone_of_sensor_register(dev, i, zone,
> +							    &scpi_sensor_ops);
> +		/*
> +		 * The call to thermal_zone_of_sensor_register returns
> +		 * an error for sensors that are not associated with
> +		 * any thermal zones or if the thermal subsystem is
> +		 * not configured.
> +		 */
> +		if (IS_ERR(zone->tzd)) {
> +			devm_kfree(dev, zone);
> +			continue;
> +		}
> +		list_add(&zone->list, &scpi_sensors->thermal_zones);
> +	}
> +
> +	return 0;
> +
> +unregister_tzd:
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +	return ret;
> +}
> +
> +static int scpi_hwmon_remove(struct platform_device *pdev)
> +{
> +	struct scpi_sensors *scpi_sensors = platform_get_drvdata(pdev);
> +
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +
> +	return 0;
>  }
>  
>  static const struct of_device_id scpi_of_match[] = {
> @@ -178,6 +279,7 @@ static struct platform_driver scpi_hwmon_platdrv = {
>  		.of_match_table = scpi_of_match,
>  	},
>  	.probe		= scpi_hwmon_probe,
> +	.remove		= scpi_hwmon_remove,
>  };
>  module_platform_driver(scpi_hwmon_platdrv);
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: punit.agrawal@arm.com (Punit Agrawal)
To: linux-arm-kernel@lists.infradead.org
Subject: [Patch v3 4/5] hwmon: Support registration of thermal zones for SCP temperature sensors
Date: Mon, 14 Sep 2015 14:19:18 +0100	[thread overview]
Message-ID: <9hhlhc9f8a1.fsf@e105922-lin.cambridge.arm.com> (raw)
In-Reply-To: <1442235619-4029-5-git-send-email-punit.agrawal@arm.com> (Punit Agrawal's message of "Mon, 14 Sep 2015 14:00:17 +0100")

Please ignore this particular patch. I had an earlier one lying around
when I used git send-email *.

Punit Agrawal <punit.agrawal@arm.com> writes:

> Add support to create thermal zones based on the temperature sensors
> provided by the SCP. The thermal zones can be defined using the
> thermal DT bindings and should refer to the SCP sensor id to select
> the sensor.
>
> Signed-off-by: Punit Agrawal <punit.agrawal@arm.com>
> Acked-by: Guenter Roeck <linux@roeck-us.net>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> ---
>  drivers/hwmon/scpi-hwmon.c | 104 ++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 103 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/scpi-hwmon.c b/drivers/hwmon/scpi-hwmon.c
> index c7d1d14..2c1241b 100644
> --- a/drivers/hwmon/scpi-hwmon.c
> +++ b/drivers/hwmon/scpi-hwmon.c
> @@ -20,6 +20,7 @@
>  #include <linux/scpi_protocol.h>
>  #include <linux/slab.h>
>  #include <linux/sysfs.h>
> +#include <linux/thermal.h>
>  
>  struct sensor_data {
>  	struct scpi_sensor_info info;
> @@ -29,14 +30,39 @@ struct sensor_data {
>  	char label[20];
>  };
>  
> +struct scpi_thermal_zone {
> +	struct list_head list;
> +	int sensor_id;
> +	struct scpi_sensors *scpi_sensors;
> +	struct thermal_zone_device *tzd;
> +};
> +
>  struct scpi_sensors {
>  	struct scpi_ops *scpi_ops;
>  	struct sensor_data *data;
> +	struct list_head thermal_zones;
>  	struct attribute **attrs;
>  	struct attribute_group group;
>  	const struct attribute_group *groups[2];
>  };
>  
> +static int scpi_read_temp(void *dev, int *temp)
> +{
> +	struct scpi_thermal_zone *zone = dev;
> +	struct scpi_sensors *scpi_sensors = zone->scpi_sensors;
> +	struct scpi_ops *scpi_ops = scpi_sensors->scpi_ops;
> +	struct sensor_data *sensor = &scpi_sensors->data[zone->sensor_id];
> +	u32 value;
> +	int ret;
> +
> +	ret = scpi_ops->sensor_get_value(sensor->info.sensor_id, &value);
> +	if (ret)
> +		return ret;
> +
> +	*temp = value;
> +	return 0;
> +}
> +
>  /* hwmon callback functions */
>  static ssize_t
>  scpi_show_sensor(struct device *dev, struct device_attribute *attr, char *buf)
> @@ -66,6 +92,24 @@ scpi_show_label(struct device *dev, struct device_attribute *attr, char *buf)
>  	return sprintf(buf, "%s\n", sensor->info.name);
>  }
>  
> +static void
> +unregister_thermal_zones(struct platform_device *pdev,
> +			 struct scpi_sensors *scpi_sensors)
> +{
> +	struct list_head *pos;
> +
> +	list_for_each(pos, &scpi_sensors->thermal_zones) {
> +		struct scpi_thermal_zone *zone;
> +
> +		zone = list_entry(pos, struct scpi_thermal_zone, list);
> +		thermal_zone_of_sensor_unregister(&pdev->dev, zone->tzd);
> +	}
> +}
> +
> +static struct thermal_zone_of_device_ops scpi_sensor_ops = {
> +	.get_temp = scpi_read_temp,
> +};
> +
>  static int scpi_hwmon_probe(struct platform_device *pdev)
>  {
>  	u16 nr_sensors, i;
> @@ -160,10 +204,67 @@ static int scpi_hwmon_probe(struct platform_device *pdev)
>  	scpi_sensors->group.attrs = scpi_sensors->attrs;
>  	scpi_sensors->groups[0] = &scpi_sensors->group;
>  
> +	platform_set_drvdata(pdev, scpi_sensors);
> +
>  	hwdev = devm_hwmon_device_register_with_groups(dev,
>  			"scpi_sensors", scpi_sensors, scpi_sensors->groups);
>  
> -	return PTR_ERR_OR_ZERO(hwdev);
> +	if (IS_ERR(hwdev))
> +		return PTR_ERR(hwdev);
> +
> +	/*
> +	 * Register the temperature sensors with the thermal framework
> +	 * to allow their usage in setting up the thermal zones from
> +	 * device tree.
> +	 *
> +	 * NOTE: Not all temperature sensors maybe used for thermal
> +	 * control
> +	 */
> +	INIT_LIST_HEAD(&scpi_sensors->thermal_zones);
> +	for (i = 0; i < nr_sensors; i++) {
> +		struct sensor_data *sensor = &scpi_sensors->data[i];
> +		struct scpi_thermal_zone *zone;
> +
> +		if (sensor->info.class != TEMPERATURE)
> +			continue;
> +
> +		zone = devm_kzalloc(dev, sizeof(*zone), GFP_KERNEL);
> +		if (!zone) {
> +			ret = -ENOMEM;
> +			goto unregister_tzd;
> +		}
> +
> +		zone->sensor_id = i;
> +		zone->scpi_sensors = scpi_sensors;
> +		zone->tzd = thermal_zone_of_sensor_register(dev, i, zone,
> +							    &scpi_sensor_ops);
> +		/*
> +		 * The call to thermal_zone_of_sensor_register returns
> +		 * an error for sensors that are not associated with
> +		 * any thermal zones or if the thermal subsystem is
> +		 * not configured.
> +		 */
> +		if (IS_ERR(zone->tzd)) {
> +			devm_kfree(dev, zone);
> +			continue;
> +		}
> +		list_add(&zone->list, &scpi_sensors->thermal_zones);
> +	}
> +
> +	return 0;
> +
> +unregister_tzd:
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +	return ret;
> +}
> +
> +static int scpi_hwmon_remove(struct platform_device *pdev)
> +{
> +	struct scpi_sensors *scpi_sensors = platform_get_drvdata(pdev);
> +
> +	unregister_thermal_zones(pdev, scpi_sensors);
> +
> +	return 0;
>  }
>  
>  static const struct of_device_id scpi_of_match[] = {
> @@ -178,6 +279,7 @@ static struct platform_driver scpi_hwmon_platdrv = {
>  		.of_match_table = scpi_of_match,
>  	},
>  	.probe		= scpi_hwmon_probe,
> +	.remove		= scpi_hwmon_remove,
>  };
>  module_platform_driver(scpi_hwmon_platdrv);

  reply	other threads:[~2015-09-14 13:19 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-14 13:00 [PATCH v3 0/5] SCPI Sensor support Punit Agrawal
2015-09-14 13:00 ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 1/5] Documentation: add DT bindings for ARM SCPI sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:14   ` Mark Rutland
2015-09-14 13:14     ` Mark Rutland
2015-09-14 13:14     ` Mark Rutland
2015-09-14 13:34     ` Punit Agrawal
2015-09-14 13:34       ` Punit Agrawal
2015-09-14 13:34       ` Punit Agrawal
2015-09-14 13:49       ` Mark Rutland
2015-09-14 13:49         ` Mark Rutland
2015-09-14 14:38         ` Punit Agrawal
2015-09-14 14:38           ` Punit Agrawal
2015-09-14 14:38           ` Punit Agrawal
2015-09-14 14:43           ` Mark Rutland
2015-09-14 14:43             ` Mark Rutland
2015-09-14 14:43             ` Mark Rutland
2015-09-14 15:01             ` Punit Agrawal
2015-09-14 15:01               ` Punit Agrawal
2015-09-14 15:01               ` Punit Agrawal
2015-09-14 15:15               ` Mark Rutland
2015-09-14 15:15                 ` Mark Rutland
2015-09-14 16:03                 ` Punit Agrawal
2015-09-14 16:03                   ` Punit Agrawal
2015-09-14 16:03                   ` Punit Agrawal
2015-09-14 17:18           ` Jon Medhurst (Tixy)
2015-09-14 17:18             ` Jon Medhurst (Tixy)
2015-09-14 17:18             ` Jon Medhurst (Tixy)
2015-09-15  9:37             ` Punit Agrawal
2015-09-15  9:37               ` Punit Agrawal
2015-09-15  9:37               ` Punit Agrawal
2015-09-15 10:46               ` Jon Medhurst (Tixy)
2015-09-15 10:46                 ` Jon Medhurst (Tixy)
2015-09-15 11:03                 ` Mark Rutland
2015-09-15 11:03                   ` Mark Rutland
2015-09-15 11:03                   ` Mark Rutland
2015-09-15 11:37                   ` Jon Medhurst (Tixy)
2015-09-15 11:37                     ` Jon Medhurst (Tixy)
2015-09-15 11:37                     ` Jon Medhurst (Tixy)
2015-09-15 16:04                 ` Punit Agrawal
2015-09-15 16:04                   ` Punit Agrawal
2015-09-15 16:04                   ` Punit Agrawal
2015-09-15 16:31                   ` Jon Medhurst (Tixy)
2015-09-15 16:31                     ` Jon Medhurst (Tixy)
2015-09-14 13:00 ` [PATCH v3 2/5] firmware: arm_scpi: Extend to support sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 3/5] hwmon: Support sensors exported via ARM SCP interface Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [Patch v3 4/5] hwmon: Support registration of thermal zones for SCP temperature sensors Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:19   ` Punit Agrawal [this message]
2015-09-14 13:19     ` Punit Agrawal
2015-09-14 13:19     ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 4/5] hwmon: Support thermal zones registration " Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00 ` [PATCH v3 5/5] arm64: dts: Add sensor node to Juno dt Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal
2015-09-14 13:00   ` Punit Agrawal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9hhlhc9f8a1.fsf@e105922-lin.cambridge.arm.com \
    --to=punit.agrawal@arm.com \
    --cc=devicetree@vger.kernel.org \
    --cc=edubezval@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=liviu.dudau@arm.com \
    --cc=lm-sensors@lm-sensors.org \
    --cc=mark.rutland@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=sudeep.holla@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.