public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Aniket Limaye <a-limaye@ti.com>
To: Manorit Chawdhry <m-chawdhry@ti.com>,
	Jaehoon Chung <jh80.chung@samsung.com>
Cc: <u-boot@lists.denx.de>, Neha Malcom Francis <n-francis@ti.com>,
	Keerthy J <j-keerthy@ti.com>, Udit Kumar <u-kumar1@ti.com>,
	Tom Rini <trini@konsulko.com>,
	Vignesh Raghavendra <vigneshr@ti.com>, Andrew Davis <afd@ti.com>,
	Nishanth Menon <nm@ti.com>, Simon Glass <sjg@chromium.org>
Subject: Re: [PATCH v5 0/7] Add AVS support for J721S2
Date: Tue, 15 Oct 2024 20:08:13 +0530	[thread overview]
Message-ID: <dad4ebfb-e95b-4fe7-b38d-2ef52165bad3@ti.com> (raw)
In-Reply-To: <20241015-b4-upstream-j721s2-avs-v5-0-5c8087387dc5@ti.com>



On 15/10/24 16:22, Manorit Chawdhry wrote:
> This series adds support for Adaptive voltage scaling on J721S2 device [0].
> 
> [0]: https://www.ti.com/lit/pdf/spruj28 (Section 5.2.4.1 AVS Support)
> 
> AVS Test for J721S2: https://gist.github.com/manorit2001/b2fd9f6764a863294d4aa0755c83c84f
> Boot Test results: https://gist.github.com/manorit2001/d44e035552cb19aadeb0d928d5cb5f26
> 
> Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
> ---
> Changes in v5:
> * Nishanth
> - Update the commit message for defconfig update
> - Add MPU clock to all devicetree node
> 
> * Simon
> - Update the commit messages to be more helpful
> 
> - Link to v4: https://lore.kernel.org/r/20241004-b4-upstream-j721s2-avs-v4-0-6d71c6bab9f4@ti.com
> 
> ---
> Manorit Chawdhry (7):
>        power: pmic: tps65941: Add DM_PMIC dependency
>        drivers: misc: k3_avs: Check return code while programming AVS
>        arm: dts: k3-*-r5: Add MPU clock in clocks property
>        drivers: misc: k3_avs: Extract MPU clk and dev ID from DT
>        arm: mach-k3: j721s2_init: Initialize AVS Class 0
>        arm: dts: j721s2: Add VTM node in R5
>        configs: j721s2_evm_r5_defconfig: Add AVS Configs
> 

For the series,

Reviewed-by: Aniket Limaye <a-limaye@ti.com>

>   arch/arm/dts/k3-am62-r5-lp-sk.dts               |  3 +-
>   arch/arm/dts/k3-am625-r5-beagleplay.dts         |  3 +-
>   arch/arm/dts/k3-am625-r5-sk.dts                 |  3 +-
>   arch/arm/dts/k3-am62a7-r5-sk.dts                |  3 +-
>   arch/arm/dts/k3-am62p5-r5-sk.dts                |  3 +-
>   arch/arm/dts/k3-am642-r5-evm.dts                |  3 +-
>   arch/arm/dts/k3-am642-r5-sk.dts                 |  3 +-
>   arch/arm/dts/k3-am654-r5-base-board.dts         |  3 +-
>   arch/arm/dts/k3-am69-r5-sk.dts                  |  3 +-
>   arch/arm/dts/k3-j7200-r5-common-proc-board.dts  |  3 +-
>   arch/arm/dts/k3-j721e-r5.dtsi                   |  3 +-
>   arch/arm/dts/k3-j721s2-r5-common-proc-board.dts |  9 ++++++
>   arch/arm/dts/k3-j721s2-r5.dtsi                  |  3 +-
>   arch/arm/dts/k3-j722s-r5-evm.dts                |  3 +-
>   arch/arm/dts/k3-j784s4-r5-evm.dts               |  3 +-
>   arch/arm/mach-k3/j721s2/j721s2_init.c           | 10 +++++++
>   configs/am68_sk_r5_defconfig                    |  4 +++
>   configs/j721s2_evm_r5_defconfig                 |  6 ++++
>   drivers/misc/k3_avs.c                           | 40 ++++++++++++++++++++++++-
>   drivers/power/pmic/Kconfig                      |  1 +
>   20 files changed, 97 insertions(+), 15 deletions(-)
> ---
> base-commit: 28dc47038edc4e93f32d75a357131bcf01a18d85
> change-id: 20240130-b4-upstream-j721s2-avs-8c187d3fe26a
> 
> Best regards,

  parent reply	other threads:[~2024-10-15 14:38 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-15 10:52 [PATCH v5 0/7] Add AVS support for J721S2 Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 1/7] power: pmic: tps65941: Add DM_PMIC dependency Manorit Chawdhry
2024-10-22 23:20   ` Jaehoon Chung
2024-10-15 10:52 ` [PATCH v5 2/7] drivers: misc: k3_avs: Check return code while programming AVS Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 3/7] arm: dts: k3-*-r5: Add MPU clock in clocks property Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 4/7] drivers: misc: k3_avs: Extract MPU clk and dev ID from DT Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 5/7] arm: mach-k3: j721s2_init: Initialize AVS Class 0 Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 6/7] arm: dts: j721s2: Add VTM node in R5 Manorit Chawdhry
2024-10-15 10:52 ` [PATCH v5 7/7] configs: j721s2_evm_r5_defconfig: Add AVS Configs Manorit Chawdhry
2024-10-15 14:38 ` Aniket Limaye [this message]
2024-10-22 16:27 ` [PATCH v5 0/7] Add AVS support for J721S2 Tom Rini

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=dad4ebfb-e95b-4fe7-b38d-2ef52165bad3@ti.com \
    --to=a-limaye@ti.com \
    --cc=afd@ti.com \
    --cc=j-keerthy@ti.com \
    --cc=jh80.chung@samsung.com \
    --cc=m-chawdhry@ti.com \
    --cc=n-francis@ti.com \
    --cc=nm@ti.com \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=u-kumar1@ti.com \
    --cc=vigneshr@ti.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox