Re: [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440

2013-04-08 Thread amit daniel kachhap
Hi Rui,

On Tue, Apr 2, 2013 at 3:56 PM, Kukjin Kim  wrote:
> Amit Daniel Kachhap wrote:
>>
>> This patchset adds TMU(Thermal management Unit) driver support for
>> exynos5440 platform. There are 3 instances of the TMU controllers so
>> necessary cleanup is done to handle multiple thermal zone.
>>
>> Patch 1 [thermal: exynos: Adapt to temperature emulation core thermal]
>> is a re-post of the earlier posted patch,
>> https://patchwork.kernel.org/patch/2123131/.
>>
>
> Looks OK to me on whole series, there is my ack only on 1st patch though.
>
> So if you want to add my ack, feel free:
>
> Acked-by: Kukjin Kim 
>
> Thanks.
>
> - Kukjin

Any comment on this patchset? I know this patch series involves quite
lot of changes but these are important for this merge window. Also
they are now acked by Samsung platform maintainer.

Regards,
Amit Daniel
>
>> All these patches are based on thermal maintainers git tree,
>> git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git next.
>>
>> Amit Daniel Kachhap (9):
>>   thermal: exynos: Adapt to temperature emulation core thermal
>> framework
>>   thermal: exynos: Add support for instance based register/unregister
>>   thermal: exynos: Moving into samsung directory for easy maintenance.
>>   thermal: exynos: Bifurcate exynos thermal common and tmu controller
>> code
>>   thermal: exynos: Make the zone handling dependent on trip count
>>   thermal: exynos: small cleanups to prepare for adding exynos5440
>> driver
>>   thermal: exynos: Add support for exynos5440 TMU sensor.
>>   thermal: exynos: Parse the platform data from the device tree.
>>   ARM: dts: Add device tree node for exynos5440 TMU controller
>>
>>  .../bindings/thermal/exynos5440-thermal.txt|   93 ++
>>  Documentation/thermal/exynos_thermal_emulation |8 +-
>>  arch/arm/boot/dts/exynos5440.dtsi  |   43 +
>>  drivers/thermal/Kconfig|   22 +-
>>  drivers/thermal/Makefile   |2 +-
>>  drivers/thermal/exynos_thermal.c   | 1112
> 
>>  drivers/thermal/samsung/Kconfig|   32 +
>>  drivers/thermal/samsung/Makefile   |6 +
>>  drivers/thermal/samsung/exynos4210_thermal.c   |  658 
>>  drivers/thermal/samsung/exynos5440_thermal.c   |  712 +
>>  drivers/thermal/samsung/exynos_common.c|  515 +
>>  drivers/thermal/samsung/exynos_common.h|   74 ++
>>  include/linux/platform_data/exynos_thermal.h   |   37 +-
>>  13 files changed, 2163 insertions(+), 1151 deletions(-)
>>  create mode 100644 Documentation/devicetree/bindings/thermal/exynos5440-
>> thermal.txt
>>  delete mode 100644 drivers/thermal/exynos_thermal.c
>>  create mode 100644 drivers/thermal/samsung/Kconfig
>>  create mode 100644 drivers/thermal/samsung/Makefile
>>  create mode 100644 drivers/thermal/samsung/exynos4210_thermal.c
>>  create mode 100644 drivers/thermal/samsung/exynos5440_thermal.c
>>  create mode 100644 drivers/thermal/samsung/exynos_common.c
>>  create mode 100644 drivers/thermal/samsung/exynos_common.h
>
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [PATCH 0/9] thermal: exynos: Add thermal driver for exynos5440

2013-04-02 Thread Kukjin Kim
Amit Daniel Kachhap wrote:
> 
> This patchset adds TMU(Thermal management Unit) driver support for
> exynos5440 platform. There are 3 instances of the TMU controllers so
> necessary cleanup is done to handle multiple thermal zone.
> 
> Patch 1 [thermal: exynos: Adapt to temperature emulation core thermal]
> is a re-post of the earlier posted patch,
> https://patchwork.kernel.org/patch/2123131/.
> 

Looks OK to me on whole series, there is my ack only on 1st patch though.

So if you want to add my ack, feel free:

Acked-by: Kukjin Kim 

Thanks.

- Kukjin

> All these patches are based on thermal maintainers git tree,
> git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git next.
> 
> Amit Daniel Kachhap (9):
>   thermal: exynos: Adapt to temperature emulation core thermal
> framework
>   thermal: exynos: Add support for instance based register/unregister
>   thermal: exynos: Moving into samsung directory for easy maintenance.
>   thermal: exynos: Bifurcate exynos thermal common and tmu controller
> code
>   thermal: exynos: Make the zone handling dependent on trip count
>   thermal: exynos: small cleanups to prepare for adding exynos5440
> driver
>   thermal: exynos: Add support for exynos5440 TMU sensor.
>   thermal: exynos: Parse the platform data from the device tree.
>   ARM: dts: Add device tree node for exynos5440 TMU controller
> 
>  .../bindings/thermal/exynos5440-thermal.txt|   93 ++
>  Documentation/thermal/exynos_thermal_emulation |8 +-
>  arch/arm/boot/dts/exynos5440.dtsi  |   43 +
>  drivers/thermal/Kconfig|   22 +-
>  drivers/thermal/Makefile   |2 +-
>  drivers/thermal/exynos_thermal.c   | 1112

>  drivers/thermal/samsung/Kconfig|   32 +
>  drivers/thermal/samsung/Makefile   |6 +
>  drivers/thermal/samsung/exynos4210_thermal.c   |  658 
>  drivers/thermal/samsung/exynos5440_thermal.c   |  712 +
>  drivers/thermal/samsung/exynos_common.c|  515 +
>  drivers/thermal/samsung/exynos_common.h|   74 ++
>  include/linux/platform_data/exynos_thermal.h   |   37 +-
>  13 files changed, 2163 insertions(+), 1151 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/thermal/exynos5440-
> thermal.txt
>  delete mode 100644 drivers/thermal/exynos_thermal.c
>  create mode 100644 drivers/thermal/samsung/Kconfig
>  create mode 100644 drivers/thermal/samsung/Makefile
>  create mode 100644 drivers/thermal/samsung/exynos4210_thermal.c
>  create mode 100644 drivers/thermal/samsung/exynos5440_thermal.c
>  create mode 100644 drivers/thermal/samsung/exynos_common.c
>  create mode 100644 drivers/thermal/samsung/exynos_common.h

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html