net: dsa: b53: Add support for Broadcom RoboSwitch
authorFlorian Fainelli <f.fainelli@gmail.com>
Fri, 10 Jun 2016 01:23:53 +0000 (18:23 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 10 Jun 2016 05:21:29 +0000 (22:21 -0700)
commit967dd82ffc52e9d8ea0defde094f9a39a3f4eeed
tree962fc28c7c18720f32cd6ac46cc8eb724c61455f
parent409a5f27ed1288b582fb164090c6eff17c74f5d4
net: dsa: b53: Add support for Broadcom RoboSwitch

This patch adds support for Broadcom's BCM53xx switch family, also known
as RoboSwitch. Some of these switches are ubiquituous, found in home
routers, Wi-Fi routers, DSL and cable modem gateways and other
networking related products.

This drivers adds the library driver (b53_common.c) as well as a few bus
glue drivers for MDIO, SPI, Switch Register Access Block (SRAB) and
memory-mapped I/O into a SoC's address space (Broadcom BCM63xx/33xx).

Basic operations are supported to bring the Layer 1/2 up and running,
but not much more at this point, subsequent patches add the remaining
features.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
14 files changed:
Documentation/devicetree/bindings/net/dsa/b53.txt [new file with mode: 0644]
MAINTAINERS
drivers/net/dsa/Kconfig
drivers/net/dsa/Makefile
drivers/net/dsa/b53/Kconfig [new file with mode: 0644]
drivers/net/dsa/b53/Makefile [new file with mode: 0644]
drivers/net/dsa/b53/b53_common.c [new file with mode: 0644]
drivers/net/dsa/b53/b53_mdio.c [new file with mode: 0644]
drivers/net/dsa/b53/b53_mmap.c [new file with mode: 0644]
drivers/net/dsa/b53/b53_priv.h [new file with mode: 0644]
drivers/net/dsa/b53/b53_regs.h [new file with mode: 0644]
drivers/net/dsa/b53/b53_spi.c [new file with mode: 0644]
drivers/net/dsa/b53/b53_srab.c [new file with mode: 0644]
include/linux/platform_data/b53.h [new file with mode: 0644]