net/mvpp2: update flow control autoneg disable handling
[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  {
23                 struct pp2_parse_udfs   prs_udfs;
24         } pp2_cfg;
25         struct port_cfg {
26                 enum pp2_ppio_eth_start_hdr eth_start_hdr;
27                 int rate_limit_enable;
28                 struct pp2_ppio_rate_limit_params rate_limit_params;
29                 struct {
30                         uint8_t inq[MRVL_PP2_RXQ_MAX];
31                         uint8_t dscp[MRVL_CP_PER_TC];
32                         uint8_t pcp[MRVL_CP_PER_TC];
33                         uint8_t inqs;
34                         uint8_t dscps;
35                         uint8_t pcps;
36                         enum pp2_ppio_color color;
37                 } tc[MRVL_PP2_TC_MAX];
38                 struct {
39                         enum pp2_ppio_outq_sched_mode sched_mode;
40                         uint8_t weight;
41                         int rate_limit_enable;
42                         struct pp2_ppio_rate_limit_params rate_limit_params;
43                 } outq[MRVL_PP2_RXQ_MAX];
44                 enum pp2_cls_qos_tbl_type mapping_priority;
45                 uint16_t inqs;
46                 uint16_t outqs;
47                 uint8_t default_tc;
48                 uint8_t use_global_defaults;
49                 struct pp2_cls_plcr_params policer_params;
50                 uint8_t setup_policer;
51         } port[RTE_MAX_ETHPORTS];
52 };
53
54 /** Global configuration. */
55 extern struct mrvl_cfg *mrvl_cfg;
56
57 /**
58  * Parse configuration - rte_kvargs_process handler.
59  *
60  * Opens configuration file and parses its content.
61  *
62  * @param key Unused.
63  * @param path Path to config file.
64  * @param extra_args Pointer to configuration structure.
65  * @returns 0 in case of success, exits otherwise.
66  */
67 int
68 mrvl_get_cfg(const char *key __rte_unused, const char *path, void *extra_args);
69
70 /**
71  * Configure RX Queues in a given port.
72  *
73  * Sets up RX queues, their Traffic Classes and DPDK rxq->(TC,inq) mapping.
74  *
75  * @param priv Port's private data
76  * @param portid DPDK port ID
77  * @param max_queues Maximum number of queues to configure.
78  * @returns 0 in case of success, negative value otherwise.
79  */
80 int
81 mrvl_configure_rxqs(struct mrvl_priv *priv, uint16_t portid,
82                     uint16_t max_queues);
83
84 /**
85  * Configure TX Queues in a given port.
86  *
87  * Sets up TX queues egress scheduler and limiter.
88  *
89  * @param priv Port's private data
90  * @param portid DPDK port ID
91  * @param max_queues Maximum number of queues to configure.
92  * @returns 0 in case of success, negative value otherwise.
93  */
94 int
95 mrvl_configure_txqs(struct mrvl_priv *priv, uint16_t portid,
96                     uint16_t max_queues);
97
98 /**
99  * Start QoS mapping.
100  *
101  * Finalize QoS table configuration and initialize it in SDK. It can be done
102  * only after port is started, so we have a valid ppio reference.
103  *
104  * @param priv Port's private (configuration) data.
105  * @returns 0 in case of success, exits otherwise.
106  */
107 int
108 mrvl_start_qos_mapping(struct mrvl_priv *priv);
109
110 #endif /* _MRVL_QOS_H_ */