mbox series

[v3,0/3] PM / devfreq: Deprecate fixed property name by using phandle get

Message ID 20200908102447.15097-1-cw00.choi@samsung.com
Headers show
Series PM / devfreq: Deprecate fixed property name by using phandle get | expand

Message

Chanwoo Choi Sept. 8, 2020, 10:24 a.m. UTC
Pirot to that devfreq and devfreq-event framework defines the fixed 'devfreq'
and 'devfreq-event' property to get the devfreq/devfreq-event phandle. But,
these property name are not expressing the h/w. So, deprecate the fixed
property name of both 'devfreq' and 'devfreq-event'. But, in order to keep
the backward compatibility of devicetree, doesn't change the property name
on devfreq device drivers and devicetree.

This patchset picks only three patches from patchset[1].

[1] https://patchwork.kernel.org/cover/11304545/
- [v2,00/11] PM / devfreq: Remove deprecated 'devfreq' and 'devfreq-events' properties


Changes from v2:
- Send the patches related to both devfreq_get_devfreq_by_phandle
  and devfreq_event_get_edev_by_phandle function to change the function
  prototype.

Changes from v1:
- Edit function name by removing '_by_node' postfix.
- Split out dt-binding patch to make it the separte patch.
- Add Lukasz's tag for exynos5422-dmc

Chanwoo Choi (2):
  PM / devfreq: Change prototype of devfreq_get_devfreq_by_phandle function
  PM / devfreq: event: Change prototype of devfreq_event_get_edev_by_phandle function

Leonard Crestez (1):
  PM / devfreq: Add devfreq_get_devfreq_by_node function

 drivers/devfreq/devfreq-event.c         | 14 +++---
 drivers/devfreq/devfreq.c               | 57 ++++++++++++++++++-------
 drivers/devfreq/exynos-bus.c            |  7 +--
 drivers/devfreq/rk3399_dmc.c            |  2 +-
 drivers/memory/samsung/exynos5422-dmc.c |  6 ++-
 include/linux/devfreq-event.h           | 14 ++++--
 include/linux/devfreq.h                 | 11 ++++-
 7 files changed, 78 insertions(+), 33 deletions(-)

Comments

Krzysztof Kozlowski Sept. 10, 2020, 12:06 p.m. UTC | #1
On Tue, Sep 08, 2020 at 07:24:46PM +0900, Chanwoo Choi wrote:
> Previously, devfreq core support 'devfreq' property in order to get
> the devfreq device by phandle. But, 'devfreq' property name is not proper
> on devicetree binding because this name doesn't mean the any h/w attribute.
> 
> The devfreq core hand over the right to decide the property name
> for getting the devfreq device on devicetree. Each devfreq driver
> will decide the property name on devicetree binding and pass
> the their own property name to devfreq_get_devfreq_by_phandle function.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> ---
>  drivers/devfreq/devfreq.c    | 11 +++++++----
>  drivers/devfreq/exynos-bus.c |  2 +-
>  include/linux/devfreq.h      |  5 +++--
>  3 files changed, 11 insertions(+), 7 deletions(-)

Acked-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof