mbox series

[PULL] Please pull qcom/qcom-next

Message ID 20241004142228.271558-1-caleb.connolly@linaro.org
State New
Headers show
Series [PULL] Please pull qcom/qcom-next | expand

Pull-request

git@source.denx.de:u-boot/custodians/u-boot-snapdragon.git qcom-next

Message

Caleb Connolly Oct. 4, 2024, 2:22 p.m. UTC
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

Comments

Tom Rini Oct. 4, 2024, 5:15 p.m. UTC | #1
On Fri, Oct 04, 2024 at 04:22:19PM +0200, Caleb Connolly wrote:

> 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

Applied to u-boot/next, thanks!