Re: [PATCH v2 net-next 2/2] net: mvpp2: support multiple comphy lanes

2019-08-09 Thread Matt Pelland
On Fri, Aug 09, 2019 at 10:32:50AM +0200, Antoine Tenart wrote: > Hello Matt, > > On Thu, Aug 08, 2019 at 07:06:06PM -0400, Matt Pelland wrote: > > > > static void mvpp2_port_enable(struct mvpp2_port *port) > > @@ -3389,7 +3412,9 @@ static void mvpp2_stop_

[PATCH v2 net-next 2/2] net: mvpp2: support multiple comphy lanes

2019-08-08 Thread Matt Pelland
at the appropriate times when either RXAUI or XAUI is in use. Signed-off-by: Matt Pelland --- drivers/net/ethernet/marvell/mvpp2/mvpp2.h| 7 +- .../net/ethernet/marvell/mvpp2/mvpp2_main.c | 97 ++- 2 files changed, 77 insertions(+), 27 deletions(-) diff --git a/drivers

[PATCH v2 net-next 0/2] net: mvpp2: Implement RXAUI Support

2019-08-08 Thread Matt Pelland
Implement comphy sanity checking. Matt Pelland (2): net: mvpp2: implement RXAUI support net: mvpp2: support multiple comphy lanes drivers/net/ethernet/marvell/mvpp2/mvpp2.h| 8 +- .../net/ethernet/marvell/mvpp2/mvpp2_main.c | 129 ++ 2 files changed, 110 insertions(+), 27

[PATCH v2 net-next 1/2] net: mvpp2: implement RXAUI support

2019-08-08 Thread Matt Pelland
Marvell's mvpp2 packet processor supports RXAUI on port zero in a similar manner to the existing 10G protocols that have already been implemented. This patch implements the miscellaneous extra configuration steps required for RXAUI operation. Signed-off-by: Matt Pelland --- drivers/net/eth

[PATCH 2/2] net: mvpp2: support multiple comphy lanes

2019-08-01 Thread Matt Pelland
. Signed-off-by: Matt Pelland --- drivers/net/ethernet/marvell/mvpp2/mvpp2.h| 7 +- .../net/ethernet/marvell/mvpp2/mvpp2_main.c | 66 +-- 2 files changed, 53 insertions(+), 20 deletions(-) diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2.h b/drivers/net/ethernet/marvell

[PATCH 1/2] net: mvpp2: implement RXAUI support

2019-08-01 Thread Matt Pelland
Marvell's mvpp2 packet processor supports RXAUI on port zero in a similar manner to the existing 10G protocols that have already been implemented. This patch implements the miscellaneous extra configuration steps required for RXAUI operation. Signed-off-by: Matt Pelland --- drivers/net/eth

[PATCH] net: mvpp2: Implement RXAUI Support

2019-08-01 Thread Matt Pelland
This patch set implements support for configuring Marvell's mvpp2 hardware for RXAUI operation. There are two other patches necessary for this to work correctly that concern Marvell's cp110 comphy that were emailed to the general linux-kernel mailing list earlier on. I can post them here if need be