Sascha Hauer
17e8351a77
thermal: consistently use int for temperatures
...
The thermal code uses int, long and unsigned long for temperatures
in different places.
Using an unsigned type limits the thermal framework to positive
temperatures without need. Also several drivers currently will report
temperatures near UINT_MAX for temperatures below 0°C. This will probably
immediately shut the machine down due to overtemperature if started below
0°C.
'long' is 64bit on several architectures. This is not needed since INT_MAX °mC
is above the melting point of all known materials.
Consistently use a plain 'int' for temperatures throughout the thermal code and
the drivers. This only changes the places in the drivers where the temperature
is passed around as pointer, when drivers internally use another type this is
not changed.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de >
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be >
Reviewed-by: Jean Delvare <jdelvare@suse.de >
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com >
Reviewed-by: Darren Hart <dvhart@linux.intel.com >
Reviewed-by: Heiko Stuebner <heiko@sntech.de >
Reviewed-by: Peter Feuerer <peter@piie.net >
Cc: Punit Agrawal <punit.agrawal@arm.com >
Cc: Zhang Rui <rui.zhang@intel.com >
Cc: Eduardo Valentin <edubezval@gmail.com >
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Jean Delvare <jdelvare@suse.de >
Cc: Peter Feuerer <peter@piie.net >
Cc: Heiko Stuebner <heiko@sntech.de >
Cc: Lukasz Majewski <l.majewski@samsung.com >
Cc: Stephen Warren <swarren@wwwdotorg.org >
Cc: Thierry Reding <thierry.reding@gmail.com >
Cc: linux-acpi@vger.kernel.org
Cc: platform-driver-x86@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-omap@vger.kernel.org
Cc: linux-samsung-soc@vger.kernel.org
Cc: Guenter Roeck <linux@roeck-us.net >
Cc: Rafael J. Wysocki <rjw@rjwysocki.net >
Cc: Maxime Ripard <maxime.ripard@free-electrons.com >
Cc: Darren Hart <dvhart@infradead.org >
Cc: lm-sensors@lm-sensors.org
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2015-08-03 23:15:50 +08:00
Wolfram Sang
bbc3798340
thermal: drop owner assignment from platform_drivers
...
A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de >
2014-10-20 16:21:42 +02:00
Zhang Rui
e7cd7886ef
Merge branches 'misc', 'drv_cleanup', 'devm-cleanup' and 'ti-soc' of .git into next
2013-05-28 10:46:46 +08:00
Sachin Kamat
e0d68afa92
Thermal: dove: Remove redundant use of of_match_ptr
...
'dove_thermal_id_table' is always compiled in and the driver
is dependent on OF. Hence use of of_match_ptr is unnecessary.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org >
Cc: Andrew Lunn <andrew@lunn.ch >
Acked-by: Eduardo Valentin <eduardo.valentin@ti.com >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-05-28 10:45:14 +08:00
Wolfram Sang
c28f692c6f
drivers/thermal: don't check resource with devm_ioremap_resource
...
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de >
Acked-by: Eduardo Valentin <eduardo.valentin@ti.com >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-05-20 23:35:52 +08:00
Sachin Kamat
aa50c4e49c
Thermal: dove_thermal: Remove redundant platform_set_drvdata()
...
Commit 0998d06310
(device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org >
Cc: Andrew Lunn <andrew@lunn.ch >
Acked-by: Andrew Lunn <andrew@lunn.ch >
Acked-by: Eduardo Valentin <eduardo.valentin@ti.com >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-05-06 22:37:00 +08:00
Ezequiel Garcia
2fd1db8819
thermal: dove: Fix thermal sensor formula
...
The currently formula has been taken from the 88AP510 SoC datasheet,
which is not exactly correct. The correct value for the temperature
in Celcius of the sensor present in this SoC is:
Celsius = (322-reg)/1.3625
Signed-off-by: Lior Amsalem <alior@marvell.com >
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com >
Acked-by: Andrew Lunn <andrew@lunn.ch >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-03-26 22:13:10 +08:00
Sachin Kamat
6bc51b6622
Thermal: dove: Convert to devm_ioremap_resource()
...
Use the newly introduced devm_ioremap_resource() instead of
devm_request_and_ioremap() which provides more consistent error handling.
devm_ioremap_resource() provides its own error messages; so all explicit
error messages can be removed from the failure code paths.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org >
Cc: Andrew Lunn <andrew@lunn.ch >
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-03-11 23:09:02 +08:00
Andrew Lunn
74ffa64c23
Thermal: Dove: Add Themal sensor support for Dove.
...
The Marvell Dove SoC has a thermal sensor. Add a driver using the
thermal framework.
Signed-off-by: Andrew Lunn <andrew@lunn.ch >
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com >
Signed-off-by: Zhang Rui <rui.zhang@intel.com >
2013-02-08 20:26:02 +08:00