mbox series

[0/5] dt-bindings: opp/cpufreq: Convert ti-cpufreq to

Message ID 20230724153911.1376830-1-nm@ti.com
Headers show
Series dt-bindings: opp/cpufreq: Convert ti-cpufreq to | expand

Message

Nishanth Menon July 24, 2023, 3:39 p.m. UTC
Hi,

Patches 1-3 are probably meant for omap tree via Tony and cleansup the
existing tree while the patches 4-5 convert the exiting txt bindings to
yaml.

This series also fixes up a bunch of dtbs_check warnings introduced into
the arm64/boot/dts/ti tree as well.

Nishanth Menon (5):
  arm: dts: ti: omap: omap36xx: Rename opp_supply nodename
  arm: dts: ti: omap: am5729-beagleboneai: Drop the OPP
  arm: dts: ti: omap: Fix OPP table node names
  dt-bindings: opp: Convert ti-omap5-opp-supply.txt to yaml binding
  dt-bindings: cpufreq: Convert ti-cpufreq.txt to yaml binding

 .../bindings/cpufreq/ti-cpufreq.txt           | 132 ------------------
 .../bindings/opp/opp-v2-ti-cpu.yaml           |  88 ++++++++++++
 .../bindings/opp/ti,omap-opp-supply.yaml      | 108 ++++++++++++++
 .../bindings/opp/ti-omap5-opp-supply.txt      |  63 ---------
 .../arm/boot/dts/ti/omap/am335x-boneblack.dts |   3 +-
 .../dts/ti/omap/am335x-osd335x-common.dtsi    |   3 +-
 arch/arm/boot/dts/ti/omap/am33xx.dtsi         |  30 ++--
 arch/arm/boot/dts/ti/omap/am3517.dtsi         |   6 +-
 arch/arm/boot/dts/ti/omap/am4372.dtsi         |  15 +-
 arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts  |   6 +-
 .../boot/dts/ti/omap/am5729-beagleboneai.dts  |   6 -
 arch/arm/boot/dts/ti/omap/dra7.dtsi           |   9 +-
 arch/arm/boot/dts/ti/omap/dra76x.dtsi         |   3 +-
 arch/arm/boot/dts/ti/omap/omap34xx.dtsi       |  12 +-
 arch/arm/boot/dts/ti/omap/omap36xx.dtsi       |  14 +-
 15 files changed, 261 insertions(+), 237 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/cpufreq/ti-cpufreq.txt
 create mode 100644 Documentation/devicetree/bindings/opp/opp-v2-ti-cpu.yaml
 create mode 100644 Documentation/devicetree/bindings/opp/ti,omap-opp-supply.yaml
 delete mode 100644 Documentation/devicetree/bindings/opp/ti-omap5-opp-supply.txt

Comments

Dhruva Gole July 28, 2023, 7:52 a.m. UTC | #1
On Jul 24, 2023 at 10:39:07 -0500, Nishanth Menon wrote:
> Use opp-supply as the proper node name.
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
> 
> Should probably go via Tony's tree.
> 
>  arch/arm/boot/dts/ti/omap/omap36xx.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/ti/omap/omap36xx.dtsi b/arch/arm/boot/dts/ti/omap/omap36xx.dtsi
> index fff9c3d34193..50e640a32b5c 100644
> --- a/arch/arm/boot/dts/ti/omap/omap36xx.dtsi
> +++ b/arch/arm/boot/dts/ti/omap/omap36xx.dtsi
> @@ -71,7 +71,7 @@ opp1g-1000000000 {
>  		};
>  	};
>  
> -	opp_supply_mpu_iva: opp_supply {
> +	opp_supply_mpu_iva: opp-supply {

Reviewed-by: Dhruva Gole <d-gole@ti.com>

>  		compatible = "ti,omap-opp-supply";
>  		ti,absolute-max-voltage-uv = <1375000>;
>  	};
> -- 
> 2.40.0
>
Tony Lindgren July 31, 2023, 6:25 a.m. UTC | #2
* Nishanth Menon <nm@ti.com> [230724 15:39]:
> Fix the opp table node names for opps to be compliant with bindings.
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
> Should probably go via Tony's tree.

Thanks applying patches 1 to 3 into omap-for-v6.6/dt.

Tony