soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/6] i.MX drivers update for 5.14
@ 2021-06-13  8:25 Shawn Guo
  2021-06-13  8:25 ` Shawn Guo
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-5.14

for you to fetch changes up to 2a53b9d47b13ae8816ce5a7e5adeb77009d2ca4d:

  soc: imx: gpcv2: add support for i.MX8MN power domains (2021-06-12 11:51:28 +0800)

----------------------------------------------------------------
i.MX drivers update for 5.14:

- A patch series from Lucas Stach and Peng Fan adding i.MX8MM power
  domains support into i.MX GPCv2 driver.
- A couple of patches from Adam Ford adding i.MX8MN power domains on top
  of i.MX8MM power domain support.

----------------------------------------------------------------
Adam Ford (2):
      dt-bindings: add defines for i.MX8MN power domains
      soc: imx: gpcv2: add support for i.MX8MN power domains

Lucas Stach (11):
      soc: imx: gpcv2: move to more ideomatic error handling in probe
      soc: imx: gpcv2: move domain mapping to domain driver probe
      soc: imx: gpcv2: switch to clk_bulk_* API
      soc: imx: gpcv2: split power up and power down sequence control
      soc: imx: gpcv2: wait for ADB400 handshake
      soc: imx: gpcv2: add runtime PM support for power-domains
      soc: imx: gpcv2: allow domains without power-sequence control
      soc: imx: gpcv2: add support for optional resets
      dt-bindings: power: add defines for i.MX8MM power domains
      soc: imx: gpcv2: add support for i.MX8MM power domains
      soc: imx: gpcv2: Add support for missing i.MX8MM VPU/DISPMIX power domains

Peng Fan (1):
      soc: imx: gpcv2: move reset assert after requesting domain power up

 .../devicetree/bindings/power/fsl,imx-gpcv2.yaml   |   3 +
 drivers/soc/imx/gpcv2.c                            | 634 +++++++++++++++++----
 include/dt-bindings/power/imx8mm-power.h           |  22 +
 include/dt-bindings/power/imx8mn-power.h           |  15 +
 4 files changed, 559 insertions(+), 115 deletions(-)
 create mode 100644 include/dt-bindings/power/imx8mm-power.h
 create mode 100644 include/dt-bindings/power/imx8mn-power.h

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 1/6] i.MX drivers update for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 2/6] i.MX SoC changes " Shawn Guo
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-5.14

for you to fetch changes up to 2a53b9d47b13ae8816ce5a7e5adeb77009d2ca4d:

  soc: imx: gpcv2: add support for i.MX8MN power domains (2021-06-12 11:51:28 +0800)

----------------------------------------------------------------
i.MX drivers update for 5.14:

- A patch series from Lucas Stach and Peng Fan adding i.MX8MM power
  domains support into i.MX GPCv2 driver.
- A couple of patches from Adam Ford adding i.MX8MN power domains on top
  of i.MX8MM power domain support.

----------------------------------------------------------------
Adam Ford (2):
      dt-bindings: add defines for i.MX8MN power domains
      soc: imx: gpcv2: add support for i.MX8MN power domains

Lucas Stach (11):
      soc: imx: gpcv2: move to more ideomatic error handling in probe
      soc: imx: gpcv2: move domain mapping to domain driver probe
      soc: imx: gpcv2: switch to clk_bulk_* API
      soc: imx: gpcv2: split power up and power down sequence control
      soc: imx: gpcv2: wait for ADB400 handshake
      soc: imx: gpcv2: add runtime PM support for power-domains
      soc: imx: gpcv2: allow domains without power-sequence control
      soc: imx: gpcv2: add support for optional resets
      dt-bindings: power: add defines for i.MX8MM power domains
      soc: imx: gpcv2: add support for i.MX8MM power domains
      soc: imx: gpcv2: Add support for missing i.MX8MM VPU/DISPMIX power domains

Peng Fan (1):
      soc: imx: gpcv2: move reset assert after requesting domain power up

 .../devicetree/bindings/power/fsl,imx-gpcv2.yaml   |   3 +
 drivers/soc/imx/gpcv2.c                            | 634 +++++++++++++++++----
 include/dt-bindings/power/imx8mm-power.h           |  22 +
 include/dt-bindings/power/imx8mn-power.h           |  15 +
 4 files changed, 559 insertions(+), 115 deletions(-)
 create mode 100644 include/dt-bindings/power/imx8mm-power.h
 create mode 100644 include/dt-bindings/power/imx8mn-power.h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 2/6] i.MX SoC changes for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
  2021-06-13  8:25 ` Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25   ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 3/6] i.MX dt-bindings update " Shawn Guo
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.14

for you to fetch changes up to e34645f45805d8308866de7b69f117f554605bb6:

  ARM: imx: add smp support for imx7d (2021-06-12 12:02:57 +0800)

----------------------------------------------------------------
i.MX SoC changes for 5.14:

- Add SMP support for i.MX7D, as there are i.MX7D devices running in
  field with U-Boot that doesn't support PSCI.
- Fix imx5_cpu_suspend_info reference in i.MX5 PM code comments.
- Add SoC ID initialization for i.MX50.
- Drop unnecessary of_platform_default_populate() call from i.MX6Q
  .init_machine hook.
- A series from Oleksij Rempel to remove most of the i.MX6/7 board
  specific PHY fixups.

----------------------------------------------------------------
Anson Huang (1):
      ARM: imx: add smp support for imx7d

Jonathan Neuschäfer (2):
      ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info
      ARM: imx: Initialize SoC ID on i.MX50

Marco Felsch (1):
      ARM: imx6q: drop of_platform_default_populate() from init_machine

Oleksij Rempel (7):
      ARM: imx6q: remove PHY fixup for KSZ9031
      ARM: imx6q: remove part of ar8031_phy_fixup()
      ARM: imx6q: remove BMCR_PDOWN handler in ar8035_phy_fixup()
      ARM: imx6q: remove clk-out fixup for the Atheros AR8031 and AR8035 PHYs
      ARM: imx6q: remove Atheros AR8035 SmartEEE fixup
      ARM: imx6sx: remove Atheros AR8031 PHY fixup
      ARM: imx7d: remove Atheros AR8031 PHY fixup

 arch/arm/mach-imx/Makefile        |   2 +-
 arch/arm/mach-imx/common.h        |   3 ++
 arch/arm/mach-imx/headsmp.S       |   9 ++++
 arch/arm/mach-imx/hotplug.c       |   3 ++
 arch/arm/mach-imx/mach-imx50.c    |   7 +++
 arch/arm/mach-imx/mach-imx6q.c    |  88 ---------------------------------
 arch/arm/mach-imx/mach-imx6sx.c   |  26 ----------
 arch/arm/mach-imx/mach-imx7d.c    |  25 +---------
 arch/arm/mach-imx/platsmp.c       |  26 ++++++++++
 arch/arm/mach-imx/src.c           | 101 ++++++++++++++++++++++++++++++++++----
 arch/arm/mach-imx/suspend-imx53.S |   4 +-
 drivers/soc/imx/soc-imx.c         |   3 ++
 include/soc/imx/cpu.h             |   1 +
 13 files changed, 149 insertions(+), 149 deletions(-)

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 2/6] i.MX SoC changes for 5.14
  2021-06-13  8:25 ` [GIT PULL 2/6] i.MX SoC changes " Shawn Guo
@ 2021-06-13  8:25   ` Shawn Guo
  0 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.14

for you to fetch changes up to e34645f45805d8308866de7b69f117f554605bb6:

  ARM: imx: add smp support for imx7d (2021-06-12 12:02:57 +0800)

----------------------------------------------------------------
i.MX SoC changes for 5.14:

- Add SMP support for i.MX7D, as there are i.MX7D devices running in
  field with U-Boot that doesn't support PSCI.
- Fix imx5_cpu_suspend_info reference in i.MX5 PM code comments.
- Add SoC ID initialization for i.MX50.
- Drop unnecessary of_platform_default_populate() call from i.MX6Q
  .init_machine hook.
- A series from Oleksij Rempel to remove most of the i.MX6/7 board
  specific PHY fixups.

----------------------------------------------------------------
Anson Huang (1):
      ARM: imx: add smp support for imx7d

Jonathan Neuschäfer (2):
      ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info
      ARM: imx: Initialize SoC ID on i.MX50

Marco Felsch (1):
      ARM: imx6q: drop of_platform_default_populate() from init_machine

Oleksij Rempel (7):
      ARM: imx6q: remove PHY fixup for KSZ9031
      ARM: imx6q: remove part of ar8031_phy_fixup()
      ARM: imx6q: remove BMCR_PDOWN handler in ar8035_phy_fixup()
      ARM: imx6q: remove clk-out fixup for the Atheros AR8031 and AR8035 PHYs
      ARM: imx6q: remove Atheros AR8035 SmartEEE fixup
      ARM: imx6sx: remove Atheros AR8031 PHY fixup
      ARM: imx7d: remove Atheros AR8031 PHY fixup

 arch/arm/mach-imx/Makefile        |   2 +-
 arch/arm/mach-imx/common.h        |   3 ++
 arch/arm/mach-imx/headsmp.S       |   9 ++++
 arch/arm/mach-imx/hotplug.c       |   3 ++
 arch/arm/mach-imx/mach-imx50.c    |   7 +++
 arch/arm/mach-imx/mach-imx6q.c    |  88 ---------------------------------
 arch/arm/mach-imx/mach-imx6sx.c   |  26 ----------
 arch/arm/mach-imx/mach-imx7d.c    |  25 +---------
 arch/arm/mach-imx/platsmp.c       |  26 ++++++++++
 arch/arm/mach-imx/src.c           | 101 ++++++++++++++++++++++++++++++++++----
 arch/arm/mach-imx/suspend-imx53.S |   4 +-
 drivers/soc/imx/soc-imx.c         |   3 ++
 include/soc/imx/cpu.h             |   1 +
 13 files changed, 149 insertions(+), 149 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 3/6] i.MX dt-bindings update for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
  2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 2/6] i.MX SoC changes " Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25   ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 4/6] i.MX device tree changes " Shawn Guo
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-bindings-5.14

for you to fetch changes up to cd044eafd7105275220f6b7140a8a8fb64e0e5af:

  dt-bindings: arm: fsl: add GE B1x5pv2 boards (2021-06-12 17:57:52 +0800)

----------------------------------------------------------------
i.MX dt-bindings update for 5.14:

- Add vendor prefixes for congatec GmbH and DaSheng, Inc.
- Add compatibles for i.MX6Q DaSheng COM-9XX SBC, GE B1x5pv2 and
  i.MX8MM GW7901 boards.
- Add an optional 'resets' property for i.MX GPCv2 bindings.

----------------------------------------------------------------
Dillon Min (2):
      dt-bindings: add dasheng vendor prefix
      dt-bindings: arm: imx: Add i.mx6q DaSheng COM-9XX SBC

Lucas Stach (1):
      dt-bindings: imx: gpcv2: add support for optional resets

Sebastian Reichel (2):
      dt-bindings: vendor-prefixes: add congatec
      dt-bindings: arm: fsl: add GE B1x5pv2 boards

Tim Harvey (1):
      dt-bindings: arm: imx: add imx8mm gw7901 support

 Documentation/devicetree/bindings/arm/fsl.yaml             | 13 +++++++++++++
 Documentation/devicetree/bindings/power/fsl,imx-gpcv2.yaml | 10 ++++++++++
 Documentation/devicetree/bindings/vendor-prefixes.yaml     |  4 ++++
 3 files changed, 27 insertions(+)

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 3/6] i.MX dt-bindings update for 5.14
  2021-06-13  8:25 ` [GIT PULL 3/6] i.MX dt-bindings update " Shawn Guo
@ 2021-06-13  8:25   ` Shawn Guo
  0 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-bindings-5.14

for you to fetch changes up to cd044eafd7105275220f6b7140a8a8fb64e0e5af:

  dt-bindings: arm: fsl: add GE B1x5pv2 boards (2021-06-12 17:57:52 +0800)

----------------------------------------------------------------
i.MX dt-bindings update for 5.14:

- Add vendor prefixes for congatec GmbH and DaSheng, Inc.
- Add compatibles for i.MX6Q DaSheng COM-9XX SBC, GE B1x5pv2 and
  i.MX8MM GW7901 boards.
- Add an optional 'resets' property for i.MX GPCv2 bindings.

----------------------------------------------------------------
Dillon Min (2):
      dt-bindings: add dasheng vendor prefix
      dt-bindings: arm: imx: Add i.mx6q DaSheng COM-9XX SBC

Lucas Stach (1):
      dt-bindings: imx: gpcv2: add support for optional resets

Sebastian Reichel (2):
      dt-bindings: vendor-prefixes: add congatec
      dt-bindings: arm: fsl: add GE B1x5pv2 boards

Tim Harvey (1):
      dt-bindings: arm: imx: add imx8mm gw7901 support

 Documentation/devicetree/bindings/arm/fsl.yaml             | 13 +++++++++++++
 Documentation/devicetree/bindings/power/fsl,imx-gpcv2.yaml | 10 ++++++++++
 Documentation/devicetree/bindings/vendor-prefixes.yaml     |  4 ++++
 3 files changed, 27 insertions(+)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 4/6] i.MX device tree changes for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
                   ` (2 preceding siblings ...)
  2021-06-13  8:25 ` [GIT PULL 3/6] i.MX dt-bindings update " Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25   ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 5/6] i.MX arm64 " Shawn Guo
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt-5.14

for you to fetch changes up to 1fac5db35ee91b88b07f6e062b0c2355fe71b289:

  ARM: dts: imx6: Add GE B1x5v2 (2021-06-12 12:22:22 +0800)

----------------------------------------------------------------
i.MX device tree changes for 5.14:

- New board support: i.MX6Q DaSheng COM-9XX SBC board, i.MX28 based XEA
  board, GE B1x5v2 boards.
- A series from Christoph Niedermaier to correct imx6q-dhcom
  descriptions, add device aliases and ethernet VIO regulator.
- Correct Ethernet node name for imx51-digi-connectcore-som and
  imx53-ard board to comply DT schema.
- A couple of update on imx6dl-yapp4 board, configuring OLED display
  segment offset, and using aliases to set custom MMC device indexes.
- A series from Oleksij Rempel and Robin van der Gracht to update
  Protonic boards: imx6dl-prtvt7, imx6dl-plym2m and imx6qdl-vicut1.
- A series from Shengjiu Wang to improve various audio support on NXP
  reference boards.
- Rename pinfunc for i.MX25 GPIO_[A-F] pads for consistency.

----------------------------------------------------------------
Christoph Niedermaier (5):
      ARM: dts: imx6q-dhcom: Fix ethernet reset time properties
      ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems
      ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery
      ARM: dts: imx6q-dhcom: Add aliases for i2c, serial and rtc
      ARM: dts: imx6q-dhcom: Add ethernet VIO regulator

Dillon Min (1):
      ARM: dts: imx: Add i.mx6q DaSheng COM-9XX SBC board support

Fabio Estevam (1):
      ARM: dts: imx6qdl-wandboard-revd1: Remove PAD_EIM_D22 from hog group

Geert Uytterhoeven (2):
      ARM: dts: i.MX51: digi-connectcore-som: Correct Ethernet node name
      ARM: dts: imx53-ard: Correct Ethernet node name

Lukasz Majewski (1):
      ARM: dts: imx28: Add DTS description of imx28 based XEA board

Michal Vokáč (2):
      ARM: dts: imx6dl-yapp4: Configure the OLED display segment offset
      ARM: dts: imx6dl-yapp4: Use aliases to set custom MMC device indexes

Oleksij Rempel (8):
      ARM: dts: imx6: edmqmx6: set phy-mode to RGMII-ID
      ARM: dts: imx6dl-riotboard: configure PHY clock and set proper EEE value
      ARM: dts: imx6dl-prtvt7: add TSC2046 touchscreen node
      ARM: dts: imx6dl-prtvt7: Remove backlight enable gpio
      ARM: dts: imx6dl-prtvt7: fix PWM cell count for the backlight node.
      ARM: dts: imx6dl-plym2m: remove touchscreen-size-* properties
      ARM: dts: imx6dl: enable touchscreen debounce filter on PLYM2M and PRTVT7 boards
      ARM: dts: imx6qdl-vicut1: add interrupt-counter nodes

Primoz Fiser (1):
      ARM: dts: imx6: phyFLEX: Fix UART hardware flow control

Robin van der Gracht (3):
      ARM: dts: imx6dl-prtvt7: Enable the VPU
      ARM: dts: imx6dl-prtvt7: The sgtl5000 uses i2s not ac97
      ARM: dts: imx6dl-prtvt7: Remove unused 'sound-dai-cells' from ssi1 node

Sebastian Reichel (1):
      ARM: dts: imx6: Add GE B1x5v2

Shengjiu Wang (4):
      ARM: dts: imx6ul-14x14-evk: Switch to fsl-asoc-card sound card
      ARM: dts: imx7d-sdb: Add HDMI audio sound card
      ARM: dts: imx6qdl-sabresd: Add asrc support for wm8962 sound card
      ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect

Uwe Kleine-König (1):
      ARM: dts: imx25-pinfunc: Fix gpio function name for pads GPIO_[A-F]

 arch/arm/boot/dts/Makefile                        |   9 +-
 arch/arm/boot/dts/imx25-pinfunc.h                 |  12 +-
 arch/arm/boot/dts/imx28-lwe.dtsi                  | 170 ++++++
 arch/arm/boot/dts/imx28-xea.dts                   |  99 ++++
 arch/arm/boot/dts/imx51-digi-connectcore-som.dtsi |   2 +-
 arch/arm/boot/dts/imx53-ard.dts                   |   2 +-
 arch/arm/boot/dts/imx6dl-b105pv2.dts              |  32 ++
 arch/arm/boot/dts/imx6dl-b105v2.dts               |  32 ++
 arch/arm/boot/dts/imx6dl-b125pv2.dts              |  30 ++
 arch/arm/boot/dts/imx6dl-b125v2.dts               |  30 ++
 arch/arm/boot/dts/imx6dl-b155v2.dts               |  32 ++
 arch/arm/boot/dts/imx6dl-b1x5pv2.dtsi             | 413 +++++++++++++++
 arch/arm/boot/dts/imx6dl-b1x5v2.dtsi              |  58 ++
 arch/arm/boot/dts/imx6dl-plym2m.dts               |   6 +-
 arch/arm/boot/dts/imx6dl-prtvt7.dts               |  36 +-
 arch/arm/boot/dts/imx6dl-qmx6.dtsi                | 612 ++++++++++++++++++++++
 arch/arm/boot/dts/imx6dl-riotboard.dts            |   2 +
 arch/arm/boot/dts/imx6dl-yapp4-common.dtsi        |   3 +
 arch/arm/boot/dts/imx6q-dhcom-som.dtsi            |  71 ++-
 arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts           |   2 +-
 arch/arm/boot/dts/imx6q-ds.dts                    |  17 +
 arch/arm/boot/dts/imx6qdl-ds.dtsi                 | 458 ++++++++++++++++
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi      |   5 +-
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi            |  10 +
 arch/arm/boot/dts/imx6qdl-vicut1.dtsi             |  41 +-
 arch/arm/boot/dts/imx6qdl-wandboard-revd1.dtsi    |   1 -
 arch/arm/boot/dts/imx6ul-14x14-evk.dtsi           |  50 +-
 arch/arm/boot/dts/imx7d-sdb.dts                   |   7 +
 28 files changed, 2173 insertions(+), 69 deletions(-)
 create mode 100644 arch/arm/boot/dts/imx28-lwe.dtsi
 create mode 100644 arch/arm/boot/dts/imx28-xea.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b105pv2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b105v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b125pv2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b125v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b155v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b1x5pv2.dtsi
 create mode 100644 arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
 create mode 100644 arch/arm/boot/dts/imx6dl-qmx6.dtsi
 create mode 100644 arch/arm/boot/dts/imx6q-ds.dts
 create mode 100644 arch/arm/boot/dts/imx6qdl-ds.dtsi

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 4/6] i.MX device tree changes for 5.14
  2021-06-13  8:25 ` [GIT PULL 4/6] i.MX device tree changes " Shawn Guo
@ 2021-06-13  8:25   ` Shawn Guo
  0 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt-5.14

for you to fetch changes up to 1fac5db35ee91b88b07f6e062b0c2355fe71b289:

  ARM: dts: imx6: Add GE B1x5v2 (2021-06-12 12:22:22 +0800)

----------------------------------------------------------------
i.MX device tree changes for 5.14:

- New board support: i.MX6Q DaSheng COM-9XX SBC board, i.MX28 based XEA
  board, GE B1x5v2 boards.
- A series from Christoph Niedermaier to correct imx6q-dhcom
  descriptions, add device aliases and ethernet VIO regulator.
- Correct Ethernet node name for imx51-digi-connectcore-som and
  imx53-ard board to comply DT schema.
- A couple of update on imx6dl-yapp4 board, configuring OLED display
  segment offset, and using aliases to set custom MMC device indexes.
- A series from Oleksij Rempel and Robin van der Gracht to update
  Protonic boards: imx6dl-prtvt7, imx6dl-plym2m and imx6qdl-vicut1.
- A series from Shengjiu Wang to improve various audio support on NXP
  reference boards.
- Rename pinfunc for i.MX25 GPIO_[A-F] pads for consistency.

----------------------------------------------------------------
Christoph Niedermaier (5):
      ARM: dts: imx6q-dhcom: Fix ethernet reset time properties
      ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems
      ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery
      ARM: dts: imx6q-dhcom: Add aliases for i2c, serial and rtc
      ARM: dts: imx6q-dhcom: Add ethernet VIO regulator

Dillon Min (1):
      ARM: dts: imx: Add i.mx6q DaSheng COM-9XX SBC board support

Fabio Estevam (1):
      ARM: dts: imx6qdl-wandboard-revd1: Remove PAD_EIM_D22 from hog group

Geert Uytterhoeven (2):
      ARM: dts: i.MX51: digi-connectcore-som: Correct Ethernet node name
      ARM: dts: imx53-ard: Correct Ethernet node name

Lukasz Majewski (1):
      ARM: dts: imx28: Add DTS description of imx28 based XEA board

Michal Vokáč (2):
      ARM: dts: imx6dl-yapp4: Configure the OLED display segment offset
      ARM: dts: imx6dl-yapp4: Use aliases to set custom MMC device indexes

Oleksij Rempel (8):
      ARM: dts: imx6: edmqmx6: set phy-mode to RGMII-ID
      ARM: dts: imx6dl-riotboard: configure PHY clock and set proper EEE value
      ARM: dts: imx6dl-prtvt7: add TSC2046 touchscreen node
      ARM: dts: imx6dl-prtvt7: Remove backlight enable gpio
      ARM: dts: imx6dl-prtvt7: fix PWM cell count for the backlight node.
      ARM: dts: imx6dl-plym2m: remove touchscreen-size-* properties
      ARM: dts: imx6dl: enable touchscreen debounce filter on PLYM2M and PRTVT7 boards
      ARM: dts: imx6qdl-vicut1: add interrupt-counter nodes

Primoz Fiser (1):
      ARM: dts: imx6: phyFLEX: Fix UART hardware flow control

Robin van der Gracht (3):
      ARM: dts: imx6dl-prtvt7: Enable the VPU
      ARM: dts: imx6dl-prtvt7: The sgtl5000 uses i2s not ac97
      ARM: dts: imx6dl-prtvt7: Remove unused 'sound-dai-cells' from ssi1 node

Sebastian Reichel (1):
      ARM: dts: imx6: Add GE B1x5v2

Shengjiu Wang (4):
      ARM: dts: imx6ul-14x14-evk: Switch to fsl-asoc-card sound card
      ARM: dts: imx7d-sdb: Add HDMI audio sound card
      ARM: dts: imx6qdl-sabresd: Add asrc support for wm8962 sound card
      ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect

Uwe Kleine-König (1):
      ARM: dts: imx25-pinfunc: Fix gpio function name for pads GPIO_[A-F]

 arch/arm/boot/dts/Makefile                        |   9 +-
 arch/arm/boot/dts/imx25-pinfunc.h                 |  12 +-
 arch/arm/boot/dts/imx28-lwe.dtsi                  | 170 ++++++
 arch/arm/boot/dts/imx28-xea.dts                   |  99 ++++
 arch/arm/boot/dts/imx51-digi-connectcore-som.dtsi |   2 +-
 arch/arm/boot/dts/imx53-ard.dts                   |   2 +-
 arch/arm/boot/dts/imx6dl-b105pv2.dts              |  32 ++
 arch/arm/boot/dts/imx6dl-b105v2.dts               |  32 ++
 arch/arm/boot/dts/imx6dl-b125pv2.dts              |  30 ++
 arch/arm/boot/dts/imx6dl-b125v2.dts               |  30 ++
 arch/arm/boot/dts/imx6dl-b155v2.dts               |  32 ++
 arch/arm/boot/dts/imx6dl-b1x5pv2.dtsi             | 413 +++++++++++++++
 arch/arm/boot/dts/imx6dl-b1x5v2.dtsi              |  58 ++
 arch/arm/boot/dts/imx6dl-plym2m.dts               |   6 +-
 arch/arm/boot/dts/imx6dl-prtvt7.dts               |  36 +-
 arch/arm/boot/dts/imx6dl-qmx6.dtsi                | 612 ++++++++++++++++++++++
 arch/arm/boot/dts/imx6dl-riotboard.dts            |   2 +
 arch/arm/boot/dts/imx6dl-yapp4-common.dtsi        |   3 +
 arch/arm/boot/dts/imx6q-dhcom-som.dtsi            |  71 ++-
 arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts           |   2 +-
 arch/arm/boot/dts/imx6q-ds.dts                    |  17 +
 arch/arm/boot/dts/imx6qdl-ds.dtsi                 | 458 ++++++++++++++++
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi      |   5 +-
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi            |  10 +
 arch/arm/boot/dts/imx6qdl-vicut1.dtsi             |  41 +-
 arch/arm/boot/dts/imx6qdl-wandboard-revd1.dtsi    |   1 -
 arch/arm/boot/dts/imx6ul-14x14-evk.dtsi           |  50 +-
 arch/arm/boot/dts/imx7d-sdb.dts                   |   7 +
 28 files changed, 2173 insertions(+), 69 deletions(-)
 create mode 100644 arch/arm/boot/dts/imx28-lwe.dtsi
 create mode 100644 arch/arm/boot/dts/imx28-xea.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b105pv2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b105v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b125pv2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b125v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b155v2.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-b1x5pv2.dtsi
 create mode 100644 arch/arm/boot/dts/imx6dl-b1x5v2.dtsi
 create mode 100644 arch/arm/boot/dts/imx6dl-qmx6.dtsi
 create mode 100644 arch/arm/boot/dts/imx6q-ds.dts
 create mode 100644 arch/arm/boot/dts/imx6qdl-ds.dtsi

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 5/6] i.MX arm64 device tree changes for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
                   ` (3 preceding siblings ...)
  2021-06-13  8:25 ` [GIT PULL 4/6] i.MX device tree changes " Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25   ` Shawn Guo
  2021-06-13  8:25 ` [GIT PULL 6/6] i.MX defconfig update " Shawn Guo
  2021-06-15 16:00 ` [GIT PULL 1/6] i.MX drivers " patchwork-bot+linux-soc
  6 siblings, 1 reply; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt64-5.14

for you to fetch changes up to 21cc1f222e890fa989d1395e47b16777fea46e5f:

  arm64: dts: imx8mn-evk: disable over current for usb (2021-06-12 17:59:43 +0800)

----------------------------------------------------------------
i.MX arm64 device tree chagnes for 5.14:

- New board support: i.MX8MM Gateworks GW7901 board.
- Add SPBA bus description for i.MX8MN and i.MX8MM.
- A series of update on imx8mq-nitrogen board to add USB OTG/Host and
  LT8912 MIPI-DSI to HDMI support.
- Correct enet clock description for i.MX8 Connection Subsystem.
- A couple of patches from Heiko Schocher to add FlexSPI device for
  i.MX8MP SoC and enable SPI NOR Flash support on imx8mp-phycore-som.
- Remove the reference to audio IPG clock on i.MX8MP.
- Enable EQOS Ethernet and PMIC device support for imx8mp-evk.
- Disable USB over-current on imx8mm-evk and imx8mn-evk.
- Add dma-ranges description for i.MX8MM and i.MX8MN SoC.
- Add PCIe clock description for i.MX8MQ SoC.
- Enable PCIe support on freeway board.
- Enable OPTEE support on ls1028a-rdb board.

----------------------------------------------------------------
Adam Ford (3):
      arm64: dts: imx8mn: Add spba1 bus
      arm64: dts: imx8mm: Add spba1 and spba2 buses
      arm64: dts: imx8mn-beacon-som: Assign PMIC clock

Adrien Grassein (3):
      arm64: dts: imx8mq-nitrogen: add USB OTG support
      arm64: dts: imx8mq-nitrogen: add USB HOST support
      arm64: dts: imx8mq-nitrogen: add lt8912 MIPI-DSI to HDMI

Dong Aisheng (1):
      arm64: dts: imx8: conn: fix enet clock setting

Heiko Schocher (2):
      arm64: dts: imx8mp: add flexspi node
      arm64: dts: imx8mp-phycore-som: enable spi nor

Jacky Bai (1):
      arm64: dts: imx8mp: Remove the reference to audio ipg clock on imx8mp

Joakim Zhang (1):
      arm64: dts: imx8mp-evk: enable EQOS ethernet

Kornel Duleba (1):
      arm64: dts: fsl-ls1028a: Correct ECAM PCIE window ranges

Li Jun (2):
      arm64: dts: imx8mm-evk: disable over current for usb1
      arm64: dts: imx8mn-evk: disable over current for usb

Lucas Stach (3):
      arm64: dts: imx8mm: specify dma-ranges
      arm64: dts: imx8mn: specify dma-ranges
      arm64: dts: imx8mq: assign PCIe clocks

Mian Yousaf Kaukab (2):
      arm64: dts: ls1012a: enable PCIe on freeway board
      arm64: dts: ls208xa: remove bus-num from dspi node

Richard Zhu (1):
      arm64: dts: imx8mq-evk: add one regulator used to power up pcie phy

Sahil Malhotra (1):
      arm64: dts: ls1028a-rdb: enable optee node

Tim Harvey (1):
      arm64: dts: imx: Add i.mx8mm Gateworks gw7901 dts support

Uwe Kleine-König (1):
      arm64: dts: imx8mp-evk: Add PMIC device

Zhen Lei (1):
      arm64: dts: freescale: Separate each group of data in the property 'reg'

 arch/arm64/boot/dts/freescale/Makefile             |    1 +
 arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dts |    4 +
 arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi     |   14 +-
 arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dts  |    4 +
 arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi     |   12 +-
 arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi     |   16 +-
 arch/arm64/boot/dts/freescale/fsl-ls2088a.dtsi     |   16 +-
 arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi     |    1 -
 arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/imx8-ss-conn.dtsi    |   50 +-
 arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi      |    1 +
 .../boot/dts/freescale/imx8mm-venice-gw7901.dts    | 1019 ++++++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8mm.dtsi          |  363 +++----
 .../boot/dts/freescale/imx8mn-beacon-som.dtsi      |    3 +
 arch/arm64/boot/dts/freescale/imx8mn-evk.dtsi      |    1 +
 arch/arm64/boot/dts/freescale/imx8mn.dtsi          |  147 +--
 arch/arm64/boot/dts/freescale/imx8mp-evk.dts       |  139 +++
 .../boot/dts/freescale/imx8mp-phycore-som.dtsi     |   25 +
 arch/arm64/boot/dts/freescale/imx8mp.dtsi          |   18 +-
 arch/arm64/boot/dts/freescale/imx8mq-evk.dts       |    1 +
 arch/arm64/boot/dts/freescale/imx8mq-nitrogen.dts  |  182 ++++
 arch/arm64/boot/dts/freescale/imx8mq.dtsi          |   16 +
 25 files changed, 1789 insertions(+), 340 deletions(-)
 create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-venice-gw7901.dts

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 5/6] i.MX arm64 device tree changes for 5.14
  2021-06-13  8:25 ` [GIT PULL 5/6] i.MX arm64 " Shawn Guo
@ 2021-06-13  8:25   ` Shawn Guo
  0 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt64-5.14

for you to fetch changes up to 21cc1f222e890fa989d1395e47b16777fea46e5f:

  arm64: dts: imx8mn-evk: disable over current for usb (2021-06-12 17:59:43 +0800)

----------------------------------------------------------------
i.MX arm64 device tree chagnes for 5.14:

- New board support: i.MX8MM Gateworks GW7901 board.
- Add SPBA bus description for i.MX8MN and i.MX8MM.
- A series of update on imx8mq-nitrogen board to add USB OTG/Host and
  LT8912 MIPI-DSI to HDMI support.
- Correct enet clock description for i.MX8 Connection Subsystem.
- A couple of patches from Heiko Schocher to add FlexSPI device for
  i.MX8MP SoC and enable SPI NOR Flash support on imx8mp-phycore-som.
- Remove the reference to audio IPG clock on i.MX8MP.
- Enable EQOS Ethernet and PMIC device support for imx8mp-evk.
- Disable USB over-current on imx8mm-evk and imx8mn-evk.
- Add dma-ranges description for i.MX8MM and i.MX8MN SoC.
- Add PCIe clock description for i.MX8MQ SoC.
- Enable PCIe support on freeway board.
- Enable OPTEE support on ls1028a-rdb board.

----------------------------------------------------------------
Adam Ford (3):
      arm64: dts: imx8mn: Add spba1 bus
      arm64: dts: imx8mm: Add spba1 and spba2 buses
      arm64: dts: imx8mn-beacon-som: Assign PMIC clock

Adrien Grassein (3):
      arm64: dts: imx8mq-nitrogen: add USB OTG support
      arm64: dts: imx8mq-nitrogen: add USB HOST support
      arm64: dts: imx8mq-nitrogen: add lt8912 MIPI-DSI to HDMI

Dong Aisheng (1):
      arm64: dts: imx8: conn: fix enet clock setting

Heiko Schocher (2):
      arm64: dts: imx8mp: add flexspi node
      arm64: dts: imx8mp-phycore-som: enable spi nor

Jacky Bai (1):
      arm64: dts: imx8mp: Remove the reference to audio ipg clock on imx8mp

Joakim Zhang (1):
      arm64: dts: imx8mp-evk: enable EQOS ethernet

Kornel Duleba (1):
      arm64: dts: fsl-ls1028a: Correct ECAM PCIE window ranges

Li Jun (2):
      arm64: dts: imx8mm-evk: disable over current for usb1
      arm64: dts: imx8mn-evk: disable over current for usb

Lucas Stach (3):
      arm64: dts: imx8mm: specify dma-ranges
      arm64: dts: imx8mn: specify dma-ranges
      arm64: dts: imx8mq: assign PCIe clocks

Mian Yousaf Kaukab (2):
      arm64: dts: ls1012a: enable PCIe on freeway board
      arm64: dts: ls208xa: remove bus-num from dspi node

Richard Zhu (1):
      arm64: dts: imx8mq-evk: add one regulator used to power up pcie phy

Sahil Malhotra (1):
      arm64: dts: ls1028a-rdb: enable optee node

Tim Harvey (1):
      arm64: dts: imx: Add i.mx8mm Gateworks gw7901 dts support

Uwe Kleine-König (1):
      arm64: dts: imx8mp-evk: Add PMIC device

Zhen Lei (1):
      arm64: dts: freescale: Separate each group of data in the property 'reg'

 arch/arm64/boot/dts/freescale/Makefile             |    1 +
 arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dts |    4 +
 arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi     |   14 +-
 arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dts  |    4 +
 arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi     |   12 +-
 arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi     |   16 +-
 arch/arm64/boot/dts/freescale/fsl-ls2088a.dtsi     |   16 +-
 arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi     |    1 -
 arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi     |   24 +-
 arch/arm64/boot/dts/freescale/imx8-ss-conn.dtsi    |   50 +-
 arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi      |    1 +
 .../boot/dts/freescale/imx8mm-venice-gw7901.dts    | 1019 ++++++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8mm.dtsi          |  363 +++----
 .../boot/dts/freescale/imx8mn-beacon-som.dtsi      |    3 +
 arch/arm64/boot/dts/freescale/imx8mn-evk.dtsi      |    1 +
 arch/arm64/boot/dts/freescale/imx8mn.dtsi          |  147 +--
 arch/arm64/boot/dts/freescale/imx8mp-evk.dts       |  139 +++
 .../boot/dts/freescale/imx8mp-phycore-som.dtsi     |   25 +
 arch/arm64/boot/dts/freescale/imx8mp.dtsi          |   18 +-
 arch/arm64/boot/dts/freescale/imx8mq-evk.dts       |    1 +
 arch/arm64/boot/dts/freescale/imx8mq-nitrogen.dts  |  182 ++++
 arch/arm64/boot/dts/freescale/imx8mq.dtsi          |   16 +
 25 files changed, 1789 insertions(+), 340 deletions(-)
 create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-venice-gw7901.dts

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 6/6] i.MX defconfig update for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
                   ` (4 preceding siblings ...)
  2021-06-13  8:25 ` [GIT PULL 5/6] i.MX arm64 " Shawn Guo
@ 2021-06-13  8:25 ` Shawn Guo
  2021-06-13  8:25   ` Shawn Guo
  2021-06-15 16:00 ` [GIT PULL 1/6] i.MX drivers " patchwork-bot+linux-soc
  6 siblings, 1 reply; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-defconfig-5.14

for you to fetch changes up to 6252a42b0fd70b03aa17c58d218dcabd863cc02a:

  ARM: imx_v6_v7_defconfig: Select the Wifi ath10k sdio driver (2021-06-12 15:42:40 +0800)

----------------------------------------------------------------
i.MX defconfig update for 5.14:

- Enable LT8912B DRM bridge and Layerscape EDAC driver support in arm64
  defconfig.
- Enable WiFi ath10k SDIO driver in imx_v6_v7_defconfig.

----------------------------------------------------------------
Adrien Grassein (1):
      arm64: defconfig: Enable LT8912B DRM bridge driver

Fabio Estevam (1):
      ARM: imx_v6_v7_defconfig: Select the Wifi ath10k sdio driver

Michael Walle (1):
      arm64: defconfig: enable Layerscape EDAC driver

 arch/arm/configs/imx_v6_v7_defconfig | 2 ++
 arch/arm64/configs/defconfig         | 2 ++
 2 files changed, 4 insertions(+)

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [GIT PULL 6/6] i.MX defconfig update for 5.14
  2021-06-13  8:25 ` [GIT PULL 6/6] i.MX defconfig update " Shawn Guo
@ 2021-06-13  8:25   ` Shawn Guo
  0 siblings, 0 replies; 13+ messages in thread
From: Shawn Guo @ 2021-06-13  8:25 UTC (permalink / raw)
  To: soc, arm
  Cc: Shawn Guo, Fabio Estevam, Stefan Agner, Li Yang, kernel,
	linux-imx, linux-arm-kernel

The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:

  Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-defconfig-5.14

for you to fetch changes up to 6252a42b0fd70b03aa17c58d218dcabd863cc02a:

  ARM: imx_v6_v7_defconfig: Select the Wifi ath10k sdio driver (2021-06-12 15:42:40 +0800)

----------------------------------------------------------------
i.MX defconfig update for 5.14:

- Enable LT8912B DRM bridge and Layerscape EDAC driver support in arm64
  defconfig.
- Enable WiFi ath10k SDIO driver in imx_v6_v7_defconfig.

----------------------------------------------------------------
Adrien Grassein (1):
      arm64: defconfig: Enable LT8912B DRM bridge driver

Fabio Estevam (1):
      ARM: imx_v6_v7_defconfig: Select the Wifi ath10k sdio driver

Michael Walle (1):
      arm64: defconfig: enable Layerscape EDAC driver

 arch/arm/configs/imx_v6_v7_defconfig | 2 ++
 arch/arm64/configs/defconfig         | 2 ++
 2 files changed, 4 insertions(+)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [GIT PULL 1/6] i.MX drivers update for 5.14
  2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
                   ` (5 preceding siblings ...)
  2021-06-13  8:25 ` [GIT PULL 6/6] i.MX defconfig update " Shawn Guo
@ 2021-06-15 16:00 ` patchwork-bot+linux-soc
  6 siblings, 0 replies; 13+ messages in thread
From: patchwork-bot+linux-soc @ 2021-06-15 16:00 UTC (permalink / raw)
  To: Shawn Guo; +Cc: soc

Hello:

This pull request was applied to soc/soc.git (refs/heads/for-next):

On Sun, 13 Jun 2021 16:25:39 +0800 you wrote:
> The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5:
> 
>   Linux 5.13-rc1 (2021-05-09 14:17:44 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-5.14
> 
> [...]

Here is the summary with links:
  - [GIT,PULL,1/6] i.MX drivers update for 5.14
    https://git.kernel.org/soc/soc/c/ec3171d7beaf
  - [GIT,PULL,2/6] i.MX SoC changes for 5.14
    https://git.kernel.org/soc/soc/c/57d459e2192e
  - [GIT,PULL,3/6] i.MX dt-bindings update for 5.14
    https://git.kernel.org/soc/soc/c/bb1a7fcec17e
  - [GIT,PULL,4/6] i.MX device tree changes for 5.14
    https://git.kernel.org/soc/soc/c/970d180b8b7e
  - [GIT,PULL,5/6] i.MX arm64 device tree changes for 5.14
    https://git.kernel.org/soc/soc/c/989e7e357c88
  - [GIT,PULL,6/6] i.MX defconfig update for 5.14
    https://git.kernel.org/soc/soc/c/dfde897bb1d5

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-06-15 16:00 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-13  8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo
2021-06-13  8:25 ` Shawn Guo
2021-06-13  8:25 ` [GIT PULL 2/6] i.MX SoC changes " Shawn Guo
2021-06-13  8:25   ` Shawn Guo
2021-06-13  8:25 ` [GIT PULL 3/6] i.MX dt-bindings update " Shawn Guo
2021-06-13  8:25   ` Shawn Guo
2021-06-13  8:25 ` [GIT PULL 4/6] i.MX device tree changes " Shawn Guo
2021-06-13  8:25   ` Shawn Guo
2021-06-13  8:25 ` [GIT PULL 5/6] i.MX arm64 " Shawn Guo
2021-06-13  8:25   ` Shawn Guo
2021-06-13  8:25 ` [GIT PULL 6/6] i.MX defconfig update " Shawn Guo
2021-06-13  8:25   ` Shawn Guo
2021-06-15 16:00 ` [GIT PULL 1/6] i.MX drivers " patchwork-bot+linux-soc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).