ipq40xx: luma_wrtq-329acn: differentiate ethernet mac addresses
On OEM firmware both addresses for In and Out ports are different. Set
them as such also in OpenWrt.
Fixes: e24635710c
(" ipq40xx: add support for Luma Home WRTQ-329ACN")
Signed-off-by: Tomasz Maciej Nowak <tmn505@gmail.com>
This commit is contained in:
parent
3aec35ab96
commit
04eb080290
1 changed files with 12 additions and 0 deletions
|
@ -182,6 +182,14 @@
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
macaddr_art_0: macaddr@0{
|
||||||
|
reg = <0x0000 0x0006>;
|
||||||
|
};
|
||||||
|
|
||||||
|
macaddr_art_6: macaddr@6{
|
||||||
|
reg = <0x0006 0x0006>;
|
||||||
|
};
|
||||||
|
|
||||||
precal_art_1000: precal@1000 {
|
precal_art_1000: precal@1000 {
|
||||||
reg = <0x1000 0x2f20>;
|
reg = <0x1000 0x2f20>;
|
||||||
};
|
};
|
||||||
|
@ -227,11 +235,15 @@
|
||||||
&gmac0 {
|
&gmac0 {
|
||||||
qcom,phy_mdio_addr = <2>;
|
qcom,phy_mdio_addr = <2>;
|
||||||
qcom,poll_required = <1>;
|
qcom,poll_required = <1>;
|
||||||
|
nvmem-cell-names = "mac-address";
|
||||||
|
nvmem-cells = <&macaddr_art_6>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&gmac1 {
|
&gmac1 {
|
||||||
qcom,phy_mdio_addr = <4>;
|
qcom,phy_mdio_addr = <4>;
|
||||||
qcom,poll_required = <1>;
|
qcom,poll_required = <1>;
|
||||||
|
nvmem-cell-names = "mac-address";
|
||||||
|
nvmem-cells = <&macaddr_art_0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&tlmm {
|
&tlmm {
|
||||||
|
|
Loading…
Reference in a new issue