Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 Russell | e3845d7 | 2021-02-08 15:33:18 +0000 | [diff] [blame] | 23 | #include <vnet/ip/ip_packet.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 24 | #include <vnet/policer/police.h> |
| 25 | |
| 26 | /* |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 27 | * edt: * enum qos_policer_type_en |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 28 | * Defines type of policer to be allocated |
| 29 | */ |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 30 | typedef enum qos_policer_type_en_ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 31 | { |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 32 | 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 |
Brian Russell | b2aae75 | 2021-02-09 11:36:31 +0000 | [diff] [blame] | 38 | } __clib_packed qos_policer_type_en; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * edt: * enum |
| 42 | * Enum used to define type of rounding used when calculating policer values |
| 43 | */ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 44 | typedef enum |
| 45 | { |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 46 | QOS_ROUND_TO_CLOSEST = 0, |
| 47 | QOS_ROUND_TO_UP, |
| 48 | QOS_ROUND_TO_DOWN, |
| 49 | QOS_ROUND_INVALID |
Brian Russell | b2aae75 | 2021-02-09 11:36:31 +0000 | [diff] [blame] | 50 | } __clib_packed qos_round_type_en; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | |
| 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 Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 59 | * of units_in_bits field in static_policer_parameters_st, which is |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | * inline with sse_punt_drop.h. |
| 61 | */ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 62 | typedef enum |
| 63 | { |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 64 | QOS_RATE_KBPS = 0, |
| 65 | QOS_RATE_PPS, |
| 66 | QOS_RATE_INVALID |
Brian Russell | b2aae75 | 2021-02-09 11:36:31 +0000 | [diff] [blame] | 67 | } __clib_packed qos_rate_type_en; |
Matus Fabian | 4ac74c9 | 2016-05-31 07:33:29 -0700 | [diff] [blame] | 68 | |
| 69 | /* |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 70 | * edt * struct qos_pol_action_params_st |
Matus Fabian | 4ac74c9 | 2016-05-31 07:33:29 -0700 | [diff] [blame] | 71 | * This structure is used to hold user configured police action parameters. |
| 72 | * |
| 73 | * element: action_type |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 74 | * Action type (see qos_action_type_en). |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 75 | * element: dscp |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 76 | * DSCP value to set when action is QOS_ACTION_MARK_AND_TRANSMIT. |
Matus Fabian | 4ac74c9 | 2016-05-31 07:33:29 -0700 | [diff] [blame] | 77 | */ |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 78 | typedef struct qos_pol_action_params_st_ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 79 | { |
Brian Russell | b2aae75 | 2021-02-09 11:36:31 +0000 | [diff] [blame] | 80 | qos_action_type_en action_type; |
Brian Russell | e3845d7 | 2021-02-08 15:33:18 +0000 | [diff] [blame] | 81 | ip_dscp_t dscp; |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 82 | } qos_pol_action_params_st; |
Matus Fabian | 4ac74c9 | 2016-05-31 07:33:29 -0700 | [diff] [blame] | 83 | |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 84 | /* |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 85 | * edt: * struct qos_pol_cfg_params_st |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | * |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 87 | * Description: |
| 88 | * This structure is used to hold user configured policing parameters. |
| 89 | * |
| 90 | * element: cir_kbps |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | * CIR in kbps. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 92 | * element: eir_kbps |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | * EIR or PIR in kbps. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 94 | * element: cb_bytes |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | * Committed Burst in bytes. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 96 | * element: eb_bytes |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | * Excess or Peak Burst in bytes. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 98 | * element: cir_pps |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | * CIR in pps. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 100 | * element: eir_pps |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | * EIR or PIR in pps. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 102 | * element: cb_ms |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | * Committed Burst in milliseconds. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 104 | * element: eb_ms |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | * Excess or Peak Burst in milliseconds. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 106 | * element: rate_type |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 107 | * Indicates the union if in kbps/bytes or pps/ms. |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 108 | * element: rfc |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | * Policer algorithm - 1R2C, 1R3C (2697), 2R3C (2698) or 2R3C (4115). See |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 110 | * qos_policer_type_en |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | * element: rnd_type |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 112 | * Rounding type (see qos_round_type_en). Needed when policer values |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | * need to be rounded. Caller can decide on type of rounding used |
| 114 | */ |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 115 | typedef struct qos_pol_cfg_params_st_ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 116 | { |
| 117 | union |
| 118 | { |
| 119 | struct |
| 120 | { |
| 121 | u32 cir_kbps; |
| 122 | u32 eir_kbps; |
| 123 | u64 cb_bytes; |
| 124 | u64 eb_bytes; |
| 125 | } kbps; |
| 126 | struct |
| 127 | { |
| 128 | u32 cir_pps; |
| 129 | u32 eir_pps; |
| 130 | u64 cb_ms; |
| 131 | u64 eb_ms; |
| 132 | } pps; |
| 133 | } rb; /* rate burst config */ |
Brian Russell | b2aae75 | 2021-02-09 11:36:31 +0000 | [diff] [blame] | 134 | qos_rate_type_en rate_type; |
| 135 | qos_round_type_en rnd_type; |
| 136 | qos_policer_type_en rfc; |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 137 | u8 color_aware; |
| 138 | u8 overwrite_bucket; /* for debugging purposes */ |
| 139 | u32 current_bucket; /* for debugging purposes */ |
| 140 | u32 extended_bucket; /* for debugging purposes */ |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 141 | qos_pol_action_params_st conform_action; |
| 142 | qos_pol_action_params_st exceed_action; |
| 143 | qos_pol_action_params_st violate_action; |
| 144 | } qos_pol_cfg_params_st; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 146 | typedef struct qos_pol_hw_params_st_ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 147 | { |
| 148 | u8 rfc; |
| 149 | u8 allow_negative; |
| 150 | u8 rate_exp; |
| 151 | u16 avg_rate_man; |
| 152 | u16 peak_rate_man; |
| 153 | u8 comm_bkt_limit_exp; |
| 154 | u8 comm_bkt_limit_man; |
| 155 | u8 extd_bkt_limit_exp; |
| 156 | u8 extd_bkt_limit_man; |
| 157 | u32 comm_bkt; |
| 158 | u32 extd_bkt; |
Brian Russell | c5299ff | 2021-02-09 10:16:58 +0000 | [diff] [blame] | 159 | } qos_pol_hw_params_st; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 160 | |
Maxime Peim | 2d1a62b | 2023-01-06 11:57:38 +0000 | [diff] [blame] | 161 | int pol_logical_2_physical (const qos_pol_cfg_params_st *cfg, policer_t *phys); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | |
| 163 | #endif /* __included_xlate_h__ */ |
Damjan Marion | 3891cd8 | 2016-10-27 10:27:00 +0200 | [diff] [blame] | 164 | |
| 165 | /* |
| 166 | * fd.io coding-style-patch-verification: ON |
| 167 | * |
| 168 | * Local Variables: |
| 169 | * eval: (c-set-style "gnu") |
| 170 | * End: |
| 171 | */ |