All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/4] net-next: dsa: add Mediatek MT7530 support
@ 2017-03-13 16:11 ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
  0 siblings, 0 replies; 53+ messages in thread
From: sean.wang @ 2017-03-13 16:11 UTC (permalink / raw)
  To: andrew, f.fainelli, vivien.didelot, matthias.bgg, robh+dt, mark.rutland
  Cc: devicetree, netdev, linux-kernel, linux-mediatek, davem,
	sean.wang, Landen.Chao, keyhaede, objelf

From: Sean Wang <sean.wang@mediatek.com>

MT7530 is a 7-ports Gigabit Ethernet Switch that could be found on
Mediatek router platforms such as MT7623A or MT7623N which includes 7-port
Gigabit Ethernet MAC and 5-port Gigabit Ethernet PHY. Among these ports,
The port from 0 to 4 are the user ports connecting with the remote devices
while the port 5 and 6 are the CPU ports connecting into Mediatek Ethernet
GMAC.

The patch series integrated Mediatek MT7530 into DSA support which
includes the most of the essential callbacks such as tag insertion for
port distinguishing, port control, bridge offloading, STP setup and
ethtool operations to allow DSA to model each user port into independently
standalone netdevice as the other DSA driver had done.

Sean Wang (4):
  dt-bindings: net: dsa: add mt7530 binding
  net-next: dsa: add Mediatek tag RX/TX handler
  net-next: ethernet: mediatek: add CMD ingress recognize the special
    tag
  net-next: dsa: add dsa support for Mediatek MT7530 switch

 .../devicetree/bindings/net/dsa/mt7530.txt         |   96 ++
 drivers/net/dsa/Kconfig                            |    8 +
 drivers/net/dsa/Makefile                           |    2 +-
 drivers/net/dsa/mt7530.c                           | 1195 ++++++++++++++++++++
 drivers/net/dsa/mt7530.h                           |  387 +++++++
 drivers/net/ethernet/mediatek/mtk_eth_soc.c        |    8 +
 drivers/net/ethernet/mediatek/mtk_eth_soc.h        |    5 +
 include/net/dsa.h                                  |    1 +
 net/dsa/Kconfig                                    |    2 +
 net/dsa/Makefile                                   |    1 +
 net/dsa/dsa.c                                      |    3 +
 net/dsa/dsa_priv.h                                 |    3 +
 net/dsa/tag_mtk.c                                  |  121 ++
 13 files changed, 1831 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/net/dsa/mt7530.txt
 create mode 100644 drivers/net/dsa/mt7530.c
 create mode 100644 drivers/net/dsa/mt7530.h
 create mode 100644 net/dsa/tag_mtk.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 53+ messages in thread

end of thread, other threads:[~2017-03-15  2:30 UTC | newest]

Thread overview: 53+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-13 16:11 [PATCH net-next 0/4] net-next: dsa: add Mediatek MT7530 support sean.wang
2017-03-13 16:11 ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:11 ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:11 ` [PATCH net-next 1/4] dt-bindings: net: dsa: add Mediatek MT7530 binding sean.wang
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:36   ` Andrew Lunn
2017-03-13 16:36     ` Andrew Lunn
2017-03-14  6:06     ` Sean Wang
2017-03-14  6:06       ` Sean Wang
2017-03-14  6:06       ` Sean Wang
2017-03-13 16:47   ` Florian Fainelli
2017-03-13 16:47     ` Florian Fainelli
2017-03-14  6:52     ` Sean Wang
2017-03-14  6:52       ` Sean Wang
2017-03-14 11:58       ` Andrew Lunn
2017-03-14 11:58         ` Andrew Lunn
2017-03-13 16:11 ` [PATCH net-next 2/4] net-next: dsa: add Mediatek tag RX/TX handler sean.wang
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:27   ` Andrew Lunn
2017-03-13 16:27     ` Andrew Lunn
2017-03-13 16:35   ` Florian Fainelli
2017-03-13 16:35     ` Florian Fainelli
2017-03-14  6:16     ` Sean Wang
2017-03-14  6:16       ` Sean Wang
2017-03-13 16:59   ` Vivien Didelot
2017-03-13 16:59     ` Vivien Didelot
2017-03-14  6:22     ` Sean Wang
2017-03-14  6:22       ` Sean Wang
2017-03-14 13:38       ` Vivien Didelot
2017-03-14 13:38         ` Vivien Didelot
2017-03-13 16:11 ` [PATCH net-next 3/4] net-next: ethernet: mediatek: add CDM able to recognize the tag for DSA sean.wang
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:11   ` sean.wang-NuS5LvNUpcJWk0Htik3J/w
2017-03-13 16:30   ` Andrew Lunn
2017-03-13 16:39   ` Florian Fainelli
2017-03-13 16:11 ` [PATCH net-next 4/4] net-next: dsa: add dsa support for Mediatek MT7530 switch sean.wang
2017-03-13 16:11   ` sean.wang
2017-03-13 16:41   ` Andrew Lunn
2017-03-13 16:41     ` Andrew Lunn
2017-03-13 23:11   ` Andrew Lunn
2017-03-13 23:11     ` Andrew Lunn
2017-03-14  7:03     ` Sean Wang
2017-03-14  7:03       ` Sean Wang
2017-03-14  7:03       ` Sean Wang
2017-03-15  2:20   ` kbuild test robot
2017-03-15  2:20     ` kbuild test robot
2017-03-15  2:20     ` kbuild test robot
2017-03-15  2:30   ` kbuild test robot
2017-03-15  2:30     ` kbuild test robot
2017-03-13 16:25 ` [PATCH net-next 0/4] net-next: dsa: add Mediatek MT7530 support John Crispin
2017-03-13 16:25   ` John Crispin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.