mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
791d3ef2e1
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
31 lines
848 B
Plaintext
31 lines
848 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
|
|
- 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>;
|
|
};
|