summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/dts
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2015-03-22 17:09:23 -0500
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:14 -0600
commit22f68524f84c3a0d620e787c51d5f244ef8e0aca (patch)
treeeac8ed04673bcc41b6f9f2c9771c38b38961b2b5 /arch/sandbox/dts
parentf3e0c3744a6a0a01fcf3a34b582c2f9c84ba56cd (diff)
downloadtalos-obmc-uboot-22f68524f84c3a0d620e787c51d5f244ef8e0aca.tar.gz
talos-obmc-uboot-22f68524f84c3a0d620e787c51d5f244ef8e0aca.zip
sandbox: eth: Add support for using the 'lo' interface
The 'lo' interface on Linux doesn't support thinks like ARP or link-layer access like we use to talk to a normal network interface. A higher-level network API must be used to access localhost. As written, this interface is limited to not supporting ICMP since the API doesn't allow the socket to be opened for all IP traffic and be able to receive at the same time. UDP is far more useful to test with, so it was selected over ICMP. Ping won't work, but things like TFTP should work. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/dts')
-rw-r--r--arch/sandbox/dts/sandbox.dts7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts
index 553bfbee32..7d050d92af 100644
--- a/arch/sandbox/dts/sandbox.dts
+++ b/arch/sandbox/dts/sandbox.dts
@@ -5,6 +5,7 @@
#size-cells = <1>;
aliases {
+ eth5 = "/eth@90000000";
pci0 = &pci;
};
@@ -212,4 +213,10 @@
reg = <0x80000000 0x1000>;
host-raw-interface = "eth0";
};
+
+ eth@90000000 {
+ compatible = "sandbox,eth-raw";
+ reg = <0x90000000 0x1000>;
+ host-raw-interface = "lo";
+ };
};
OpenPOWER on IntegriCloud