All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/9] phyCORE-i.MX8MP Update
@ 2021-07-07 12:57 Teresa Remmet
  2021-07-07 12:57 ` [PATCH v3 1/9] arm: dts: imx8mp: Resync imx8mp device tree include Teresa Remmet
                   ` (8 more replies)
  0 siblings, 9 replies; 43+ messages in thread
From: Teresa Remmet @ 2021-07-07 12:57 UTC (permalink / raw)
  To: u-boot
  Cc: Stefano Babic, Fabio Estevam, NXP i . MX U-Boot Team, Peng Fan,
	Jagan Teki, Heiko Schocher

Hello,

this is the third version of the phyCORE-i.MX8MP updates. This
includes also an update of imx8mp.dtsi from kernel and the introduction of a
common imx8mp-u-boot.dtsi.

This version only moves some code from one place/patch to an other.
No intentional functional change to the previous version.
Changes are listed in patches more detailed.

Changes in v3:
	- added Reviewed-by tags.
	- [2/9] moved binman nodes to common imx8mp-u-boot.dtsi
	- made now all debug uart changes in patch: 
          [4/9] "board: phytec: phycore_imx8mp: Change debug UART"

Changes in v2:
	- [5/9] removed hardcoded serverip in environment
	- [5/9] removed not needed fec eth defines in board config include

Teresa

Teresa Remmet (9):
  arm: dts: imx8mp: Resync imx8mp device tree include
  arm: dts: imx8mp: Add common u-boot dtsi
  arm: dts: imx8mp-phyboard-pollux: Sync dts files with kernel
  board: phytec: phycore_imx8mp: Change debug UART
  board: phytec: phycore_imx8mp: Add fec support
  board: phytec: phycore_imx8mp: Set VDD_ARM to 0,95V
  board: phytec: phycore-imx8mp: Enable DVS1 control
  arm: dts: imx8mp-phyboard-pollux-rdk-u-boot: Add wdog pinctrl entry
  board: phytec: imx8mp-phycore: Switch to binman

 arch/arm/dts/imx8mp-evk-u-boot.dtsi           | 143 +----------------
 .../imx8mp-phyboard-pollux-rdk-u-boot.dtsi    |  47 +-----
 arch/arm/dts/imx8mp-phyboard-pollux-rdk.dts   |  58 ++++++-
 arch/arm/dts/imx8mp-phycore-som.dtsi          |   2 +-
 arch/arm/dts/imx8mp-u-boot.dtsi               | 149 ++++++++++++++++++
 arch/arm/dts/imx8mp.dtsi                      | 146 ++++++++++++++++-
 arch/arm/mach-imx/imx8m/Kconfig               |   1 +
 .../phytec/phycore_imx8mp/imximage-8mp-sd.cfg |  10 ++
 board/phytec/phycore_imx8mp/phycore-imx8mp.c  |  14 ++
 board/phytec/phycore_imx8mp/spl.c             |  23 ++-
 configs/phycore-imx8mp_defconfig              |  12 +-
 include/configs/phycore_imx8mp.h              |  21 ++-
 12 files changed, 424 insertions(+), 202 deletions(-)
 create mode 100644 arch/arm/dts/imx8mp-u-boot.dtsi
 create mode 100644 board/phytec/phycore_imx8mp/imximage-8mp-sd.cfg

-- 
2.25.1


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

end of thread, other threads:[~2021-08-18  8:18 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-07 12:57 [PATCH v3 0/9] phyCORE-i.MX8MP Update Teresa Remmet
2021-07-07 12:57 ` [PATCH v3 1/9] arm: dts: imx8mp: Resync imx8mp device tree include Teresa Remmet
2021-07-10 15:52   ` sbabic
2021-07-10 19:35   ` sbabic
2021-07-07 12:57 ` [PATCH v3 2/9] arm: dts: imx8mp: Add common u-boot dtsi Teresa Remmet
2021-07-09 14:47   ` Tim Harvey
2021-07-10 12:23     ` Heiko Schocher
2021-07-12 16:42       ` Tim Harvey
2021-07-12 19:43         ` Simon Glass
2021-07-12 20:58           ` Tim Harvey
2021-07-13 20:17             ` Simon Glass
2021-07-19  4:18               ` Heiko Schocher
2021-07-19  4:16         ` Heiko Schocher
2021-08-13 12:55       ` Fabio Estevam
2021-08-16 10:27         ` Heiko Schocher
2021-08-16 13:56           ` Fabio Estevam
2021-08-16 14:09             ` Frieder Schrempf
2021-08-16 14:18               ` Frieder Schrempf
2021-08-16 15:10                 ` Fabio Estevam
2021-08-18  8:17                   ` Marcel Ziswiler
2021-07-10 15:53   ` sbabic
2021-07-10 19:36   ` sbabic
2021-07-07 12:57 ` [PATCH v3 3/9] arm: dts: imx8mp-phyboard-pollux: Sync dts files with kernel Teresa Remmet
2021-07-10 15:52   ` sbabic
2021-07-10 19:35   ` sbabic
2021-07-07 12:57 ` [PATCH v3 4/9] board: phytec: phycore_imx8mp: Change debug UART Teresa Remmet
2021-07-10 15:54   ` sbabic
2021-07-10 19:36   ` sbabic
2021-07-07 12:58 ` [PATCH v3 5/9] board: phytec: phycore_imx8mp: Add fec support Teresa Remmet
2021-07-10 15:53   ` sbabic
2021-07-10 19:36   ` sbabic
2021-07-07 12:58 ` [PATCH v3 6/9] board: phytec: phycore_imx8mp: Set VDD_ARM to 0,95V Teresa Remmet
2021-07-10 15:53   ` sbabic
2021-07-10 19:35   ` sbabic
2021-07-07 12:58 ` [PATCH v3 7/9] board: phytec: phycore-imx8mp: Enable DVS1 control Teresa Remmet
2021-07-10 15:53   ` sbabic
2021-07-10 19:36   ` sbabic
2021-07-07 12:58 ` [PATCH v3 8/9] arm: dts: imx8mp-phyboard-pollux-rdk-u-boot: Add wdog pinctrl entry Teresa Remmet
2021-07-10 15:53   ` sbabic
2021-07-10 19:36   ` sbabic
2021-07-07 12:58 ` [PATCH v3 9/9] board: phytec: imx8mp-phycore: Switch to binman Teresa Remmet
2021-07-10 15:53   ` sbabic
2021-07-10 19:36   ` sbabic

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.