aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/odp/odp_packet.h
blob: f9c793bd2e27511f253dd92c2e2be19ec827d085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Copyright (c) 2017, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#include <odp_api.h>
#include <odp/helper/odph_api.h>

#define SHM_PKT_BUF_SIZE       1598
#define SHM_PKT_POOL_BUF_SIZE  1856
#define SHM_PKT_POOL_NB_PKTS   10240
#define SHM_PKT_POOL_NAME      "packet_pool"
#define APPL_MODE_PKT_BURST    0
#define APPL_MODE_PKT_QUEUE    1
#define APPL_MODE_PKT_SCHED    2

#define MAX_WORKERS 32

typedef struct
{
  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
  u8 *host_if_name;
  volatile u32 *lockp;
  uword if_index;
  odp_pktio_t pktio;
  u32 hw_if_index;
  u32 sw_if_index;
  u32 next_rx_frame;
  u32 next_tx_frame;
  u32 per_interface_next_index;
  u8 is_admin_up;
  u32 mode;
} odp_packet_if_t;

typedef struct
{
  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
  odp_packet_if_t *interfaces;
  u32 input_cpu_first_index;
  u32 input_cpu_count;
  /* hash of host interface names */
  mhash_t if_index_by_host_if_name;
  odp_instance_t instance;
  odp_pool_t pool;
  u32 if_count;
  u32 thread_cnt;
  odph_odpthread_t thread_tbl[MAX_WORKERS];
} odp_packet_main_t;

extern odp_packet_main_t *odp_packet_main;
extern vnet_device_class_t odp_packet_device_class;
extern vlib_node_registration_t odp_packet_input_node;

u32 odp_packet_create_if (vlib_main_t * vm, u8 * host_if_name,
			  u8 * hw_addr_set, u32 * sw_if_index, u32 mode);
u32 odp_packet_delete_if (vlib_main_t * vm, u8 * host_if_name);

u32 drop_err_pkts (odp_packet_t pkt_tbl[], u32 len);

always_inline odp_packet_t
odp_packet_from_vlib_buffer (vlib_buffer_t * b)
{
  odp_packet_t packet;
  packet = (odp_packet_t)(b->l2_priv_data);
  if (packet == NULL)
    clib_error("ODP packet pointer was not set properly!\n");

  return packet;
}

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */