From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Subject: [PATCH 00/10] ARM: SoCFPGA: Add initial support for Agilex5
Date: Tue, 29 Oct 2024 09:42:30 +0100 [thread overview]
Message-ID: <20241029-v2024-10-0-topic-socfpga-agilex5-v1-0-96df2d7dadf4@pengutronix.de> (raw)
This series adds basic support for the Altera Agilex5 SoCFPGA series.
Currently only booting from QSPI is supported. Flashing the image to the
QSPI has to be done with quartus_pgm, therefore there are still some
essential things left to have proper support for this platform.
Nevertheless it boots from QSPI and starts linux on the included
Arrow AXE5 board.
Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
---
Steffen Trumtrar (10):
ARM: socfpga: kconfig: sort entries
mach: socfpga: debug_ll: rework putc_ll
reset: reset-socfpga: build only for 32-bit socfpga
arm: socfgpa: add support for SoCFPGA Agilex5
ARM: socfpga: add Arrow AXE5 Agilex5 board
net: add support for Designware XGMAC (10gb) ethernet
net: phy: add Analog Devices ADIN1300
linux: clk: add clk_parent_data
clk: support init->parent_data
clk: socfpga: add agilex5 clock support
arch/arm/Kconfig | 3 -
arch/arm/boards/Makefile | 1 +
arch/arm/boards/arrow-axe5-eagle/Makefile | 3 +
arch/arm/boards/arrow-axe5-eagle/board.c | 23 +
arch/arm/boards/arrow-axe5-eagle/lowlevel.c | 58 ++
arch/arm/configs/socfpga-agilex5_defconfig | 88 +++
arch/arm/dts/Makefile | 1 +
arch/arm/dts/socfpga_agilex5.dtsi | 71 +++
arch/arm/dts/socfpga_agilex5_axe5_eagle.dts | 94 +++
arch/arm/mach-socfpga/Kconfig | 56 +-
arch/arm/mach-socfpga/Makefile | 13 +
arch/arm/mach-socfpga/agilex5-clock-manager.c | 411 +++++++++++++
arch/arm/mach-socfpga/agilex5-sdram.c | 352 +++++++++++
arch/arm/mach-socfpga/agilex5-secreg.c | 289 +++++++++
arch/arm/mach-socfpga/arria10-init.c | 2 +-
arch/arm/mach-socfpga/atf.c | 34 ++
arch/arm/mach-socfpga/cpu_init.c | 43 ++
arch/arm/mach-socfpga/cyclone5-init.c | 2 +-
arch/arm/mach-socfpga/iossm_mailbox.c | 551 +++++++++++++++++
arch/arm/mach-socfpga/iossm_mailbox.h | 152 +++++
arch/arm/mach-socfpga/mailbox_s10.c | 407 +++++++++++++
arch/arm/mach-socfpga/secure_reg_helper.c | 75 +++
arch/arm/mach-socfpga/smc_api.c | 43 ++
arch/arm/mach-socfpga/soc64-system-manager.c | 102 ++++
arch/arm/mach-socfpga/soc64-wrap-handoff.c | 124 ++++
common/Kconfig.debug_ll | 17 +
drivers/clk/clk.c | 48 +-
drivers/clk/socfpga/Makefile | 4 +-
drivers/clk/socfpga/clk-agilex5.c | 834 ++++++++++++++++++++++++++
drivers/clk/socfpga/clk-gate-s10.c | 184 ++++++
drivers/clk/socfpga/clk-periph-s10.c | 163 +++++
drivers/clk/socfpga/clk-pll-s10.c | 140 +++++
drivers/clk/socfpga/clk.h | 9 +
drivers/clk/socfpga/stratix10-clk.h | 73 +++
drivers/net/Kconfig | 18 +
drivers/net/Makefile | 2 +
drivers/net/designware_xgmac.c | 829 +++++++++++++++++++++++++
drivers/net/designware_xgmac.h | 294 +++++++++
drivers/net/designware_xgmac_socfpga.c | 156 +++++
drivers/net/phy/Kconfig | 7 +
drivers/net/phy/Makefile | 1 +
drivers/net/phy/adin.c | 360 +++++++++++
drivers/reset/Kconfig | 6 +
drivers/reset/Makefile | 2 +-
firmware/Kconfig | 3 +
firmware/Makefile | 1 +
images/Makefile.socfpga | 17 +
include/dt-bindings/clock/agilex5-clock.h | 100 +++
include/linux/clk.h | 15 +
include/linux/intel-smc.h | 545 +++++++++++++++++
include/mach/socfpga/agilex5-clk.h | 266 ++++++++
include/mach/socfpga/atf.h | 14 +
include/mach/socfpga/debug_ll.h | 44 +-
include/mach/socfpga/generic.h | 3 +
include/mach/socfpga/init.h | 2 +
include/mach/socfpga/mailbox_s10.h | 199 ++++++
include/mach/socfpga/secure_reg_helper.h | 19 +
include/mach/socfpga/smc_api.h | 12 +
include/mach/socfpga/soc64-firewall.h | 177 ++++++
include/mach/socfpga/soc64-handoff.h | 50 ++
include/mach/socfpga/soc64-init.h | 4 +
include/mach/socfpga/soc64-regs.h | 195 ++++++
include/mach/socfpga/soc64-reset-manager.h | 40 ++
include/mach/socfpga/soc64-sdram.h | 203 +++++++
include/mach/socfpga/soc64-system-manager.h | 176 ++++++
65 files changed, 8190 insertions(+), 40 deletions(-)
---
base-commit: 1f31cde526d4e251da6464cac42ee2252643b972
change-id: 20241029-v2024-10-0-topic-socfpga-agilex5-c087bbc7d774
Best regards,
--
Steffen Trumtrar <s.trumtrar@pengutronix.de>
next reply other threads:[~2024-10-29 8:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-29 8:42 Steffen Trumtrar [this message]
2024-10-29 8:42 ` [PATCH 01/10] ARM: socfpga: kconfig: sort entries Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 02/10] mach: socfpga: debug_ll: rework putc_ll Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 03/10] reset: reset-socfpga: build only for 32-bit socfpga Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 04/10] arm: socfgpa: add support for SoCFPGA Agilex5 Steffen Trumtrar
2024-11-04 10:31 ` Sascha Hauer
2024-10-29 8:42 ` [PATCH 05/10] ARM: socfpga: add Arrow AXE5 Agilex5 board Steffen Trumtrar
2024-11-04 10:48 ` Sascha Hauer
2024-10-29 8:42 ` [PATCH 06/10] net: add support for Designware XGMAC (10gb) ethernet Steffen Trumtrar
2024-11-04 11:14 ` Sascha Hauer
2024-10-29 8:42 ` [PATCH 07/10] net: phy: add Analog Devices ADIN1300 Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 08/10] linux: clk: add clk_parent_data Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 09/10] clk: support init->parent_data Steffen Trumtrar
2024-10-29 8:42 ` [PATCH 10/10] clk: socfpga: add agilex5 clock support Steffen Trumtrar
2024-11-04 11:23 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241029-v2024-10-0-topic-socfpga-agilex5-v1-0-96df2d7dadf4@pengutronix.de \
--to=s.trumtrar@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox