* [GIT PULL] Please pull mmc-power-next-2025-09-01
@ 2025-09-01 5:03 Peng Fan
2025-09-01 6:52 ` Frieder Schrempf
2025-09-01 23:51 ` Tom Rini
0 siblings, 2 replies; 5+ messages in thread
From: Peng Fan @ 2025-09-01 5:03 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
Hi Tom,
Please pull mmc-power-next-2025-09-01
----------------------------------------------------------------
Update compatibles for PMICs used by exynos devices
Support system reset and reset status for pca9450
Fix for pca9450 LDO5 registers and drop deprecated sd-vsel-gpios
Two minor fixes found by smatch
----------------------------------------------------------------
CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/27536
Thanks,
Peng
The following changes since commit c9ffeefeb3efedd754e3ffa3440bfeb15cea00c3:
test: Update logic for video test (2025-08-31 09:32:17 -0600)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-mmc.git tags/mmc-power-next-2025-09-01
for you to fetch changes up to 140562d3a2b447079499d773a7d21ec1728692cb:
mmc: core: drop space before newline in trace printf (2025-09-01 10:33:10 +0800)
----------------------------------------------------------------
Andrew Goodbody (2):
power: regulator: tps65910: Cannot test unsigned for being negative
mmc: iproc_sdhci: Cannot test unsigned variable for negative
Bhimeswararao Matsa (1):
mmc: core: drop space before newline in trace printf
Frieder Schrempf (6):
Revert "pmic: pca9450: Add optional SD_VSEL GPIO for LDO5"
pmic: pca9450: Fix enable register for LDO5
pmic: pca9450: Fix control register for LDO5
pmic: pca9450: Handle hardware with fixed SD_VSEL for LDO5
arm: dts: imx8mp-data-modul-edm-sbc: Remove deprecated sd-vsel-gpios
arm: dts: imx8mp-dhcom-som: Remove deprecated sd-vsel-gpios
Henrik Grimler (11):
power: pmic: s2mps11: look for both {voltage-,}regulators
ARM: dts: exynos5422-odroidxu3: rename s2mps11 regulators node
power: pmic: s2mps11: remove check for voltage-regulators node
ARM: dts: exynos4210-universal_c210: rename max8998 regulators node
ARM: dts: s5c1xx-goni: rename max8998-pmic regulators node
power: pmic: fix typo and capitalisation in max8997 Kconfig help msg
power: pmic: max8997: support maxim,max8997-pmic compatible as well
ARM: dts: exynos4210-trats: use maxim,max8997-pmic compatible
power: pmic: max8997: drop maxim,max8997 compatible
ARM: dts: trats: rename max8997-pmic regulators node
board: samsung: odroid: drop exynos_power_init
Primoz Fiser (2):
power: pmic: pca9450: Add support for system reset
power: pmic: pca9450: Add support for reset status
arch/arm/dts/exynos4210-trats.dts | 4 +-
arch/arm/dts/exynos4210-universal_c210.dts | 2 +-
arch/arm/dts/exynos5422-odroidxu3.dts | 2 +-
arch/arm/dts/imx8mp-data-modul-edm-sbc.dts | 1 -
arch/arm/dts/imx8mp-dhcom-som.dtsi | 1 -
arch/arm/dts/s5pc1xx-goni.dts | 2 +-
board/samsung/odroid/odroid.c | 15 -----
drivers/mmc/iproc_sdhci.c | 2 +-
drivers/mmc/mmc.c | 14 ++--
drivers/power/pmic/Kconfig | 4 +-
drivers/power/pmic/max8997.c | 2 +-
drivers/power/pmic/pca9450.c | 100 +++++++++++++++++++++++------
drivers/power/pmic/s2mps11.c | 2 +-
drivers/power/regulator/pca9450.c | 37 ++++++++++-
include/power/pca9450.h | 7 ++
include/power/tps65910_pmic.h | 2 +-
16 files changed, 139 insertions(+), 58 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] Please pull mmc-power-next-2025-09-01
2025-09-01 5:03 [GIT PULL] Please pull mmc-power-next-2025-09-01 Peng Fan
@ 2025-09-01 6:52 ` Frieder Schrempf
2025-09-01 14:54 ` Tom Rini
2025-09-01 23:51 ` Tom Rini
1 sibling, 1 reply; 5+ messages in thread
From: Frieder Schrempf @ 2025-09-01 6:52 UTC (permalink / raw)
To: Peng Fan, Tom Rini; +Cc: u-boot
Am 01.09.25 um 07:03 schrieb Peng Fan:
> Hi Tom,
>
> Please pull mmc-power-next-2025-09-01
>
> ----------------------------------------------------------------
> Update compatibles for PMICs used by exynos devices
> Support system reset and reset status for pca9450
> Fix for pca9450 LDO5 registers and drop deprecated sd-vsel-gpios
> Two minor fixes found by smatch
> ----------------------------------------------------------------
>
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/27536
>
> Thanks,
> Peng
>
> The following changes since commit c9ffeefeb3efedd754e3ffa3440bfeb15cea00c3:
>
> test: Update logic for video test (2025-08-31 09:32:17 -0600)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-mmc.git tags/mmc-power-next-2025-09-01
>
> for you to fetch changes up to 140562d3a2b447079499d773a7d21ec1728692cb:
>
> mmc: core: drop space before newline in trace printf (2025-09-01 10:33:10 +0800)
>
> ----------------------------------------------------------------
> Andrew Goodbody (2):
> power: regulator: tps65910: Cannot test unsigned for being negative
The change above has unresolved review comments and IMHO it shouldn't be
applied as is. In patchwork the status is correctly set to "Changes
Requested", therefore I would expect it to not be included here.
> mmc: iproc_sdhci: Cannot test unsigned variable for negative
>
> Bhimeswararao Matsa (1):
> mmc: core: drop space before newline in trace printf
>
> Frieder Schrempf (6):
> Revert "pmic: pca9450: Add optional SD_VSEL GPIO for LDO5"
> pmic: pca9450: Fix enable register for LDO5
> pmic: pca9450: Fix control register for LDO5
> pmic: pca9450: Handle hardware with fixed SD_VSEL for LDO5
> arm: dts: imx8mp-data-modul-edm-sbc: Remove deprecated sd-vsel-gpios
> arm: dts: imx8mp-dhcom-som: Remove deprecated sd-vsel-gpios
>
> Henrik Grimler (11):
> power: pmic: s2mps11: look for both {voltage-,}regulators
> ARM: dts: exynos5422-odroidxu3: rename s2mps11 regulators node
> power: pmic: s2mps11: remove check for voltage-regulators node
> ARM: dts: exynos4210-universal_c210: rename max8998 regulators node
> ARM: dts: s5c1xx-goni: rename max8998-pmic regulators node
> power: pmic: fix typo and capitalisation in max8997 Kconfig help msg
> power: pmic: max8997: support maxim,max8997-pmic compatible as well
> ARM: dts: exynos4210-trats: use maxim,max8997-pmic compatible
> power: pmic: max8997: drop maxim,max8997 compatible
> ARM: dts: trats: rename max8997-pmic regulators node
> board: samsung: odroid: drop exynos_power_init
>
> Primoz Fiser (2):
> power: pmic: pca9450: Add support for system reset
> power: pmic: pca9450: Add support for reset status
>
> arch/arm/dts/exynos4210-trats.dts | 4 +-
> arch/arm/dts/exynos4210-universal_c210.dts | 2 +-
> arch/arm/dts/exynos5422-odroidxu3.dts | 2 +-
> arch/arm/dts/imx8mp-data-modul-edm-sbc.dts | 1 -
> arch/arm/dts/imx8mp-dhcom-som.dtsi | 1 -
> arch/arm/dts/s5pc1xx-goni.dts | 2 +-
> board/samsung/odroid/odroid.c | 15 -----
> drivers/mmc/iproc_sdhci.c | 2 +-
> drivers/mmc/mmc.c | 14 ++--
> drivers/power/pmic/Kconfig | 4 +-
> drivers/power/pmic/max8997.c | 2 +-
> drivers/power/pmic/pca9450.c | 100 +++++++++++++++++++++++------
> drivers/power/pmic/s2mps11.c | 2 +-
> drivers/power/regulator/pca9450.c | 37 ++++++++++-
> include/power/pca9450.h | 7 ++
> include/power/tps65910_pmic.h | 2 +-
> 16 files changed, 139 insertions(+), 58 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] Please pull mmc-power-next-2025-09-01
2025-09-01 6:52 ` Frieder Schrempf
@ 2025-09-01 14:54 ` Tom Rini
2025-09-01 16:59 ` Frieder Schrempf
0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2025-09-01 14:54 UTC (permalink / raw)
To: Peng Fan; +Cc: Frieder Schrempf, u-boot
[-- Attachment #1: Type: text/plain, Size: 1857 bytes --]
On Mon, Sep 01, 2025 at 08:52:32AM +0200, Frieder Schrempf wrote:
> Am 01.09.25 um 07:03 schrieb Peng Fan:
> > Hi Tom,
> >
> > Please pull mmc-power-next-2025-09-01
> >
> > ----------------------------------------------------------------
> > Update compatibles for PMICs used by exynos devices
> > Support system reset and reset status for pca9450
> > Fix for pca9450 LDO5 registers and drop deprecated sd-vsel-gpios
> > Two minor fixes found by smatch
> > ----------------------------------------------------------------
> >
> > CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/27536
> >
> > Thanks,
> > Peng
> >
> > The following changes since commit c9ffeefeb3efedd754e3ffa3440bfeb15cea00c3:
> >
> > test: Update logic for video test (2025-08-31 09:32:17 -0600)
> >
> > are available in the Git repository at:
> >
> > https://source.denx.de/u-boot/custodians/u-boot-mmc.git tags/mmc-power-next-2025-09-01
> >
> > for you to fetch changes up to 140562d3a2b447079499d773a7d21ec1728692cb:
> >
> > mmc: core: drop space before newline in trace printf (2025-09-01 10:33:10 +0800)
> >
> > ----------------------------------------------------------------
> > Andrew Goodbody (2):
> > power: regulator: tps65910: Cannot test unsigned for being negative
>
> The change above has unresolved review comments and IMHO it shouldn't be
> applied as is. In patchwork the status is correctly set to "Changes
> Requested", therefore I would expect it to not be included here.
Yes, sorry Peng, I was just expecting a PR of power-related changes for
NXP (layerscape and iMX) related things, not everything that's
outstanding in Jaehoon's queue. I went through it over the weekend too
and marked that one as Changed Requested but applied the rest of the
series, for example.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] Please pull mmc-power-next-2025-09-01
2025-09-01 14:54 ` Tom Rini
@ 2025-09-01 16:59 ` Frieder Schrempf
0 siblings, 0 replies; 5+ messages in thread
From: Frieder Schrempf @ 2025-09-01 16:59 UTC (permalink / raw)
To: Tom Rini, Peng Fan; +Cc: u-boot
Am 01.09.25 um 16:54 schrieb Tom Rini:
> On Mon, Sep 01, 2025 at 08:52:32AM +0200, Frieder Schrempf wrote:
>> Am 01.09.25 um 07:03 schrieb Peng Fan:
>>> Hi Tom,
>>>
>>> Please pull mmc-power-next-2025-09-01
>>>
>>> ----------------------------------------------------------------
>>> Update compatibles for PMICs used by exynos devices
>>> Support system reset and reset status for pca9450
>>> Fix for pca9450 LDO5 registers and drop deprecated sd-vsel-gpios
>>> Two minor fixes found by smatch
>>> ----------------------------------------------------------------
>>>
>>> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/27536
>>>
>>> Thanks,
>>> Peng
>>>
>>> The following changes since commit c9ffeefeb3efedd754e3ffa3440bfeb15cea00c3:
>>>
>>> test: Update logic for video test (2025-08-31 09:32:17 -0600)
>>>
>>> are available in the Git repository at:
>>>
>>> https://source.denx.de/u-boot/custodians/u-boot-mmc.git tags/mmc-power-next-2025-09-01
>>>
>>> for you to fetch changes up to 140562d3a2b447079499d773a7d21ec1728692cb:
>>>
>>> mmc: core: drop space before newline in trace printf (2025-09-01 10:33:10 +0800)
>>>
>>> ----------------------------------------------------------------
>>> Andrew Goodbody (2):
>>> power: regulator: tps65910: Cannot test unsigned for being negative
>>
>> The change above has unresolved review comments and IMHO it shouldn't be
>> applied as is. In patchwork the status is correctly set to "Changes
>> Requested", therefore I would expect it to not be included here.
>
> Yes, sorry Peng, I was just expecting a PR of power-related changes for
> NXP (layerscape and iMX) related things, not everything that's
> outstanding in Jaehoon's queue. I went through it over the weekend too
> and marked that one as Changed Requested but applied the rest of the
> series, for example.
As Andrew just pointed out to me my review comment on this patch was
wrong. So the patch in fact should be fine as-is. Sorry for the noise.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] Please pull mmc-power-next-2025-09-01
2025-09-01 5:03 [GIT PULL] Please pull mmc-power-next-2025-09-01 Peng Fan
2025-09-01 6:52 ` Frieder Schrempf
@ 2025-09-01 23:51 ` Tom Rini
1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2025-09-01 23:51 UTC (permalink / raw)
To: Peng Fan; +Cc: u-boot
On Mon, 01 Sep 2025 13:03:59 +0800, Peng Fan wrote:
> Please pull mmc-power-next-2025-09-01
>
> ----------------------------------------------------------------
> Update compatibles for PMICs used by exynos devices
> Support system reset and reset status for pca9450
> Fix for pca9450 LDO5 registers and drop deprecated sd-vsel-gpios
> Two minor fixes found by smatch
> ----------------------------------------------------------------
>
> [...]
Merged into u-boot/next, thanks!
--
Tom
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-09-01 23:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-01 5:03 [GIT PULL] Please pull mmc-power-next-2025-09-01 Peng Fan
2025-09-01 6:52 ` Frieder Schrempf
2025-09-01 14:54 ` Tom Rini
2025-09-01 16:59 ` Frieder Schrempf
2025-09-01 23:51 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).