1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /* Copyright (c) 2019 Mellanox Technologies. */
7 #include <linux/module.h>
10 * Number of events between DIM iterations.
11 * Causes a moderation of the algorithm run.
13 #define DIM_NEVENTS 64
16 * Is a difference between values justifies taking an action.
17 * We consider 10% difference as significant.
19 #define IS_SIGNIFICANT_DIFF(val, ref) \
20 (((100UL * abs((val) - (ref))) / (ref)) > 10)
23 * Calculate the gap between two values.
24 * Take wrap-around and variable size into consideration.
26 #define BIT_GAP(bits, end, start) ((((end) - (start)) + BIT_ULL(bits)) \
27 & (BIT_ULL(bits) - 1))
30 * Structure for CQ moderation values.
31 * Used for communications between DIM and its consumer.
33 * @usec: CQ timer suggestion (by DIM)
34 * @pkts: CQ packet counter suggestion (by DIM)
35 * @cq_period_mode: CQ priod count mode (from CQE/EQE)
45 * Structure for DIM sample data.
46 * Used for communications between DIM and its consumer.
48 * @time: Sample timestamp
49 * @pkt_ctr: Number of packets
50 * @byte_ctr: Number of bytes
51 * @event_ctr: Number of events
62 * Structure for DIM stats.
63 * Used for holding current measured rates.
65 * @ppms: Packets per msec
66 * @bpms: Bytes per msec
67 * @epms: Events per msec
70 int ppms; /* packets per msec */
71 int bpms; /* bytes per msec */
72 int epms; /* events per msec */
73 int cpms; /* completions per msec */
74 int cpe_ratio; /* ratio of completions to events */
78 * Main structure for dynamic interrupt moderation (DIM).
79 * Used for holding all information about a specific DIM instance.
81 * @state: Algorithm state (see below)
82 * @prev_stats: Measured rates from previous iteration (for comparison)
83 * @start_sample: Sampled data at start of current iteration
84 * @work: Work to perform on action required
85 * @profile_ix: Current moderation profile
86 * @mode: CQ period count mode
87 * @tune_state: Algorithm tuning state (see below)
88 * @steps_right: Number of steps taken towards higher moderation
89 * @steps_left: Number of steps taken towards lower moderation
90 * @tired: Parking depth counter
94 struct dim_stats prev_stats;
95 struct dim_sample start_sample;
96 struct dim_sample measuring_sample;
97 struct work_struct work;
107 * enum dim_cq_period_mode
109 * These are the modes for CQ period count.
111 * @DIM_CQ_PERIOD_MODE_START_FROM_EQE: Start counting from EQE
112 * @DIM_CQ_PERIOD_MODE_START_FROM_CQE: Start counting from CQE (implies timer reset)
113 * @DIM_CQ_PERIOD_NUM_MODES: Number of modes
116 DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0x0,
117 DIM_CQ_PERIOD_MODE_START_FROM_CQE = 0x1,
118 DIM_CQ_PERIOD_NUM_MODES
124 * These are the DIM algorithm states.
125 * These will determine if the algorithm is in a valid state to start an iteration.
127 * @DIM_START_MEASURE: This is the first iteration (also after applying a new profile)
128 * @DIM_MEASURE_IN_PROGRESS: Algorithm is already in progress - check if
129 * need to perform an action
130 * @DIM_APPLY_NEW_PROFILE: DIM consumer is currently applying a profile - no need to measure
134 DIM_MEASURE_IN_PROGRESS,
135 DIM_APPLY_NEW_PROFILE,
139 * enum dim_tune_state
141 * These are the DIM algorithm tune states.
142 * These will determine which action the algorithm should perform.
144 * @DIM_PARKING_ON_TOP: Algorithm found a local top point - exit on significant difference
145 * @DIM_PARKING_TIRED: Algorithm found a deep top point - don't exit if tired > 0
146 * @DIM_GOING_RIGHT: Algorithm is currently trying higher moderation levels
147 * @DIM_GOING_LEFT: Algorithm is currently trying lower moderation levels
157 * enum dim_stats_state
159 * These are the DIM algorithm statistics states.
160 * These will determine the verdict of current iteration.
162 * @DIM_STATS_WORSE: Current iteration shows worse performance than before
163 * @DIM_STATS_WORSE: Current iteration shows same performance than before
164 * @DIM_STATS_WORSE: Current iteration shows better performance than before
173 * enum dim_step_result
175 * These are the DIM algorithm step results.
176 * These describe the result of a step.
178 * @DIM_STEPPED: Performed a regular step
179 * @DIM_TOO_TIRED: Same kind of step was done multiple times - should go to
181 * @DIM_ON_EDGE: Stepped to the most left/right profile
190 * dim_on_top - check if current state is a good place to stop (top location)
193 * Check if current profile is a good place to park at.
194 * This will result in reducing the DIM checks frequency as we assume we
195 * shouldn't probably change profiles, unless traffic pattern wasn't changed.
197 bool dim_on_top(struct dim *dim);
200 * dim_turn - change profile alterning direction
203 * Go left if we were going right and vice-versa.
204 * Do nothing if currently parking.
206 void dim_turn(struct dim *dim);
209 * dim_park_on_top - enter a parking state on a top location
212 * Enter parking state.
213 * Clear all movement history.
215 void dim_park_on_top(struct dim *dim);
218 * dim_park_tired - enter a tired parking state
221 * Enter parking state.
222 * Clear all movement history and cause DIM checks frequency to reduce.
224 void dim_park_tired(struct dim *dim);
227 * dim_calc_stats - calculate the difference between two samples
228 * @start: start sample
230 * @curr_stats: delta between samples
232 * Calculate the delta between two samples (in data rates).
233 * Takes into consideration counter wrap-around.
235 void dim_calc_stats(struct dim_sample *start, struct dim_sample *end,
236 struct dim_stats *curr_stats);
239 * dim_update_sample - set a sample's fields with give values
240 * @event_ctr: number of events to set
241 * @packets: number of packets to set
242 * @bytes: number of bytes to set
246 dim_update_sample(u16 event_ctr, u64 packets, u64 bytes, struct dim_sample *s)
248 s->time = ktime_get();
249 s->pkt_ctr = packets;
251 s->event_ctr = event_ctr;
255 * dim_update_sample_with_comps - set a sample's fields with given
256 * values including the completion parameter
257 * @event_ctr: number of events to set
258 * @packets: number of packets to set
259 * @bytes: number of bytes to set
260 * @comps: number of completions to set
264 dim_update_sample_with_comps(u16 event_ctr, u64 packets, u64 bytes, u64 comps,
265 struct dim_sample *s)
267 dim_update_sample(event_ctr, packets, bytes, s);
275 * There are different set of profiles for each CQ period mode.
276 * There are different set of profiles for RX/TX CQs.
277 * Each profile size must be of NET_DIM_PARAMS_NUM_PROFILES
279 #define NET_DIM_PARAMS_NUM_PROFILES 5
280 #define NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE 256
281 #define NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE 128
282 #define NET_DIM_DEF_PROFILE_CQE 1
283 #define NET_DIM_DEF_PROFILE_EQE 1
285 #define NET_DIM_RX_EQE_PROFILES { \
286 {1, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
287 {8, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
288 {64, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
289 {128, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
290 {256, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
293 #define NET_DIM_RX_CQE_PROFILES { \
301 #define NET_DIM_TX_EQE_PROFILES { \
302 {1, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
303 {8, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
304 {32, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
305 {64, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
306 {128, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE} \
309 #define NET_DIM_TX_CQE_PROFILES { \
317 static const struct dim_cq_moder
318 rx_profile[DIM_CQ_PERIOD_NUM_MODES][NET_DIM_PARAMS_NUM_PROFILES] = {
319 NET_DIM_RX_EQE_PROFILES,
320 NET_DIM_RX_CQE_PROFILES,
323 static const struct dim_cq_moder
324 tx_profile[DIM_CQ_PERIOD_NUM_MODES][NET_DIM_PARAMS_NUM_PROFILES] = {
325 NET_DIM_TX_EQE_PROFILES,
326 NET_DIM_TX_CQE_PROFILES,
330 * net_dim_get_rx_moderation - provide a CQ moderation object for the given RX profile
331 * @cq_period_mode: CQ period mode
334 struct dim_cq_moder net_dim_get_rx_moderation(u8 cq_period_mode, int ix);
337 * net_dim_get_def_rx_moderation - provide the default RX moderation
338 * @cq_period_mode: CQ period mode
340 struct dim_cq_moder net_dim_get_def_rx_moderation(u8 cq_period_mode);
343 * net_dim_get_tx_moderation - provide a CQ moderation object for the given TX profile
344 * @cq_period_mode: CQ period mode
347 struct dim_cq_moder net_dim_get_tx_moderation(u8 cq_period_mode, int ix);
350 * net_dim_get_def_tx_moderation - provide the default TX moderation
351 * @cq_period_mode: CQ period mode
353 struct dim_cq_moder net_dim_get_def_tx_moderation(u8 cq_period_mode);
356 * net_dim - main DIM algorithm entry point
357 * @dim: DIM instance information
358 * @end_sample: Current data measurement
360 * Called by the consumer.
361 * This is the main logic of the algorithm, where data is processed in order to decide on next
364 void net_dim(struct dim *dim, struct dim_sample end_sample);