blob: b698266d00356e7270ad20e5270e967cbbdc7310 [file] [log] [blame]
Tal Gilboa0e589832018-11-04 19:07:02 +02001/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2/* Copyright (c) 2019 Mellanox Technologies. */
3
4#ifndef DIM_H
5#define DIM_H
6
Randy Dunlap690a6ca72019-10-08 21:03:14 -07007#include <linux/bits.h>
8#include <linux/kernel.h>
Tal Gilboa0e589832018-11-04 19:07:02 +02009#include <linux/module.h>
Randy Dunlap690a6ca72019-10-08 21:03:14 -070010#include <linux/types.h>
11#include <linux/workqueue.h>
Tal Gilboa0e589832018-11-04 19:07:02 +020012
Randy Dunlap690a6ca72019-10-08 21:03:14 -070013/*
Tal Gilboa4f75da32019-01-10 17:33:17 +020014 * Number of events between DIM iterations.
15 * Causes a moderation of the algorithm run.
16 */
Tal Gilboa449986e2018-11-05 11:57:10 +020017#define DIM_NEVENTS 64
Tal Gilboa0e589832018-11-04 19:07:02 +020018
Randy Dunlap690a6ca72019-10-08 21:03:14 -070019/*
Tal Gilboa4f75da32019-01-10 17:33:17 +020020 * Is a difference between values justifies taking an action.
21 * We consider 10% difference as significant.
22 */
Tal Gilboa0e589832018-11-04 19:07:02 +020023#define IS_SIGNIFICANT_DIFF(val, ref) \
24 (((100UL * abs((val) - (ref))) / (ref)) > 10)
Tal Gilboa0e589832018-11-04 19:07:02 +020025
Randy Dunlap690a6ca72019-10-08 21:03:14 -070026/*
Tal Gilboa4f75da32019-01-10 17:33:17 +020027 * Calculate the gap between two values.
28 * Take wrap-around and variable size into consideration.
29 */
30#define BIT_GAP(bits, end, start) ((((end) - (start)) + BIT_ULL(bits)) \
31 & (BIT_ULL(bits) - 1))
32
33/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -070034 * struct dim_cq_moder - Structure for CQ moderation values.
Tal Gilboa4f75da32019-01-10 17:33:17 +020035 * Used for communications between DIM and its consumer.
36 *
37 * @usec: CQ timer suggestion (by DIM)
38 * @pkts: CQ packet counter suggestion (by DIM)
Randy Dunlap690a6ca72019-10-08 21:03:14 -070039 * @comps: Completion counter
40 * @cq_period_mode: CQ period count mode (from CQE/EQE)
Tal Gilboa4f75da32019-01-10 17:33:17 +020041 */
Tal Gilboa8960b382019-01-31 16:44:48 +020042struct dim_cq_moder {
Tal Gilboa0e589832018-11-04 19:07:02 +020043 u16 usec;
44 u16 pkts;
Yamin Friedman398c2b02018-11-22 09:51:17 +020045 u16 comps;
Tal Gilboa0e589832018-11-04 19:07:02 +020046 u8 cq_period_mode;
47};
48
Tal Gilboa4f75da32019-01-10 17:33:17 +020049/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -070050 * struct dim_sample - Structure for DIM sample data.
Tal Gilboa4f75da32019-01-10 17:33:17 +020051 * Used for communications between DIM and its consumer.
52 *
53 * @time: Sample timestamp
54 * @pkt_ctr: Number of packets
55 * @byte_ctr: Number of bytes
56 * @event_ctr: Number of events
Randy Dunlap690a6ca72019-10-08 21:03:14 -070057 * @comp_ctr: Current completion counter
Tal Gilboa4f75da32019-01-10 17:33:17 +020058 */
Tal Gilboa8960b382019-01-31 16:44:48 +020059struct dim_sample {
Tal Gilboa0e589832018-11-04 19:07:02 +020060 ktime_t time;
61 u32 pkt_ctr;
62 u32 byte_ctr;
63 u16 event_ctr;
Yamin Friedman398c2b02018-11-22 09:51:17 +020064 u32 comp_ctr;
Tal Gilboa0e589832018-11-04 19:07:02 +020065};
66
Tal Gilboa4f75da32019-01-10 17:33:17 +020067/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -070068 * struct dim_stats - Structure for DIM stats.
Tal Gilboa4f75da32019-01-10 17:33:17 +020069 * Used for holding current measured rates.
70 *
71 * @ppms: Packets per msec
72 * @bpms: Bytes per msec
73 * @epms: Events per msec
Randy Dunlap690a6ca72019-10-08 21:03:14 -070074 * @cpms: Completions per msec
75 * @cpe_ratio: Ratio of completions to events
Tal Gilboa4f75da32019-01-10 17:33:17 +020076 */
Tal Gilboa449986e2018-11-05 11:57:10 +020077struct dim_stats {
Yamin Friedman398c2b02018-11-22 09:51:17 +020078 int ppms; /* packets per msec */
79 int bpms; /* bytes per msec */
80 int epms; /* events per msec */
81 int cpms; /* completions per msec */
82 int cpe_ratio; /* ratio of completions to events */
Tal Gilboa0e589832018-11-04 19:07:02 +020083};
84
Tal Gilboa4f75da32019-01-10 17:33:17 +020085/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -070086 * struct dim - Main structure for dynamic interrupt moderation (DIM).
Tal Gilboa4f75da32019-01-10 17:33:17 +020087 * Used for holding all information about a specific DIM instance.
88 *
89 * @state: Algorithm state (see below)
90 * @prev_stats: Measured rates from previous iteration (for comparison)
91 * @start_sample: Sampled data at start of current iteration
Randy Dunlap690a6ca72019-10-08 21:03:14 -070092 * @measuring_sample: A &dim_sample that is used to update the current events
Tal Gilboa4f75da32019-01-10 17:33:17 +020093 * @work: Work to perform on action required
Yamin Friedmanf4915452019-07-08 13:59:02 +030094 * @priv: A pointer to the struct that points to dim
Tal Gilboa4f75da32019-01-10 17:33:17 +020095 * @profile_ix: Current moderation profile
96 * @mode: CQ period count mode
97 * @tune_state: Algorithm tuning state (see below)
98 * @steps_right: Number of steps taken towards higher moderation
99 * @steps_left: Number of steps taken towards lower moderation
100 * @tired: Parking depth counter
101 */
102struct dim {
Tal Gilboa0e589832018-11-04 19:07:02 +0200103 u8 state;
Tal Gilboa449986e2018-11-05 11:57:10 +0200104 struct dim_stats prev_stats;
Tal Gilboa8960b382019-01-31 16:44:48 +0200105 struct dim_sample start_sample;
Yamin Friedman398c2b02018-11-22 09:51:17 +0200106 struct dim_sample measuring_sample;
Tal Gilboa0e589832018-11-04 19:07:02 +0200107 struct work_struct work;
Yamin Friedmanf4915452019-07-08 13:59:02 +0300108 void *priv;
Tal Gilboa0e589832018-11-04 19:07:02 +0200109 u8 profile_ix;
110 u8 mode;
111 u8 tune_state;
112 u8 steps_right;
113 u8 steps_left;
114 u8 tired;
115};
116
Tal Gilboa4f75da32019-01-10 17:33:17 +0200117/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700118 * enum dim_cq_period_mode - Modes for CQ period count
Tal Gilboa4f75da32019-01-10 17:33:17 +0200119 *
120 * @DIM_CQ_PERIOD_MODE_START_FROM_EQE: Start counting from EQE
121 * @DIM_CQ_PERIOD_MODE_START_FROM_CQE: Start counting from CQE (implies timer reset)
122 * @DIM_CQ_PERIOD_NUM_MODES: Number of modes
123 */
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700124enum dim_cq_period_mode {
Tal Gilboac002bd52018-11-05 12:07:52 +0200125 DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0x0,
126 DIM_CQ_PERIOD_MODE_START_FROM_CQE = 0x1,
127 DIM_CQ_PERIOD_NUM_MODES
Tal Gilboa0e589832018-11-04 19:07:02 +0200128};
129
Tal Gilboa4f75da32019-01-10 17:33:17 +0200130/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700131 * enum dim_state - DIM algorithm states
Tal Gilboa4f75da32019-01-10 17:33:17 +0200132 *
Tal Gilboa4f75da32019-01-10 17:33:17 +0200133 * These will determine if the algorithm is in a valid state to start an iteration.
134 *
135 * @DIM_START_MEASURE: This is the first iteration (also after applying a new profile)
136 * @DIM_MEASURE_IN_PROGRESS: Algorithm is already in progress - check if
137 * need to perform an action
138 * @DIM_APPLY_NEW_PROFILE: DIM consumer is currently applying a profile - no need to measure
139 */
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700140enum dim_state {
Tal Gilboac002bd52018-11-05 12:07:52 +0200141 DIM_START_MEASURE,
142 DIM_MEASURE_IN_PROGRESS,
143 DIM_APPLY_NEW_PROFILE,
Tal Gilboa0e589832018-11-04 19:07:02 +0200144};
145
Tal Gilboa4f75da32019-01-10 17:33:17 +0200146/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700147 * enum dim_tune_state - DIM algorithm tune states
Tal Gilboa4f75da32019-01-10 17:33:17 +0200148 *
Tal Gilboa4f75da32019-01-10 17:33:17 +0200149 * These will determine which action the algorithm should perform.
150 *
151 * @DIM_PARKING_ON_TOP: Algorithm found a local top point - exit on significant difference
152 * @DIM_PARKING_TIRED: Algorithm found a deep top point - don't exit if tired > 0
153 * @DIM_GOING_RIGHT: Algorithm is currently trying higher moderation levels
154 * @DIM_GOING_LEFT: Algorithm is currently trying lower moderation levels
155 */
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700156enum dim_tune_state {
Tal Gilboa449986e2018-11-05 11:57:10 +0200157 DIM_PARKING_ON_TOP,
158 DIM_PARKING_TIRED,
159 DIM_GOING_RIGHT,
160 DIM_GOING_LEFT,
Tal Gilboa0e589832018-11-04 19:07:02 +0200161};
162
Tal Gilboa4f75da32019-01-10 17:33:17 +0200163/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700164 * enum dim_stats_state - DIM algorithm statistics states
Tal Gilboa4f75da32019-01-10 17:33:17 +0200165 *
Tal Gilboa4f75da32019-01-10 17:33:17 +0200166 * These will determine the verdict of current iteration.
167 *
168 * @DIM_STATS_WORSE: Current iteration shows worse performance than before
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700169 * @DIM_STATS_SAME: Current iteration shows same performance than before
170 * @DIM_STATS_BETTER: Current iteration shows better performance than before
Tal Gilboa4f75da32019-01-10 17:33:17 +0200171 */
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700172enum dim_stats_state {
Tal Gilboa449986e2018-11-05 11:57:10 +0200173 DIM_STATS_WORSE,
174 DIM_STATS_SAME,
175 DIM_STATS_BETTER,
Tal Gilboa0e589832018-11-04 19:07:02 +0200176};
177
Tal Gilboa4f75da32019-01-10 17:33:17 +0200178/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700179 * enum dim_step_result - DIM algorithm step results
Tal Gilboa4f75da32019-01-10 17:33:17 +0200180 *
Tal Gilboa4f75da32019-01-10 17:33:17 +0200181 * These describe the result of a step.
182 *
183 * @DIM_STEPPED: Performed a regular step
184 * @DIM_TOO_TIRED: Same kind of step was done multiple times - should go to
185 * tired parking
186 * @DIM_ON_EDGE: Stepped to the most left/right profile
187 */
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700188enum dim_step_result {
Tal Gilboa449986e2018-11-05 11:57:10 +0200189 DIM_STEPPED,
190 DIM_TOO_TIRED,
191 DIM_ON_EDGE,
Tal Gilboa0e589832018-11-04 19:07:02 +0200192};
193
Tal Gilboa4f75da32019-01-10 17:33:17 +0200194/**
195 * dim_on_top - check if current state is a good place to stop (top location)
196 * @dim: DIM context
197 *
198 * Check if current profile is a good place to park at.
199 * This will result in reducing the DIM checks frequency as we assume we
200 * shouldn't probably change profiles, unless traffic pattern wasn't changed.
201 */
202bool dim_on_top(struct dim *dim);
Tal Gilboa0e589832018-11-04 19:07:02 +0200203
Tal Gilboa4f75da32019-01-10 17:33:17 +0200204/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700205 * dim_turn - change profile altering direction
Tal Gilboa4f75da32019-01-10 17:33:17 +0200206 * @dim: DIM context
207 *
208 * Go left if we were going right and vice-versa.
209 * Do nothing if currently parking.
210 */
211void dim_turn(struct dim *dim);
Tal Gilboa0e589832018-11-04 19:07:02 +0200212
Tal Gilboa4f75da32019-01-10 17:33:17 +0200213/**
214 * dim_park_on_top - enter a parking state on a top location
215 * @dim: DIM context
216 *
217 * Enter parking state.
218 * Clear all movement history.
219 */
220void dim_park_on_top(struct dim *dim);
Tal Gilboa0e589832018-11-04 19:07:02 +0200221
Tal Gilboa4f75da32019-01-10 17:33:17 +0200222/**
223 * dim_park_tired - enter a tired parking state
224 * @dim: DIM context
225 *
226 * Enter parking state.
227 * Clear all movement history and cause DIM checks frequency to reduce.
228 */
229void dim_park_tired(struct dim *dim);
Tal Gilboa0e589832018-11-04 19:07:02 +0200230
Tal Gilboa4f75da32019-01-10 17:33:17 +0200231/**
232 * dim_calc_stats - calculate the difference between two samples
233 * @start: start sample
234 * @end: end sample
235 * @curr_stats: delta between samples
236 *
237 * Calculate the delta between two samples (in data rates).
238 * Takes into consideration counter wrap-around.
239 */
240void dim_calc_stats(struct dim_sample *start, struct dim_sample *end,
241 struct dim_stats *curr_stats);
242
243/**
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700244 * dim_update_sample - set a sample's fields with given values
Tal Gilboa4f75da32019-01-10 17:33:17 +0200245 * @event_ctr: number of events to set
246 * @packets: number of packets to set
247 * @bytes: number of bytes to set
248 * @s: DIM sample
249 */
Tal Gilboa0e589832018-11-04 19:07:02 +0200250static inline void
Tal Gilboa8960b382019-01-31 16:44:48 +0200251dim_update_sample(u16 event_ctr, u64 packets, u64 bytes, struct dim_sample *s)
Tal Gilboa0e589832018-11-04 19:07:02 +0200252{
253 s->time = ktime_get();
254 s->pkt_ctr = packets;
255 s->byte_ctr = bytes;
256 s->event_ctr = event_ctr;
257}
258
Yamin Friedman398c2b02018-11-22 09:51:17 +0200259/**
260 * dim_update_sample_with_comps - set a sample's fields with given
261 * values including the completion parameter
262 * @event_ctr: number of events to set
263 * @packets: number of packets to set
264 * @bytes: number of bytes to set
265 * @comps: number of completions to set
266 * @s: DIM sample
267 */
268static inline void
269dim_update_sample_with_comps(u16 event_ctr, u64 packets, u64 bytes, u64 comps,
270 struct dim_sample *s)
271{
272 dim_update_sample(event_ctr, packets, bytes, s);
273 s->comp_ctr = comps;
274}
275
Tal Gilboa4f75da32019-01-10 17:33:17 +0200276/* Net DIM */
Tal Gilboa0e589832018-11-04 19:07:02 +0200277
Tal Gilboa4f75da32019-01-10 17:33:17 +0200278/**
279 * net_dim_get_rx_moderation - provide a CQ moderation object for the given RX profile
280 * @cq_period_mode: CQ period mode
281 * @ix: Profile index
282 */
283struct dim_cq_moder net_dim_get_rx_moderation(u8 cq_period_mode, int ix);
284
285/**
286 * net_dim_get_def_rx_moderation - provide the default RX moderation
287 * @cq_period_mode: CQ period mode
288 */
289struct dim_cq_moder net_dim_get_def_rx_moderation(u8 cq_period_mode);
290
291/**
292 * net_dim_get_tx_moderation - provide a CQ moderation object for the given TX profile
293 * @cq_period_mode: CQ period mode
294 * @ix: Profile index
295 */
296struct dim_cq_moder net_dim_get_tx_moderation(u8 cq_period_mode, int ix);
297
298/**
299 * net_dim_get_def_tx_moderation - provide the default TX moderation
300 * @cq_period_mode: CQ period mode
301 */
302struct dim_cq_moder net_dim_get_def_tx_moderation(u8 cq_period_mode);
303
304/**
305 * net_dim - main DIM algorithm entry point
306 * @dim: DIM instance information
307 * @end_sample: Current data measurement
308 *
309 * Called by the consumer.
Randy Dunlap690a6ca72019-10-08 21:03:14 -0700310 * This is the main logic of the algorithm, where data is processed in order
311 * to decide on next required action.
Tal Gilboa4f75da32019-01-10 17:33:17 +0200312 */
313void net_dim(struct dim *dim, struct dim_sample end_sample);
314
Yamin Friedmanf4915452019-07-08 13:59:02 +0300315/* RDMA DIM */
316
317/*
318 * RDMA DIM profile:
319 * profile size must be of RDMA_DIM_PARAMS_NUM_PROFILES.
320 */
321#define RDMA_DIM_PARAMS_NUM_PROFILES 9
322#define RDMA_DIM_START_PROFILE 0
323
Yamin Friedmanf4915452019-07-08 13:59:02 +0300324/**
325 * rdma_dim - Runs the adaptive moderation.
326 * @dim: The moderation struct.
327 * @completions: The number of completions collected in this round.
328 *
329 * Each call to rdma_dim takes the latest amount of completions that
330 * have been collected and counts them as a new event.
331 * Once enough events have been collected the algorithm decides a new
332 * moderation level.
333 */
334void rdma_dim(struct dim *dim, u64 completions);
335
Tal Gilboa0e589832018-11-04 19:07:02 +0200336#endif /* DIM_H */