|
@@ -31,16 +31,15 @@ static inline struct hclgevf_dev *hclgevf_ae_get_hdev(
|
|
|
|
|
|
static int hclgevf_tqps_update_stats(struct hnae3_handle *handle)
|
|
|
{
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
- struct hnae3_queue *queue;
|
|
|
struct hclgevf_desc desc;
|
|
|
struct hclgevf_tqp *tqp;
|
|
|
int status;
|
|
|
int i;
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
- queue = handle->kinfo.tqp[i];
|
|
|
- tqp = container_of(queue, struct hclgevf_tqp, q);
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
+ tqp = container_of(kinfo->tqp[i], struct hclgevf_tqp, q);
|
|
|
hclgevf_cmd_setup_basic_desc(&desc,
|
|
|
HCLGEVF_OPC_QUERY_RX_STATUS,
|
|
|
true);
|
|
@@ -77,17 +76,16 @@ static int hclgevf_tqps_update_stats(struct hnae3_handle *handle)
|
|
|
static u64 *hclgevf_tqps_get_stats(struct hnae3_handle *handle, u64 *data)
|
|
|
{
|
|
|
struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
- struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
struct hclgevf_tqp *tqp;
|
|
|
u64 *buff = data;
|
|
|
int i;
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
- tqp = container_of(handle->kinfo.tqp[i], struct hclgevf_tqp, q);
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
+ tqp = container_of(kinfo->tqp[i], struct hclgevf_tqp, q);
|
|
|
*buff++ = tqp->tqp_stats.rcb_tx_ring_pktnum_rcd;
|
|
|
}
|
|
|
for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
- tqp = container_of(handle->kinfo.tqp[i], struct hclgevf_tqp, q);
|
|
|
+ tqp = container_of(kinfo->tqp[i], struct hclgevf_tqp, q);
|
|
|
*buff++ = tqp->tqp_stats.rcb_rx_ring_pktnum_rcd;
|
|
|
}
|
|
|
|
|
@@ -96,29 +94,29 @@ static u64 *hclgevf_tqps_get_stats(struct hnae3_handle *handle, u64 *data)
|
|
|
|
|
|
static int hclgevf_tqps_get_sset_count(struct hnae3_handle *handle, int strset)
|
|
|
{
|
|
|
- struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
|
|
|
- return hdev->num_tqps * 2;
|
|
|
+ return kinfo->num_tqps * 2;
|
|
|
}
|
|
|
|
|
|
static u8 *hclgevf_tqps_get_strings(struct hnae3_handle *handle, u8 *data)
|
|
|
{
|
|
|
- struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
u8 *buff = data;
|
|
|
int i = 0;
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
- struct hclgevf_tqp *tqp = container_of(handle->kinfo.tqp[i],
|
|
|
- struct hclgevf_tqp, q);
|
|
|
- snprintf(buff, ETH_GSTRING_LEN, "txq#%d_pktnum_rcd",
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
+ struct hclgevf_tqp *tqp = container_of(kinfo->tqp[i],
|
|
|
+ struct hclgevf_tqp, q);
|
|
|
+ snprintf(buff, ETH_GSTRING_LEN, "txq%d_pktnum_rcd",
|
|
|
tqp->index);
|
|
|
buff += ETH_GSTRING_LEN;
|
|
|
}
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
- struct hclgevf_tqp *tqp = container_of(handle->kinfo.tqp[i],
|
|
|
- struct hclgevf_tqp, q);
|
|
|
- snprintf(buff, ETH_GSTRING_LEN, "rxq#%d_pktnum_rcd",
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
+ struct hclgevf_tqp *tqp = container_of(kinfo->tqp[i],
|
|
|
+ struct hclgevf_tqp, q);
|
|
|
+ snprintf(buff, ETH_GSTRING_LEN, "rxq%d_pktnum_rcd",
|
|
|
tqp->index);
|
|
|
buff += ETH_GSTRING_LEN;
|
|
|
}
|
|
@@ -182,7 +180,7 @@ static int hclgevf_get_tc_info(struct hclgevf_dev *hdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int hclge_get_queue_info(struct hclgevf_dev *hdev)
|
|
|
+static int hclgevf_get_queue_info(struct hclgevf_dev *hdev)
|
|
|
{
|
|
|
#define HCLGEVF_TQPS_RSS_INFO_LEN 8
|
|
|
u8 resp_msg[HCLGEVF_TQPS_RSS_INFO_LEN];
|
|
@@ -738,14 +736,12 @@ static int hclgevf_get_queue_id(struct hnae3_queue *queue)
|
|
|
|
|
|
static void hclgevf_reset_tqp_stats(struct hnae3_handle *handle)
|
|
|
{
|
|
|
- struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
- struct hnae3_queue *queue;
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
struct hclgevf_tqp *tqp;
|
|
|
int i;
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
- queue = handle->kinfo.tqp[i];
|
|
|
- tqp = container_of(queue, struct hclgevf_tqp, q);
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
+ tqp = container_of(kinfo->tqp[i], struct hclgevf_tqp, q);
|
|
|
memset(&tqp->tqp_stats, 0, sizeof(tqp->tqp_stats));
|
|
|
}
|
|
|
}
|
|
@@ -1344,8 +1340,10 @@ static int hclgevf_configure(struct hclgevf_dev *hdev)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
+ hdev->hw.mac.media_type = HNAE3_MEDIA_TYPE_NONE;
|
|
|
+
|
|
|
/* get queue configuration from PF */
|
|
|
- ret = hclge_get_queue_info(hdev);
|
|
|
+ ret = hclgevf_get_queue_info(hdev);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
/* get tc configuration from PF */
|
|
@@ -1420,12 +1418,13 @@ static int hclgevf_init_vlan_config(struct hclgevf_dev *hdev)
|
|
|
|
|
|
static int hclgevf_ae_start(struct hnae3_handle *handle)
|
|
|
{
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
int i, queue_id;
|
|
|
|
|
|
- for (i = 0; i < handle->kinfo.num_tqps; i++) {
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
/* ring enable */
|
|
|
- queue_id = hclgevf_get_queue_id(handle->kinfo.tqp[i]);
|
|
|
+ queue_id = hclgevf_get_queue_id(kinfo->tqp[i]);
|
|
|
if (queue_id < 0) {
|
|
|
dev_warn(&hdev->pdev->dev,
|
|
|
"Get invalid queue id, ignore it\n");
|
|
@@ -1448,14 +1447,15 @@ static int hclgevf_ae_start(struct hnae3_handle *handle)
|
|
|
|
|
|
static void hclgevf_ae_stop(struct hnae3_handle *handle)
|
|
|
{
|
|
|
+ struct hnae3_knic_private_info *kinfo = &handle->kinfo;
|
|
|
struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
int i, queue_id;
|
|
|
|
|
|
set_bit(HCLGEVF_STATE_DOWN, &hdev->state);
|
|
|
|
|
|
- for (i = 0; i < hdev->num_tqps; i++) {
|
|
|
+ for (i = 0; i < kinfo->num_tqps; i++) {
|
|
|
/* Ring disable */
|
|
|
- queue_id = hclgevf_get_queue_id(handle->kinfo.tqp[i]);
|
|
|
+ queue_id = hclgevf_get_queue_id(kinfo->tqp[i]);
|
|
|
if (queue_id < 0) {
|
|
|
dev_warn(&hdev->pdev->dev,
|
|
|
"Get invalid queue id, ignore it\n");
|
|
@@ -1669,6 +1669,9 @@ static int hclgevf_init_client_instance(struct hnae3_client *client,
|
|
|
}
|
|
|
|
|
|
hnae3_set_client_init_flag(client, ae_dev, 1);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return -EINVAL;
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
@@ -2008,6 +2011,14 @@ void hclgevf_update_speed_duplex(struct hclgevf_dev *hdev, u32 speed,
|
|
|
hdev->hw.mac.duplex = duplex;
|
|
|
}
|
|
|
|
|
|
+static void hclgevf_get_media_type(struct hnae3_handle *handle,
|
|
|
+ u8 *media_type)
|
|
|
+{
|
|
|
+ struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle);
|
|
|
+ if (media_type)
|
|
|
+ *media_type = hdev->hw.mac.media_type;
|
|
|
+}
|
|
|
+
|
|
|
static const struct hnae3_ae_ops hclgevf_ops = {
|
|
|
.init_ae_dev = hclgevf_init_ae_dev,
|
|
|
.uninit_ae_dev = hclgevf_uninit_ae_dev,
|
|
@@ -2045,6 +2056,7 @@ static const struct hnae3_ae_ops hclgevf_ops = {
|
|
|
.get_tqps_and_rss_info = hclgevf_get_tqps_and_rss_info,
|
|
|
.get_status = hclgevf_get_status,
|
|
|
.get_ksettings_an_result = hclgevf_get_ksettings_an_result,
|
|
|
+ .get_media_type = hclgevf_get_media_type,
|
|
|
};
|
|
|
|
|
|
static struct hnae3_ae_algo ae_algovf = {
|