From: Caleb Connolly <caleb.connolly@linaro.org>
To: Tom Rini <trini@konsulko.com>
Cc: Neil Armstrong <neil.armstrong@linaro.org>,
Julius Lehmann <lehmanju@devpi.de>,
u-boot-qcom@groups.io, u-boot@lists.denx.de,
Caleb Connolly <caleb.connolly@linaro.org>
Subject: [PULL] Please pull qcom/qcom-next
Date: Fri, 4 Oct 2024 16:22:19 +0200 [thread overview]
Message-ID: <20241004142228.271558-1-caleb.connolly@linaro.org> (raw)
Various improvements and fixes for Qualcomm
* Initial UFS PHY driver
* Support for SM8150 (clock and pinctrl)
* Allow writing configuration to PMIC GPIOs again
* Support for configuring "special" pins (e.g. UFS reset or sdhc pins)
* Support for "clk dump" command to decode various clocks.
CI: https://source.denx.de/u-boot/custodians/u-boot-snapdragon/-/pipelines/22527
---
The following changes since commit 00292c6b39b3f7dcb34e8c3ae6ef276ac862a146:
Merge tag 'u-boot-dfu-next-20241003' of https://source.denx.de/u-boot/custodians/u-boot-dfu into next (2024-10-03 16:09:40 -0600)
are available in the Git repository at:
git@source.denx.de:u-boot/custodians/u-boot-snapdragon.git qcom-next
for you to fetch changes up to 04584089e12e34aa91ef06aeb91b1550facb0312:
clk/qcom: sm8250: add debug data (2024-10-04 14:57:04 +0200)
----------------------------------------------------------------
Bhupesh Sharma (2):
phy: qcom: Import QMP phy related header files from Linux
phy: qcom: Add QMP UFS PHY driver
Caleb Connolly (5):
Revert "gpio: qcom_pmic: add a quirk to skip GPIO configuration"
clk/qcom: implement clk dump
clk/qcom: sdm845: add dump data
clk/qcom: sm6115: add debug data
clk/qcom: sm8250: add debug data
Julius Lehmann (3):
clk: qcom: add driver for SM8150 SoC
pinctrl: qcom: add driver for SM8150 SoC
config: qcom: add sm8150 to qcom_defconfig
Neil Armstrong (2):
gpio: msm: add support for special pins
pinctr: qcom: sm8250: add special pins pins configuration data
configs/qcom_defconfig | 2 +
drivers/clk/qcom/Kconfig | 9 +
drivers/clk/qcom/Makefile | 1 +
drivers/clk/qcom/clock-qcom.c | 119 +++
drivers/clk/qcom/clock-qcom.h | 6 +
drivers/clk/qcom/clock-sdm845.c | 93 ++
drivers/clk/qcom/clock-sm6115.c | 63 ++
drivers/clk/qcom/clock-sm8150.c | 319 ++++++
drivers/clk/qcom/clock-sm8250.c | 115 ++
drivers/gpio/msm_gpio.c | 101 +-
drivers/gpio/qcom_pmic_gpio.c | 27 +-
drivers/phy/qcom/Kconfig | 6 +
drivers/phy/qcom/Makefile | 1 +
drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v2.h | 25 +
drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v3.h | 21 +
drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v4.h | 31 +
drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v5.h | 32 +
drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v6.h | 38 +
drivers/phy/qcom/phy-qcom-qmp-pcs-v2.h | 43 +
drivers/phy/qcom/phy-qcom-qmp-pcs-v3.h | 145 +++
drivers/phy/qcom/phy-qcom-qmp-pcs-v4.h | 135 +++
drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v3.h | 111 ++
drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v4.h | 123 +++
drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v6.h | 89 ++
drivers/phy/qcom/phy-qcom-qmp-qserdes-com.h | 140 +++
drivers/phy/qcom/phy-qcom-qmp-qserdes-pll.h | 69 ++
.../phy/qcom/phy-qcom-qmp-qserdes-txrx-ufs-v6.h | 52 +
drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v3.h | 68 ++
drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v4.h | 233 ++++
drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx.h | 205 ++++
drivers/phy/qcom/phy-qcom-qmp-ufs.c | 1116 ++++++++++++++++++++
drivers/phy/qcom/phy-qcom-qmp.h | 115 ++
drivers/pinctrl/qcom/Kconfig | 8 +
drivers/pinctrl/qcom/Makefile | 1 +
drivers/pinctrl/qcom/pinctrl-sm8150.c | 156 +++
drivers/pinctrl/qcom/pinctrl-sm8250.c | 42 +-
36 files changed, 3824 insertions(+), 36 deletions(-)
create mode 100644 drivers/clk/qcom/clock-sm8150.c
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v2.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v3.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v4.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v5.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-ufs-v6.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-v2.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-v3.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-v4.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v3.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v4.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v6.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-com.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-pll.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-ufs-v6.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v3.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v4.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx.h
create mode 100644 drivers/phy/qcom/phy-qcom-qmp-ufs.c
create mode 100644 drivers/phy/qcom/phy-qcom-qmp.h
create mode 100644 drivers/pinctrl/qcom/pinctrl-sm8150.c
next reply other threads:[~2024-10-04 14:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-04 14:22 Caleb Connolly [this message]
2024-10-04 17:15 ` [PULL] Please pull qcom/qcom-next Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2025-01-22 16:17 Caleb Connolly
2025-01-22 21:57 ` Tom Rini
2024-10-04 14:17 Caleb Connolly
2024-10-04 14:21 ` Caleb Connolly
2024-09-09 10:04 Caleb Connolly
2024-09-09 10:14 ` Caleb Connolly
2024-09-09 19:45 ` Tom Rini
2024-03-01 15:45 Caleb Connolly
2024-03-01 21:35 ` 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=20241004142228.271558-1-caleb.connolly@linaro.org \
--to=caleb.connolly@linaro.org \
--cc=lehmanju@devpi.de \
--cc=neil.armstrong@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot-qcom@groups.io \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.