net/txgbe: fix queue statistics mapping
[dpdk.git] / drivers / net / dpaa2 / mc / fsl_dpni_cmd.h
1 /* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
2  *
3  * Copyright 2013-2016 Freescale Semiconductor Inc.
4  * Copyright 2016-2021 NXP
5  *
6  */
7 #ifndef _FSL_DPNI_CMD_H
8 #define _FSL_DPNI_CMD_H
9
10 /* DPNI Version */
11 #define DPNI_VER_MAJOR                          8
12 #define DPNI_VER_MINOR                          0
13
14 #define DPNI_CMD_BASE_VERSION                   1
15 #define DPNI_CMD_VERSION_2                      2
16 #define DPNI_CMD_VERSION_3                      3
17 #define DPNI_CMD_VERSION_4                      4
18 #define DPNI_CMD_VERSION_5                      5
19 #define DPNI_CMD_VERSION_6                      6
20 #define DPNI_CMD_ID_OFFSET                      4
21
22 #define DPNI_CMD(id)    (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_BASE_VERSION)
23 #define DPNI_CMD_V2(id) (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_VERSION_2)
24 #define DPNI_CMD_V3(id) (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_VERSION_3)
25 #define DPNI_CMD_V4(id) (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_VERSION_4)
26 #define DPNI_CMD_V5(id) (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_VERSION_5)
27 #define DPNI_CMD_V6(id) (((id) << DPNI_CMD_ID_OFFSET) | DPNI_CMD_VERSION_6)
28
29 /* Command IDs */
30 #define DPNI_CMDID_OPEN                         DPNI_CMD(0x801)
31 #define DPNI_CMDID_CLOSE                        DPNI_CMD(0x800)
32 #define DPNI_CMDID_CREATE                       DPNI_CMD_V6(0x901)
33 #define DPNI_CMDID_DESTROY                      DPNI_CMD(0x981)
34 #define DPNI_CMDID_GET_API_VERSION              DPNI_CMD(0xa01)
35
36 #define DPNI_CMDID_ENABLE                       DPNI_CMD(0x002)
37 #define DPNI_CMDID_DISABLE                      DPNI_CMD(0x003)
38 #define DPNI_CMDID_GET_ATTR                     DPNI_CMD_V4(0x004)
39 #define DPNI_CMDID_RESET                        DPNI_CMD(0x005)
40 #define DPNI_CMDID_IS_ENABLED                   DPNI_CMD(0x006)
41
42 #define DPNI_CMDID_SET_IRQ_ENABLE               DPNI_CMD(0x012)
43 #define DPNI_CMDID_GET_IRQ_ENABLE               DPNI_CMD(0x013)
44 #define DPNI_CMDID_SET_IRQ_MASK                 DPNI_CMD(0x014)
45 #define DPNI_CMDID_GET_IRQ_MASK                 DPNI_CMD(0x015)
46 #define DPNI_CMDID_GET_IRQ_STATUS               DPNI_CMD(0x016)
47 #define DPNI_CMDID_CLEAR_IRQ_STATUS             DPNI_CMD(0x017)
48
49 #define DPNI_CMDID_SET_POOLS                    DPNI_CMD_V3(0x200)
50 #define DPNI_CMDID_SET_ERRORS_BEHAVIOR          DPNI_CMD(0x20B)
51
52 #define DPNI_CMDID_GET_QDID                     DPNI_CMD(0x210)
53 #define DPNI_CMDID_GET_SP_INFO                  DPNI_CMD(0x211)
54 #define DPNI_CMDID_GET_TX_DATA_OFFSET           DPNI_CMD(0x212)
55 #define DPNI_CMDID_GET_LINK_STATE               DPNI_CMD_V2(0x215)
56 #define DPNI_CMDID_SET_MAX_FRAME_LENGTH         DPNI_CMD(0x216)
57 #define DPNI_CMDID_GET_MAX_FRAME_LENGTH         DPNI_CMD(0x217)
58 #define DPNI_CMDID_SET_LINK_CFG                 DPNI_CMD_V2(0x21A)
59 #define DPNI_CMDID_SET_TX_SHAPING               DPNI_CMD_V3(0x21B)
60
61 #define DPNI_CMDID_SET_MCAST_PROMISC            DPNI_CMD(0x220)
62 #define DPNI_CMDID_GET_MCAST_PROMISC            DPNI_CMD(0x221)
63 #define DPNI_CMDID_SET_UNICAST_PROMISC          DPNI_CMD(0x222)
64 #define DPNI_CMDID_GET_UNICAST_PROMISC          DPNI_CMD(0x223)
65 #define DPNI_CMDID_SET_PRIM_MAC                 DPNI_CMD(0x224)
66 #define DPNI_CMDID_GET_PRIM_MAC                 DPNI_CMD(0x225)
67 #define DPNI_CMDID_ADD_MAC_ADDR                 DPNI_CMD_V2(0x226)
68 #define DPNI_CMDID_REMOVE_MAC_ADDR              DPNI_CMD(0x227)
69 #define DPNI_CMDID_CLR_MAC_FILTERS              DPNI_CMD(0x228)
70
71 #define DPNI_CMDID_ENABLE_VLAN_FILTER           DPNI_CMD(0x230)
72 #define DPNI_CMDID_ADD_VLAN_ID                  DPNI_CMD_V2(0x231)
73 #define DPNI_CMDID_REMOVE_VLAN_ID               DPNI_CMD(0x232)
74 #define DPNI_CMDID_CLR_VLAN_FILTERS             DPNI_CMD(0x233)
75
76 #define DPNI_CMDID_SET_RX_TC_DIST               DPNI_CMD_V4(0x235)
77
78 #define DPNI_CMDID_SET_RX_TC_POLICING           DPNI_CMD(0x23E)
79
80 #define DPNI_CMDID_SET_QOS_TBL                  DPNI_CMD_V2(0x240)
81 #define DPNI_CMDID_ADD_QOS_ENT                  DPNI_CMD_V2(0x241)
82 #define DPNI_CMDID_REMOVE_QOS_ENT               DPNI_CMD(0x242)
83 #define DPNI_CMDID_CLR_QOS_TBL                  DPNI_CMD(0x243)
84 #define DPNI_CMDID_ADD_FS_ENT                   DPNI_CMD_V2(0x244)
85 #define DPNI_CMDID_REMOVE_FS_ENT                DPNI_CMD(0x245)
86 #define DPNI_CMDID_CLR_FS_ENT                   DPNI_CMD(0x246)
87
88 #define DPNI_CMDID_SET_TX_PRIORITIES            DPNI_CMD_V3(0x250)
89 #define DPNI_CMDID_GET_RX_TC_POLICING           DPNI_CMD(0x251)
90
91 #define DPNI_CMDID_GET_STATISTICS               DPNI_CMD_V4(0x25D)
92 #define DPNI_CMDID_RESET_STATISTICS             DPNI_CMD(0x25E)
93 #define DPNI_CMDID_GET_QUEUE                    DPNI_CMD_V3(0x25F)
94 #define DPNI_CMDID_SET_QUEUE                    DPNI_CMD_V3(0x260)
95 #define DPNI_CMDID_GET_TAILDROP                 DPNI_CMD_V2(0x261)
96 #define DPNI_CMDID_SET_TAILDROP                 DPNI_CMD_V3(0x262)
97
98 #define DPNI_CMDID_GET_PORT_MAC_ADDR            DPNI_CMD(0x263)
99
100 #define DPNI_CMDID_GET_BUFFER_LAYOUT            DPNI_CMD_V2(0x264)
101 #define DPNI_CMDID_SET_BUFFER_LAYOUT            DPNI_CMD_V2(0x265)
102
103 #define DPNI_CMDID_SET_CONGESTION_NOTIFICATION  DPNI_CMD_V3(0x267)
104 #define DPNI_CMDID_GET_CONGESTION_NOTIFICATION  DPNI_CMD_V3(0x268)
105 #define DPNI_CMDID_SET_EARLY_DROP               DPNI_CMD_V3(0x269)
106 #define DPNI_CMDID_GET_EARLY_DROP               DPNI_CMD_V3(0x26A)
107 #define DPNI_CMDID_GET_OFFLOAD                  DPNI_CMD(0x26B)
108 #define DPNI_CMDID_SET_OFFLOAD                  DPNI_CMD(0x26C)
109 #define DPNI_CMDID_SET_TX_CONFIRMATION_MODE     DPNI_CMD(0x266)
110 #define DPNI_CMDID_GET_TX_CONFIRMATION_MODE     DPNI_CMD(0x26D)
111 #define DPNI_CMDID_SET_OPR                      DPNI_CMD(0x26e)
112 #define DPNI_CMDID_GET_OPR                      DPNI_CMD(0x26f)
113 #define DPNI_CMDID_LOAD_SW_SEQUENCE             DPNI_CMD(0x270)
114 #define DPNI_CMDID_ENABLE_SW_SEQUENCE           DPNI_CMD(0x271)
115 #define DPNI_CMDID_GET_SW_SEQUENCE_LAYOUT       DPNI_CMD(0x272)
116 #define DPNI_CMDID_SET_RX_FS_DIST               DPNI_CMD(0x273)
117 #define DPNI_CMDID_SET_RX_HASH_DIST             DPNI_CMD(0x274)
118 #define DPNI_CMDID_ADD_CUSTOM_TPID              DPNI_CMD(0x275)
119 #define DPNI_CMDID_REMOVE_CUSTOM_TPID           DPNI_CMD(0x276)
120 #define DPNI_CMDID_GET_CUSTOM_TPID              DPNI_CMD(0x277)
121 #define DPNI_CMDID_GET_LINK_CFG                 DPNI_CMD(0x278)
122 #define DPNI_CMDID_SET_PORT_CFG                 DPNI_CMD(0x27B)
123
124 /* Macros for accessing command fields smaller than 1byte */
125 #define DPNI_MASK(field)        \
126         GENMASK(DPNI_##field##_SHIFT + DPNI_##field##_SIZE - 1, \
127                 DPNI_##field##_SHIFT)
128 #define dpni_set_field(var, field, val) \
129         ((var) |= (((val) << DPNI_##field##_SHIFT) & DPNI_MASK(field)))
130 #define dpni_get_field(var, field)      \
131         (((var) & DPNI_MASK(field)) >> DPNI_##field##_SHIFT)
132
133 #pragma pack(push, 1)
134 struct dpni_cmd_open {
135         uint32_t dpni_id;
136 };
137
138 struct dpni_cmd_create {
139         uint32_t options;
140         uint8_t num_queues;
141         uint8_t num_tcs;
142         uint8_t mac_filter_entries;
143         uint8_t num_channels;
144         uint8_t vlan_filter_entries;
145         uint8_t pad2;
146         uint8_t qos_entries;
147         uint8_t pad3;
148         uint16_t fs_entries;
149         uint8_t num_rx_tcs;
150         uint8_t pad4;
151         uint8_t  num_cgs;
152         uint16_t num_opr;
153         uint8_t dist_key_size;
154 };
155
156 struct dpni_cmd_destroy {
157         uint32_t dpsw_id;
158 };
159
160 #define DPNI_BACKUP_POOL(val, order)    (((val) & 0x1) << (order))
161
162 struct dpni_cmd_pool {
163         uint16_t dpbp_id;
164         uint8_t priority_mask;
165         uint8_t pad;
166 };
167
168 struct dpni_cmd_set_pools {
169         uint8_t num_dpbp;
170         uint8_t backup_pool_mask;
171         uint8_t pad;
172         uint8_t pool_options;
173         struct dpni_cmd_pool pool[8];
174         uint16_t buffer_size[8];
175 };
176
177 /* The enable indication is always the least significant bit */
178 #define DPNI_ENABLE_SHIFT               0
179 #define DPNI_ENABLE_SIZE                1
180
181 struct dpni_rsp_is_enabled {
182         uint8_t enabled;
183 };
184
185 struct dpni_cmd_set_irq_enable {
186         uint8_t enable;
187         uint8_t pad[3];
188         uint8_t irq_index;
189 };
190
191 struct dpni_cmd_get_irq_enable {
192         uint32_t pad;
193         uint8_t irq_index;
194 };
195
196 struct dpni_rsp_get_irq_enable {
197         uint8_t enabled;
198 };
199
200 struct dpni_cmd_set_irq_mask {
201         uint32_t mask;
202         uint8_t irq_index;
203 };
204
205 struct dpni_cmd_get_irq_mask {
206         uint32_t pad;
207         uint8_t irq_index;
208 };
209
210 struct dpni_rsp_get_irq_mask {
211         uint32_t mask;
212 };
213
214 struct dpni_cmd_get_irq_status {
215         uint32_t status;
216         uint8_t irq_index;
217 };
218
219 struct dpni_rsp_get_irq_status {
220         uint32_t status;
221 };
222
223 struct dpni_cmd_clear_irq_status {
224         uint32_t status;
225         uint8_t irq_index;
226 };
227
228 struct dpni_rsp_get_attr {
229         /* response word 0 */
230         uint32_t options;
231         uint8_t num_queues;
232         uint8_t num_rx_tcs;
233         uint8_t mac_filter_entries;
234         uint8_t num_tx_tcs;
235         /* response word 1 */
236         uint8_t vlan_filter_entries;
237         uint8_t num_channels;
238         uint8_t qos_entries;
239         uint8_t pad2;
240         uint16_t fs_entries;
241         uint16_t pad3;
242         /* response word 2 */
243         uint8_t qos_key_size;
244         uint8_t fs_key_size;
245         uint16_t wriop_version;
246         uint8_t num_cgs;
247 };
248
249 #define DPNI_ERROR_ACTION_SHIFT         0
250 #define DPNI_ERROR_ACTION_SIZE          4
251 #define DPNI_FRAME_ANN_SHIFT            4
252 #define DPNI_FRAME_ANN_SIZE             1
253
254 struct dpni_cmd_set_errors_behavior {
255         uint32_t errors;
256         /* from least significant bit: error_action:4, set_frame_annotation:1 */
257         uint8_t flags;
258 };
259
260 /* There are 3 separate commands for configuring Rx, Tx and Tx confirmation
261  * buffer layouts, but they all share the same parameters.
262  * If one of the functions changes, below structure needs to be split.
263  */
264
265 #define DPNI_PASS_TS_SHIFT              0
266 #define DPNI_PASS_TS_SIZE               1
267 #define DPNI_PASS_PR_SHIFT              1
268 #define DPNI_PASS_PR_SIZE               1
269 #define DPNI_PASS_FS_SHIFT              2
270 #define DPNI_PASS_FS_SIZE               1
271 #define DPNI_PASS_SWO_SHIFT             3
272 #define DPNI_PASS_SWO_SIZE              1
273
274 struct dpni_cmd_get_buffer_layout {
275         uint8_t qtype;
276 };
277
278 struct dpni_rsp_get_buffer_layout {
279         /* response word 0 */
280         uint8_t pad0[6];
281         /* from LSB: pass_timestamp:1, parser_result:1, frame_status:1 */
282         uint8_t flags;
283         uint8_t pad1;
284         /* response word 1 */
285         uint16_t private_data_size;
286         uint16_t data_align;
287         uint16_t head_room;
288         uint16_t tail_room;
289 };
290
291 struct dpni_cmd_set_buffer_layout {
292         /* cmd word 0 */
293         uint8_t qtype;
294         uint8_t pad0[3];
295         uint16_t options;
296         /* from LSB: pass_timestamp:1, parser_result:1, frame_status:1 */
297         uint8_t flags;
298         uint8_t pad1;
299         /* cmd word 1 */
300         uint16_t private_data_size;
301         uint16_t data_align;
302         uint16_t head_room;
303         uint16_t tail_room;
304 };
305
306 struct dpni_cmd_set_offload {
307         uint8_t pad[3];
308         uint8_t dpni_offload;
309         uint32_t config;
310 };
311
312 struct dpni_cmd_get_offload {
313         uint8_t pad[3];
314         uint8_t dpni_offload;
315 };
316
317 struct dpni_rsp_get_offload {
318         uint32_t pad;
319         uint32_t config;
320 };
321
322 struct dpni_cmd_get_qdid {
323         uint8_t qtype;
324 };
325
326 struct dpni_rsp_get_qdid {
327         uint16_t qdid;
328 };
329
330 struct dpni_rsp_get_sp_info {
331         uint16_t spids[2];
332 };
333
334 struct dpni_rsp_get_tx_data_offset {
335         uint16_t data_offset;
336 };
337
338 struct dpni_cmd_get_statistics {
339         uint8_t page_number;
340         uint16_t param;
341 };
342
343 struct dpni_rsp_get_statistics {
344         uint64_t counter[7];
345 };
346
347 struct dpni_cmd_set_link_cfg {
348         uint64_t pad0;
349         uint32_t rate;
350         uint32_t pad1;
351         uint64_t options;
352         uint64_t advertising;
353 };
354
355 #define DPNI_LINK_STATE_SHIFT           0
356 #define DPNI_LINK_STATE_SIZE            1
357 #define DPNI_STATE_VALID_SHIFT          1
358 #define DPNI_STATE_VALID_SIZE           1
359
360 struct dpni_rsp_get_link_state {
361         uint32_t pad0;
362         /* from LSB: up:1 */
363         uint8_t flags;
364         uint8_t pad1[3];
365         uint32_t rate;
366         uint32_t pad2;
367         uint64_t options;
368         uint64_t supported;
369         uint64_t advertising;
370 };
371
372 #define DPNI_COUPLED_SHIFT      0
373 #define DPNI_COUPLED_SIZE       1
374 #define DPNI_LNI_SHAPER_SHIFT   1
375 #define DPNI_LNI_SHAPER_SIZE    1
376
377 struct dpni_cmd_set_tx_shaping {
378         uint16_t tx_cr_max_burst_size;
379         uint16_t tx_er_max_burst_size;
380         uint32_t pad;
381         uint32_t tx_cr_rate_limit;
382         uint32_t tx_er_rate_limit;
383         /* from LSB: coupled:1, lni_shaper: 1*/
384         uint8_t options;
385         uint8_t channel_id;
386         uint16_t oal;
387 };
388
389 struct dpni_cmd_set_max_frame_length {
390         uint16_t max_frame_length;
391 };
392
393 struct dpni_rsp_get_max_frame_length {
394         uint16_t max_frame_length;
395 };
396
397 struct dpni_cmd_set_multicast_promisc {
398         uint8_t enable;
399 };
400
401 struct dpni_rsp_get_multicast_promisc {
402         uint8_t enabled;
403 };
404
405 struct dpni_cmd_set_unicast_promisc {
406         uint8_t enable;
407 };
408
409 struct dpni_rsp_get_unicast_promisc {
410         uint8_t enabled;
411 };
412
413 struct dpni_cmd_set_primary_mac_addr {
414         uint16_t pad;
415         uint8_t mac_addr[6];
416 };
417
418 struct dpni_rsp_get_primary_mac_addr {
419         uint16_t pad;
420         uint8_t mac_addr[6];
421 };
422
423 struct dpni_rsp_get_port_mac_addr {
424         uint16_t pad;
425         uint8_t mac_addr[6];
426 };
427
428 struct dpni_cmd_add_mac_addr {
429         uint8_t flags;
430         uint8_t pad;
431         uint8_t mac_addr[6];
432         uint8_t tc_id;
433         uint8_t fq_id;
434 };
435
436 struct dpni_cmd_remove_mac_addr {
437         uint16_t pad;
438         uint8_t mac_addr[6];
439 };
440
441 #define DPNI_UNICAST_FILTERS_SHIFT      0
442 #define DPNI_UNICAST_FILTERS_SIZE       1
443 #define DPNI_MULTICAST_FILTERS_SHIFT    1
444 #define DPNI_MULTICAST_FILTERS_SIZE     1
445
446 struct dpni_cmd_clear_mac_filters {
447         /* from LSB: unicast:1, multicast:1 */
448         uint8_t flags;
449 };
450
451 struct dpni_cmd_enable_vlan_filter {
452         /* only the LSB */
453         uint8_t en;
454 };
455
456 struct dpni_cmd_vlan_id {
457         uint8_t flags;
458         uint8_t tc_id;
459         uint8_t flow_id;
460         uint8_t pad;
461         uint16_t vlan_id;
462 };
463
464 #define DPNI_SEPARATE_GRP_SHIFT 0
465 #define DPNI_SEPARATE_GRP_SIZE  1
466 #define DPNI_MODE_1_SHIFT               0
467 #define DPNI_MODE_1_SIZE                4
468 #define DPNI_MODE_2_SHIFT               4
469 #define DPNI_MODE_2_SIZE                4
470
471 struct dpni_cmd_set_tx_priorities {
472         uint16_t flags;
473         uint8_t prio_group_A;
474         uint8_t prio_group_B;
475         uint8_t channel_idx;
476         uint8_t pad0[3];
477         uint8_t modes[4];
478         uint32_t pad1;
479         uint64_t pad2;
480         uint16_t delta_bandwidth[8];
481 };
482
483 #define DPNI_DIST_MODE_SHIFT            0
484 #define DPNI_DIST_MODE_SIZE             4
485 #define DPNI_MISS_ACTION_SHIFT          4
486 #define DPNI_MISS_ACTION_SIZE           4
487 #define DPNI_KEEP_HASH_KEY_SHIFT        7
488 #define DPNI_KEEP_HASH_KEY_SIZE         1
489 #define DPNI_KEEP_ENTRIES_SHIFT         6
490 #define DPNI_KEEP_ENTRIES_SIZE          1
491
492 struct dpni_cmd_set_rx_tc_dist {
493         uint16_t dist_size;
494         uint8_t tc_id;
495         /* from LSB: dist_mode:4, miss_action:4 */
496         uint8_t flags;
497         uint8_t pad0;
498         /* only the LSB */
499         uint8_t keep_hash_key;
500         uint16_t default_flow_id;
501         uint64_t pad1[5];
502         uint64_t key_cfg_iova;
503 };
504
505 struct dpni_cmd_get_queue {
506         uint8_t qtype;
507         uint8_t tc;
508         uint8_t index;
509         uint8_t channel_id;
510 };
511
512 #define DPNI_DEST_TYPE_SHIFT            0
513 #define DPNI_DEST_TYPE_SIZE             4
514 #define DPNI_CGID_VALID_SHIFT           5
515 #define DPNI_CGID_VALID_SIZE            1
516 #define DPNI_STASH_CTRL_SHIFT           6
517 #define DPNI_STASH_CTRL_SIZE            1
518 #define DPNI_HOLD_ACTIVE_SHIFT          7
519 #define DPNI_HOLD_ACTIVE_SIZE           1
520
521 struct dpni_rsp_get_queue {
522         /* response word 0 */
523         uint64_t pad0;
524         /* response word 1 */
525         uint32_t dest_id;
526         uint16_t pad1;
527         uint8_t dest_prio;
528         /* From LSB:
529          * dest_type:4, pad:1, cgid_valid:1, flc_stash_ctrl:1, hold_active:1
530          */
531         uint8_t flags;
532         /* response word 2 */
533         uint64_t flc;
534         /* response word 3 */
535         uint64_t user_context;
536         /* response word 4 */
537         uint32_t fqid;
538         uint16_t qdbin;
539         uint16_t pad2;
540         /* response word 5*/
541         uint8_t cgid;
542 };
543
544 struct dpni_cmd_set_queue {
545         /* cmd word 0 */
546         uint8_t qtype;
547         uint8_t tc;
548         uint8_t index;
549         uint8_t options;
550         uint32_t pad0;
551         /* cmd word 1 */
552         uint32_t dest_id;
553         uint16_t pad1;
554         uint8_t dest_prio;
555         uint8_t flags;
556         /* cmd word 2 */
557         uint64_t flc;
558         /* cmd word 3 */
559         uint64_t user_context;
560         /* cmd word 4 */
561         uint8_t cgid;
562         uint8_t channel_id;
563 };
564
565 #define DPNI_DISCARD_ON_MISS_SHIFT      0
566 #define DPNI_DISCARD_ON_MISS_SIZE       1
567 #define DPNI_KEEP_QOS_ENTRIES_SHIFT             1
568 #define DPNI_KEEP_QOS_ENTRIES_SIZE              1
569
570 struct dpni_cmd_set_qos_table {
571         uint32_t pad;
572         uint8_t default_tc;
573         /* only the LSB */
574         uint8_t discard_on_miss;
575         uint16_t pad1[21];
576         uint64_t key_cfg_iova;
577 };
578
579 #define DPNI_QOS_OPT_SET_TC_ONLY 0x0
580 #define DPNI_QOS_OPT_SET_FLOW_ID 0x1
581
582 struct dpni_cmd_add_qos_entry {
583         uint8_t flags;
584         uint8_t flow_id;
585         uint8_t tc_id;
586         uint8_t key_size;
587         uint16_t index;
588         uint16_t pad2;
589         uint64_t key_iova;
590         uint64_t mask_iova;
591 };
592
593 struct dpni_cmd_remove_qos_entry {
594         uint8_t pad1[3];
595         uint8_t key_size;
596         uint32_t pad2;
597         uint64_t key_iova;
598         uint64_t mask_iova;
599 };
600
601 struct dpni_cmd_add_fs_entry {
602         uint16_t options;
603         uint8_t tc_id;
604         uint8_t key_size;
605         uint16_t index;
606         uint16_t flow_id;
607         uint64_t key_iova;
608         uint64_t mask_iova;
609         uint64_t flc;
610         uint16_t redir_token;
611 };
612
613 struct dpni_cmd_remove_fs_entry {
614         uint16_t pad1;
615         uint8_t tc_id;
616         uint8_t key_size;
617         uint32_t pad2;
618         uint64_t key_iova;
619         uint64_t mask_iova;
620 };
621
622 struct dpni_cmd_clear_fs_entries {
623         uint16_t pad;
624         uint8_t tc_id;
625 };
626
627 #define DPNI_MODE_SHIFT         0
628 #define DPNI_MODE_SIZE          4
629 #define DPNI_COLOR_SHIFT        4
630 #define DPNI_COLOR_SIZE         4
631 #define DPNI_UNITS_SHIFT        0
632 #define DPNI_UNITS_SIZE         4
633
634 struct dpni_cmd_set_rx_tc_policing {
635         /* from LSB: mode:4 color:4 */
636         uint8_t mode_color;
637         /* from LSB: units: 4 */
638         uint8_t units;
639         uint8_t tc_id;
640         uint8_t pad;
641         uint32_t options;
642         uint32_t cir;
643         uint32_t cbs;
644         uint32_t eir;
645         uint32_t ebs;
646 };
647
648 struct dpni_cmd_get_rx_tc_policing {
649         uint16_t pad;
650         uint8_t tc_id;
651 };
652
653 struct dpni_rsp_get_rx_tc_policing {
654         /* from LSB: mode:4 color:4 */
655         uint8_t mode_color;
656         /* from LSB: units: 4 */
657         uint8_t units;
658         uint16_t pad;
659         uint32_t options;
660         uint32_t cir;
661         uint32_t cbs;
662         uint32_t eir;
663         uint32_t ebs;
664 };
665
666 #define DPNI_DROP_ENABLE_SHIFT  0
667 #define DPNI_DROP_ENABLE_SIZE   1
668 #define DPNI_DROP_UNITS_SHIFT   2
669 #define DPNI_DROP_UNITS_SIZE    2
670
671 struct dpni_early_drop {
672         /* from LSB: enable:1 units:2 */
673         uint8_t flags;
674         uint8_t pad0[3];
675         uint32_t pad1;
676         uint8_t green_drop_probability;
677         uint8_t pad2[7];
678         uint64_t green_max_threshold;
679         uint64_t green_min_threshold;
680         uint64_t pad3;
681         uint8_t yellow_drop_probability;
682         uint8_t pad4[7];
683         uint64_t yellow_max_threshold;
684         uint64_t yellow_min_threshold;
685         uint64_t pad5;
686         uint8_t red_drop_probability;
687         uint8_t pad6[7];
688         uint64_t red_max_threshold;
689         uint64_t red_min_threshold;
690 };
691
692 struct dpni_cmd_early_drop {
693         uint8_t qtype;
694         uint8_t tc;
695         uint8_t channel_id;
696         uint8_t pad[5];
697         uint64_t early_drop_iova;
698 };
699
700 struct dpni_rsp_get_api_version {
701         uint16_t major;
702         uint16_t minor;
703 };
704
705 struct dpni_cmd_get_taildrop {
706         uint8_t congestion_point;
707         uint8_t qtype;
708         uint8_t tc;
709         uint8_t index;
710 };
711
712 struct dpni_rsp_get_taildrop {
713         /* cmd word 0 */
714         uint64_t pad0;
715         /* cmd word 1 */
716         /* from LSB: enable:1 oal_lo:7 */
717         uint8_t enable_oal_lo;
718         /* from LSB: oal_hi:5 */
719         uint8_t oal_hi;
720         uint8_t units;
721         uint8_t pad2;
722         uint32_t threshold;
723 };
724
725 #define DPNI_OAL_LO_SHIFT       1
726 #define DPNI_OAL_LO_SIZE        7
727 #define DPNI_OAL_HI_SHIFT       0
728 #define DPNI_OAL_HI_SIZE        5
729
730 struct dpni_cmd_set_taildrop {
731         /* cmd word 0 */
732         uint8_t congestion_point;
733         uint8_t qtype;
734         uint8_t tc;
735         uint8_t index;
736         uint8_t channel_id;
737         uint8_t pad0[3];
738         /* cmd word 1 */
739         /* from LSB: enable:1 oal_lo:7 */
740         uint8_t enable_oal_lo;
741         /* from LSB: oal_hi:5 */
742         uint8_t oal_hi;
743         uint8_t units;
744         uint8_t pad2;
745         uint32_t threshold;
746 };
747
748 struct dpni_tx_confirmation_mode {
749         uint32_t pad;
750         uint8_t confirmation_mode;
751 };
752
753 #define DPNI_DEST_TYPE_SHIFT            0
754 #define DPNI_DEST_TYPE_SIZE             4
755 #define DPNI_CONG_UNITS_SHIFT           4
756 #define DPNI_CONG_UNITS_SIZE            2
757
758 struct dpni_cmd_set_congestion_notification {
759         uint8_t qtype;
760         uint8_t tc;
761         uint8_t channel_id;
762         uint8_t congestion_point;
763         uint8_t cgid;
764         uint8_t pad2[3];
765         uint32_t dest_id;
766         uint16_t notification_mode;
767         uint8_t dest_priority;
768         /* from LSB: dest_type: 4 units:2 */
769         uint8_t type_units;
770         uint64_t message_iova;
771         uint64_t message_ctx;
772         uint32_t threshold_entry;
773         uint32_t threshold_exit;
774 };
775
776 struct dpni_cmd_get_congestion_notification {
777         uint8_t qtype;
778         uint8_t tc;
779         uint8_t channel_id;
780         uint8_t congestion_point;
781         uint8_t cgid;
782 };
783
784 struct dpni_rsp_get_congestion_notification {
785         uint64_t pad;
786         uint32_t dest_id;
787         uint16_t notification_mode;
788         uint8_t dest_priority;
789         /* from LSB: dest_type: 4 units:2 */
790         uint8_t type_units;
791         uint64_t message_iova;
792         uint64_t message_ctx;
793         uint32_t threshold_entry;
794         uint32_t threshold_exit;
795 };
796
797 struct dpni_cmd_set_opr {
798         uint8_t opr_id;
799         uint8_t tc_id;
800         uint8_t index;
801         uint8_t options;
802         uint8_t pad1[7];
803         uint8_t oloe;
804         uint8_t oeane;
805         uint8_t olws;
806         uint8_t oa;
807         uint8_t oprrws;
808 };
809
810 struct dpni_cmd_get_opr {
811         uint8_t flags;
812         uint8_t tc_id;
813         uint8_t index;
814         uint8_t opr_id;
815 };
816
817 #define DPNI_RIP_SHIFT  0
818 #define DPNI_RIP_SIZE           1
819 #define DPNI_OPR_ENABLE_SHIFT   1
820 #define DPNI_OPR_ENABLE_SIZE    1
821 #define DPNI_TSEQ_NLIS_SHIFT    0
822 #define DPNI_TSEQ_NLIS_SIZE     1
823 #define DPNI_HSEQ_NLIS_SHIFT    0
824 #define DPNI_HSEQ_NLIS_SIZE     1
825
826 struct dpni_rsp_get_opr {
827         uint64_t pad0;
828         /* from LSB: rip:1 enable:1 */
829         uint8_t flags;
830         uint16_t pad1;
831         uint8_t oloe;
832         uint8_t oeane;
833         uint8_t olws;
834         uint8_t oa;
835         uint8_t oprrws;
836         uint16_t nesn;
837         uint16_t pad8;
838         uint16_t ndsn;
839         uint16_t pad2;
840         uint16_t ea_tseq;
841         /* only the LSB */
842         uint8_t tseq_nlis;
843         uint8_t pad3;
844         uint16_t ea_hseq;
845         /* only the LSB */
846         uint8_t hseq_nlis;
847         uint8_t pad4;
848         uint16_t ea_hptr;
849         uint16_t pad5;
850         uint16_t ea_tptr;
851         uint16_t pad6;
852         uint16_t opr_vid;
853         uint16_t pad7;
854         uint16_t opr_id;
855 };
856
857 struct dpni_load_sw_sequence {
858         uint8_t dest;
859         uint8_t pad0[7];
860         uint16_t ss_offset;
861         uint16_t pad1;
862         uint16_t ss_size;
863         uint16_t pad2;
864         uint64_t ss_iova;
865 };
866
867 struct dpni_enable_sw_sequence {
868         uint8_t dest;
869         uint8_t pad0[7];
870         uint16_t ss_offset;
871         uint16_t hxs;
872         uint8_t set_start;
873         uint8_t pad1[3];
874         uint8_t param_offset;
875         uint8_t pad2[3];
876         uint8_t param_size;
877         uint8_t pad3[3];
878         uint64_t param_iova;
879 };
880
881 struct dpni_get_sw_sequence_layout {
882         uint8_t src;
883         uint8_t pad0[7];
884         uint64_t layout_iova;
885 };
886
887 struct dpni_sw_sequence_layout_entry {
888         uint16_t ss_offset;
889         uint16_t ss_size;
890         uint8_t param_offset;
891         uint8_t param_size;
892         uint16_t pad;
893 };
894
895 #define DPNI_PTP_ENABLE_SHIFT                   0
896 #define DPNI_PTP_ENABLE_SIZE                    1
897 #define DPNI_PTP_CH_UPDATE_SHIFT                1
898 #define DPNI_PTP_CH_UPDATE_SIZE                 1
899 struct dpni_cmd_single_step_cfg {
900         uint16_t        flags;
901         uint16_t        offset;
902         uint32_t        peer_delay;
903 };
904
905 struct dpni_rsp_single_step_cfg {
906         uint16_t        flags;
907         uint16_t        offset;
908         uint32_t        peer_delay;
909 };
910
911 #define DPNI_PORT_LOOPBACK_EN_SHIFT     0
912 #define DPNI_PORT_LOOPBACK_EN_SIZE      1
913
914 struct dpni_cmd_set_port_cfg {
915         uint32_t        flags;
916         uint32_t        bit_params;
917 };
918
919 struct dpni_rsp_get_port_cfg {
920         uint32_t        flags;
921         uint32_t        bit_params;
922 };
923
924 #define DPNI_RX_FS_DIST_ENABLE_SHIFT    0
925 #define DPNI_RX_FS_DIST_ENABLE_SIZE             1
926 struct dpni_cmd_set_rx_fs_dist {
927         uint16_t        dist_size;
928         uint8_t         enable;
929         uint8_t         tc;
930         uint16_t        miss_flow_id;
931         uint16_t        pad1;
932         uint64_t        key_cfg_iova;
933 };
934
935 #define DPNI_RX_HASH_DIST_ENABLE_SHIFT  0
936 #define DPNI_RX_HASH_DIST_ENABLE_SIZE           1
937 struct dpni_cmd_set_rx_hash_dist {
938         uint16_t        dist_size;
939         uint8_t         enable;
940         uint8_t         tc_id;
941         uint32_t        pad;
942         uint64_t        key_cfg_iova;
943 };
944
945 struct dpni_cmd_add_custom_tpid {
946         uint16_t        pad;
947         uint16_t        tpid;
948 };
949
950 struct dpni_cmd_remove_custom_tpid {
951         uint16_t        pad;
952         uint16_t        tpid;
953 };
954
955 struct dpni_rsp_get_custom_tpid {
956         uint16_t        tpid1;
957         uint16_t        tpid2;
958 };
959
960 #pragma pack(pop)
961 #endif /* _FSL_DPNI_CMD_H */