]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/networking/dsa/bcm_sf2.txt
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[karo-tx-linux.git] / Documentation / networking / dsa / bcm_sf2.txt
1 Broadcom Starfighter 2 Ethernet switch driver
2 =============================================
3
4 Broadcom's Starfighter 2 Ethernet switch hardware block is commonly found and
5 deployed in the following products:
6
7 - xDSL gateways such as BCM63138
8 - streaming/multimedia Set Top Box such as BCM7445
9 - Cable Modem/residential gateways such as BCM7145/BCM3390
10
11 The switch is typically deployed in a configuration involving between 5 to 13
12 ports, offering a range of built-in and customizable interfaces:
13
14 - single integrated Gigabit PHY
15 - quad integrated Gigabit PHY
16 - quad external Gigabit PHY w/ MDIO multiplexer
17 - integrated MoCA PHY
18 - several external MII/RevMII/GMII/RGMII interfaces
19
20 The switch also supports specific congestion control features which allow MoCA
21 fail-over not to lose packets during a MoCA role re-election, as well as out of
22 band back-pressure to the host CPU network interface when downstream interfaces
23 are connected at a lower speed.
24
25 The switch hardware block is typically interfaced using MMIO accesses and
26 contains a bunch of sub-blocks/registers:
27
28 * SWITCH_CORE: common switch registers
29 * SWITCH_REG: external interfaces switch register
30 * SWITCH_MDIO: external MDIO bus controller (there is another one in SWITCH_CORE,
31   which is used for indirect PHY accesses)
32 * SWITCH_INDIR_RW: 64-bits wide register helper block
33 * SWITCH_INTRL2_0/1: Level-2 interrupt controllers
34 * SWITCH_ACB: Admission control block
35 * SWITCH_FCB: Fail-over control block
36
37 Implementation details
38 ======================
39
40 The driver is located in drivers/net/dsa/bcm_sf2.c and is implemented as a DSA
41 driver; see Documentation/networking/dsa/dsa.txt for details on the subsytem
42 and what it provides.
43
44 The SF2 switch is configured to enable a Broadcom specific 4-bytes switch tag
45 which gets inserted by the switch for every packet forwarded to the CPU
46 interface, conversely, the CPU network interface should insert a similar tag for
47 packets entering the CPU port. The tag format is described in
48 net/dsa/tag_brcm.c.
49
50 Overall, the SF2 driver is a fairly regular DSA driver; there are a few
51 specifics covered below.
52
53 Device Tree probing
54 -------------------
55
56 The DSA platform device driver is probed using a specific compatible string
57 provided in net/dsa/dsa.c. The reason for that is because the DSA subsystem gets
58 registered as a platform device driver currently. DSA will provide the needed
59 device_node pointers which are then accessible by the switch driver setup
60 function to setup resources such as register ranges and interrupts. This
61 currently works very well because none of the of_* functions utilized by the
62 driver require a struct device to be bound to a struct device_node, but things
63 may change in the future.
64
65 MDIO indirect accesses
66 ----------------------
67
68 Due to a limitation in how Broadcom switches have been designed, external
69 Broadcom switches connected to a SF2 require the use of the DSA slave MDIO bus
70 in order to properly configure them. By default, the SF2 pseudo-PHY address, and
71 an external switch pseudo-PHY address will both be snooping for incoming MDIO
72 transactions, since they are at the same address (30), resulting in some kind of
73 "double" programming. Using DSA, and setting ds->phys_mii_mask accordingly, we
74 selectively divert reads and writes towards external Broadcom switches
75 pseudo-PHY addresses. Newer revisions of the SF2 hardware have introduced a
76 configurable pseudo-PHY address which circumvents the initial design limitation.
77
78 Multimedia over CoAxial (MoCA) interfaces
79 -----------------------------------------
80
81 MoCA interfaces are fairly specific and require the use of a firmware blob which
82 gets loaded onto the MoCA processor(s) for packet processing. The switch
83 hardware contains logic which will assert/de-assert link states accordingly for
84 the MoCA interface whenever the MoCA coaxial cable gets disconnected or the
85 firmware gets reloaded. The SF2 driver relies on such events to properly set its
86 MoCA interface carrier state and properly report this to the networking stack.
87
88 The MoCA interfaces are supported using the PHY library's fixed PHY/emulated PHY
89 device and the switch driver registers a fixed_link_update callback for such
90 PHYs which reflects the link state obtained from the interrupt handler.
91
92
93 Power Management
94 ----------------
95
96 Whenever possible, the SF2 driver tries to minimize the overall switch power
97 consumption by applying a combination of:
98
99 - turning off internal buffers/memories
100 - disabling packet processing logic
101 - putting integrated PHYs in IDDQ/low-power
102 - reducing the switch core clock based on the active port count
103 - enabling and advertising EEE
104 - turning off RGMII data processing logic when the link goes down
105
106 Wake-on-LAN
107 -----------
108
109 Wake-on-LAN is currently implemented by utilizing the host processor Ethernet
110 MAC controller wake-on logic. Whenever Wake-on-LAN is requested, an intersection
111 between the user request and the supported host Ethernet interface WoL
112 capabilities is done and the intersection result gets configured. During
113 system-wide suspend/resume, only ports not participating in Wake-on-LAN are
114 disabled.