2518704288
The rte_eventdev_pmd*.h files are for drivers only and should be private to DPDK, and not installed for app use. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
40 lines
931 B
C
40 lines
931 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Intel Corporation
|
|
*/
|
|
|
|
#include <rte_eventdev.h>
|
|
#include <eventdev_pmd.h>
|
|
|
|
#include "rte_pmd_dlb2.h"
|
|
#include "dlb2_priv.h"
|
|
#include "dlb2_inline_fns.h"
|
|
|
|
int
|
|
rte_pmd_dlb2_set_token_pop_mode(uint8_t dev_id,
|
|
uint8_t port_id,
|
|
enum dlb2_token_pop_mode mode)
|
|
{
|
|
struct dlb2_eventdev *dlb2;
|
|
struct rte_eventdev *dev;
|
|
|
|
RTE_EVENTDEV_VALID_DEVID_OR_ERR_RET(dev_id, -EINVAL);
|
|
dev = &rte_eventdevs[dev_id];
|
|
|
|
dlb2 = dlb2_pmd_priv(dev);
|
|
|
|
if (mode >= NUM_TOKEN_POP_MODES)
|
|
return -EINVAL;
|
|
|
|
/* The event device must be configured, but not yet started */
|
|
if (!dlb2->configured || dlb2->run_state != DLB2_RUN_STATE_STOPPED)
|
|
return -EINVAL;
|
|
|
|
/* The token pop mode must be set before configuring the port */
|
|
if (port_id >= dlb2->num_ports || dlb2->ev_ports[port_id].setup_done)
|
|
return -EINVAL;
|
|
|
|
dlb2->ev_ports[port_id].qm_port.token_pop_mode = mode;
|
|
|
|
return 0;
|
|
}
|