numam-dpdk/drivers/net/meson.build
Gagandeep Singh 67fc3ff97c net/pfe: introduce basic functions
pfe (packet forwarding engine) is a network
poll mode driver for NXP SoC ls1012a.

This patch introduces the framework of pfe
driver with basic functions of initialisation
and teardown.

Signed-off-by: Gagandeep Singh <g.singh@nxp.com>
Signed-off-by: Akhil Goyal <akhil.goyal@nxp.com>
Acked-by: Nipun Gupta <nipun.gupta@nxp.com>
2019-10-23 16:43:08 +02:00

59 lines
893 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
drivers = ['af_packet',
'af_xdp',
'ark',
'atlantic',
'avp',
'axgbe', 'bonding',
'bnx2x',
'bnxt',
'cxgbe',
'dpaa', 'dpaa2',
'e1000',
'ena',
'enetc',
'enic',
'failsafe',
'fm10k', 'i40e',
'hinic',
'hns3',
'iavf',
'ice',
'ifc',
'ipn3ke',
'ixgbe',
'kni',
'liquidio',
'memif',
'mlx4',
'mlx5',
'mvneta',
'mvpp2',
'netvsc',
'nfb',
'nfp',
'null',
'octeontx',
'octeontx2',
'pcap',
'pfe',
'qede',
'ring',
'sfc',
'softnic',
'szedata2',
'tap',
'thunderx',
'vdev_netvsc',
'vhost',
'virtio',
'vmxnet3',
]
std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
std_deps += ['bus_pci'] # very many PMDs depend on PCI, so make std
std_deps += ['bus_vdev'] # same with vdev bus
config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
driver_name_fmt = 'rte_pmd_@0@'