From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v4 28/41] net/dpaa: add support for link status update Date: Mon, 18 Sep 2017 15:56:25 +0100 Message-ID: <3c4802aa-e86b-9a16-0f94-707c3297f48e@intel.com> References: <20170823141213.25476-1-shreyansh.jain@nxp.com> <20170909112132.13936-1-shreyansh.jain@nxp.com> <20170909112132.13936-29-shreyansh.jain@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: hemant.agrawal@nxp.com To: Shreyansh Jain , dev@dpdk.org Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 804E31B1A0 for ; Mon, 18 Sep 2017 16:56:28 +0200 (CEST) In-Reply-To: <20170909112132.13936-29-shreyansh.jain@nxp.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 9/9/2017 12:21 PM, Shreyansh Jain wrote: > Signed-off-by: Hemant Agrawal > Signed-off-by: Shreyansh Jain <...> > +static int dpaa_eth_link_update(struct rte_eth_dev *dev, > + int wait_to_complete __rte_unused) > +{ > + struct dpaa_if *dpaa_intf = dev->data->dev_private; > + struct rte_eth_link *link = &dev->data->dev_link; > + > + PMD_INIT_FUNC_TRACE(); > + > + if (dpaa_intf->fif->mac_type == fman_mac_1g) > + link->link_speed = 1000; > + else if (dpaa_intf->fif->mac_type == fman_mac_10g) > + link->link_speed = 10000; > + else > + DPAA_PMD_ERR("invalid link_speed: %s, %d", > + dpaa_intf->name, dpaa_intf->fif->mac_type); > + > + link->link_status = dpaa_intf->valid; > + link->link_duplex = ETH_LINK_FULL_DUPLEX; > + link->link_autoneg = ETH_LINK_AUTONEG; Shouldn't this function go and get link information from hardware? > + return 0; > +} > + > static > int dpaa_eth_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx, > uint16_t nb_desc __rte_unused, > @@ -216,6 +238,22 @@ static void dpaa_eth_tx_queue_release(void *txq __rte_unused) > PMD_INIT_FUNC_TRACE(); > } > > +static int dpaa_link_down(struct rte_eth_dev *dev) > +{ > + PMD_INIT_FUNC_TRACE(); > + > + dpaa_eth_dev_stop(dev); Drivers tend to do revers, make link down on device stop. Just to double check if stop() is intended for link down. > + return 0; > +} > + > +static int dpaa_link_up(struct rte_eth_dev *dev) > +{ > + PMD_INIT_FUNC_TRACE(); > + > + dpaa_eth_dev_start(dev); > + return 0; > +} <...>