net/mvpp2: support generic flow pattern combinations
[dpdk.git] / drivers / net / mvpp2 / mrvl_qos.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Marvell International Ltd.
3  * Copyright(c) 2017 Semihalf.
4  * All rights reserved.
5  */
6
7 #ifndef _MRVL_QOS_H_
8 #define _MRVL_QOS_H_
9
10 #include <rte_common.h>
11
12 #include "mrvl_ethdev.h"
13
14 /** Code Points per Traffic Class. Equals max(DSCP, PCP). */
15 #define MRVL_CP_PER_TC (64)
16
17 /** Value used as "unknown". */
18 #define MRVL_UNKNOWN_TC (0xFF)
19
20 /* config. */
21 struct mrvl_cfg {
22         struct port_cfg {
23                 enum pp2_ppio_eth_start_hdr eth_start_hdr;
24                 int rate_limit_enable;
25                 struct pp2_ppio_rate_limit_params rate_limit_params;
26                 struct {
27                         uint8_t inq[MRVL_PP2_RXQ_MAX];
28                         uint8_t dscp[MRVL_CP_PER_TC];
29                         uint8_t pcp[MRVL_CP_PER_TC];
30                         uint8_t inqs;
31                         uint8_t dscps;
32                         uint8_t pcps;
33                         enum pp2_ppio_color color;
34                 } tc[MRVL_PP2_TC_MAX];
35                 struct {
36                         enum pp2_ppio_outq_sched_mode sched_mode;
37                         uint8_t weight;
38                         int rate_limit_enable;
39                         struct pp2_ppio_rate_limit_params rate_limit_params;
40                 } outq[MRVL_PP2_RXQ_MAX];
41                 enum pp2_cls_qos_tbl_type mapping_priority;
42                 uint16_t inqs;
43                 uint16_t outqs;
44                 uint8_t default_tc;
45                 uint8_t use_global_defaults;
46                 struct pp2_cls_plcr_params policer_params;
47                 uint8_t setup_policer;
48         } port[RTE_MAX_ETHPORTS];
49 };
50
51 /** Global configuration. */
52 extern struct mrvl_cfg *mrvl_cfg;
53
54 /**
55  * Parse configuration - rte_kvargs_process handler.
56  *
57  * Opens configuration file and parses its content.
58  *
59  * @param key Unused.
60  * @param path Path to config file.
61  * @param extra_args Pointer to configuration structure.
62  * @returns 0 in case of success, exits otherwise.
63  */
64 int
65 mrvl_get_cfg(const char *key __rte_unused, const char *path, void *extra_args);
66
67 /**
68  * Configure RX Queues in a given port.
69  *
70  * Sets up RX queues, their Traffic Classes and DPDK rxq->(TC,inq) mapping.
71  *
72  * @param priv Port's private data
73  * @param portid DPDK port ID
74  * @param max_queues Maximum number of queues to configure.
75  * @returns 0 in case of success, negative value otherwise.
76  */
77 int
78 mrvl_configure_rxqs(struct mrvl_priv *priv, uint16_t portid,
79                     uint16_t max_queues);
80
81 /**
82  * Configure TX Queues in a given port.
83  *
84  * Sets up TX queues egress scheduler and limiter.
85  *
86  * @param priv Port's private data
87  * @param portid DPDK port ID
88  * @param max_queues Maximum number of queues to configure.
89  * @returns 0 in case of success, negative value otherwise.
90  */
91 int
92 mrvl_configure_txqs(struct mrvl_priv *priv, uint16_t portid,
93                     uint16_t max_queues);
94
95 /**
96  * Start QoS mapping.
97  *
98  * Finalize QoS table configuration and initialize it in SDK. It can be done
99  * only after port is started, so we have a valid ppio reference.
100  *
101  * @param priv Port's private (configuration) data.
102  * @returns 0 in case of success, exits otherwise.
103  */
104 int
105 mrvl_start_qos_mapping(struct mrvl_priv *priv);
106
107 #endif /* _MRVL_QOS_H_ */