All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/9] New PolarFire SoC devkit devicetrees & 22.09 reference design updates
@ 2022-09-01 13:33 ` Conor Dooley
  0 siblings, 0 replies; 22+ messages in thread
From: Conor Dooley @ 2022-09-01 13:33 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Daire McNamara,
	Shravan Chippa
  Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, Cyril Jean,
	Lewis Hanly, Vattipalli Praveen, Wolfgang Grandegger,
	Hugh Breslin, devicetree, linux-riscv, linux-kernel

Hey all,

Some 6.1 targeted changes here.
Firstly, two new dev kits (one first-party & one from Aries Embedded).
They've been sitting in our vendor tree, so are being sent where they
belong.

Secondly, another release of our reference design for the Icicle kit
is due in September. Usually these do not really change much for the
devicetree, but this time around a pair of changes impact the memory
map.

The first of these is adding dma-ranges to the pcie controller. The
controller had some issues to begin with & with the current reference
design (v2022.05) would not work with mainline Linux nor has it since
reference design v2021.08. A combination of the property, a change
to the FPGA design & a small fix to the driver will get it working
with mainline again. The other non-backwards compatible change to the
reference design is moves of the peripherals instantiated in the
fabric. Currently they are fairly spread out & a common complaint has
been that this leaves little room in the fic3 section of the memory map
for custom peripherals without removing the existing ones.

This series depends on [0] so as not to add dtbs_check warnings. The
fabric clock support is added by [1].

Thanks,
Conor.

Changes since v2:
- drop the sd & emmc versions of the aries devicetree
- remove a extra newline

Changes since v1:
- made the polarberry part of an enum in patch 1

0 - https://lore.kernel.org/linux-gpio/20220825143522.3102546-1-conor.dooley@microchip.com/
1 - https://lore.kernel.org/linux-clk/20220824093342.187844-1-conor.dooley@microchip.com/

Conor Dooley (7):
  dt-bindings: riscv: microchip: document icicle reference design
  dt-bindings: riscv: microchip: document the aries m100pfsevp
  riscv: dts: microchip: add pci dma ranges for the icicle kit
  riscv: dts: microchip: move the mpfs' pci node to -fabric.dtsi
  riscv: dts: microchip: icicle: update pci address properties
  riscv: dts: microchip: icicle: re-jig fabric peripheral addresses
  riscv: dts: microchip: add a devicetree for aries' m100pfsevp

Shravan Chippa (1):
  dt-bindings: riscv: microchip: document the sev kit

Vattipalli Praveen (1):
  riscv: dts: microchip: add sevkit device tree

 .../devicetree/bindings/riscv/microchip.yaml  |  20 +-
 arch/riscv/boot/dts/microchip/Makefile        |   2 +
 .../dts/microchip/mpfs-icicle-kit-fabric.dtsi |  42 +++-
 .../boot/dts/microchip/mpfs-icicle-kit.dts    |   3 +-
 .../dts/microchip/mpfs-m100pfs-fabric.dtsi    |  45 +++++
 .../boot/dts/microchip/mpfs-m100pfsevp.dts    | 179 ++++++++++++++++++
 .../dts/microchip/mpfs-polarberry-fabric.dtsi |  29 +++
 .../dts/microchip/mpfs-sev-kit-fabric.dtsi    |  45 +++++
 .../riscv/boot/dts/microchip/mpfs-sev-kit.dts | 145 ++++++++++++++
 arch/riscv/boot/dts/microchip/mpfs.dtsi       |  29 ---
 10 files changed, 498 insertions(+), 41 deletions(-)
 create mode 100644 arch/riscv/boot/dts/microchip/mpfs-m100pfs-fabric.dtsi
 create mode 100644 arch/riscv/boot/dts/microchip/mpfs-m100pfsevp.dts
 create mode 100644 arch/riscv/boot/dts/microchip/mpfs-sev-kit-fabric.dtsi
 create mode 100644 arch/riscv/boot/dts/microchip/mpfs-sev-kit.dts

-- 
2.36.1


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

end of thread, other threads:[~2022-09-07 20:40 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-01 13:33 [PATCH v3 0/9] New PolarFire SoC devkit devicetrees & 22.09 reference design updates Conor Dooley
2022-09-01 13:33 ` Conor Dooley
2022-09-01 13:33 ` [PATCH v3 1/9] dt-bindings: riscv: microchip: document icicle reference design Conor Dooley
2022-09-01 13:33   ` Conor Dooley
2022-09-01 13:33 ` [PATCH v3 2/9] dt-bindings: riscv: microchip: document the aries m100pfsevp Conor Dooley
2022-09-01 13:33   ` Conor Dooley
2022-09-07 20:39   ` Rob Herring
2022-09-07 20:39     ` Rob Herring
2022-09-01 13:33 ` [PATCH v3 3/9] dt-bindings: riscv: microchip: document the sev kit Conor Dooley
2022-09-01 13:33   ` Conor Dooley
2022-09-01 13:33 ` [PATCH v3 4/9] riscv: dts: microchip: add pci dma ranges for the icicle kit Conor Dooley
2022-09-01 13:33   ` Conor Dooley
2022-09-01 13:34 ` [PATCH v3 5/9] riscv: dts: microchip: move the mpfs' pci node to -fabric.dtsi Conor Dooley
2022-09-01 13:34   ` Conor Dooley
2022-09-01 13:34 ` [PATCH v3 6/9] riscv: dts: microchip: icicle: update pci address properties Conor Dooley
2022-09-01 13:34   ` Conor Dooley
2022-09-01 13:34 ` [PATCH v3 7/9] riscv: dts: microchip: icicle: re-jig fabric peripheral addresses Conor Dooley
2022-09-01 13:34   ` Conor Dooley
2022-09-01 13:34 ` [PATCH v3 8/9] riscv: dts: microchip: add sevkit device tree Conor Dooley
2022-09-01 13:34   ` Conor Dooley
2022-09-01 13:34 ` [PATCH v3 9/9] riscv: dts: microchip: add a devicetree for aries' m100pfsevp Conor Dooley
2022-09-01 13:34   ` Conor Dooley

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.