Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1253849
| From | Mans Rullgard <mans@mansr.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller |
| Date | 2015-10-22 16:10 +0200 |
| Message-ID | <qmoJ5-4Fr-39@gated-at.bofh.it> (permalink) |
| References | <qmoJ4-4Fr-25@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This adds a binding for the Aurora VLSI NB8800 Ethernet controller
using the "aurora,nb8800" compatible string. When used in Sigma
Designs chips a few additional control registers are available.
This variant is indicated by the "sigma,smp8640-ethernet" compatible
string.
Signed-off-by: Mans Rullgard <mans@mansr.com>
---
.../devicetree/bindings/net/aurora,nb8800.txt | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/aurora,nb8800.txt
diff --git a/Documentation/devicetree/bindings/net/aurora,nb8800.txt b/Documentation/devicetree/bindings/net/aurora,nb8800.txt
new file mode 100644
index 0000000..c19f615
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/aurora,nb8800.txt
@@ -0,0 +1,26 @@
+* Aurora VLSI AU-NB8800 Ethernet controller
+
+Required properties:
+- compatible: Should be "aurora,nb8800", "sigma,smp8640-ethernet"
+ The latter indicates presence of extra features added by Sigma Designs.
+- reg: Should be MMIO address space of the device
+- interrupts: Should contain the interrupt specifier for the device
+- interrupt-parent: Should be a phandle for the interrupt controller
+- clocks: Should be a phandle for the clock for the device
+
+Common properties described in ethernet.txt:
+- local-mac-address
+- mac-address
+- max-speed
+- phy-mode
+
+Example:
+
+ethernet@26000 {
+ compatible = "aurora,nb8800";
+ reg = <0x10000 0x800>;
+ interrupts = <42>;
+ clocks = <&sys_clk>;
+ max-speed = <1000>;
+ phy-connection-type = "rgmii";
+};
--
2.5.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/3] devicetree: add vendor prefix for Aurora VLSI Mans Rullgard <mans@mansr.com> - 2015-10-22 16:10 +0200
[PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Mans Rullgard <mans@mansr.com> - 2015-10-22 16:10 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller David Miller <davem@davemloft.net> - 2015-10-22 16:30 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-22 19:20 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Florian Fainelli <f.fainelli@gmail.com> - 2015-10-23 02:40 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-23 17:30 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Florian Fainelli <f.fainelli@gmail.com> - 2015-10-23 19:40 +0200
Re: [PATCH 3/3] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-24 17:50 +0200
[PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Mans Rullgard <mans@mansr.com> - 2015-10-22 16:10 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Rob Herring <robh+dt@kernel.org> - 2015-10-22 16:40 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2015-10-23 14:20 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Rob Herring <robh+dt@kernel.org> - 2015-10-23 15:30 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-23 15:50 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2015-10-23 16:00 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-23 16:10 +0200
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2015-10-26 10:40 +0100
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-26 13:10 +0100
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2015-10-26 14:30 +0100
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-26 15:00 +0100
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2015-10-26 15:10 +0100
Re: [PATCH 2/3] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Måns Rullgård <mans@mansr.com> - 2015-10-26 15:20 +0100
Re: [PATCH 1/3] devicetree: add vendor prefix for Aurora VLSI Rob Herring <robh+dt@kernel.org> - 2015-10-22 16:40 +0200
csiph-web