Message ID | 20250226144531.41542-1-caleb.connolly@linaro.org |
---|---|
State | New |
Headers | show |
Series | [PULL] Please pull qcom-fixes-2025.04-rc4 | expand |
On 2/26/25 14:34, Caleb Connolly wrote: > Hi Tom, > > Sorry this is a bit later than expected. > > The clk_stub, regulator, and pinctrl fixes enable the sdcard on the RB5 dev > board (and sm8250 devices broadly). clk_stub is only enabled in qcom_defconfig > and the others are qcom specific so these shouldn't affect other platforms. > > Lastly, a small ufetch fix from Sam which gets color rendering correctly on > U-Boots framebuffer video device. > > Kind regards, > Caleb > > The following changes since commit dc0ee458f1afae4cb5c8a7b2c875bb24ffdf71ca: > > Prepare v2025.04-rc3 (2025-02-24 16:53:59 -0600) > > are available in the Git repository at: > > git@source.denx.de:u-boot/custodians/u-boot-snapdragon.git tags/qcom-fixes-2025.04-rc4 The actual CI run is at https://source.denx.de/u-boot/custodians/u-boot-snapdragon/-/pipelines/24841 Made the mistake of having a branch and tag with the same name. > > for you to fetch changes up to 6267ce556595e0586aee3a7d63042d105dc3fa4e: > > cmd: ufetch: use 3-bit colour ANSI codes (2025-02-26 13:48:27 +0000) > > ---------------------------------------------------------------- > Caleb Connolly (4): > clk: add stub clock driver > qcom_defconfig: enable stub clock > power: regulator: add additional supported LDOs for pm8150l > pinctrl: qcom: sm8250: fix pin count > > Julius Lehmann (1): > clk: stub: add sm8150 compatible id > > Sam Day (1): > cmd: ufetch: use 3-bit colour ANSI codes > > cmd/ufetch.c | 4 +- > configs/qcom_defconfig | 1 + > drivers/clk/Kconfig | 7 +++ > drivers/clk/Makefile | 1 + > drivers/clk/clk-stub.c | 67 +++++++++++++++++++++++++++ > drivers/pinctrl/qcom/pinctrl-sm8250.c | 2 +- > drivers/power/regulator/qcom-rpmh-regulator.c | 7 +++ > 7 files changed, 86 insertions(+), 3 deletions(-) > create mode 100644 drivers/clk/clk-stub.c
On Wed, Feb 26, 2025 at 02:49:07PM +0000, Caleb Connolly wrote: > > > On 2/26/25 14:34, Caleb Connolly wrote: > > Hi Tom, > > > > Sorry this is a bit later than expected. > > > > The clk_stub, regulator, and pinctrl fixes enable the sdcard on the RB5 dev > > board (and sm8250 devices broadly). clk_stub is only enabled in qcom_defconfig > > and the others are qcom specific so these shouldn't affect other platforms. > > > > Lastly, a small ufetch fix from Sam which gets color rendering correctly on > > U-Boots framebuffer video device. > > > > Kind regards, > > Caleb > > > > The following changes since commit dc0ee458f1afae4cb5c8a7b2c875bb24ffdf71ca: > > > > Prepare v2025.04-rc3 (2025-02-24 16:53:59 -0600) > > > > are available in the Git repository at: > > > > git@source.denx.de:u-boot/custodians/u-boot-snapdragon.git tags/qcom-fixes-2025.04-rc4 Note that if you have something like this in your .git/config: [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* b4-treename = "u-boot" url = https://source.denx.de/u-boot/custodians/u-boot-snapdragon.git pushurl = git@source.denx.de:u-boot/custodians/u-boot-snapdragon.git I can grab this with b4 pr (which now helpfully returns an error about the protocol being unsupported, yay). > The actual CI run is at > https://source.denx.de/u-boot/custodians/u-boot-snapdragon/-/pipelines/24841 > > Made the mistake of having a branch and tag with the same name. > > > > for you to fetch changes up to 6267ce556595e0586aee3a7d63042d105dc3fa4e: > > > > cmd: ufetch: use 3-bit colour ANSI codes (2025-02-26 13:48:27 +0000) > > > > ---------------------------------------------------------------- > > Caleb Connolly (4): > > clk: add stub clock driver > > qcom_defconfig: enable stub clock > > power: regulator: add additional supported LDOs for pm8150l > > pinctrl: qcom: sm8250: fix pin count > > > > Julius Lehmann (1): > > clk: stub: add sm8150 compatible id > > > > Sam Day (1): > > cmd: ufetch: use 3-bit colour ANSI codes > > > > cmd/ufetch.c | 4 +- > > configs/qcom_defconfig | 1 + > > drivers/clk/Kconfig | 7 +++ > > drivers/clk/Makefile | 1 + > > drivers/clk/clk-stub.c | 67 +++++++++++++++++++++++++++ > > drivers/pinctrl/qcom/pinctrl-sm8250.c | 2 +- > > drivers/power/regulator/qcom-rpmh-regulator.c | 7 +++ > > 7 files changed, 86 insertions(+), 3 deletions(-) > > create mode 100644 drivers/clk/clk-stub.c Applied to u-boot/master, thanks!