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 * @priv: A pointer to the struct that points to dim
86 * @profile_ix: Current moderation profile
87 * @mode: CQ period count mode
88 * @tune_state: Algorithm tuning state (see below)
89 * @steps_right: Number of steps taken towards higher moderation
90 * @steps_left: Number of steps taken towards lower moderation
91 * @tired: Parking depth counter
95 struct dim_stats prev_stats;
96 struct dim_sample start_sample;
97 struct dim_sample measuring_sample;
98 struct work_struct work;
109 * enum dim_cq_period_mode
111 * These are the modes for CQ period count.
113 * @DIM_CQ_PERIOD_MODE_START_FROM_EQE: Start counting from EQE
114 * @DIM_CQ_PERIOD_MODE_START_FROM_CQE: Start counting from CQE (implies timer reset)
115 * @DIM_CQ_PERIOD_NUM_MODES: Number of modes
118 DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0x0,
119 DIM_CQ_PERIOD_MODE_START_FROM_CQE = 0x1,
120 DIM_CQ_PERIOD_NUM_MODES
126 * These are the DIM algorithm states.
127 * These will determine if the algorithm is in a valid state to start an iteration.
129 * @DIM_START_MEASURE: This is the first iteration (also after applying a new profile)
130 * @DIM_MEASURE_IN_PROGRESS: Algorithm is already in progress - check if
131 * need to perform an action
132 * @DIM_APPLY_NEW_PROFILE: DIM consumer is currently applying a profile - no need to measure
136 DIM_MEASURE_IN_PROGRESS,
137 DIM_APPLY_NEW_PROFILE,
141 * enum dim_tune_state
143 * These are the DIM algorithm tune states.
144 * These will determine which action the algorithm should perform.
146 * @DIM_PARKING_ON_TOP: Algorithm found a local top point - exit on significant difference
147 * @DIM_PARKING_TIRED: Algorithm found a deep top point - don't exit if tired > 0
148 * @DIM_GOING_RIGHT: Algorithm is currently trying higher moderation levels
149 * @DIM_GOING_LEFT: Algorithm is currently trying lower moderation levels
159 * enum dim_stats_state
161 * These are the DIM algorithm statistics states.
162 * These will determine the verdict of current iteration.
164 * @DIM_STATS_WORSE: Current iteration shows worse performance than before
165 * @DIM_STATS_WORSE: Current iteration shows same performance than before
166 * @DIM_STATS_WORSE: Current iteration shows better performance than before
175 * enum dim_step_result
177 * These are the DIM algorithm step results.
178 * These describe the result of a step.
180 * @DIM_STEPPED: Performed a regular step
181 * @DIM_TOO_TIRED: Same kind of step was done multiple times - should go to
183 * @DIM_ON_EDGE: Stepped to the most left/right profile
192 * dim_on_top - check if current state is a good place to stop (top location)
195 * Check if current profile is a good place to park at.
196 * This will result in reducing the DIM checks frequency as we assume we
197 * shouldn't probably change profiles, unless traffic pattern wasn't changed.
199 bool dim_on_top(struct dim *dim);
202 * dim_turn - change profile alterning direction
205 * Go left if we were going right and vice-versa.
206 * Do nothing if currently parking.
208 void dim_turn(struct dim *dim);
211 * dim_park_on_top - enter a parking state on a top location
214 * Enter parking state.
215 * Clear all movement history.
217 void dim_park_on_top(struct dim *dim);
220 * dim_park_tired - enter a tired parking state
223 * Enter parking state.
224 * Clear all movement history and cause DIM checks frequency to reduce.
226 void dim_park_tired(struct dim *dim);
229 * dim_calc_stats - calculate the difference between two samples
230 * @start: start sample
232 * @curr_stats: delta between samples
234 * Calculate the delta between two samples (in data rates).
235 * Takes into consideration counter wrap-around.
237 void dim_calc_stats(struct dim_sample *start, struct dim_sample *end,
238 struct dim_stats *curr_stats);
241 * dim_update_sample - set a sample's fields with give values
242 * @event_ctr: number of events to set
243 * @packets: number of packets to set
244 * @bytes: number of bytes to set
248 dim_update_sample(u16 event_ctr, u64 packets, u64 bytes, struct dim_sample *s)
250 s->time = ktime_get();
251 s->pkt_ctr = packets;
253 s->event_ctr = event_ctr;
257 * dim_update_sample_with_comps - set a sample's fields with given
258 * values including the completion parameter
259 * @event_ctr: number of events to set
260 * @packets: number of packets to set
261 * @bytes: number of bytes to set
262 * @comps: number of completions to set
266 dim_update_sample_with_comps(u16 event_ctr, u64 packets, u64 bytes, u64 comps,
267 struct dim_sample *s)
269 dim_update_sample(event_ctr, packets, bytes, s);
277 * There are different set of profiles for each CQ period mode.
278 * There are different set of profiles for RX/TX CQs.
279 * Each profile size must be of NET_DIM_PARAMS_NUM_PROFILES
281 #define NET_DIM_PARAMS_NUM_PROFILES 5
282 #define NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE 256
283 #define NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE 128
284 #define NET_DIM_DEF_PROFILE_CQE 1
285 #define NET_DIM_DEF_PROFILE_EQE 1
287 #define NET_DIM_RX_EQE_PROFILES { \
288 {1, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
289 {8, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
290 {64, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
291 {128, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
292 {256, NET_DIM_DEFAULT_RX_CQ_MODERATION_PKTS_FROM_EQE}, \
295 #define NET_DIM_RX_CQE_PROFILES { \
303 #define NET_DIM_TX_EQE_PROFILES { \
304 {1, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
305 {8, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
306 {32, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
307 {64, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE}, \
308 {128, NET_DIM_DEFAULT_TX_CQ_MODERATION_PKTS_FROM_EQE} \
311 #define NET_DIM_TX_CQE_PROFILES { \
319 static const struct dim_cq_moder
320 rx_profile[DIM_CQ_PERIOD_NUM_MODES][NET_DIM_PARAMS_NUM_PROFILES] = {
321 NET_DIM_RX_EQE_PROFILES,
322 NET_DIM_RX_CQE_PROFILES,
325 static const struct dim_cq_moder
326 tx_profile[DIM_CQ_PERIOD_NUM_MODES][NET_DIM_PARAMS_NUM_PROFILES] = {
327 NET_DIM_TX_EQE_PROFILES,
328 NET_DIM_TX_CQE_PROFILES,
332 * net_dim_get_rx_moderation - provide a CQ moderation object for the given RX profile
333 * @cq_period_mode: CQ period mode
336 struct dim_cq_moder net_dim_get_rx_moderation(u8 cq_period_mode, int ix);
339 * net_dim_get_def_rx_moderation - provide the default RX moderation
340 * @cq_period_mode: CQ period mode
342 struct dim_cq_moder net_dim_get_def_rx_moderation(u8 cq_period_mode);
345 * net_dim_get_tx_moderation - provide a CQ moderation object for the given TX profile
346 * @cq_period_mode: CQ period mode
349 struct dim_cq_moder net_dim_get_tx_moderation(u8 cq_period_mode, int ix);
352 * net_dim_get_def_tx_moderation - provide the default TX moderation
353 * @cq_period_mode: CQ period mode
355 struct dim_cq_moder net_dim_get_def_tx_moderation(u8 cq_period_mode);
358 * net_dim - main DIM algorithm entry point
359 * @dim: DIM instance information
360 * @end_sample: Current data measurement
362 * Called by the consumer.
363 * This is the main logic of the algorithm, where data is processed in order to decide on next
366 void net_dim(struct dim *dim, struct dim_sample end_sample);
372 * profile size must be of RDMA_DIM_PARAMS_NUM_PROFILES.
374 #define RDMA_DIM_PARAMS_NUM_PROFILES 9
375 #define RDMA_DIM_START_PROFILE 0
378 * rdma_dim - Runs the adaptive moderation.
379 * @dim: The moderation struct.
380 * @completions: The number of completions collected in this round.
382 * Each call to rdma_dim takes the latest amount of completions that
383 * have been collected and counts them as a new event.
384 * Once enough events have been collected the algorithm decides a new
387 void rdma_dim(struct dim *dim, u64 completions);