RE: [PATCH net-next v2 5/6] dpaa_eth: change DMA device

2019-10-22 Thread Madalin-cristian Bucur
> -Original Message- > From: Jakub Kicinski > Sent: Wednesday, October 23, 2019 12:15 AM > To: Madalin-cristian Bucur > Cc: da...@davemloft.net; netdev@vger.kernel.org; Roy Pledge > ; Laurentiu Tudor > Subject: Re: [PATCH net-next v2 5/6] dpaa_eth: change DMA devic

RE: [PATCH net-next 5/6] dpaa_eth: change DMA device

2019-10-22 Thread Madalin-cristian Bucur
> -Original Message- > From: Laurentiu Tudor > Sent: Tuesday, October 22, 2019 1:35 PM > To: Madalin-cristian Bucur ; da...@davemloft.net; > netdev@vger.kernel.org > Cc: Roy Pledge > Subject: Re: [PATCH net-next 5/6] dpaa_eth: change DMA device > > >

RE: [PATCH net-next 5/6] dpaa_eth: change DMA device

2019-10-22 Thread Madalin-cristian Bucur
> -Original Message- > From: Laurentiu Tudor > Sent: Tuesday, October 22, 2019 11:50 AM > To: Madalin-cristian Bucur ; da...@davemloft.net; > netdev@vger.kernel.org > Cc: Roy Pledge > Subject: Re: [PATCH net-next 5/6] dpaa_eth: change DMA device > > Hell

RE: [PATCH net-next 5/6] dpaa_eth: change DMA device

2019-10-21 Thread Madalin-cristian Bucur
> -Original Message- > From: Jakub Kicinski > Sent: Tuesday, October 22, 2019 7:23 AM > To: Madalin-cristian Bucur > Cc: da...@davemloft.net; netdev@vger.kernel.org; Roy Pledge > ; Laurentiu Tudor > Subject: Re: [PATCH net-next 5/6] dpaa_eth: change DMA device >

RE: [PATCH net-next 0/6] DPAA Ethernet changes

2019-10-21 Thread Madalin-cristian Bucur
> -Original Message- > From: Jakub Kicinski > Sent: Tuesday, October 22, 2019 7:26 AM > To: Madalin-cristian Bucur > Cc: da...@davemloft.net; netdev@vger.kernel.org; Roy Pledge > ; Laurentiu Tudor > Subject: Re: [PATCH net-next 0/6] DPAA Ethernet changes > >

[PATCH net-next 3/6] dpaa_eth: remove redundant code

2019-10-21 Thread Madalin-cristian Bucur
Condition was previously checked, removing duplicate code. Signed-off-by: Madalin Bucur --- drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c index

[PATCH net-next 1/6] fsl/fman: don't touch liodn base regs reserved on non-PAMU SoCs

2019-10-21 Thread Madalin-cristian Bucur
From: Laurentiu Tudor The liodn base registers are specific to PAMU based NXP systems and are reserved on SMMU based ones. Don't access them unless PAMU is compiled in. Signed-off-by: Laurentiu Tudor Signed-off-by: Madalin Bucur --- drivers/net/ethernet/freescale/fman/fman.c | 6 +- 1 fil

[PATCH net-next 0/6] DPAA Ethernet changes

2019-10-21 Thread Madalin-cristian Bucur
Here's a series of changes for the DPAA Ethernet, addressing minor or unapparent issues in the codebase, adding probe ordering based on a recently added DPAA QMan API, removing some redundant code. Laurentiu Tudor (3): fsl/fman: don't touch liodn base regs reserved on non-PAMU SoCs dpaa_eth: d

[PATCH net-next 2/6] dpaa_eth: defer probing after qbman

2019-10-21 Thread Madalin-cristian Bucur
From: Laurentiu Tudor If the DPAA 1 Ethernet driver gets probed before the QBMan driver it will cause a boot crash. Add predictability in the probing order by deferring the Ethernet driver probe after QBMan and portals by using the recently introduced QBMan APIs. Signed-off-by: Laurentiu Tudor

[PATCH net-next 5/6] dpaa_eth: change DMA device

2019-10-21 Thread Madalin-cristian Bucur
The DPAA Ethernet driver is using the FMan MAC as the device for DMA mapping. This is not actually correct, as the real DMA device is the FMan port (the FMan Rx port for reception and the FMan Tx port for transmission). Changing the device used for DMA mapping to the Fman Rx and Tx port devices. S

[PATCH net-next 4/6] fsl/fman: add API to get the device behind a fman port

2019-10-21 Thread Madalin-cristian Bucur
From: Laurentiu Tudor Add an API that retrieves the 'struct device' that the specified FMan port probed against. The new API will be used in a subsequent patch that corrects the DMA devices used by the dpaa_eth driver. Signed-off-by: Laurentiu Tudor Signed-off-by: Madalin Bucur --- drivers/ne

[PATCH net-next 6/6] fsl/fman: remove unused struct member

2019-10-21 Thread Madalin-cristian Bucur
Remove unused struct member second_largest_buf_size. Also, an out of bounds access would have occurred in the removed code if there was only one buffer pool in use. Signed-off-by: Madalin Bucur --- drivers/net/ethernet/freescale/fman/fman_port.c | 3 --- 1 file changed, 3 deletions(-) diff --gi

RE: Fw: [Bug 205215] New: Amiga X5000 Cyrus board DPAA network driver issue

2019-10-18 Thread Madalin-cristian Bucur
> -Original Message- > From: Maxim Uvarov > Sent: Friday, October 18, 2019 11:42 AM > To: Stephen Hemminger > Cc: Madalin-cristian Bucur ; netdev > > Subject: Re: Fw: [Bug 205215] New: Amiga X5000 Cyrus board DPAA network > driver issue > > чт, 17

patch inclusion in lts trees

2019-08-19 Thread Madalin-cristian Bucur
Hi Florian, Steffen, the fix below, addressing a problem from kernel v4.9, did not get picked up in the lts trees, is there a reason for this? Are there more such fixes that were left out? Thank you, Madalin commit 7a474c36586f4277f930ab7e6865c97e44dfc3bc Author: Florian Westphal Date: Fri Jan

[PATCH v2] net: phy: aquantia: readd XGMII support for AQR107

2019-05-15 Thread Madalin-cristian Bucur
XGMII interface mode no longer works on AQR107 after the recent changes, adding back support. Fixes: 570c8a7d5303 ("net: phy: aquantia: check for supported interface modes in config_init") Signed-off-by: Madalin Bucur --- drivers/net/phy/aquantia_main.c | 1 + 1 file changed, 1 insertion(+) d

FW: [PATCH] net: phy: aquantia: readd XGMII support for AQR107

2019-05-15 Thread Madalin-cristian Bucur
XGMII interface mode no longer works on AQR107 after the recent changes, adding back support. Signed-off-by: Madalin Bucur --- drivers/net/phy/aquantia_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/phy/aquantia_main.c b/drivers/net/phy/aquantia_main.c index eed4fe3d871f.

RE: Explaining the XDP page-requirement (Was: [PATCH v2 net-next 0/8] dpaa2-eth: Introduce XDP support)

2019-01-09 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org On > Behalf Of Jesper Dangaard Brouer > Sent: Friday, December 21, 2018 5:31 PM > To: Ioana Ciocoi Radulescu > Cc: Ilias Apalodimas ; > netdev@vger.kernel.org; da...@davemloft.net; Ioana Ciornei > ; dsah...@gmail.com; Camelia Alexa

RE: [PATCH] fsl/fman: avoid sleeping in atomic context while adding an address

2019-01-04 Thread Madalin-cristian Bucur
> -Original Message- > From: Yi Wang > Sent: Friday, January 4, 2019 7:50 AM > To: Madalin-cristian Bucur > Cc: da...@davemloft.net; netdev@vger.kernel.org; linux- > ker...@vger.kernel.org; xue.zhih...@zte.com.cn; wang.y...@zte.com.cn; > huang.jun...@zte.com.cn; Ju

RE: [PATCH] fsl/fman: Use GFP_ATOMIC in {memac,tgec}_add_hash_mac_address()

2019-01-02 Thread Madalin-cristian Bucur
> -Original Message- > From: Scott Wood > Sent: Friday, December 28, 2018 2:29 AM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; linuxppc-...@lists.ozlabs.org > Subject: [PATCH] fsl/fman: Use GFP_ATOMIC in > {memac,tgec}_add_hash_mac_address() > >

RE: [PATCH] dpaa_eth: Add dpaa_change_carrier()

2018-12-07 Thread Madalin-cristian Bucur
> -Original Message- > From: Joakim Tjernlund > Sent: Thursday, December 6, 2018 5:32 PM > To: netdev @ vger . kernel . org ; Madalin- > cristian Bucur > Cc: jo...@infinera.com > Subject: [PATCH] dpaa_eth: Add dpaa_change_carrier() > > This allows to control

RE: [PATCH v2 2/2] dpaa_eth: add ethtool coalesce control

2018-11-18 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller > Sent: Saturday, November 17, 2018 5:42 AM > To: Madalin-cristian Bucur > Subject: Re: [PATCH v2 2/2] dpaa_eth: add ethtool coalesce control > > From: Madalin Bucur > Date: Tue, 13 Nov 2018 18:29:51 +0200 > >

RE: [PATCH v2 00/22] SMMU enablement for NXP LS1043A and LS1046A

2018-09-27 Thread Madalin-cristian Bucur
y Pledge ; Madalin-cristian Bucur > ; da...@davemloft.net; shawn...@kernel.org; Leo Li > ; robin.mur...@arm.com; Bharat Bhushan > ; Laurentiu Tudor > Subject: [PATCH v2 00/22] SMMU enablement for NXP LS1043A and LS1046A > > From: Laurentiu Tudor > > This patch series add

RE: [PATCH] fsl/fman: remove unnecessary set_dma_ops() call and HAS_DMA dependency

2018-03-23 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Thursday, March 22, 2018 8:32 PM > To: Madalin-cristian Bucur > Cc: geert.uytterhoe...@gmail.com; netdev@vger.kernel.org; linux- > ker...@vger.kernel.org > Subject: Re: [PATCH] fsl/fma

RE: [PATCH v2 10/21] lightnvm: Remove depends on HAS_DMA in case of platform dependency

2018-03-18 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of Geert Uytterhoeven > Sent: Friday, March 16, 2018 3:52 PM > To: Christoph Hellwig ; Marek Szyprowski > ; Robin Murphy ; > Felipe Balbi ; Greg Kroah-Hartman > ; James E . J . Bottom

RE: [PATCH 0/5] DPAA Ethernet fixes

2018-03-15 Thread Madalin-cristian Bucur
> -Original Message- > From: Joakim Tjernlund [mailto:joakim.tjernl...@infinera.com] > Sent: Wednesday, March 14, 2018 8:43 PM > To: da...@davemloft.net; Madalin-cristian Bucur > > > On Wed, 2018-03-14 at 08:37 -0500, Madalin Bucur wrote: > > Hi, > >

RE: [PATCH] fsl/fman: avoid sleeping in atomic context while adding an address

2018-03-05 Thread Madalin-cristian Bucur
> -Original Message- > From: Denis Kirjanov [mailto:k...@linux-powerpc.org] > Sent: Sunday, March 4, 2018 8:48 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; Denis Kirjanov > Subject: [PATCH] fsl/fman: avoid sleeping in atomic context while a

RE: [PATCH net-next] dpaa_eth: fix pause capability advertisement logic

2018-02-19 Thread Madalin-cristian Bucur
> -Original Message- > From: Jake Moroni [mailto:m...@jakemoroni.com] > Sent: Sunday, February 18, 2018 10:26 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; Jake Moroni > Subject: [PATCH net-next] dpaa_eth: fix pause capability advertisemen

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-17 Thread Madalin-cristian Bucur
> -Original Message- > From: Madalin-cristian Bucur > Sent: Wednesday, January 17, 2018 4:25 PM > To: David S . Miller > Cc: linuxppc-...@lists.ozlabs.org; netdev@vger.kernel.org; > madskate...@gmail.com; 'Madalin-cristian Bucur' ; > Andrew Lunn ; Joakim T

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-17 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of Madalin-cristian Bucur > Sent: Wednesday, January 17, 2018 4:16 PM > To: Andrew Lunn ; Joakim Tjernlund > > Cc: linuxppc-...@lists.ozlabs.org; netdev@vger.k

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-17 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Wednesday, January 17, 2018 3:44 PM > To: Joakim Tjernlund > Subject: Re: DPAA Ethernet traffice troubles with Linux kernel > > > That doesn't work really, having users to hit the bug, debug it, fix it > and then > >

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-17 Thread Madalin-cristian Bucur
> -Original Message- > From: Joakim Tjernlund [mailto:joakim.tjernl...@infinera.com] > Sent: Tuesday, January 16, 2018 7:58 PM > To: and...@lunn.ch > Subject: Re: DPAA Ethernet traffice troubles with Linux kernel > > On Thu, 1970-01-01 at 00:00 +, Andrew Lunn wrote: > > > > Hi Joakim >

RE: DPAA Ethernet problems with mainstream Linux kernels

2018-01-16 Thread Madalin-cristian Bucur
> -Original Message- > From: Darren Stevens [mailto:dar...@stevens-zone.net] > Sent: Tuesday, January 16, 2018 12:40 AM > To: Madalin-cristian Bucur > Cc: Jamie Krueger ; linuxppc- > d...@lists.ozlabs.org; netdev@vger.kernel.org > Subject: Re: DPAA Ethernet problems

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-16 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of Andrew Lunn > Sent: Tuesday, January 16, 2018 5:04 PM > To: mad skateman > Cc: Christian Zigotzky ; Joakim Tjernlund > ; linuxppc-...@lists.ozlabs.org; Mada

RE: DPAA Ethernet traffice troubles with Linux kernel

2018-01-15 Thread Madalin-cristian Bucur
> -Original Message- > From: Linuxppc-dev [mailto:linuxppc-dev- > bounces+madalin.bucur=nxp@lists.ozlabs.org] On Behalf Of mad skateman > Sent: Wednesday, January 10, 2018 10:39 PM > To: linuxppc-...@lists.ozlabs.org > Subject: DPAA Ethernet traffice troubles with Linux kernel > > Hi l

RE: DPAA Ethernet problems with mainstream Linux kernels

2018-01-15 Thread Madalin-cristian Bucur
> -Original Message- > From: Jamie Krueger [mailto:ja...@bitbybitsoftwaregroup.com] > Sent: Friday, January 12, 2018 6:36 PM > To: Madalin-cristian Bucur ; linuxppc- > d...@lists.ozlabs.org > Cc: netdev@vger.kernel.org > Subject: Re: DPAA Ethernet problems with mai

RE: [PATCH net-next] net: dpaa: change while() to if() in dpaa_fq_setup()

2018-01-15 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of yuan linyu > Sent: Saturday, January 13, 2018 11:25 AM > To: netdev@vger.kernel.org > Cc: David S . Miller ; yuan linyu > > Subject: Re: [PATCH net-next] net: dpaa: change while()

RE: DPAA Ethernet problems with mainstream Linux kernels

2018-01-12 Thread Madalin-cristian Bucur
> -Original Message- > From: Linuxppc-dev [mailto:linuxppc-dev- > bounces+madalin.bucur=nxp@lists.ozlabs.org] On Behalf Of Jamie Krueger > Sent: Wednesday, January 10, 2018 5:57 PM > To: linuxppc-...@lists.ozlabs.org > Subject: DPAA Ethernet problems with mainstream Linux kernels > > H

RE: [PATCH net] of_mdio: avoid MDIO bus removal when a PHY is missing

2018-01-08 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Friday, January 05, 2018 5:13 PM > To: Madalin-cristian Bucur > Subject: Re: [PATCH net] of_mdio: avoid MDIO bus removal when a PHY is > missing > > On Fri, Jan 05, 2018 at 11:36:14AM +0

RE: [RFC] Support for SGMII 2500

2017-11-28 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Tuesday, November 28, 2017 4:13 PM > To: Madalin-cristian Bucur > Subject: Re: [RFC] Support for SGMII 2500 > > > Hi Andrew, > > > > Bhaskar is working on enabling a PFE [1] M

RE: [RFC] Support for SGMII 2500

2017-11-28 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Tuesday, November 28, 2017 3:30 PM > Subject: Re: [RFC] Support for SGMII 2500 > > On Tue, Nov 28, 2017 at 07:25:48AM +, Madalin-cristian Bucur wrote: > > Hi, > > > > There is

[RFC] Support for SGMII 2500

2017-11-27 Thread Madalin-cristian Bucur
Hi, There is a disconnect between the SGMII 2500 support in u-boot and Linux. Bhaskar is trying to add support for a SGMII interface working at 2.5Gbps by using the PHY connection type "sgmii-2500" in the device tree: phy-connection-type = "sgmii-2500"; This is supported by u-boot, in in

RE: [PATCH 0/4] fsl/fman: Fix some error handling code in mac_probe

2017-11-06 Thread Madalin-cristian Bucur
Hi Christophe, I'll review and test your fixes. Thank you! Madalin > -Original Message- > From: Christophe JAILLET [mailto:christophe.jail...@wanadoo.fr] > Sent: Monday, November 06, 2017 11:53 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; linux-ke

RE: [PATCH net-next] net: dpaa: remove init which already done in per-cpu allocation

2017-10-30 Thread Madalin-cristian Bucur
t; > > Your particular change removes redundancy, it's fine. Having the memset > documented > somewhere would prevent similar redundancy from being added in the future. > > > > -Original Message- > > > From: Madalin-cristian Bucur [mailto:ma

RE: [PATCH net-next] net: dpaa: remove init which already done in per-cpu allocation

2017-10-30 Thread Madalin-cristian Bucur
d prevent similar redundancy from being added in the future. > > -Original Message- > > From: Madalin-cristian Bucur [mailto:madalin.bu...@nxp.com] > > Sent: Monday, October 30, 2017 1:56 PM > > To: Yuan, Linyu (NSB - CN/Shanghai); yuan linyu; netdev@vger.kernel.org;

RE: [PATCH net-next] net: dpaa: remove init which already done in per-cpu allocation

2017-10-29 Thread Madalin-cristian Bucur
ay, October 30, 2017 7:21 AM > To: Madalin-cristian Bucur ; yuan linyu > ; netdev@vger.kernel.org > Cc: David S . Miller > Subject: RE: [PATCH net-next] net: dpaa: remove init which already done in > per-cpu allocation > > http://elixir.free-electrons.com/linux/latest/source/mm/

RE: [PATCH net-next] net: dpaa: remove init which already done in per-cpu allocation

2017-10-29 Thread Madalin-cristian Bucur
Is the memset part documented? Can you point to the specific comment & code that does it? Thanks > -Original Message- > From: Yuan, Linyu (NSB - CN/Shanghai) [mailto:linyu.y...@nokia-sbell.com] > Sent: Monday, October 30, 2017 7:12 AM > To: Madalin-cristian Bucur ; yuan

RE: [PATCH net-next] net: dpaa: remove init which already done in per-cpu allocation

2017-10-29 Thread Madalin-cristian Bucur
Hi Yuan, Can you please give more details about this change you are proposing? Regards, Madalin > -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of yuan linyu > Sent: Sunday, October 29, 2017 3:49 AM > To: netdev@vger.kernel.org

RE: [PATCH v2 2/5] dpaa_eth: move of_phy_connect() to the eth driver

2017-10-15 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Sunday, October 15, 2017 9:34 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; da...@davemloft.net; f.faine...@gmail.com; > vivien.dide...@savoirfairelinux.com; jun...@outlook

RE: [PATCH v2 5/5] fsl/fman: add dpaa in module names

2017-10-15 Thread Madalin-cristian Bucur
> -Original Message- > From: Florian Fainelli [mailto:f.faine...@gmail.com] > Sent: Friday, October 13, 2017 8:39 PM > To: Madalin-cristian Bucur ; > netdev@vger.kernel.org; da...@davemloft.net > Cc: and...@lunn.ch; vivien.dide...@savoirfairelinux.com; > jun...@o

RE: [PATCH 3/4] dpaa_eth: change device used

2017-10-12 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Thursday, October 12, 2017 12:02 AM > To: Madalin-cristian Bucur > Subject: Re: [PATCH 3/4] dpaa_eth: change device used > > From: Madalin Bucur > Date: Tue, 10 Oct 2017 17:10:17

RE: [PATCH] fsl/fman: remove of_node

2017-10-10 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of Madalin-cristian Bucur > Sent: Wednesday, October 04, 2017 12:54 PM > To: David Miller > Subject: RE: [PATCH] fsl/fman: remove of_node > > > -Ori

RE: [PATCH] fsl/fman: remove of_node

2017-10-04 Thread Madalin-cristian Bucur
> -Original Message- > From: Andrew Lunn [mailto:and...@lunn.ch] > Sent: Tuesday, October 03, 2017 4:01 PM > To: Madalin-cristian Bucur > Cc: David Miller ; netdev@vger.kernel.org; > f.faine...@gmail.com; linux-ker...@vger.kernel.org > Subject: Re: [PATCH] fsl/fman: r

RE: [PATCH] fsl/fman: remove of_node

2017-10-04 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Wednesday, October 04, 2017 7:44 AM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; and...@lunn.ch; f.faine...@gmail.com; linux- > ker...@vger.kernel.org > Subject: Re: [PA

RE: [PATCH] fsl/fman: remove of_node

2017-10-03 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Tuesday, October 03, 2017 2:05 AM > To: Madalin-cristian Bucur > Subject: Re: [PATCH] fsl/fman: remove of_node > > From: Madalin Bucur > Date: Mon, 2 Oct 2017 13:31:37 +0300 &g

RE: [PATCH] fsl/fman: make arrays port_ids static, reduces object code size

2017-09-07 Thread Madalin-cristian Bucur
> -Original Message- > From: Colin King [mailto:colin.k...@canonical.com] > Sent: Thursday, August 31, 2017 4:25 PM > Subject: [PATCH] fsl/fman: make arrays port_ids static, reduces object > code size > > From: Colin Ian King > > Don't populate the arrays port_ids on the stack, instead m

RE: [PATCH v3 0/7] Add RSS to DPAA 1.x Ethernet driver

2017-08-24 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Subject: Re: [PATCH v3 0/7] Add RSS to DPAA 1.x Ethernet driver > > From: David Miller > Date: Thu, 24 Aug 2017 09:42:20 -0700 (PDT) > > > From: Madalin Bucur > > Date: Thu, 24 Aug 2017 10:28:21 +0300 > > > >> This

RE: [PATCH v2 1/6] fsl/fman: enable FMan Keygen

2017-08-22 Thread Madalin-cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Wednesday, August 23, 2017 7:47 AM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; linuxppc-...@lists.ozlabs.org; linux- > ker...@vger.kernel.org > Subject: Re: [PATCH v2 1/6]

RE: [PATCH v2 1/6] fsl/fman: enable FMan Keygen

2017-08-22 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of David Miller > Sent: Wednesday, August 23, 2017 12:35 AM > Subject: Re: [PATCH v2 1/6] fsl/fman: enable FMan Keygen > > From: Madalin Bucur > Date: Tue, 22 Aug 2017 20:31:01 +030

RE: [PATCH net-next] fsl/fman: implement several errata workarounds

2017-08-11 Thread Madalin-cristian Bucur
> -Original Message- > From: Florinel Iordache [mailto:florinel.iorda...@nxp.com] > Subject: [PATCH net-next] fsl/fman: implement several errata workarounds > > Implemented workarounds for the following dTSEC Erratum: > A002, A004, A0012, A0014, A004839 on several operations > that involve

RE: [PATCH] dpaa_eth: use correct device for DMA mapping API

2017-07-11 Thread Madalin-cristian Bucur
> -Original Message- > From: arndbergm...@gmail.com [mailto:arndbergm...@gmail.com] On Behalf Of > Arnd Bergmann > Subject: Re: [PATCH] dpaa_eth: use correct device for DMA mapping API > > On Tue, Jul 11, 2017 at 10:50 AM, Madalin-cristian Bucur > wrote: > >

RE: [PATCH] dpaa_eth: use correct device for DMA mapping API

2017-07-11 Thread Madalin-cristian Bucur
> -Original Message- > From: Arnd Bergmann [mailto:a...@arndb.de] > Sent: Monday, July 10, 2017 6:14 PM > Subject: [PATCH] dpaa_eth: use correct device for DMA mapping API > > Geert Uytterhoeven ran into a build error without CONFIG_HAS_DMA, > as a result of the driver calling set_dma_ops(

RE: [PATCH NET V6 1/2] net: phy: Add phy loopback support in net phy framework

2017-06-27 Thread Madalin-cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] > On Behalf Of Lin Yun Sheng > Sent: Tuesday, June 27, 2017 2:01 PM > To: da...@davemloft.net; and...@lunn.ch; f.faine...@gmail.com > Cc: huangda...@hisilicon.com; xuw...@hisilicon.com; > liguo..

RE: [PATCH 1/2] fsl/fman: propagate dma_ops

2017-06-26 Thread Madalin-cristian Bucur
> -Original Message- > From: geert.uytterhoe...@gmail.com [mailto:geert.uytterhoe...@gmail.com] > On Behalf Of Geert Uytterhoeven > Sent: Monday, June 26, 2017 7:24 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; David S. Miller ; > linuxppc-...@lists.

RE: [PATCH] fsl/fman: add dependency on HAS_DMA

2017-06-26 Thread Madalin-cristian Bucur
> -Original Message- > From: geert.uytterhoe...@gmail.com [mailto:geert.uytterhoe...@gmail.com] > On Behalf Of Geert Uytterhoeven > Sent: Monday, June 26, 2017 7:17 PM > To: Fabio Estevam > Cc: Madalin-cristian Bucur ; > netdev@vger.kernel.org; David S. M

RE: [PATCH] fsl/fman: add dependency on HAS_DMA

2017-06-26 Thread Madalin-cristian Bucur
> -Original Message- > From: Fabio Estevam [mailto:feste...@gmail.com] > Sent: Monday, June 26, 2017 6:21 PM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; David S. Miller ; Geert > Uytterhoeven ; linuxppc-...@lists.ozlabs.org; linux- > kernel > Subje

RE: [PATCH 1/2] fsl/fman: propagate dma_ops

2017-06-26 Thread Madalin-cristian Bucur
> -Original Message- > From: geert.uytterhoe...@gmail.com [mailto:geert.uytterhoe...@gmail.com] > On Behalf Of Geert Uytterhoeven > Sent: Monday, June 26, 2017 10:49 AM > To: Madalin-cristian Bucur > Cc: netdev@vger.kernel.org; David S. Miller ; > linuxppc-...@lists.

RE: [PATCH] dt-bindings: net: move FMan binding

2017-05-25 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, May 15, 2017 5:31 PM > Subject: Re: [PATCH] dt-bindings: net: move FMan binding > > From: Madalin Bucur > Date: Mon, 15 May 2017 16:36:38 +0300 > > > Besides the PPC SoCs, the QorIQ DPAA FMan is also p

RE: [PATCH v3 1/2] net: phy: Fix PHY AN done state machine for interrupt driven PHYs

2017-03-30 Thread Madalin-Cristian Bucur
On March 27, 2017 2:59 PM, Roger Quadros wrote: > The Ethernet link on an interrupt driven PHY was not coming up if the > Ethernet cable was plugged before the Ethernet interface was brought up. > > The PHY state machine seems to be stuck from RUNNING to AN state > with no new interrupts from the

RE: [PATCH 0/9] QorIQ DPAA 1 updates

2017-02-22 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Tuesday, February 21, 2017 8:20 PM > > From: Madalin Bucur > Date: Tue, 21 Feb 2017 13:52:45 +0200 > > > This patch set introduces a series of fixes and features to the DPAA 1 > > drivers. Besides activating h

Fixed link for 10G

2017-01-06 Thread Madalin-Cristian Bucur
Hi Florian, I'm trying to add a fixed-link property that declares 10G speed for a XGMII PHY and I'm encountering some issues as the fixed link infrastructure does not seem to support this speed. I'm using this device tree snippet (using the legacy format, but it should not matter): ether

RE: [PATCH net] tcp: add a missing barrier in tcp_tasklet_func()

2016-12-21 Thread Madalin-Cristian Bucur
> -Original Message- > From: Eric Dumazet [mailto:eric.duma...@gmail.com] > Sent: Wednesday, December 21, 2016 3:43 PM > > Madalin reported crashes happening in tcp_tasklet_func() on powerpc64 > > Before TSQ_QUEUED bit is cleared, we must ensure the changes done > by list_del(&tp->tsq_nod

RE: [upstream-release] [PATCH net v3 2/4] powerpc: fsl/fman: remove fsl, fman from of_device_ids[]

2016-12-19 Thread Madalin-Cristian Bucur
> From: Scott Wood [mailto:o...@buserror.net] > Sent: Monday, December 19, 2016 9:46 PM > > On Mon, 2016-12-19 at 18:13 +0200, Madalin Bucur wrote: > > The fsl/fman drivers will use of_platform_populate() on all > > supported platforms. Call of_platform_populate() to probe the > > FMan sub-nodes.

RE: [PATCH net v2 2/5] powerpc: remove fsl,fman from of_device_ids[]

2016-12-19 Thread Madalin-Cristian Bucur
> From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, December 19, 2016 5:37 PM > > From: Madalin Bucur > Date: Mon, 19 Dec 2016 11:22:20 +0200 > > > The fsl/fman drivers will use of_platform_populate() on all > > supported platforms. > > > > Signed-off-by: Madalin Bucur > > It see

RE: [upstream-release] [PATCH net 2/4] fsl/fman: arm: call of_platform_populate() for arm64 platfrom

2016-12-16 Thread Madalin-Cristian Bucur
> From: Scott Wood > Sent: Thursday, December 15, 2016 8:42 PM > > On 12/15/2016 07:11 AM, Madalin Bucur wrote: > > From: Igal Liberman > > > > Signed-off-by: Igal Liberman > > --- > > drivers/net/ethernet/freescale/fman/fman.c | 10 ++ > > 1 file changed, 10 insertions(+) > > > > diff

RE: [PATCH net] phy: Don't increment MDIO bus refcount unless it's a different owner

2016-12-09 Thread Madalin-Cristian Bucur
> From: netdev-ow...@vger.kernel.org On Behalf Of Florian Fainelli > Sent: Thursday, December 08, 2016 7:54 PM > To: Johan Hovold > On 12/08/2016 09:01 AM, Johan Hovold wrote: > > On Thu, Dec 08, 2016 at 08:47:54AM -0800, Florian Fainelli wrote: > >> On 12/08/2016 08:27 AM, Johan Hovold wrote: > >

RE: [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev reference leak

2016-11-25 Thread Madalin-Cristian Bucur
> -Original Message- > From: Johan Hovold [mailto:jhov...@gmail.com] On Behalf Of Johan Hovold > Sent: Thursday, November 24, 2016 8:22 PM > > Make sure to drop the reference taken by of_phy_find_device() when > looking up a fixed-link phydev during probe. > > Fixes: 57ba4c9b56d8 ("fsl/fm

RE: [patch] fsl/fman: fix a leak in tgec_free()

2016-11-24 Thread Madalin-Cristian Bucur
> -Original Message- > From: Dan Carpenter [mailto:dan.carpen...@oracle.com] > Sent: Thursday, November 24, 2016 1:21 PM > To: Madalin-Cristian Bucur ; Igal Liberman > > Cc: netdev@vger.kernel.org; kernel-janit...@vger.kernel.org > Subject: [patch] fsl/fman: fi

RE: [PATCH net-next v7 03/10] dpaa_eth: add option to use one buffer pool set

2016-11-14 Thread Madalin-Cristian Bucur
> From: David Miller [mailto:da...@davemloft.net] > Sent: Sunday, November 13, 2016 7:46 PM > > From: Madalin Bucur > Date: Fri, 11 Nov 2016 10:20:00 +0200 > > > @@ -8,3 +8,12 @@ menuconfig FSL_DPAA_ETH > > supporting the Freescale QorIQ chips. > > Depends on Freescale Buffer Manager

RE: [PATCH net-next v6 02/10] dpaa_eth: add support for DPAA Ethernet

2016-11-09 Thread Madalin-Cristian Bucur
> From: Madalin-Cristian Bucur > Sent: Monday, November 07, 2016 5:43 PM > > > From: David Miller [mailto:da...@davemloft.net] > > Sent: Thursday, November 03, 2016 9:58 PM > > > > From: Madalin Bucur > > Date: Wed, 2 Nov 2016 22:17:26 +0200 > >

RE: [PATCH net-next v6 02/10] dpaa_eth: add support for DPAA Ethernet

2016-11-07 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, November 07, 2016 5:55 PM > > From: Madalin-Cristian Bucur > Date: Mon, 7 Nov 2016 15:43:26 + > > >> From: David Miller [mailto:da...@davemloft.net] > >> Se

RE: [PATCH net-next v6 02/10] dpaa_eth: add support for DPAA Ethernet

2016-11-07 Thread Madalin-Cristian Bucur
> From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, November 07, 2016 6:40 PM > > From: Madalin-Cristian Bucur > Date: Mon, 7 Nov 2016 16:32:16 + > > >> From: David Miller [mailto:da...@davemloft.net] > >> Sent: Monday, November 07,

RE: [PATCH net-next v6 02/10] dpaa_eth: add support for DPAA Ethernet

2016-11-07 Thread Madalin-Cristian Bucur
> From: David Miller [mailto:da...@davemloft.net] > Sent: Thursday, November 03, 2016 9:58 PM > > From: Madalin Bucur > Date: Wed, 2 Nov 2016 22:17:26 +0200 > > > This introduces the Freescale Data Path Acceleration Architecture > > +static inline size_t bpool_buffer_raw_size(u8 index, u8 cnt) >

RE: [net-next 08/13] fsl/fman: check pcsphy pointer before use

2016-10-05 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Laight [mailto:david.lai...@aculab.com] > Sent: Tuesday, October 04, 2016 5:44 PM > To: Madalin-Cristian Bucur ; > netdev@vger.kernel.org > Cc: linuxdev.baldr...@gmail.com; linuxppc-...@lists.ozlabs.org; > da...@davemloft.net; linux-k

RE: [v9, 6/6] fsl/fman: Add FMan MAC driver

2015-12-09 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > > From: Scott Wood > Date: Tue, 8 Dec 2015 16:44:38 -0600 > > > On Tue, 2015-12-08 at 14:18 -0600, Andy Fleming wrote: > >> On Thu, Dec 3, 2015 at 1:19 AM, wrote: > >> > From: Igal Liberman > >> > > >> > This pat

Re: [net-next v5 0/8] dpaa_eth: Add the Freescale DPAA Ethernet driver

2015-12-07 Thread Madalin-Cristian Bucur
Hi Timur, I've managed somehow to make got send-email to move the From: line in the body instead of the header, probably typed something wrong when asked to confirm the sender. I've resent the series. Regards, Madalin From: Timur Tabi Sent: Saturday, D

RE: [net-next v4 4/8] dpaa_eth: add driver's Tx queue selection

2015-12-03 Thread Madalin-Cristian Bucur
> -Original Message- > From: Wood Scott-B07421 > Sent: Wednesday, December 02, 2015 11:41 PM > > On Mon, 2015-11-02 at 19:31 +0200, Madalin Bucur wrote: > > Allow the selection of the transmission queue based on the CPU id. > > Explain why. I'll add more details in the commit log. This i

RE: [net-next v4 2/8] dpaa_eth: add support for DPAA Ethernet

2015-11-03 Thread Madalin-Cristian Bucur
> -Original Message- > From: Joakim Tjernlund [mailto:joakim.tjernl...@transmode.se] > > On Tue, 2015-11-03 at 09:37 +0000, Madalin-Cristian Bucur wrote: > > > -Original Message- > > > From: Joakim Tjernlund [mailto:joakim.tjernl...@transmode.se] >

RE: [net-next v4 3/8] dpaa_eth: add support for S/G frames

2015-11-03 Thread Madalin-Cristian Bucur
> -Original Message- > From: Joe Perches [mailto:j...@perches.com] > > On Mon, 2015-11-02 at 19:31 +0200, Madalin Bucur wrote: > > Add support for Scater/Gather (S/G) frames. The FMan can place > > the frame content into multiple buffers and provide a S/G Table > > (SGT) into one first buf

RE: [net-next v4 2/8] dpaa_eth: add support for DPAA Ethernet

2015-11-03 Thread Madalin-Cristian Bucur
> -Original Message- > From: Joakim Tjernlund [mailto:joakim.tjernl...@transmode.se] > > On Mon, 2015-11-02 at 19:31 +0200, Madalin Bucur wrote: > > + if (unlikely(fd_status & FM_FD_STAT_RX_ERRORS) != 0) { > > + if (net_ratelimit()) > > + netif_war

RE: [v3 1/8] devres: add devm_alloc_percpu()

2015-10-02 Thread Madalin-Cristian Bucur
devm_free_percpu() into the managed > > interfaces list. > > > > Signed-off-by: Madalin Bucur > > Tested-by: Madalin-Cristian Bucur > > --- > > Documentation/driver-model/devres.txt | 4 +++ > > drivers/base/devres.c | 64 > +++

RE: [net-next:master 1512/1524] net/ipv4/af_inet.c:1486:26: error: 'offt' undeclared

2015-08-31 Thread Madalin-Cristian Bucur
> -Original Message- > From: netdev-ow...@vger.kernel.org [mailto:netdev- > Subject: Re: [net-next:master 1512/1524] net/ipv4/af_inet.c:1486:26: error: > 'offt' undeclared > > From: kbuild test robot > Date: Mon, 31 Aug 2015 13:06:10 +0800 > > >net/ipv4/af_inet.c: In function 'snmp_g

RE: [v2] net: phy: fixed: propagate fixed link values to struct

2015-08-26 Thread Madalin-Cristian Bucur
> -Original Message- > From: Stas Sergeev [mailto:s...@list.ru] > Sent: Wednesday, August 26, 2015 6:51 PM > To: Bucur Madalin-Cristian-B32716 ; > f.faine...@gmail.com > Cc: netdev@vger.kernel.org; linux-ker...@vger.kernel.org; Liberman Igal- > B31950 > Subject: Re: [v2] net: phy: fixed: p

RE: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code

2015-08-12 Thread Madalin-Cristian Bucur
> -Original Message- > From: Stas Sergeev [mailto:s...@list.ru] > But have you looked into the patch I pointed previously? > https://lkml.org/lkml/2015/7/20/711 > You code will likely clash with it because my patch extends > of_phy_register_fixed_link(). > I admin I failed to grasp the

RE: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code

2015-08-12 Thread Madalin-Cristian Bucur
> -Original Message- > From: Stas Sergeev [mailto:s...@list.ru] > > 12.08.2015 16:26, Madalin-Cristian Bucur пишет: > >>> I've tried to make the smallest changes that allow me to retrieve those > >>> without modifying existing API. > >>>

RE: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code

2015-08-12 Thread Madalin-Cristian Bucur
> -Original Message- > From: Stas Sergeev [mailto:s...@list.ru] > > 11.08.2015 19:33, Madalin-Cristian Bucur пишет: > > + Joakim, Shaohui > > > >> -Original Message- > >> From: Stas Sergeev [mailto:s...@list.ru] > >> > >>

RE: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code

2015-08-11 Thread Madalin-Cristian Bucur
+ Joakim, Shaohui > -Original Message- > From: Stas Sergeev [mailto:s...@list.ru] > > 08.08.2015 20:32, Florian Fainelli пишет: > > CC'ing Stas, > Hi. > > > Le 08/05/15 07:42, Madalin Bucur a écrit : > >> The FMan MAC configuration code needs the speed and duplex > information > >> for f

RE: [v2 8/9] dpaa_eth: add debugfs entries

2015-08-11 Thread Madalin-Cristian Bucur
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > > From: Madalin Bucur > Date: Wed, 5 Aug 2015 18:41:28 +0300 > > > Export per CPU counters through debugfs. > > > > Signed-off-by: Madalin Bucur > > This is absolutely inappropriate. > > You can export these just

RE: [PATCH 03/10] dpaa_eth: add configurable bpool thresholds

2015-07-27 Thread Madalin-Cristian Bucur
B07421; > Liberman Igal-B31950; p...@mindchasers.com; pebo...@tiscali.nl; > joakim.tjernl...@transmode.se > Subject: Re: [PATCH 03/10] dpaa_eth: add configurable bpool thresholds > > From: Madalin-Cristian Bucur > Date: Fri, 24 Jul 2015 15:49:39 + > > >> -Origin

RE: [PATCH 03/10] dpaa_eth: add configurable bpool thresholds

2015-07-24 Thread Madalin-Cristian Bucur
> -Original Message- > From: Joe Perches [mailto:j...@perches.com] > On Wed, 2015-07-22 at 19:16 +0300, Madalin Bucur wrote: > > Allow the user to tweak the refill threshold and the total number > > of buffers in the buffer pool. The provided values are for one CPU. > > Any value in making

RE: [PATCH 02/10] dpaa_eth: add support for DPAA Ethernet

2015-07-24 Thread Madalin-Cristian Bucur
> -Original Message- > From: Joe Perches [mailto:j...@perches.com] > On Wed, 2015-07-22 at 19:16 +0300, Madalin Bucur wrote: > > This introduces the Freescale Data Path Acceleration Architecture > > (DPAA) Ethernet driver (dpaa_eth) that builds upon the DPAA QMan, > > BMan, PAMU and FMan dr

  1   2   >