[GIT PULL] Please pull mmc-for-2026.10-rc2
Peng Fan <[email protected]>
| Newsgroups | gmane.comp.boot-loaders.u-boot |
|---|---|
| Message-ID | <[email protected]> |
Hi Tom,
Please pull mmc-for-2026.10-rc2
----------------------------------------------
Enable MMC CMD23 for multi-block transfers
Various fixes to mmc core
Add PF9453 pmic/regulator driver
Support SCP 4.36 map for renesas-r8a78000
----------------------------------------------
CI: https://git.u-boot-project.org/u-boot/custodians/u-boot-mmc/-/pipelines/781
I always met 1hr timeout in CI. So I ran the CI build in my local for the
last job, no issue found.
Thanks,
Peng
The following changes since commit 616c3d79f01cf9204e38738857c4647a730dcb3b:
ram: k3-ddrss: fix ecc range checking bug (2026-07-28 12:30:55 -0600)
are available in the Git repository at:
https://git.u-boot-project.org/u-boot/custodians/u-boot-mmc.git tags/mmc-for-2026.10-rc2
for you to fetch changes up to 602726cb300992cd98ceea72e9ea08aa37a92a0c:
power: regulator: ADD PMIC PF9453 support (2026-07-29 11:15:56 +0800)
----------------------------------------------------------------
Eric Chung (1):
mmc: enable CMD23 for multi-block transfers
Joy Zou (2):
power: pmic: ADD PMIC PF9453 support
power: regulator: ADD PMIC PF9453 support
Marek Vasut (1):
power: domain: renesas-r8a78000: Add SDK SCP 4.36 map
Peng Fan (5):
mmc: fix mmc_poll_for_busy() false timeout when card is ready
mmc: rpmb: fix tautological condition in RPMB_REQ_READ_DATA validation
mmc: sdhci: fix align_buffer memory leak on re-initialization
mmc: fix mmc_bwrite() ignoring host get_b_max() callback
mmc: fix mmc_deinit regression when card is at 1.8V signaling
drivers/mmc/mmc.c | 45 ++--
drivers/mmc/mmc_private.h | 4 +
drivers/mmc/mmc_write.c | 25 +-
drivers/mmc/rpmb.c | 2 +-
drivers/mmc/sdhci.c | 3 +-
.../power/domain/renesas-r8a78000-power-domain.c | 4 +-
drivers/power/pmic/Kconfig | 15 ++
drivers/power/pmic/Makefile | 1 +
drivers/power/pmic/pf9453.c | 170 ++++++++++++++
drivers/power/regulator/Kconfig | 15 ++
drivers/power/regulator/Makefile | 1 +
drivers/power/regulator/pf9453.c | 256 +++++++++++++++++++++
include/mmc.h | 3 +
include/mvebu_mmc.h | 2 -
include/power/pf9453.h | 71 ++++++
15 files changed, 593 insertions(+), 24 deletions(-)
create mode 100644 drivers/power/pmic/pf9453.c
create mode 100644 drivers/power/regulator/pf9453.c
create mode 100644 include/power/pf9453.h