Skip to content

Commit

Permalink
drivers: fpga: Added altera FPGA bridge support
Browse files Browse the repository at this point in the history
Added altera FPGA bridge support

Signed-off-by: Hardeep Sharma <hardeep.sharma@intel.com>
  • Loading branch information
hardeepsharma95 committed Apr 21, 2024
1 parent 6372d87 commit eca7369
Show file tree
Hide file tree
Showing 5 changed files with 696 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/fpga/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ zephyr_library()

zephyr_library_sources_ifdef(CONFIG_FPGA_SHELL fpga_shell.c)

zephyr_library_sources_ifdef(CONFIG_ALTERA_AGILEX_BRIDGE_FPGA fpga_altera_agilex_bridge.c)
zephyr_library_sources_ifdef(CONFIG_EOS_S3_FPGA fpga_eos_s3.c)
zephyr_library_sources_ifdef(CONFIG_ICE40_FPGA fpga_ice40.c)
zephyr_library_sources_ifdef(CONFIG_MPFS_FPGA fpga_mpfs.c)
Expand Down
1 change: 1 addition & 0 deletions drivers/fpga/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ config FPGA_SHELL
help
Enable FPGA Shell support.

source "drivers/fpga/Kconfig.altera_agilex_bridge"
source "drivers/fpga/Kconfig.eos_s3"
source "drivers/fpga/Kconfig.ice40"
source "drivers/fpga/Kconfig.mpfs"
Expand Down
10 changes: 10 additions & 0 deletions drivers/fpga/Kconfig.altera_agilex_bridge
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# FPGA ALTERA driver configuration options

# Copyright (c) 2024, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

config ALTERA_AGILEX_BRIDGE_FPGA
bool "ALTERA fpga driver"
depends on ARM_SIP_SVC_SUBSYS
help
Enable ALTERA FPGA driver.

0 comments on commit eca7369

Please sign in to comment.