blob: 101c07074f22132c001f9f946e80b958f77e1721 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*---------------------------------------------------------------------------
16 * from gdp_logical_qos.h
17 *---------------------------------------------------------------------------
18 */
19
20#ifndef __included_xlate_h__
21#define __included_xlate_h__
22
Brian Russelle3845d72021-02-08 15:33:18 +000023#include <vnet/ip/ip_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vnet/policer/police.h>
25
26/*
Brian Russellc5299ff2021-02-09 10:16:58 +000027 * edt: * enum qos_policer_type_en
Ed Warnickecb9cada2015-12-08 15:45:58 -070028 * Defines type of policer to be allocated
29 */
Brian Russellc5299ff2021-02-09 10:16:58 +000030typedef enum qos_policer_type_en_
Damjan Marion3891cd82016-10-27 10:27:00 +020031{
Brian Russellc5299ff2021-02-09 10:16:58 +000032 QOS_POLICER_TYPE_1R2C = 0,
33 QOS_POLICER_TYPE_1R3C_RFC_2697 = 1,
34 QOS_POLICER_TYPE_2R3C_RFC_2698 = 2,
35 QOS_POLICER_TYPE_2R3C_RFC_4115 = 3,
36 QOS_POLICER_TYPE_2R3C_RFC_MEF5CF1 = 4,
37 QOS_POLICER_TYPE_MAX
38} qos_policer_type_en;
Ed Warnickecb9cada2015-12-08 15:45:58 -070039
40/*
41 * edt: * enum
42 * Enum used to define type of rounding used when calculating policer values
43 */
Damjan Marion3891cd82016-10-27 10:27:00 +020044typedef enum
45{
Brian Russellc5299ff2021-02-09 10:16:58 +000046 QOS_ROUND_TO_CLOSEST = 0,
47 QOS_ROUND_TO_UP,
48 QOS_ROUND_TO_DOWN,
49 QOS_ROUND_INVALID
50} qos_round_type_en;
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
52/*
53 * edt: * enum
54 * Enum used to define type of rate for configuration, either pps or kbps.
55 * If kbps, then burst is in bytes, if pps, then burst is in ms.
56 *
57 * Default of zero is kbps, which is inline with how it is programmed
58 * in actual hardware. However, the warning is that this is reverse logic
Brian Russellc5299ff2021-02-09 10:16:58 +000059 * of units_in_bits field in static_policer_parameters_st, which is
Ed Warnickecb9cada2015-12-08 15:45:58 -070060 * inline with sse_punt_drop.h.
61 */
Damjan Marion3891cd82016-10-27 10:27:00 +020062typedef enum
63{
Brian Russellc5299ff2021-02-09 10:16:58 +000064 QOS_RATE_KBPS = 0,
65 QOS_RATE_PPS,
66 QOS_RATE_INVALID
67} qos_rate_type_en;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Matus Fabian4ac74c92016-05-31 07:33:29 -070069/*
70 * edt: * enum
71 * Defines type of policer actions.
72 */
Damjan Marion3891cd82016-10-27 10:27:00 +020073typedef enum
74{
Brian Russellc5299ff2021-02-09 10:16:58 +000075 QOS_ACTION_DROP = 0,
76 QOS_ACTION_TRANSMIT,
77 QOS_ACTION_MARK_AND_TRANSMIT
78} qos_action_type_en;
Matus Fabian4ac74c92016-05-31 07:33:29 -070079
80/*
Brian Russellc5299ff2021-02-09 10:16:58 +000081 * edt * struct qos_pol_action_params_st
Matus Fabian4ac74c92016-05-31 07:33:29 -070082 * This structure is used to hold user configured police action parameters.
83 *
84 * element: action_type
Brian Russellc5299ff2021-02-09 10:16:58 +000085 * Action type (see qos_action_type_en).
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -070086 * element: dscp
Brian Russellc5299ff2021-02-09 10:16:58 +000087 * DSCP value to set when action is QOS_ACTION_MARK_AND_TRANSMIT.
Matus Fabian4ac74c92016-05-31 07:33:29 -070088 */
Brian Russellc5299ff2021-02-09 10:16:58 +000089typedef struct qos_pol_action_params_st_
Damjan Marion3891cd82016-10-27 10:27:00 +020090{
91 u8 action_type;
Brian Russelle3845d72021-02-08 15:33:18 +000092 ip_dscp_t dscp;
Brian Russellc5299ff2021-02-09 10:16:58 +000093} qos_pol_action_params_st;
Matus Fabian4ac74c92016-05-31 07:33:29 -070094
Damjan Marion3891cd82016-10-27 10:27:00 +020095/*
Brian Russellc5299ff2021-02-09 10:16:58 +000096 * edt: * struct qos_pol_cfg_params_st
Ed Warnickecb9cada2015-12-08 15:45:58 -070097 *
Damjan Marion3891cd82016-10-27 10:27:00 +020098 * Description:
99 * This structure is used to hold user configured policing parameters.
100 *
101 * element: cir_kbps
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 * CIR in kbps.
Damjan Marion3891cd82016-10-27 10:27:00 +0200103 * element: eir_kbps
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104 * EIR or PIR in kbps.
Damjan Marion3891cd82016-10-27 10:27:00 +0200105 * element: cb_bytes
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 * Committed Burst in bytes.
Damjan Marion3891cd82016-10-27 10:27:00 +0200107 * element: eb_bytes
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 * Excess or Peak Burst in bytes.
Damjan Marion3891cd82016-10-27 10:27:00 +0200109 * element: cir_pps
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 * CIR in pps.
Damjan Marion3891cd82016-10-27 10:27:00 +0200111 * element: eir_pps
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 * EIR or PIR in pps.
Damjan Marion3891cd82016-10-27 10:27:00 +0200113 * element: cb_ms
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 * Committed Burst in milliseconds.
Damjan Marion3891cd82016-10-27 10:27:00 +0200115 * element: eb_ms
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 * Excess or Peak Burst in milliseconds.
Damjan Marion3891cd82016-10-27 10:27:00 +0200117 * element: rate_type
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 * Indicates the union if in kbps/bytes or pps/ms.
Damjan Marion3891cd82016-10-27 10:27:00 +0200119 * element: rfc
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 * Policer algorithm - 1R2C, 1R3C (2697), 2R3C (2698) or 2R3C (4115). See
Brian Russellc5299ff2021-02-09 10:16:58 +0000121 * qos_policer_type_en
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 * element: rnd_type
Brian Russellc5299ff2021-02-09 10:16:58 +0000123 * Rounding type (see qos_round_type_en). Needed when policer values
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 * need to be rounded. Caller can decide on type of rounding used
125 */
Brian Russellc5299ff2021-02-09 10:16:58 +0000126typedef struct qos_pol_cfg_params_st_
Damjan Marion3891cd82016-10-27 10:27:00 +0200127{
128 union
129 {
130 struct
131 {
132 u32 cir_kbps;
133 u32 eir_kbps;
134 u64 cb_bytes;
135 u64 eb_bytes;
136 } kbps;
137 struct
138 {
139 u32 cir_pps;
140 u32 eir_pps;
141 u64 cb_ms;
142 u64 eb_ms;
143 } pps;
144 } rb; /* rate burst config */
Brian Russellc5299ff2021-02-09 10:16:58 +0000145 u8 rate_type; /* qos_rate_type_en */
146 u8 rnd_type; /* qos_round_type_en */
147 u8 rfc; /* qos_policer_type_en */
Damjan Marion3891cd82016-10-27 10:27:00 +0200148 u8 color_aware;
149 u8 overwrite_bucket; /* for debugging purposes */
150 u32 current_bucket; /* for debugging purposes */
151 u32 extended_bucket; /* for debugging purposes */
Brian Russellc5299ff2021-02-09 10:16:58 +0000152 qos_pol_action_params_st conform_action;
153 qos_pol_action_params_st exceed_action;
154 qos_pol_action_params_st violate_action;
155} qos_pol_cfg_params_st;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
Brian Russellc5299ff2021-02-09 10:16:58 +0000157typedef struct qos_pol_hw_params_st_
Damjan Marion3891cd82016-10-27 10:27:00 +0200158{
159 u8 rfc;
160 u8 allow_negative;
161 u8 rate_exp;
162 u16 avg_rate_man;
163 u16 peak_rate_man;
164 u8 comm_bkt_limit_exp;
165 u8 comm_bkt_limit_man;
166 u8 extd_bkt_limit_exp;
167 u8 extd_bkt_limit_man;
168 u32 comm_bkt;
169 u32 extd_bkt;
Brian Russellc5299ff2021-02-09 10:16:58 +0000170} qos_pol_hw_params_st;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Brian Russellc5299ff2021-02-09 10:16:58 +0000172int pol_logical_2_physical (qos_pol_cfg_params_st *cfg,
173 policer_read_response_type_st *phys);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
175#endif /* __included_xlate_h__ */
Damjan Marion3891cd82016-10-27 10:27:00 +0200176
177/*
178 * fd.io coding-style-patch-verification: ON
179 *
180 * Local Variables:
181 * eval: (c-set-style "gnu")
182 * End:
183 */