aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc/boot
diff options
context:
space:
mode:
authorAlexey Brodkin <abrodkin@synopsys.com>2013-06-26 06:02:18 -0400
committerVineet Gupta <vgupta@synopsys.com>2013-06-28 05:37:20 -0400
commitd0e63ed9411fb9fe95dac1690deb01f9ccb1701d (patch)
tree5540ed6824ffe5e075b21426548a6d1d2861a58b /arch/arc/boot
parent7d132055814ef17a6c7b69f342244c410a5e000f (diff)
ARC: [plat-arcfpga] Enable arc_emac for ARCAngle4 Board
* Add arc_emac to DeviceTree DT description "Documentation/devicetree/bindings/net/arc_emac.txt". * Update defconfig correspondingly [vgupta: tweaked changelog] Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/boot')
-rw-r--r--arch/arc/boot/dts/angel4.dts16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arc/boot/dts/angel4.dts b/arch/arc/boot/dts/angel4.dts
index bae4f936cb03..4fb2d6f655bd 100644
--- a/arch/arc/boot/dts/angel4.dts
+++ b/arch/arc/boot/dts/angel4.dts
@@ -51,5 +51,21 @@
51 current-speed = <115200>; 51 current-speed = <115200>;
52 status = "okay"; 52 status = "okay";
53 }; 53 };
54
55 ethernet@c0fc2000 {
56 compatible = "snps,arc-emac";
57 reg = <0xc0fc2000 0x3c>;
58 interrupts = <6>;
59 mac-address = [ 00 11 22 33 44 55 ];
60 clock-frequency = <80000000>;
61 max-speed = <100>;
62 phy = <&phy0>;
63
64 #address-cells = <1>;
65 #size-cells = <0>;
66 phy0: ethernet-phy@0 {
67 reg = <1>;
68 };
69 };
54 }; 70 };
55}; 71};