2 * Copyright (c) 2014-2015 Hisilicon Limited.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
10 #include <linux/etherdevice.h>
11 #include <linux/netdevice.h>
12 #include <linux/spinlock.h>
15 #include "hns_dsaf_mac.h"
16 #include "hns_dsaf_main.h"
17 #include "hns_dsaf_ppe.h"
18 #include "hns_dsaf_rcb.h"
20 #define AE_NAME_PORT_ID_IDX 6
22 static struct hns_mac_cb
*hns_get_mac_cb(struct hnae_handle
*handle
)
24 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
29 static struct dsaf_device
*hns_ae_get_dsaf_dev(struct hnae_ae_dev
*dev
)
31 return container_of(dev
, struct dsaf_device
, ae_dev
);
34 static struct hns_ppe_cb
*hns_get_ppe_cb(struct hnae_handle
*handle
)
37 struct ppe_common_cb
*ppe_comm
;
38 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
40 ppe_comm
= vf_cb
->dsaf_dev
->ppe_common
[0];
41 ppe_index
= vf_cb
->port_index
;
43 return &ppe_comm
->ppe_cb
[ppe_index
];
46 static int hns_ae_get_q_num_per_vf(
47 struct dsaf_device
*dsaf_dev
, int port
)
49 return dsaf_dev
->rcb_common
[0]->max_q_per_vf
;
52 static int hns_ae_get_vf_num_per_port(
53 struct dsaf_device
*dsaf_dev
, int port
)
55 return dsaf_dev
->rcb_common
[0]->max_vfn
;
58 static struct ring_pair_cb
*hns_ae_get_base_ring_pair(
59 struct dsaf_device
*dsaf_dev
, int port
)
61 struct rcb_common_cb
*rcb_comm
= dsaf_dev
->rcb_common
[0];
62 int q_num
= rcb_comm
->max_q_per_vf
;
63 int vf_num
= rcb_comm
->max_vfn
;
65 return &rcb_comm
->ring_pair_cb
[port
* q_num
* vf_num
];
68 static struct ring_pair_cb
*hns_ae_get_ring_pair(struct hnae_queue
*q
)
70 return container_of(q
, struct ring_pair_cb
, q
);
73 struct hnae_handle
*hns_ae_get_handle(struct hnae_ae_dev
*dev
,
79 struct dsaf_device
*dsaf_dev
;
80 struct hnae_handle
*ae_handle
;
81 struct ring_pair_cb
*ring_pair_cb
;
82 struct hnae_vf_cb
*vf_cb
;
84 dsaf_dev
= hns_ae_get_dsaf_dev(dev
);
86 ring_pair_cb
= hns_ae_get_base_ring_pair(dsaf_dev
, port_id
);
87 vfnum_per_port
= hns_ae_get_vf_num_per_port(dsaf_dev
, port_id
);
88 qnum_per_vf
= hns_ae_get_q_num_per_vf(dsaf_dev
, port_id
);
90 vf_cb
= kzalloc(sizeof(*vf_cb
) +
91 qnum_per_vf
* sizeof(struct hnae_queue
*), GFP_KERNEL
);
92 if (unlikely(!vf_cb
)) {
93 dev_err(dsaf_dev
->dev
, "malloc vf_cb fail!\n");
94 ae_handle
= ERR_PTR(-ENOMEM
);
97 ae_handle
= &vf_cb
->ae_handle
;
99 ae_handle
->owner_dev
= dsaf_dev
->dev
;
100 ae_handle
->dev
= dev
;
101 ae_handle
->q_num
= qnum_per_vf
;
102 ae_handle
->coal_param
= HNAE_LOWEST_LATENCY_COAL_PARAM
;
104 /* find ring pair, and set vf id*/
105 for (ae_handle
->vf_id
= 0;
106 ae_handle
->vf_id
< vfnum_per_port
; ae_handle
->vf_id
++) {
107 if (!ring_pair_cb
->used_by_vf
)
109 ring_pair_cb
+= qnum_per_vf
;
111 if (ae_handle
->vf_id
>= vfnum_per_port
) {
112 dev_err(dsaf_dev
->dev
, "malloc queue fail!\n");
113 ae_handle
= ERR_PTR(-EINVAL
);
117 ae_handle
->qs
= (struct hnae_queue
**)(&ae_handle
->qs
+ 1);
118 for (i
= 0; i
< qnum_per_vf
; i
++) {
119 ae_handle
->qs
[i
] = &ring_pair_cb
->q
;
120 ae_handle
->qs
[i
]->rx_ring
.q
= ae_handle
->qs
[i
];
121 ae_handle
->qs
[i
]->tx_ring
.q
= ae_handle
->qs
[i
];
123 ring_pair_cb
->used_by_vf
= 1;
127 vf_cb
->dsaf_dev
= dsaf_dev
;
128 vf_cb
->port_index
= port_id
;
129 vf_cb
->mac_cb
= dsaf_dev
->mac_cb
[port_id
];
131 ae_handle
->phy_if
= vf_cb
->mac_cb
->phy_if
;
132 ae_handle
->phy_dev
= vf_cb
->mac_cb
->phy_dev
;
133 ae_handle
->if_support
= vf_cb
->mac_cb
->if_support
;
134 ae_handle
->port_type
= vf_cb
->mac_cb
->mac_type
;
135 ae_handle
->media_type
= vf_cb
->mac_cb
->media_type
;
136 ae_handle
->dport_id
= port_id
;
145 static void hns_ae_put_handle(struct hnae_handle
*handle
)
147 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
150 vf_cb
->mac_cb
= NULL
;
154 for (i
= 0; i
< handle
->q_num
; i
++)
155 hns_ae_get_ring_pair(handle
->qs
[i
])->used_by_vf
= 0;
158 static void hns_ae_ring_enable_all(struct hnae_handle
*handle
, int val
)
160 int q_num
= handle
->q_num
;
163 for (i
= 0; i
< q_num
; i
++)
164 hns_rcb_ring_enable_hw(handle
->qs
[i
], val
);
167 static void hns_ae_init_queue(struct hnae_queue
*q
)
169 struct ring_pair_cb
*ring
=
170 container_of(q
, struct ring_pair_cb
, q
);
172 hns_rcb_init_hw(ring
);
175 static void hns_ae_fini_queue(struct hnae_queue
*q
)
177 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(q
->handle
);
179 if (vf_cb
->mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
180 hns_rcb_reset_ring_hw(q
);
183 static int hns_ae_set_mac_address(struct hnae_handle
*handle
, void *p
)
186 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
188 if (!p
|| !is_valid_ether_addr((const u8
*)p
)) {
189 dev_err(handle
->owner_dev
, "is not valid ether addr !\n");
190 return -EADDRNOTAVAIL
;
193 ret
= hns_mac_change_vf_addr(mac_cb
, handle
->vf_id
, p
);
195 dev_err(handle
->owner_dev
,
196 "set_mac_address fail, ret=%d!\n", ret
);
203 static int hns_ae_add_uc_address(struct hnae_handle
*handle
,
204 const unsigned char *addr
)
206 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
208 if (mac_cb
->mac_type
!= HNAE_PORT_SERVICE
)
211 return hns_mac_add_uc_addr(mac_cb
, handle
->vf_id
, addr
);
214 static int hns_ae_rm_uc_address(struct hnae_handle
*handle
,
215 const unsigned char *addr
)
217 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
219 if (mac_cb
->mac_type
!= HNAE_PORT_SERVICE
)
222 return hns_mac_rm_uc_addr(mac_cb
, handle
->vf_id
, addr
);
225 static int hns_ae_set_multicast_one(struct hnae_handle
*handle
, void *addr
)
228 char *mac_addr
= (char *)addr
;
229 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
234 if (mac_cb
->mac_type
!= HNAE_PORT_SERVICE
)
237 ret
= hns_mac_set_multi(mac_cb
, mac_cb
->mac_id
, mac_addr
, true);
239 dev_err(handle
->owner_dev
,
240 "mac add mul_mac:%pM port%d fail, ret = %#x!\n",
241 mac_addr
, mac_cb
->mac_id
, ret
);
245 ret
= hns_mac_get_inner_port_num(mac_cb
, handle
->vf_id
, &port_num
);
249 ret
= hns_mac_set_multi(mac_cb
, port_num
, mac_addr
, true);
251 dev_err(handle
->owner_dev
,
252 "mac add mul_mac:%pM port%d fail, ret = %#x!\n",
253 mac_addr
, DSAF_BASE_INNER_PORT_NUM
, ret
);
258 static int hns_ae_clr_multicast(struct hnae_handle
*handle
)
260 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
262 if (mac_cb
->mac_type
!= HNAE_PORT_SERVICE
)
265 return hns_mac_clr_multicast(mac_cb
, handle
->vf_id
);
268 static int hns_ae_set_mtu(struct hnae_handle
*handle
, int new_mtu
)
270 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
271 struct hnae_queue
*q
;
275 /* when buf_size is 2048, max mtu is 6K for rx ring max bd num is 3. */
276 if (!AE_IS_VER1(mac_cb
->dsaf_dev
->dsaf_ver
)) {
277 if (new_mtu
<= BD_SIZE_2048_MAX_MTU
)
282 rx_buf_size
= mac_cb
->dsaf_dev
->buf_size
;
285 ret
= hns_mac_set_mtu(mac_cb
, new_mtu
, rx_buf_size
);
288 /* reinit ring buf_size */
289 for (i
= 0; i
< handle
->q_num
; i
++) {
291 q
->rx_ring
.buf_size
= rx_buf_size
;
292 hns_rcb_set_rx_ring_bs(q
, rx_buf_size
);
299 static void hns_ae_set_tso_stats(struct hnae_handle
*handle
, int enable
)
301 struct hns_ppe_cb
*ppe_cb
= hns_get_ppe_cb(handle
);
303 hns_ppe_set_tso_enable(ppe_cb
, enable
);
306 static int hns_ae_start(struct hnae_handle
*handle
)
310 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
312 ret
= hns_mac_vm_config_bc_en(mac_cb
, 0, true);
316 for (k
= 0; k
< handle
->q_num
; k
++) {
317 if (AE_IS_VER1(mac_cb
->dsaf_dev
->dsaf_ver
))
318 hns_rcb_int_clr_hw(handle
->qs
[k
],
319 RCB_INT_FLAG_TX
| RCB_INT_FLAG_RX
);
321 hns_rcbv2_int_clr_hw(handle
->qs
[k
],
322 RCB_INT_FLAG_TX
| RCB_INT_FLAG_RX
);
324 hns_ae_ring_enable_all(handle
, 1);
327 hns_mac_start(mac_cb
);
332 void hns_ae_stop(struct hnae_handle
*handle
)
334 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
336 /* just clean tx fbd, neednot rx fbd*/
337 hns_rcb_wait_fbd_clean(handle
->qs
, handle
->q_num
, RCB_INT_FLAG_TX
);
341 hns_mac_stop(mac_cb
);
343 usleep_range(10000, 20000);
345 hns_ae_ring_enable_all(handle
, 0);
347 (void)hns_mac_vm_config_bc_en(mac_cb
, 0, false);
350 static void hns_ae_reset(struct hnae_handle
*handle
)
352 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
354 if (vf_cb
->mac_cb
->mac_type
== HNAE_PORT_DEBUG
) {
355 hns_mac_reset(vf_cb
->mac_cb
);
356 hns_ppe_reset_common(vf_cb
->dsaf_dev
, 0);
360 void hns_ae_toggle_ring_irq(struct hnae_ring
*ring
, u32 mask
)
364 if (is_tx_ring(ring
))
365 flag
= RCB_INT_FLAG_TX
;
367 flag
= RCB_INT_FLAG_RX
;
369 hns_rcb_int_ctrl_hw(ring
->q
, flag
, mask
);
372 static void hns_aev2_toggle_ring_irq(struct hnae_ring
*ring
, u32 mask
)
376 if (is_tx_ring(ring
))
377 flag
= RCB_INT_FLAG_TX
;
379 flag
= RCB_INT_FLAG_RX
;
381 hns_rcbv2_int_ctrl_hw(ring
->q
, flag
, mask
);
384 static int hns_ae_get_link_status(struct hnae_handle
*handle
)
387 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
389 hns_mac_get_link_status(mac_cb
, &link_status
);
391 return !!link_status
;
394 static int hns_ae_get_mac_info(struct hnae_handle
*handle
,
395 u8
*auto_neg
, u16
*speed
, u8
*duplex
)
397 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
399 return hns_mac_get_port_info(mac_cb
, auto_neg
, speed
, duplex
);
402 static void hns_ae_adjust_link(struct hnae_handle
*handle
, int speed
,
405 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
407 hns_mac_adjust_link(mac_cb
, speed
, duplex
);
410 static void hns_ae_get_ring_bdnum_limit(struct hnae_queue
*queue
,
413 *uplimit
= HNS_RCB_RING_MAX_PENDING_BD
;
416 static void hns_ae_get_pauseparam(struct hnae_handle
*handle
,
417 u32
*auto_neg
, u32
*rx_en
, u32
*tx_en
)
419 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
420 struct dsaf_device
*dsaf_dev
= mac_cb
->dsaf_dev
;
422 hns_mac_get_autoneg(mac_cb
, auto_neg
);
424 hns_mac_get_pauseparam(mac_cb
, rx_en
, tx_en
);
426 /* Service port's pause feature is provided by DSAF, not mac */
427 if (handle
->port_type
== HNAE_PORT_SERVICE
)
428 hns_dsaf_get_rx_mac_pause_en(dsaf_dev
, mac_cb
->mac_id
, rx_en
);
431 static int hns_ae_set_autoneg(struct hnae_handle
*handle
, u8 enable
)
435 return hns_mac_set_autoneg(hns_get_mac_cb(handle
), enable
);
438 static void hns_ae_set_promisc_mode(struct hnae_handle
*handle
, u32 en
)
440 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
442 hns_dsaf_set_promisc_mode(hns_ae_get_dsaf_dev(handle
->dev
), en
);
443 hns_mac_set_promisc(mac_cb
, (u8
)!!en
);
446 static int hns_ae_get_autoneg(struct hnae_handle
*handle
)
452 hns_mac_get_autoneg(hns_get_mac_cb(handle
), &auto_neg
);
457 static int hns_ae_set_pauseparam(struct hnae_handle
*handle
,
458 u32 autoneg
, u32 rx_en
, u32 tx_en
)
460 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
461 struct dsaf_device
*dsaf_dev
= mac_cb
->dsaf_dev
;
464 ret
= hns_mac_set_autoneg(mac_cb
, autoneg
);
468 /* Service port's pause feature is provided by DSAF, not mac */
469 if (handle
->port_type
== HNAE_PORT_SERVICE
) {
470 ret
= hns_dsaf_set_rx_mac_pause_en(dsaf_dev
,
471 mac_cb
->mac_id
, rx_en
);
476 return hns_mac_set_pauseparam(mac_cb
, rx_en
, tx_en
);
479 static void hns_ae_get_coalesce_usecs(struct hnae_handle
*handle
,
480 u32
*tx_usecs
, u32
*rx_usecs
)
482 struct ring_pair_cb
*ring_pair
=
483 container_of(handle
->qs
[0], struct ring_pair_cb
, q
);
485 *tx_usecs
= hns_rcb_get_coalesce_usecs(ring_pair
->rcb_common
,
486 ring_pair
->port_id_in_comm
);
487 *rx_usecs
= hns_rcb_get_coalesce_usecs(ring_pair
->rcb_common
,
488 ring_pair
->port_id_in_comm
);
491 static void hns_ae_get_max_coalesced_frames(struct hnae_handle
*handle
,
492 u32
*tx_frames
, u32
*rx_frames
)
494 struct ring_pair_cb
*ring_pair
=
495 container_of(handle
->qs
[0], struct ring_pair_cb
, q
);
496 struct dsaf_device
*dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
498 if (AE_IS_VER1(dsaf_dev
->dsaf_ver
) ||
499 handle
->port_type
== HNAE_PORT_DEBUG
)
500 *tx_frames
= hns_rcb_get_rx_coalesced_frames(
501 ring_pair
->rcb_common
, ring_pair
->port_id_in_comm
);
503 *tx_frames
= hns_rcb_get_tx_coalesced_frames(
504 ring_pair
->rcb_common
, ring_pair
->port_id_in_comm
);
505 *rx_frames
= hns_rcb_get_rx_coalesced_frames(ring_pair
->rcb_common
,
506 ring_pair
->port_id_in_comm
);
509 static int hns_ae_set_coalesce_usecs(struct hnae_handle
*handle
,
512 struct ring_pair_cb
*ring_pair
=
513 container_of(handle
->qs
[0], struct ring_pair_cb
, q
);
515 return hns_rcb_set_coalesce_usecs(
516 ring_pair
->rcb_common
, ring_pair
->port_id_in_comm
, timeout
);
519 static int hns_ae_set_coalesce_frames(struct hnae_handle
*handle
,
520 u32 tx_frames
, u32 rx_frames
)
523 struct ring_pair_cb
*ring_pair
=
524 container_of(handle
->qs
[0], struct ring_pair_cb
, q
);
525 struct dsaf_device
*dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
527 if (AE_IS_VER1(dsaf_dev
->dsaf_ver
) ||
528 handle
->port_type
== HNAE_PORT_DEBUG
) {
529 if (tx_frames
!= rx_frames
)
531 return hns_rcb_set_rx_coalesced_frames(
532 ring_pair
->rcb_common
,
533 ring_pair
->port_id_in_comm
, rx_frames
);
537 ret
= hns_rcb_set_tx_coalesced_frames(
538 ring_pair
->rcb_common
,
539 ring_pair
->port_id_in_comm
, tx_frames
);
543 return hns_rcb_set_rx_coalesced_frames(
544 ring_pair
->rcb_common
,
545 ring_pair
->port_id_in_comm
, rx_frames
);
549 static void hns_ae_get_coalesce_range(struct hnae_handle
*handle
,
550 u32
*tx_frames_low
, u32
*rx_frames_low
,
551 u32
*tx_frames_high
, u32
*rx_frames_high
,
552 u32
*tx_usecs_low
, u32
*rx_usecs_low
,
553 u32
*tx_usecs_high
, u32
*rx_usecs_high
)
555 struct dsaf_device
*dsaf_dev
;
559 dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
561 *tx_frames_low
= HNS_RCB_TX_FRAMES_LOW
;
562 *rx_frames_low
= HNS_RCB_RX_FRAMES_LOW
;
564 if (AE_IS_VER1(dsaf_dev
->dsaf_ver
) ||
565 handle
->port_type
== HNAE_PORT_DEBUG
)
567 (dsaf_dev
->desc_num
- 1 > HNS_RCB_TX_FRAMES_HIGH
) ?
568 HNS_RCB_TX_FRAMES_HIGH
: dsaf_dev
->desc_num
- 1;
572 *rx_frames_high
= (dsaf_dev
->desc_num
- 1 > HNS_RCB_RX_FRAMES_HIGH
) ?
573 HNS_RCB_RX_FRAMES_HIGH
: dsaf_dev
->desc_num
- 1;
574 *tx_usecs_low
= HNS_RCB_TX_USECS_LOW
;
575 *rx_usecs_low
= HNS_RCB_RX_USECS_LOW
;
576 *tx_usecs_high
= HNS_RCB_TX_USECS_HIGH
;
577 *rx_usecs_high
= HNS_RCB_RX_USECS_HIGH
;
580 void hns_ae_update_stats(struct hnae_handle
*handle
,
581 struct net_device_stats
*net_stats
)
585 struct dsaf_device
*dsaf_dev
;
586 struct hns_mac_cb
*mac_cb
;
587 struct hns_ppe_cb
*ppe_cb
;
588 struct hnae_queue
*queue
;
589 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
590 u64 tx_bytes
= 0, rx_bytes
= 0, tx_packets
= 0, rx_packets
= 0;
591 u64 rx_errors
= 0, tx_errors
= 0, tx_dropped
= 0;
592 u64 rx_missed_errors
= 0;
594 dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
597 port
= vf_cb
->port_index
;
598 ppe_cb
= hns_get_ppe_cb(handle
);
599 mac_cb
= hns_get_mac_cb(handle
);
601 for (idx
= 0; idx
< handle
->q_num
; idx
++) {
602 queue
= handle
->qs
[idx
];
603 hns_rcb_update_stats(queue
);
605 tx_bytes
+= queue
->tx_ring
.stats
.tx_bytes
;
606 tx_packets
+= queue
->tx_ring
.stats
.tx_pkts
;
607 rx_bytes
+= queue
->rx_ring
.stats
.rx_bytes
;
608 rx_packets
+= queue
->rx_ring
.stats
.rx_pkts
;
610 rx_errors
+= queue
->rx_ring
.stats
.err_pkt_len
611 + queue
->rx_ring
.stats
.l2_err
612 + queue
->rx_ring
.stats
.l3l4_csum_err
;
615 hns_ppe_update_stats(ppe_cb
);
616 rx_missed_errors
= ppe_cb
->hw_stats
.rx_drop_no_buf
;
617 tx_errors
+= ppe_cb
->hw_stats
.tx_err_checksum
618 + ppe_cb
->hw_stats
.tx_err_fifo_empty
;
620 if (mac_cb
->mac_type
== HNAE_PORT_SERVICE
) {
621 hns_dsaf_update_stats(dsaf_dev
, port
);
622 /* for port upline direction, i.e., rx. */
623 rx_missed_errors
+= dsaf_dev
->hw_stats
[port
].bp_drop
;
624 rx_missed_errors
+= dsaf_dev
->hw_stats
[port
].pad_drop
;
625 rx_missed_errors
+= dsaf_dev
->hw_stats
[port
].crc_false
;
627 /* for port downline direction, i.e., tx. */
628 port
= port
+ DSAF_PPE_INODE_BASE
;
629 hns_dsaf_update_stats(dsaf_dev
, port
);
630 tx_dropped
+= dsaf_dev
->hw_stats
[port
].bp_drop
;
631 tx_dropped
+= dsaf_dev
->hw_stats
[port
].pad_drop
;
632 tx_dropped
+= dsaf_dev
->hw_stats
[port
].crc_false
;
633 tx_dropped
+= dsaf_dev
->hw_stats
[port
].rslt_drop
;
634 tx_dropped
+= dsaf_dev
->hw_stats
[port
].vlan_drop
;
635 tx_dropped
+= dsaf_dev
->hw_stats
[port
].stp_drop
;
638 hns_mac_update_stats(mac_cb
);
639 rx_errors
+= mac_cb
->hw_stats
.rx_fifo_overrun_err
;
641 tx_errors
+= mac_cb
->hw_stats
.tx_bad_pkts
642 + mac_cb
->hw_stats
.tx_fragment_err
643 + mac_cb
->hw_stats
.tx_jabber_err
644 + mac_cb
->hw_stats
.tx_underrun_err
645 + mac_cb
->hw_stats
.tx_crc_err
;
647 net_stats
->tx_bytes
= tx_bytes
;
648 net_stats
->tx_packets
= tx_packets
;
649 net_stats
->rx_bytes
= rx_bytes
;
650 net_stats
->rx_dropped
= 0;
651 net_stats
->rx_packets
= rx_packets
;
652 net_stats
->rx_errors
= rx_errors
;
653 net_stats
->tx_errors
= tx_errors
;
654 net_stats
->tx_dropped
= tx_dropped
;
655 net_stats
->rx_missed_errors
= rx_missed_errors
;
656 net_stats
->rx_crc_errors
= mac_cb
->hw_stats
.rx_fcs_err
;
657 net_stats
->rx_frame_errors
= mac_cb
->hw_stats
.rx_align_err
;
658 net_stats
->rx_fifo_errors
= mac_cb
->hw_stats
.rx_fifo_overrun_err
;
659 net_stats
->rx_length_errors
= mac_cb
->hw_stats
.rx_len_err
;
660 net_stats
->multicast
= mac_cb
->hw_stats
.rx_mc_pkts
;
663 void hns_ae_get_stats(struct hnae_handle
*handle
, u64
*data
)
666 struct hns_mac_cb
*mac_cb
;
667 struct hns_ppe_cb
*ppe_cb
;
669 struct hnae_vf_cb
*vf_cb
;
671 if (!handle
|| !data
) {
672 pr_err("hns_ae_get_stats NULL handle or data pointer!\n");
676 vf_cb
= hns_ae_get_vf_cb(handle
);
677 mac_cb
= hns_get_mac_cb(handle
);
678 ppe_cb
= hns_get_ppe_cb(handle
);
680 for (idx
= 0; idx
< handle
->q_num
; idx
++) {
681 hns_rcb_get_stats(handle
->qs
[idx
], p
);
682 p
+= hns_rcb_get_ring_sset_count((int)ETH_SS_STATS
);
685 hns_ppe_get_stats(ppe_cb
, p
);
686 p
+= hns_ppe_get_sset_count((int)ETH_SS_STATS
);
688 hns_mac_get_stats(mac_cb
, p
);
689 p
+= hns_mac_get_sset_count(mac_cb
, (int)ETH_SS_STATS
);
691 if (mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
692 hns_dsaf_get_stats(vf_cb
->dsaf_dev
, p
, vf_cb
->port_index
);
695 void hns_ae_get_strings(struct hnae_handle
*handle
,
696 u32 stringset
, u8
*data
)
700 struct hns_mac_cb
*mac_cb
;
701 struct hns_ppe_cb
*ppe_cb
;
702 struct dsaf_device
*dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
704 struct hnae_vf_cb
*vf_cb
;
708 vf_cb
= hns_ae_get_vf_cb(handle
);
709 port
= vf_cb
->port_index
;
710 mac_cb
= hns_get_mac_cb(handle
);
711 ppe_cb
= hns_get_ppe_cb(handle
);
713 for (idx
= 0; idx
< handle
->q_num
; idx
++) {
714 hns_rcb_get_strings(stringset
, p
, idx
);
715 p
+= ETH_GSTRING_LEN
* hns_rcb_get_ring_sset_count(stringset
);
718 hns_ppe_get_strings(ppe_cb
, stringset
, p
);
719 p
+= ETH_GSTRING_LEN
* hns_ppe_get_sset_count(stringset
);
721 hns_mac_get_strings(mac_cb
, stringset
, p
);
722 p
+= ETH_GSTRING_LEN
* hns_mac_get_sset_count(mac_cb
, stringset
);
724 if (mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
725 hns_dsaf_get_strings(stringset
, p
, port
, dsaf_dev
);
728 int hns_ae_get_sset_count(struct hnae_handle
*handle
, int stringset
)
731 struct hns_mac_cb
*mac_cb
;
732 struct dsaf_device
*dsaf_dev
= hns_ae_get_dsaf_dev(handle
->dev
);
736 mac_cb
= hns_get_mac_cb(handle
);
738 sset_count
+= hns_rcb_get_ring_sset_count(stringset
) * handle
->q_num
;
739 sset_count
+= hns_ppe_get_sset_count(stringset
);
740 sset_count
+= hns_mac_get_sset_count(mac_cb
, stringset
);
742 if (mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
743 sset_count
+= hns_dsaf_get_sset_count(dsaf_dev
, stringset
);
748 static int hns_ae_config_loopback(struct hnae_handle
*handle
,
749 enum hnae_loop loop
, int en
)
752 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
753 struct hns_mac_cb
*mac_cb
= hns_get_mac_cb(handle
);
754 struct dsaf_device
*dsaf_dev
= mac_cb
->dsaf_dev
;
757 case MAC_INTERNALLOOP_PHY
:
760 case MAC_INTERNALLOOP_SERDES
:
761 ret
= dsaf_dev
->misc_op
->cfg_serdes_loopback(vf_cb
->mac_cb
,
764 case MAC_INTERNALLOOP_MAC
:
765 ret
= hns_mac_config_mac_loopback(vf_cb
->mac_cb
, loop
, en
);
774 void hns_ae_update_led_status(struct hnae_handle
*handle
)
776 struct hns_mac_cb
*mac_cb
;
779 mac_cb
= hns_get_mac_cb(handle
);
780 if (mac_cb
->media_type
!= HNAE_MEDIA_TYPE_FIBER
)
783 hns_set_led_opt(mac_cb
);
786 int hns_ae_cpld_set_led_id(struct hnae_handle
*handle
,
787 enum hnae_led_state status
)
789 struct hns_mac_cb
*mac_cb
;
793 mac_cb
= hns_get_mac_cb(handle
);
795 return hns_cpld_led_set_id(mac_cb
, status
);
798 void hns_ae_get_regs(struct hnae_handle
*handle
, void *data
)
802 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
803 struct hns_ppe_cb
*ppe_cb
= hns_get_ppe_cb(handle
);
805 hns_ppe_get_regs(ppe_cb
, p
);
806 p
+= hns_ppe_get_regs_count();
808 hns_rcb_get_common_regs(vf_cb
->dsaf_dev
->rcb_common
[0], p
);
809 p
+= hns_rcb_get_common_regs_count();
811 for (i
= 0; i
< handle
->q_num
; i
++) {
812 hns_rcb_get_ring_regs(handle
->qs
[i
], p
);
813 p
+= hns_rcb_get_ring_regs_count();
816 hns_mac_get_regs(vf_cb
->mac_cb
, p
);
817 p
+= hns_mac_get_regs_count(vf_cb
->mac_cb
);
819 if (vf_cb
->mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
820 hns_dsaf_get_regs(vf_cb
->dsaf_dev
, vf_cb
->port_index
, p
);
823 int hns_ae_get_regs_len(struct hnae_handle
*handle
)
826 struct hnae_vf_cb
*vf_cb
= hns_ae_get_vf_cb(handle
);
828 total_num
= hns_ppe_get_regs_count();
829 total_num
+= hns_rcb_get_common_regs_count();
830 total_num
+= hns_rcb_get_ring_regs_count() * handle
->q_num
;
831 total_num
+= hns_mac_get_regs_count(vf_cb
->mac_cb
);
833 if (vf_cb
->mac_cb
->mac_type
== HNAE_PORT_SERVICE
)
834 total_num
+= hns_dsaf_get_regs_count();
839 static u32
hns_ae_get_rss_key_size(struct hnae_handle
*handle
)
841 return HNS_PPEV2_RSS_KEY_SIZE
;
844 static u32
hns_ae_get_rss_indir_size(struct hnae_handle
*handle
)
846 return HNS_PPEV2_RSS_IND_TBL_SIZE
;
849 static int hns_ae_get_rss(struct hnae_handle
*handle
, u32
*indir
, u8
*key
,
852 struct hns_ppe_cb
*ppe_cb
= hns_get_ppe_cb(handle
);
854 /* currently we support only one type of hash function i.e. Toep hash */
856 *hfunc
= ETH_RSS_HASH_TOP
;
858 /* get the RSS Key required by the user */
860 memcpy(key
, ppe_cb
->rss_key
, HNS_PPEV2_RSS_KEY_SIZE
);
862 /* update the current hash->queue mappings from the shadow RSS table */
864 memcpy(indir
, ppe_cb
->rss_indir_table
,
865 HNS_PPEV2_RSS_IND_TBL_SIZE
* sizeof(*indir
));
870 static int hns_ae_set_rss(struct hnae_handle
*handle
, const u32
*indir
,
871 const u8
*key
, const u8 hfunc
)
873 struct hns_ppe_cb
*ppe_cb
= hns_get_ppe_cb(handle
);
875 /* set the RSS Hash Key if specififed by the user */
877 memcpy(ppe_cb
->rss_key
, key
, HNS_PPEV2_RSS_KEY_SIZE
);
878 hns_ppe_set_rss_key(ppe_cb
, ppe_cb
->rss_key
);
882 /* update the shadow RSS table with user specified qids */
883 memcpy(ppe_cb
->rss_indir_table
, indir
,
884 HNS_PPEV2_RSS_IND_TBL_SIZE
* sizeof(*indir
));
886 /* now update the hardware */
887 hns_ppe_set_indir_table(ppe_cb
, ppe_cb
->rss_indir_table
);
893 static struct hnae_ae_ops hns_dsaf_ops
= {
894 .get_handle
= hns_ae_get_handle
,
895 .put_handle
= hns_ae_put_handle
,
896 .init_queue
= hns_ae_init_queue
,
897 .fini_queue
= hns_ae_fini_queue
,
898 .start
= hns_ae_start
,
900 .reset
= hns_ae_reset
,
901 .toggle_ring_irq
= hns_ae_toggle_ring_irq
,
902 .get_status
= hns_ae_get_link_status
,
903 .get_info
= hns_ae_get_mac_info
,
904 .adjust_link
= hns_ae_adjust_link
,
905 .set_loopback
= hns_ae_config_loopback
,
906 .get_ring_bdnum_limit
= hns_ae_get_ring_bdnum_limit
,
907 .get_pauseparam
= hns_ae_get_pauseparam
,
908 .set_autoneg
= hns_ae_set_autoneg
,
909 .get_autoneg
= hns_ae_get_autoneg
,
910 .set_pauseparam
= hns_ae_set_pauseparam
,
911 .get_coalesce_usecs
= hns_ae_get_coalesce_usecs
,
912 .get_max_coalesced_frames
= hns_ae_get_max_coalesced_frames
,
913 .set_coalesce_usecs
= hns_ae_set_coalesce_usecs
,
914 .set_coalesce_frames
= hns_ae_set_coalesce_frames
,
915 .get_coalesce_range
= hns_ae_get_coalesce_range
,
916 .set_promisc_mode
= hns_ae_set_promisc_mode
,
917 .set_mac_addr
= hns_ae_set_mac_address
,
918 .add_uc_addr
= hns_ae_add_uc_address
,
919 .rm_uc_addr
= hns_ae_rm_uc_address
,
920 .set_mc_addr
= hns_ae_set_multicast_one
,
921 .clr_mc_addr
= hns_ae_clr_multicast
,
922 .set_mtu
= hns_ae_set_mtu
,
923 .update_stats
= hns_ae_update_stats
,
924 .set_tso_stats
= hns_ae_set_tso_stats
,
925 .get_stats
= hns_ae_get_stats
,
926 .get_strings
= hns_ae_get_strings
,
927 .get_sset_count
= hns_ae_get_sset_count
,
928 .update_led_status
= hns_ae_update_led_status
,
929 .set_led_id
= hns_ae_cpld_set_led_id
,
930 .get_regs
= hns_ae_get_regs
,
931 .get_regs_len
= hns_ae_get_regs_len
,
932 .get_rss_key_size
= hns_ae_get_rss_key_size
,
933 .get_rss_indir_size
= hns_ae_get_rss_indir_size
,
934 .get_rss
= hns_ae_get_rss
,
935 .set_rss
= hns_ae_set_rss
938 int hns_dsaf_ae_init(struct dsaf_device
*dsaf_dev
)
940 struct hnae_ae_dev
*ae_dev
= &dsaf_dev
->ae_dev
;
941 static atomic_t id
= ATOMIC_INIT(-1);
943 switch (dsaf_dev
->dsaf_ver
) {
945 hns_dsaf_ops
.toggle_ring_irq
= hns_ae_toggle_ring_irq
;
948 hns_dsaf_ops
.toggle_ring_irq
= hns_aev2_toggle_ring_irq
;
954 snprintf(ae_dev
->name
, AE_NAME_SIZE
, "%s%d", DSAF_DEVICE_NAME
,
955 (int)atomic_inc_return(&id
));
956 ae_dev
->ops
= &hns_dsaf_ops
;
957 ae_dev
->dev
= dsaf_dev
->dev
;
959 return hnae_ae_register(ae_dev
, THIS_MODULE
);
962 void hns_dsaf_ae_uninit(struct dsaf_device
*dsaf_dev
)
964 hnae_ae_unregister(&dsaf_dev
->ae_dev
);