All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/5] DTS updates for Marvell Armada CN913x platforms
@ 2021-07-08 11:25 ` kostap
  0 siblings, 0 replies; 33+ messages in thread
From: kostap @ 2021-07-08 11:25 UTC (permalink / raw)
  To: miquel.raynal, kishon, vkoul, robh+dt, andrew, gregory.clement,
	sebastian.hesselbarth, vladimir.vid, luka.kovacic, linux-phy,
	devicetree, linux-kernel, linux-arm-kernel
  Cc: mw, jaz, nadavh, stefanc, bpeled, Konstantin Porotchkin

From: Konstantin Porotchkin <kostap@marvell.com>

This patch series contains the following changes/fixes:
1. Add support for Armada CN913x Development Board topology "B"
2. Add support for Armada CN913x Reference Design boards (CRB)
3. Fixes the CP11X references in PHY binding document
4. Fixes the NAND paritioninig scheme in DTS eliminating gap between
consecutive partitions
All above changes are already intergated into Marvell official SDK sources

v2:
- extract common nodes from DB boards to separate DTSI files
- disable eth2 on CRB boards until the required phy mode support is added
- mention the switch part ID in CRB board description

v3:
- do not rename setup A DTS files for DB variants
- fix a couple of wrong include names

v4:
- Rebase on top of Linus master branch (v5.11-rc7)
- Remove HS400 timing from CRB AP SDHCI (not supported by connected eMMC)
- Add cd-gpio entry to CP0 SDHCI for SD card support
- Add a comment to CN9130-CRB patch about the required defconfig
  changes for supporting the onboard i2c expander
- Add Stefan's patch to enable 10G port on CN9130-DB platforms

v5:
- Extend enablement of 10G port to CN9131-DB platform

v6:
- Rebased on top of 5.13-rc, merging UTMI settings
  (requested by Gregory Clement)

Grzegorz Jaszczyk (1):
  Documentation/bindings: phy: update references to cp11x

Konstantin Porotchkin (3):
  arch/arm64/boot/dts/marvell: fix NAND partitioning scheme
  arm64: dts: cn913x: add device trees for topology B boards
  arm64: dts: add support for Marvell cn9130-crb platform

Stefan Chulski (1):
  dts: marvell: Enable 10G interfaces on 9130-DB and 9131-DB boards

 .../bindings/phy/phy-mvebu-comphy.txt         |  12 +-
 arch/arm64/boot/dts/marvell/Makefile          |   5 +
 arch/arm64/boot/dts/marvell/cn9130-crb-A.dts  |  38 ++
 arch/arm64/boot/dts/marvell/cn9130-crb-B.dts  |  46 ++
 arch/arm64/boot/dts/marvell/cn9130-crb.dtsi   | 222 ++++++++++
 arch/arm64/boot/dts/marvell/cn9130-db-B.dts   |  22 +
 arch/arm64/boot/dts/marvell/cn9130-db.dts     | 403 +----------------
 arch/arm64/boot/dts/marvell/cn9130-db.dtsi    | 410 ++++++++++++++++++
 arch/arm64/boot/dts/marvell/cn9131-db-B.dts   |  22 +
 arch/arm64/boot/dts/marvell/cn9131-db.dts     | 197 +--------
 arch/arm64/boot/dts/marvell/cn9131-db.dtsi    | 206 +++++++++
 arch/arm64/boot/dts/marvell/cn9132-db-B.dts   |  22 +
 arch/arm64/boot/dts/marvell/cn9132-db.dts     | 218 +---------
 arch/arm64/boot/dts/marvell/cn9132-db.dtsi    | 227 ++++++++++
 14 files changed, 1244 insertions(+), 806 deletions(-)
 create mode 100644 arch/arm64/boot/dts/marvell/cn9130-crb-A.dts
 create mode 100644 arch/arm64/boot/dts/marvell/cn9130-crb-B.dts
 create mode 100644 arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
 create mode 100644 arch/arm64/boot/dts/marvell/cn9130-db-B.dts
 create mode 100644 arch/arm64/boot/dts/marvell/cn9130-db.dtsi
 create mode 100644 arch/arm64/boot/dts/marvell/cn9131-db-B.dts
 create mode 100644 arch/arm64/boot/dts/marvell/cn9131-db.dtsi
 create mode 100644 arch/arm64/boot/dts/marvell/cn9132-db-B.dts
 create mode 100644 arch/arm64/boot/dts/marvell/cn9132-db.dtsi

-- 
2.17.1


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

end of thread, other threads:[~2021-07-08 12:11 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-08 11:25 [PATCH v6 0/5] DTS updates for Marvell Armada CN913x platforms kostap
2021-07-08 11:25 ` kostap
2021-07-08 11:25 ` kostap
2021-07-08 11:25 ` [PATCH v6 1/5] Documentation/bindings: phy: update references to cp11x kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:31   ` Russell King (Oracle)
2021-07-08 11:31     ` Russell King (Oracle)
2021-07-08 11:31     ` Russell King (Oracle)
2021-07-08 11:40     ` [EXT] " Kostya Porotchkin
2021-07-08 11:40       ` Kostya Porotchkin
2021-07-08 11:40       ` Kostya Porotchkin
2021-07-08 11:25 ` [PATCH v6 2/5] arch/arm64/boot/dts/marvell: fix NAND partitioning scheme kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25 ` [PATCH v6 3/5] arm64: dts: cn913x: add device trees for topology B boards kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25 ` [PATCH v6 4/5] dts: marvell: Enable 10G interfaces on 9130-DB and 9131-DB boards kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:28   ` Russell King (Oracle)
2021-07-08 11:28     ` Russell King (Oracle)
2021-07-08 11:28     ` Russell King (Oracle)
2021-07-08 11:50     ` [EXT] " Stefan Chulski
2021-07-08 11:50       ` Stefan Chulski
2021-07-08 11:50       ` Stefan Chulski
2021-07-08 12:09       ` Kostya Porotchkin
2021-07-08 12:09         ` Kostya Porotchkin
2021-07-08 12:09         ` Kostya Porotchkin
2021-07-08 11:25 ` [PATCH v6 5/5] arm64: dts: add support for Marvell cn9130-crb platform kostap
2021-07-08 11:25   ` kostap
2021-07-08 11:25   ` kostap

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.