P4C
The P4 Compiler
Loading...
Searching...
No Matches
dpdk/constants.h
1/*
2Copyright 2021 Intel Corporation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef BACKENDS_DPDK_CONSTANTS_H_
18#define BACKENDS_DPDK_CONSTANTS_H_
19
20#include "lib/cstring.h"
21
23const unsigned table_handle_prefix = 0x00010000;
24const unsigned action_handle_prefix = 0x00020000;
25
27const unsigned dpdk_default_table_size = 65536;
28#define DPDK_MAX_SHIFT_AMOUNT 64
29
31const unsigned dpdk_learner_max_configurable_timeout_values = 8;
32const unsigned default_learner_table_size = 0x10000;
34const unsigned default_learner_table_timeout[dpdk_learner_max_configurable_timeout_values] = {
35 10, 30, 60, 120, 300, 43200, 120, 120};
36
38const cstring bfrtSchemaVersion = cstring::literal("1.0.0");
39const cstring tdiSchemaVersion = cstring::literal("0.1");
40
42// FIXME: These should be enum
43#define JHASH0 0
44#define CRC1 1
45#define CRC2 2
46#define CRC3 3
47#define CRC4 4
48#define JHASH5 5
49#define TOEPLITZ 6
51const unsigned initial_member_id = 0;
52const unsigned initial_group_id = 0xFFFFFFFF;
53
55#define IPSEC_SUCCESS 0
56#define IPSEC_PORT_REG_INDEX 0
57#define IPSEC_PORT_REG_SIZE 1
58#define IPSEC_PORT_REG_INDEX_BITWIDTH 32
59#define IPSEC_PORT_REG_INITVAL_BITWIDTH 32
60#define NET_TO_HOST 0
61
63const int dpdk_max_operand_size = 64;
64
65#endif /* BACKENDS_DPDK_CONSTANTS_H_ */
Definition cstring.h:80