net/atlantic: enable broadcast traffic
[dpdk.git] / drivers / net / atlantic / hw_atl / hw_atl_b0.c
1 // SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
2 /* Copyright (C) 2014-2017 aQuantia Corporation. */
3
4 /* File hw_atl_b0.c: Definition of Atlantic hardware specific functions. */
5
6 #include "../atl_types.h"
7 #include "hw_atl_b0.h"
8
9 #include "../atl_hw_regs.h"
10 #include "hw_atl_utils.h"
11 #include "hw_atl_llh.h"
12 #include "hw_atl_b0_internal.h"
13 #include "hw_atl_llh_internal.h"
14 #include "../atl_logs.h"
15
16 int hw_atl_b0_hw_reset(struct aq_hw_s *self)
17 {
18         int err = 0;
19
20         err = hw_atl_utils_soft_reset(self);
21         if (err)
22                 return err;
23
24         self->aq_fw_ops->set_state(self, MPI_RESET);
25
26         return err;
27 }
28
29 static int hw_atl_b0_hw_qos_set(struct aq_hw_s *self)
30 {
31         u32 tc = 0U;
32         u32 buff_size = 0U;
33         unsigned int i_priority = 0U;
34
35         /* TPS Descriptor rate init */
36         hw_atl_tps_tx_pkt_shed_desc_rate_curr_time_res_set(self, 0x0U);
37         hw_atl_tps_tx_pkt_shed_desc_rate_lim_set(self, 0xA);
38
39         /* TPS VM init */
40         hw_atl_tps_tx_pkt_shed_desc_vm_arb_mode_set(self, 0U);
41
42         /* TPS TC credits init */
43         hw_atl_tps_tx_pkt_shed_desc_tc_arb_mode_set(self, 0U);
44         hw_atl_tps_tx_pkt_shed_data_arb_mode_set(self, 0U);
45
46         hw_atl_tps_tx_pkt_shed_tc_data_max_credit_set(self, 0xFFF, 0U);
47         hw_atl_tps_tx_pkt_shed_tc_data_weight_set(self, 0x64, 0U);
48         hw_atl_tps_tx_pkt_shed_desc_tc_max_credit_set(self, 0x50, 0U);
49         hw_atl_tps_tx_pkt_shed_desc_tc_weight_set(self, 0x1E, 0U);
50
51         /* Tx buf size */
52         buff_size = HW_ATL_B0_TXBUF_MAX;
53
54         hw_atl_tpb_tx_pkt_buff_size_per_tc_set(self, buff_size, tc);
55         hw_atl_tpb_tx_buff_hi_threshold_per_tc_set(self,
56                                                    (buff_size *
57                                                    (1024 / 32U) * 66U) /
58                                                    100U, tc);
59         hw_atl_tpb_tx_buff_lo_threshold_per_tc_set(self,
60                                                    (buff_size *
61                                                    (1024 / 32U) * 50U) /
62                                                    100U, tc);
63
64         /* QoS Rx buf size per TC */
65         tc = 0;
66         buff_size = HW_ATL_B0_RXBUF_MAX;
67
68         hw_atl_rpb_rx_pkt_buff_size_per_tc_set(self, buff_size, tc);
69         hw_atl_rpb_rx_buff_hi_threshold_per_tc_set(self,
70                                                    (buff_size *
71                                                    (1024U / 32U) * 66U) /
72                                                    100U, tc);
73         hw_atl_rpb_rx_buff_lo_threshold_per_tc_set(self,
74                                                    (buff_size *
75                                                    (1024U / 32U) * 50U) /
76                                                    100U, tc);
77         hw_atl_rpb_rx_xoff_en_per_tc_set(self, 0U, tc);
78
79         /* QoS 802.1p priority -> TC mapping */
80         for (i_priority = 8U; i_priority--;)
81                 hw_atl_rpf_rpb_user_priority_tc_map_set(self, i_priority, 0U);
82
83         return aq_hw_err_from_flags(self);
84 }
85
86 /* calc hash only in IPv4 header, regardless of presence of TCP */
87 #define pif_rpf_rss_ipv4_hdr_only_i     (1 << 4)
88 /* calc hash only if TCP header and IPv4 */
89 #define pif_rpf_rss_ipv4_tcp_hdr_only_i (1 << 3)
90 /* calc hash only in IPv6 header, regardless of presence of TCP */
91 #define pif_rpf_rss_ipv6_hdr_only_i     (1 << 2)
92 /* calc hash only if TCP header and IPv4 */
93 #define pif_rpf_rss_ipv6_tcp_hdr_only_i (1 << 1)
94 /* bug 5124 - rss hashing types - FIXME */
95 #define pif_rpf_rss_dont_use_udp_i      (1 << 0)
96
97 static int hw_atl_b0_hw_rss_hash_type_set(struct aq_hw_s *self)
98 {
99         /* misc */
100         unsigned int control_reg_val =
101                 IS_CHIP_FEATURE(RPF2) ? 0x000F0000U : 0x00000000U;
102
103         /* RSS hash type set for IP/TCP */
104         control_reg_val |= pif_rpf_rss_ipv4_hdr_only_i;//0x1EU;
105
106         aq_hw_write_reg(self, 0x5040U, control_reg_val);
107
108         return aq_hw_err_from_flags(self);
109 }
110
111 int hw_atl_b0_hw_rss_hash_set(struct aq_hw_s *self,
112                                      struct aq_rss_parameters *rss_params)
113 {
114         struct aq_hw_cfg_s *cfg = self->aq_nic_cfg;
115         int err = 0;
116         unsigned int i = 0U;
117         unsigned int addr = 0U;
118
119         for (i = 10, addr = 0U; i--; ++addr) {
120                 u32 key_data = cfg->is_rss ?
121                         htonl(rss_params->hash_secret_key[i]) : 0U;
122                 hw_atl_rpf_rss_key_wr_data_set(self, key_data);
123                 hw_atl_rpf_rss_key_addr_set(self, addr);
124                 hw_atl_rpf_rss_key_wr_en_set(self, 1U);
125                 AQ_HW_WAIT_FOR(hw_atl_rpf_rss_key_wr_en_get(self) == 0,
126                                1000U, 10U);
127                 if (err < 0)
128                         goto err_exit;
129         }
130
131         /* RSS Ring selection */
132         hw_atl_reg_rx_flr_rss_control1set(self,
133                                 cfg->is_rss ? 0xB3333333U : 0x00000000U);
134         hw_atl_b0_hw_rss_hash_type_set(self);
135
136         err = aq_hw_err_from_flags(self);
137
138 err_exit:
139         return err;
140 }
141
142
143 int hw_atl_b0_hw_rss_set(struct aq_hw_s *self,
144                         struct aq_rss_parameters *rss_params)
145 {
146         u8 *indirection_table = rss_params->indirection_table;
147         u32 num_rss_queues = max(1U, self->aq_nic_cfg->num_rss_queues);
148         u32 i = 0;
149         u32 addr = 0;
150         u32 val = 0;
151         u32 shift = 0;
152         int err = 0;
153
154         for (i = 0; i < HW_ATL_B0_RSS_REDIRECTION_MAX; i++) {
155                 val |= (u32)(indirection_table[i] % num_rss_queues) << shift;
156                 shift += 3;
157
158                 if (shift < 16)
159                         continue;
160
161                 hw_atl_rpf_rss_redir_tbl_wr_data_set(self, val & 0xffff);
162                 hw_atl_rpf_rss_redir_tbl_addr_set(self, addr);
163
164                 hw_atl_rpf_rss_redir_wr_en_set(self, 1U);
165                 AQ_HW_WAIT_FOR(hw_atl_rpf_rss_redir_wr_en_get(self) == 0,
166                         1000U, 10U);
167
168                 if (err < 0)
169                         goto err_exit;
170
171                 shift -= 16;
172                 val >>= 16;
173                 addr++;
174         }
175
176 err_exit:
177         return err;
178 }
179
180 static int hw_atl_b0_hw_offload_set(struct aq_hw_s *self)
181                                     /*struct aq_nic_cfg_s *aq_nic_cfg)*/
182 {
183         unsigned int i;
184
185         /* TX checksums offloads*/
186         hw_atl_tpo_ipv4header_crc_offload_en_set(self, 1);
187         hw_atl_tpo_tcp_udp_crc_offload_en_set(self, 1);
188
189         /* RX checksums offloads*/
190         hw_atl_rpo_ipv4header_crc_offload_en_set(self, 1);
191         hw_atl_rpo_tcp_udp_crc_offload_en_set(self, 1);
192
193         /* LSO offloads*/
194         hw_atl_tdm_large_send_offload_en_set(self, 0xFFFFFFFFU);
195
196 /* LRO offloads */
197         {
198                 unsigned int val = (8U < HW_ATL_B0_LRO_RXD_MAX) ? 0x3U :
199                         ((4U < HW_ATL_B0_LRO_RXD_MAX) ? 0x2U :
200                         ((2U < HW_ATL_B0_LRO_RXD_MAX) ? 0x1U : 0x0));
201
202                 for (i = 0; i < HW_ATL_B0_RINGS_MAX; i++)
203                         hw_atl_rpo_lro_max_num_of_descriptors_set(self, val, i);
204
205                 hw_atl_rpo_lro_time_base_divider_set(self, 0x61AU);
206                 hw_atl_rpo_lro_inactive_interval_set(self, 0);
207                 hw_atl_rpo_lro_max_coalescing_interval_set(self, 2);
208
209                 hw_atl_rpo_lro_qsessions_lim_set(self, 1U);
210
211                 hw_atl_rpo_lro_total_desc_lim_set(self, 2U);
212
213                 hw_atl_rpo_lro_patch_optimization_en_set(self, 0U);
214
215                 hw_atl_rpo_lro_min_pay_of_first_pkt_set(self, 10U);
216
217                 hw_atl_rpo_lro_pkt_lim_set(self, 1U);
218
219                 hw_atl_rpo_lro_en_set(self,
220                                 self->aq_nic_cfg->is_lro ? 0xFFFFFFFFU : 0U);
221         }
222         return aq_hw_err_from_flags(self);
223 }
224
225 static
226 int hw_atl_b0_hw_init_tx_path(struct aq_hw_s *self)
227 {
228         /* Tx TC/RSS number config */
229         hw_atl_rpb_tps_tx_tc_mode_set(self, 1U);
230
231         hw_atl_thm_lso_tcp_flag_of_first_pkt_set(self, 0x0FF6U);
232         hw_atl_thm_lso_tcp_flag_of_middle_pkt_set(self, 0x0FF6U);
233         hw_atl_thm_lso_tcp_flag_of_last_pkt_set(self, 0x0F7FU);
234
235         /* Tx interrupts */
236         hw_atl_tdm_tx_desc_wr_wb_irq_en_set(self, 0U);
237
238         /* misc */
239         aq_hw_write_reg(self, 0x00007040U, IS_CHIP_FEATURE(TPO2) ?
240                         0x00010000U : 0x00000000U);
241         hw_atl_tdm_tx_dca_en_set(self, 0U);
242         hw_atl_tdm_tx_dca_mode_set(self, 0U);
243
244         hw_atl_tpb_tx_path_scp_ins_en_set(self, 1U);
245
246         return aq_hw_err_from_flags(self);
247 }
248
249 static
250 int hw_atl_b0_hw_init_rx_path(struct aq_hw_s *self)
251 {
252         struct aq_hw_cfg_s *cfg = self->aq_nic_cfg;
253         int i;
254
255         /* Rx TC/RSS number config */
256         hw_atl_rpb_rpf_rx_traf_class_mode_set(self, 1U); /* 1: 4TC/8Queues */
257
258         /* Rx flow control */
259         hw_atl_rpb_rx_flow_ctl_mode_set(self, 1U);
260
261         /* RSS Ring selection */
262         hw_atl_reg_rx_flr_rss_control1set(self, cfg->is_rss ?
263                                         0xB3333333U : 0x00000000U);
264
265         /* Multicast filters */
266         for (i = HW_ATL_B0_MAC_MAX; i--;) {
267                 hw_atl_rpfl2_uc_flr_en_set(self, (i == 0U) ? 1U : 0U, i);
268                 hw_atl_rpfl2unicast_flr_act_set(self, 1U, i);
269         }
270
271         hw_atl_reg_rx_flr_mcst_flr_msk_set(self, 0x00000000U);
272         hw_atl_reg_rx_flr_mcst_flr_set(self, 0x00010FFFU, 0U);
273
274         /* Vlan filters */
275         hw_atl_rpf_vlan_outer_etht_set(self, 0x88A8U);
276         hw_atl_rpf_vlan_inner_etht_set(self, 0x8100U);
277
278         /* VLAN proimisc bu defauld */
279         hw_atl_rpf_vlan_prom_mode_en_set(self, 1);
280
281         /* Rx Interrupts */
282         hw_atl_rdm_rx_desc_wr_wb_irq_en_set(self, 0U);
283
284         hw_atl_b0_hw_rss_hash_type_set(self);
285
286         hw_atl_rpfl2broadcast_flr_act_set(self, 1U);
287         hw_atl_rpfl2broadcast_count_threshold_set(self, 0xFFFFU & (~0U / 256U));
288
289         hw_atl_rpfl2broadcast_en_set(self, 1U);
290
291         hw_atl_rdm_rx_dca_en_set(self, 0U);
292         hw_atl_rdm_rx_dca_mode_set(self, 0U);
293
294         return aq_hw_err_from_flags(self);
295 }
296
297 static int hw_atl_b0_hw_mac_addr_set(struct aq_hw_s *self, u8 *mac_addr)
298 {
299         int err = 0;
300         unsigned int h = 0U;
301         unsigned int l = 0U;
302
303         if (!mac_addr) {
304                 err = -EINVAL;
305                 goto err_exit;
306         }
307         h = (mac_addr[0] << 8) | (mac_addr[1]);
308         l = (mac_addr[2] << 24) | (mac_addr[3] << 16) |
309                 (mac_addr[4] << 8) | mac_addr[5];
310
311         hw_atl_rpfl2_uc_flr_en_set(self, 0U, HW_ATL_B0_MAC);
312         hw_atl_rpfl2unicast_dest_addresslsw_set(self, l, HW_ATL_B0_MAC);
313         hw_atl_rpfl2unicast_dest_addressmsw_set(self, h, HW_ATL_B0_MAC);
314         hw_atl_rpfl2_uc_flr_en_set(self, 1U, HW_ATL_B0_MAC);
315
316         err = aq_hw_err_from_flags(self);
317
318 err_exit:
319         return err;
320 }
321
322 int hw_atl_b0_hw_init(struct aq_hw_s *self, u8 *mac_addr)
323 {
324         static u32 aq_hw_atl_igcr_table_[4][2] = {
325                 { 0x20000080U, 0x20000080U }, /* AQ_IRQ_INVALID */
326                 { 0x20000080U, 0x20000080U }, /* AQ_IRQ_LEGACY */
327                 { 0x20000021U, 0x20000025U }, /* AQ_IRQ_MSI */
328                 { 0x200000A2U, 0x200000A6U }  /* AQ_IRQ_MSIX */
329         };
330
331         int err = 0;
332         u32 val;
333
334         struct aq_hw_cfg_s *aq_nic_cfg = self->aq_nic_cfg;
335
336         hw_atl_b0_hw_init_tx_path(self);
337         hw_atl_b0_hw_init_rx_path(self);
338
339         hw_atl_b0_hw_mac_addr_set(self, mac_addr);
340
341         self->aq_fw_ops->set_link_speed(self, aq_nic_cfg->link_speed_msk);
342         self->aq_fw_ops->set_state(self, MPI_INIT);
343
344         hw_atl_b0_hw_qos_set(self);
345         hw_atl_b0_hw_rss_set(self, &aq_nic_cfg->aq_rss);
346         hw_atl_b0_hw_rss_hash_set(self, &aq_nic_cfg->aq_rss);
347
348         /* Force limit MRRS on RDM/TDM to 2K */
349         val = aq_hw_read_reg(self, HW_ATL_PCI_REG_CONTROL6_ADR);
350         aq_hw_write_reg(self, HW_ATL_PCI_REG_CONTROL6_ADR,
351                         (val & ~0x707) | 0x404);
352
353         /* TX DMA total request limit. B0 hardware is not capable to
354          * handle more than (8K-MRRS) incoming DMA data.
355          * Value 24 in 256byte units
356          */
357         aq_hw_write_reg(self, HW_ATL_TX_DMA_TOTAL_REQ_LIMIT_ADR, 24);
358
359         /* Reset link status and read out initial hardware counters */
360         self->aq_link_status.mbps = 0;
361         self->aq_fw_ops->update_stats(self);
362
363         err = aq_hw_err_from_flags(self);
364         if (err < 0)
365                 goto err_exit;
366
367         /* Interrupts */
368         hw_atl_reg_irq_glb_ctl_set(self,
369                                    aq_hw_atl_igcr_table_[aq_nic_cfg->irq_type]
370                                          [(aq_nic_cfg->vecs > 1U) ?
371                                          1 : 0]);
372
373         hw_atl_itr_irq_auto_masklsw_set(self, 0xffffffff);
374
375         /* Interrupts */
376         hw_atl_reg_gen_irq_map_set(self, 0, 0);
377         hw_atl_reg_gen_irq_map_set(self, 0x80 | ATL_IRQ_CAUSE_LINK, 3);
378
379         hw_atl_b0_hw_offload_set(self);
380
381 err_exit:
382         return err;
383 }
384
385 int hw_atl_b0_hw_ring_tx_start(struct aq_hw_s *self, int index)
386 {
387         hw_atl_tdm_tx_desc_en_set(self, 1, index);
388         return aq_hw_err_from_flags(self);
389 }
390
391 int hw_atl_b0_hw_ring_rx_start(struct aq_hw_s *self, int index)
392 {
393         hw_atl_rdm_rx_desc_en_set(self, 1, index);
394         return aq_hw_err_from_flags(self);
395 }
396
397 int hw_atl_b0_hw_start(struct aq_hw_s *self)
398 {
399         hw_atl_tpb_tx_buff_en_set(self, 1);
400         hw_atl_rpb_rx_buff_en_set(self, 1);
401         return aq_hw_err_from_flags(self);
402 }
403
404 int hw_atl_b0_hw_tx_ring_tail_update(struct aq_hw_s *self, int tail, int index)
405 {
406         hw_atl_reg_tx_dma_desc_tail_ptr_set(self, tail, index);
407         return 0;
408 }
409
410 int hw_atl_b0_hw_ring_rx_init(struct aq_hw_s *self, uint64_t base_addr,
411                 int index, int size, int buff_size, int cpu, int vec)
412 {
413         u32 dma_desc_addr_lsw = (u32)base_addr;
414         u32 dma_desc_addr_msw = (u32)(base_addr >> 32);
415
416         hw_atl_rdm_rx_desc_en_set(self, false, index);
417
418         hw_atl_rdm_rx_desc_head_splitting_set(self, 0U, index);
419
420         hw_atl_reg_rx_dma_desc_base_addresslswset(self, dma_desc_addr_lsw,
421                                                   index);
422
423         hw_atl_reg_rx_dma_desc_base_addressmswset(self, dma_desc_addr_msw,
424                                                   index);
425
426         hw_atl_rdm_rx_desc_len_set(self, size / 8U, index);
427
428         hw_atl_rdm_rx_desc_data_buff_size_set(self, buff_size / 1024U, index);
429
430         hw_atl_rdm_rx_desc_head_buff_size_set(self, 0U, index);
431         hw_atl_rdm_rx_desc_head_splitting_set(self, 0U, index);
432         hw_atl_rpo_rx_desc_vlan_stripping_set(self, 0U, index);
433
434         /* Rx ring set mode */
435
436         /* Mapping interrupt vector */
437         hw_atl_itr_irq_map_rx_set(self, vec, index);
438         hw_atl_itr_irq_map_en_rx_set(self, true, index);
439
440         hw_atl_rdm_cpu_id_set(self, cpu, index);
441         hw_atl_rdm_rx_desc_dca_en_set(self, 0U, index);
442         hw_atl_rdm_rx_head_dca_en_set(self, 0U, index);
443         hw_atl_rdm_rx_pld_dca_en_set(self, 0U, index);
444
445         return aq_hw_err_from_flags(self);
446 }
447
448 int hw_atl_b0_hw_ring_tx_init(struct aq_hw_s *self, uint64_t base_addr,
449                               int index, int size, int cpu, int vec)
450 {
451         u32 dma_desc_lsw_addr = (u32)base_addr;
452         u32 dma_desc_msw_addr = (u32)(base_addr >> 32);
453
454         hw_atl_reg_tx_dma_desc_base_addresslswset(self, dma_desc_lsw_addr,
455                                                   index);
456
457         hw_atl_reg_tx_dma_desc_base_addressmswset(self, dma_desc_msw_addr,
458                                                   index);
459
460         hw_atl_tdm_tx_desc_len_set(self, size / 8U, index);
461
462         hw_atl_b0_hw_tx_ring_tail_update(self, 0, index);
463
464         /* Set Tx threshold */
465         hw_atl_tdm_tx_desc_wr_wb_threshold_set(self, 0U, index);
466
467         /* Mapping interrupt vector */
468         hw_atl_itr_irq_map_tx_set(self, vec, index);
469         hw_atl_itr_irq_map_en_tx_set(self, true, index);
470
471         hw_atl_tdm_cpu_id_set(self, cpu, index);
472         hw_atl_tdm_tx_desc_dca_en_set(self, 0U, index);
473
474         return aq_hw_err_from_flags(self);
475 }
476
477 int hw_atl_b0_hw_irq_enable(struct aq_hw_s *self, u64 mask)
478 {
479         hw_atl_itr_irq_msk_setlsw_set(self, LODWORD(mask));
480         return aq_hw_err_from_flags(self);
481 }
482
483 int hw_atl_b0_hw_irq_disable(struct aq_hw_s *self, u64 mask)
484 {
485         hw_atl_itr_irq_msk_clearlsw_set(self, LODWORD(mask));
486         hw_atl_itr_irq_status_clearlsw_set(self, LODWORD(mask));
487
488         return aq_hw_err_from_flags(self);
489 }
490
491 int hw_atl_b0_hw_irq_read(struct aq_hw_s *self, u64 *mask)
492 {
493         *mask = hw_atl_itr_irq_statuslsw_get(self);
494         return aq_hw_err_from_flags(self);
495 }
496
497 int hw_atl_b0_hw_ring_tx_stop(struct aq_hw_s *self, int index)
498 {
499         hw_atl_tdm_tx_desc_en_set(self, 0U, index);
500         return aq_hw_err_from_flags(self);
501 }
502
503 int hw_atl_b0_hw_ring_rx_stop(struct aq_hw_s *self, int index)
504 {
505         hw_atl_rdm_rx_desc_en_set(self, 0U, index);
506         return aq_hw_err_from_flags(self);
507 }