Re: [GIT PULL] Please pull u-boot-imx-next-20240324

2024-03-25 Thread Tom Rini
On Sun, Mar 24, 2024 at 02:53:08PM -0300, Fabio Estevam wrote:

> Hi Tom,
> 
> Please pull this material for next from u-boot-imx, thanks.
> 
> The following changes since commit fb49d6c289d942ff7de309a5c5eaa37a7f4235db:
> 
>   remoteproc: uclass: Add methods to load firmware to rproc and boot rproc 
> (2024-03-22 15:50:28 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git 
> tags/u-boot-imx-next-20240324
> 
> for you to fetch changes up to 9d27e441bb14dd526c60c13d5ff16353ca322eb3:
> 
>   board: phytec: phycore_imx8mp.env fix netboot issues (2024-03-24 13:42:10 
> -0300)
> 
> u-boot-imx-next-20240324

Applied to u-boot/next, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-imx-next-20240324

2024-03-24 Thread Fabio Estevam
Hi Tom,

Please pull this material for next from u-boot-imx, thanks.

The following changes since commit fb49d6c289d942ff7de309a5c5eaa37a7f4235db:

  remoteproc: uclass: Add methods to load firmware to rproc and boot rproc 
(2024-03-22 15:50:28 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git 
tags/u-boot-imx-next-20240324

for you to fetch changes up to 9d27e441bb14dd526c60c13d5ff16353ca322eb3:

  board: phytec: phycore_imx8mp.env fix netboot issues (2024-03-24 13:42:10 
-0300)

u-boot-imx-next-20240324
--

CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/20056

- Add ahab_commit command support.
- Add USB support for the imx93-phyboard-segin board.
- Add i.MX8MP PCIe support.
- Fix netboot environment on phycore_imx8mp.

Mathieu Othacehe (4):
  imx: ele_ahab: Add ahab_commit command support
  arm: dts: imx93-phyboard-segin: Add USB support
  configs: imx93-phyboard-segin: Add USB support
  configs: imx93-phyboard-segin: Add fastboot support

Sumit Garg (10):
  clk: imx8mp: Add support for PCIe clocks
  reset: imx: Refactor driver to simplify function names
  reset: imx: Add support for i.MX8MP reset controller
  imx8mp: power-domain: Add PCIe support
  imx8mp: power-domain: Expose high performance PLL clock
  phy: phy-imx8m-pcie: Add support for i.MX8M{M/P} PCIe PHY
  pci: Add DW PCIe controller support for iMX8MP SoC
  pcie_imx: Update header to describe it as a legacy driver
  verdin-imx8mp_defconfig: Enable PCIe/NVMe support
  MAINTAINERS: Add entry for PCIe DWC IMX driver

Tim Harvey (1):
  imx8mp_venice_defconfig: Enable PCIe/NVMe support

Yannic Moog (1):
  board: phytec: phycore_imx8mp.env fix netboot issues

 MAINTAINERS|   6 +
 arch/arm/dts/imx93-phyboard-segin-u-boot.dtsi  |  15 ++
 arch/arm/include/asm/mach-imx/ele_api.h|   2 +
 arch/arm/mach-imx/ele_ahab.c   |  29 +++
 board/phytec/phycore_imx8mp/phycore_imx8mp.env |   4 +-
 configs/imx8mp_venice_defconfig|   8 +
 configs/imx93-phyboard-segin_defconfig |  14 +
 configs/verdin-imx8mp_defconfig|   6 +
 drivers/clk/imx/clk-imx8mp.c   |   6 +
 drivers/misc/imx_ele/ele_api.c |  32 +++
 drivers/pci/Kconfig|  11 +
 drivers/pci/Makefile   |   1 +
 drivers/pci/pcie_dw_imx.c  | 338 +
 drivers/pci/pcie_imx.c |   8 +
 drivers/phy/Kconfig|  11 +
 drivers/phy/Makefile   |   1 +
 drivers/phy/phy-imx8m-pcie.c   | 283 +
 drivers/power/domain/imx8mp-hsiomix.c  | 190 +++---
 drivers/reset/reset-imx7.c | 143 +--
 19 files changed, 1049 insertions(+), 59 deletions(-)
 create mode 100644 drivers/pci/pcie_dw_imx.c
 create mode 100644 drivers/phy/phy-imx8m-pcie.c