d67b312d59483e6334d674b22e13694fd5705930
[dpdk.git] / drivers / net / qede / qede_eth_if.h
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #ifndef _QEDE_ETH_IF_H
10 #define _QEDE_ETH_IF_H
11
12 #include "qede_if.h"
13
14 /*forward decl */
15 struct eth_slow_path_rx_cqe;
16
17 #define INIT_STRUCT_FIELD(field, value) .field = value
18
19 #define QED_ETH_INTERFACE_VERSION       609
20
21 #define QEDE_MAX_MCAST_FILTERS          64
22
23 enum qed_filter_rx_mode_type {
24         QED_FILTER_RX_MODE_TYPE_REGULAR,
25         QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC,
26         QED_FILTER_RX_MODE_TYPE_PROMISC,
27 };
28
29 enum qed_filter_type {
30         QED_FILTER_TYPE_UCAST,
31         QED_FILTER_TYPE_MCAST,
32         QED_FILTER_TYPE_RX_MODE,
33         QED_MAX_FILTER_TYPES,
34 };
35
36 struct qed_dev_eth_info {
37         struct qed_dev_info common;
38
39         uint8_t num_queues;
40         uint8_t num_tc;
41
42         struct ether_addr port_mac;
43         uint16_t num_vlan_filters;
44         uint32_t num_mac_addrs;
45
46         /* Legacy VF - this affects the datapath */
47         bool is_legacy;
48 };
49
50 struct qed_update_vport_rss_params {
51         uint16_t rss_ind_table[128];
52         uint32_t rss_key[10];
53         u8 rss_caps;
54 };
55
56 struct qed_stop_rxq_params {
57         uint8_t rss_id;
58         uint8_t rx_queue_id;
59         uint8_t vport_id;
60         bool eq_completion_only;
61 };
62
63 struct qed_update_vport_params {
64         uint8_t vport_id;
65         uint8_t update_vport_active_flg;
66         uint8_t vport_active_flg;
67         uint8_t update_inner_vlan_removal_flg;
68         uint8_t inner_vlan_removal_flg;
69         uint8_t update_tx_switching_flg;
70         uint8_t tx_switching_flg;
71         uint8_t update_accept_any_vlan_flg;
72         uint8_t accept_any_vlan;
73         uint8_t update_rss_flg;
74         struct qed_update_vport_rss_params rss_params;
75         uint16_t mtu;
76 };
77
78 struct qed_start_vport_params {
79         bool remove_inner_vlan;
80         bool handle_ptp_pkts;
81         bool gro_enable;
82         bool drop_ttl0;
83         uint8_t vport_id;
84         uint16_t mtu;
85         bool clear_stats;
86 };
87
88 struct qed_stop_txq_params {
89         uint8_t rss_id;
90         uint8_t tx_queue_id;
91 };
92
93 struct qed_eth_ops {
94         const struct qed_common_ops *common;
95
96         int (*fill_dev_info)(struct ecore_dev *edev,
97                              struct qed_dev_eth_info *info);
98
99         int (*vport_start)(struct ecore_dev *edev,
100                            struct qed_start_vport_params *params);
101
102         int (*vport_stop)(struct ecore_dev *edev, uint8_t vport_id);
103
104         int (*vport_update)(struct ecore_dev *edev,
105                             struct qed_update_vport_params *params);
106
107         int (*q_rx_start)(struct ecore_dev *cdev,
108                           uint8_t rss_num,
109                           struct ecore_queue_start_common_params *p_params,
110                           uint16_t bd_max_bytes,
111                           dma_addr_t bd_chain_phys_addr,
112                           dma_addr_t cqe_pbl_addr,
113                           uint16_t cqe_pbl_size, void OSAL_IOMEM * *pp_prod);
114
115         int (*q_rx_stop)(struct ecore_dev *edev,
116                          struct qed_stop_rxq_params *params);
117
118         int (*q_tx_start)(struct ecore_dev *edev,
119                           uint8_t rss_num,
120                           struct ecore_queue_start_common_params *p_params,
121                           dma_addr_t pbl_addr,
122                           uint16_t pbl_size, void OSAL_IOMEM * *pp_doorbell);
123
124         int (*q_tx_stop)(struct ecore_dev *edev,
125                          struct qed_stop_txq_params *params);
126
127         int (*eth_cqe_completion)(struct ecore_dev *edev,
128                                   uint8_t rss_id,
129                                   struct eth_slow_path_rx_cqe *cqe);
130
131         int (*fastpath_stop)(struct ecore_dev *edev);
132
133         void (*fastpath_start)(struct ecore_dev *edev);
134
135         void (*get_vport_stats)(struct ecore_dev *edev,
136                                 struct ecore_eth_stats *stats);
137 };
138
139 /* externs */
140
141 extern const struct qed_common_ops qed_common_ops_pass;
142
143 const struct qed_eth_ops *qed_get_eth_ops();
144
145 int qed_configure_filter_rx_mode(struct rte_eth_dev *eth_dev,
146                                  enum qed_filter_rx_mode_type type);
147
148 #endif /* _QEDE_ETH_IF_H */