linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/7] Basic device tree support for ESWIN EIC7700 RISC-V SoC
@ 2025-06-16 11:23 Pinkesh Vaghela
  2025-06-16 11:23 ` [PATCH v4 1/7] dt-bindings: riscv: Add SiFive P550 CPU compatible Pinkesh Vaghela
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Pinkesh Vaghela @ 2025-06-16 11:23 UTC (permalink / raw)
  To: Conor Dooley, Rob Herring, Krzysztof Kozlowski, Thomas Gleixner
  Cc: Paul Walmsley, Samuel Holland, Palmer Dabbelt, Albert Ou,
	Daniel Lezcano, Min Lin, Pinkesh Vaghela, Pritesh Patel,
	Yangyu Chen, Lad Prabhakar, Yu Chien Peter Lin, Charlie Jenkins,
	Kanak Shilledar, Darshan Prajapati, Neil Armstrong,
	Heiko Stuebner, Aradhya Bhatia, rafal, Anup Patel, devicetree,
	linux-riscv, linux-kernel

Add support for ESWIN EIC7700 SoC consisting of SiFive Quad-Core
P550 CPU cluster and the first development board that uses it, the
SiFive HiFive Premier P550.

This patch series adds initial device tree and also adds ESWIN
architecture support.

Boot-tested using intiramfs with Linux v6.16-rc1 on HiFive Premier
P550 board using U-Boot 2024.01 and OpenSBI 1.4.

Changes in v4:
- Rebased the patches to kernel v6.16-rc1
- Drop patches that are already merged
- Added "Acked-by" tag of "Min Lin" for Patch 4
- Corrected the commit message of Patch 7 (Patch #10 in v3)
- Added "Tested-by" tag of "Ariel D'Alessandro" for Patch 7
- Link to v3: https://lore.kernel.org/lkml/20250410152519.1358964-1-pinkesh.vaghela@einfochips.com/

Changes in v3:
- Rebased the patches to kernel 6.15.0-rc1
- Added "Reviewed-by" tag of "Rob Herring" for Patch 4
- Updated MAINTAINERS file
  - Add GIT tree URL
- Updated DTSI file
  - Added "dma-noncoherent" property to soc node
  - Updated GPIO node labels in DTSI file
- Link to v2: https://lore.kernel.org/lkml/20250320105449.2094192-1-pinkesh.vaghela@einfochips.com/

Changes in v2:
- Added "Acked-by" tag of "Conor Dooley" for Patches 1, 2, 3, 7 and 8
- Added "Reviewed-by" tag of "Matthias Brugger" for Patch 4
- Updated MAINTAINERS file
  - Add the path for the eswin binding file
- Updated sifive,ccache0.yaml
  - Add restrictions for "cache-size" property based on the
    compatible string
- Link to v1: https://lore.kernel.org/lkml/20250311073432.4068512-1-pinkesh.vaghela@einfochips.com/

Darshan Prajapati (2):
  dt-bindings: riscv: Add SiFive P550 CPU compatible
  dt-bindings: interrupt-controller: Add ESWIN EIC7700 PLIC

Min Lin (2):
  riscv: dts: add initial support for EIC7700 SoC
  riscv: dts: eswin: add HiFive Premier P550 board device tree

Pinkesh Vaghela (1):
  riscv: Add Kconfig option for ESWIN platforms

Pritesh Patel (2):
  dt-bindings: vendor-prefixes: add eswin
  dt-bindings: riscv: Add SiFive HiFive Premier P550 board

 .../sifive,plic-1.0.0.yaml                    |   1 +
 .../devicetree/bindings/riscv/cpus.yaml       |   1 +
 .../devicetree/bindings/riscv/eswin.yaml      |  29 ++
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 MAINTAINERS                                   |   9 +
 arch/riscv/Kconfig.socs                       |   6 +
 arch/riscv/boot/dts/Makefile                  |   1 +
 arch/riscv/boot/dts/eswin/Makefile            |   2 +
 .../dts/eswin/eic7700-hifive-premier-p550.dts |  29 ++
 arch/riscv/boot/dts/eswin/eic7700.dtsi        | 345 ++++++++++++++++++
 10 files changed, 425 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/riscv/eswin.yaml
 create mode 100644 arch/riscv/boot/dts/eswin/Makefile
 create mode 100644 arch/riscv/boot/dts/eswin/eic7700-hifive-premier-p550.dts
 create mode 100644 arch/riscv/boot/dts/eswin/eic7700.dtsi

-- 
2.25.1


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

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

end of thread, other threads:[~2025-08-21 23:56 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-16 11:23 [PATCH v4 0/7] Basic device tree support for ESWIN EIC7700 RISC-V SoC Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 1/7] dt-bindings: riscv: Add SiFive P550 CPU compatible Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 2/7] riscv: Add Kconfig option for ESWIN platforms Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 3/7] dt-bindings: vendor-prefixes: add eswin Pinkesh Vaghela
2025-08-21 19:11   ` Rob Herring
2025-06-16 11:23 ` [PATCH v4 4/7] dt-bindings: riscv: Add SiFive HiFive Premier P550 board Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 5/7] dt-bindings: interrupt-controller: Add ESWIN EIC7700 PLIC Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 6/7] riscv: dts: add initial support for EIC7700 SoC Pinkesh Vaghela
2025-06-16 11:23 ` [PATCH v4 7/7] riscv: dts: eswin: add HiFive Premier P550 board device tree Pinkesh Vaghela
2025-08-01 10:34 ` [PATCH v4 0/7] Basic device tree support for ESWIN EIC7700 RISC-V SoC Pinkesh Vaghela
2025-08-02  8:34   ` Krzysztof Kozlowski
2025-08-04 13:10     ` [External] " Pinkesh Vaghela
2025-08-04 14:45       ` Krzysztof Kozlowski
2025-08-05 14:21         ` Conor Dooley

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).