summaryrefslogtreecommitdiffstats
path: root/build/external/packages/dpdk.mk
AgeCommit message (Expand)AuthorFilesLines
2019-05-14Build packages for generic Arm architectureLijian.Zhang1-1/+8
2019-04-08rdma: fix DPDK MLX driver conflictBenoît Ganne1-2/+1
2019-03-28Add RDMA ibverb driver pluginBenoît Ganne1-32/+28
2019-03-01dpdk: update mlx[45] linking optionsMatthew Smith1-3/+2
2019-02-02dpdk: bump to dpdk 19.02Damjan Marion1-2/+2
2018-11-29dpdk: bump to DPDK 18.11Damjan Marion1-2/+2
2018-11-05dpdk: enable gso when the tap PMD is enabledMatthew Smith1-1/+1
2018-10-24dpdk: disable unused rxtx callbacks in ethdevStephen Hemminger1-0/+1
2018-10-20dpdk: turn off unused DPDK componentsStephen Hemminger1-0/+17
2018-10-15dpdk: drop no longer used config optionsStephen Hemminger1-6/+0
2018-10-01dpdk: updated makefile to enable QAT cryptodevRadu Nicolau1-0/+1
2018-09-27dpdk_plugin: fix mlx5 build and runtime issuesSirshak Das1-1/+2
2018-09-21add: nasm and ipsec-mb into vpp-ext-deps packagingDamjan Marion1-0/+282
#dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

if(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
  list(APPEND VARIANTS "slm\;-march=silvermont")
  list(APPEND VARIANTS "hsw\;-march=haswell")
  if(compiler_flag_march_skylake_avx512 AND compiler_flag_mprefer_vector_width_256)
    list(APPEND VARIANTS "skx\;-march=skylake-avx512 -mprefer-vector-width=256")
  endif()
  if(compiler_flag_march_icelake_client AND compiler_flag_mprefer_vector_width_512)
    list(APPEND VARIANTS "icl\;-march=icelake-client -mprefer-vector-width=512")
  endif()
  set (COMPILE_FILES aes_cbc.c aes_gcm.c)
  set (COMPILE_OPTS -Wall -fno-common -maes)
endif()

if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)")
  list(APPEND VARIANTS "armv8\;-march=armv8.1-a+crc+crypto")
  set (COMPILE_FILES aes_cbc.c aes_gcm.c)
  set (COMPILE_OPTS -Wall -fno-common)
endif()

if (NOT VARIANTS)
  return()
endif()

add_vpp_plugin(crypto_native SOURCES main.c)

foreach(VARIANT ${VARIANTS})
  list(GET VARIANT 0 v)
  list(GET VARIANT 1 f)
  set(l crypto_native_${v})
  add_library(${l} OBJECT ${COMPILE_FILES})
  set_target_properties(${l} PROPERTIES POSITION_INDEPENDENT_CODE ON)
  separate_arguments(f)
  target_compile_options(${l} PUBLIC ${f} ${COMPILE_OPTS})
  target_sources(crypto_native_plugin PRIVATE $<TARGET_OBJECTS:${l}>)
endforeach()