mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 11:21:33 +00:00
663148e48a
Add three files. ralink,rt2880-net.txt descibes the actual frame engine and the other two describe the switch forntend bindings. Signed-off-by: John Crispin <blogic@openwrt.org> Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: Michael Lee <igvtee@gmail.com> Cc: devicetree@vger.kernel.org Cc: David S. Miller <davem@davemloft.net> Cc: netdev@vger.kernel.org Cc: linux-mips@linux-mips.org Cc: linux-mediatek@lists.infradead.org Cc: John Crispin <blogic@openwrt.org> Cc: Felix Fietkau <nbd@nbd.name> Cc: Michael Lee <igvtee@gmail.com> Cc: steven.liu@mediatek.com Cc: Fred.Chang@mediatek.com Patchwork: https://patchwork.linux-mips.org/patch/11970/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
Ralink Fast Ethernet Embedded Switch
|
|
====================================
|
|
|
|
The ralink fast ethernet embedded switch can be found on Ralink and Mediatek
|
|
SoCs (RT3x5x, RT5350, MT76x8).
|
|
|
|
Required properties:
|
|
- compatible: Should be "ralink,rt3050-esw"
|
|
- reg: Address and length of the register set for the device
|
|
- interrupt-parent: Should be the phandle for the interrupt controller
|
|
that services interrupts for this device
|
|
- interrupts: Should contain the embedded switches interrupt
|
|
- resets: Should contain the embedded switches resets
|
|
- reset-names: Should contain the reset names "esw"
|
|
|
|
Optional properties:
|
|
- ralink,portmap: can be used to choose if the default switch setup is
|
|
llllw or wllll
|
|
- ralink,led_polarity: override the active high/low settings of the leds
|
|
|
|
Example:
|
|
|
|
esw@10110000 {
|
|
compatible = "ralink,rt3050-esw";
|
|
reg = <0x10110000 8000>;
|
|
|
|
resets = <&rstctrl 23>;
|
|
reset-names = "esw";
|
|
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <17>;
|
|
};
|