diff options
author | Damjan Marion <damarion@cisco.com> | 2023-10-23 18:36:18 +0200 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2024-01-17 20:44:10 +0100 |
commit | 01fe7ab88efe1771618358ee5e90f56996ba909e (patch) | |
tree | be82513c2c07c6febe8e305d8c2e9f19af1a3508 /src/plugins/dev_octeon/CMakeLists.txt | |
parent | dc26d50426792954e372cb7949b94fd3eb573942 (diff) |
octeon: native driver for Marvell Octeon SoC
Type: feature
Change-Id: I6898625c4e8854f777407dac3159e4c639a54860
Signed-off-by: Monendra Singh Kushwaha <kmonendra@marvell.com>
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dev_octeon/CMakeLists.txt')
-rw-r--r-- | src/plugins/dev_octeon/CMakeLists.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/plugins/dev_octeon/CMakeLists.txt b/src/plugins/dev_octeon/CMakeLists.txt new file mode 100644 index 00000000000..b7c25fe0404 --- /dev/null +++ b/src/plugins/dev_octeon/CMakeLists.txt @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright(c) 2022 Cisco Systems, Inc. + +if (NOT VPP_PLATFORM_NAME STREQUAL "octeon10") + return() +endif() + +# Find OCTEON roc files +vpp_find_path(OCTEON_ROC_DIR PATH_SUFFIXES octeon-roc NAMES platform.h) +vpp_plugin_find_library(dev-octeon OCTEON_ROC_LIB "libocteon-roc.a") + +if (NOT OCTEON_ROC_DIR) + message("OCTEON ROC files not found - Marvell OCTEON device plugin disabled") + return() +endif() + +if (NOT OCTEON_ROC_LIB) + message("OCTEON ROC library (libocteon-roc.a) not found - Marvell OCTEON device plugin disabled") + return () +endif() + +include_directories (${OCTEON_ROC_DIR}/) + +add_vpp_plugin(dev_octeon + SOURCES + init.c + format.c + port.c + queue.c + roc_helper.c + rx_node.c + tx_node.c + + MULTIARCH_SOURCES + rx_node.c + tx_node.c + + LINK_LIBRARIES + ${OCTEON_ROC_LIB} +) + |