Skip to content

Commit b521bb6

Browse files
hardeepsharma95carlescufi
authored andcommitted
drivers: fpga: Added altera FPGA bridge support
Added altera FPGA bridge support Signed-off-by: Hardeep Sharma <[email protected]>
1 parent 4d11e42 commit b521bb6

File tree

5 files changed

+696
-0
lines changed

5 files changed

+696
-0
lines changed

drivers/fpga/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ zephyr_library()
44

55
zephyr_library_sources_ifdef(CONFIG_FPGA_SHELL fpga_shell.c)
66

7+
zephyr_library_sources_ifdef(CONFIG_ALTERA_AGILEX_BRIDGE_FPGA fpga_altera_agilex_bridge.c)
78
zephyr_library_sources_ifdef(CONFIG_EOS_S3_FPGA fpga_eos_s3.c)
89
zephyr_library_sources_ifdef(CONFIG_ICE40_FPGA fpga_ice40.c)
910
zephyr_library_sources_ifdef(CONFIG_MPFS_FPGA fpga_mpfs.c)

drivers/fpga/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ config FPGA_SHELL
2626
help
2727
Enable FPGA Shell support.
2828

29+
source "drivers/fpga/Kconfig.altera_agilex_bridge"
2930
source "drivers/fpga/Kconfig.eos_s3"
3031
source "drivers/fpga/Kconfig.ice40"
3132
source "drivers/fpga/Kconfig.mpfs"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# FPGA ALTERA driver configuration options
2+
3+
# Copyright (c) 2024, Intel Corporation. All rights reserved.
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
config ALTERA_AGILEX_BRIDGE_FPGA
7+
bool "ALTERA fpga driver"
8+
depends on ARM_SIP_SVC_SUBSYS
9+
help
10+
Enable ALTERA FPGA driver.

0 commit comments

Comments
 (0)