* [PATCH] dt-bindings: add device tree binding for Allwinner XR819 SDIO Wi-Fi @ 2017-07-18 7:29 Icenowy Zheng [not found] ` <20170718072940.17872-1-icenowy-h8G6r0blFSE@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Icenowy Zheng @ 2017-07-18 7:29 UTC (permalink / raw) To: Kalle Valo, Rob Herring, Maxime Ripard Cc: linux-wireless, netdev, devicetree, linux-kernel, linux-sunxi, Icenowy Zheng Allwinner XR819 is a SDIO Wi-Fi chip, which has the functionality to use an out-of-band interrupt pin instead of SDIO in-band interrupt. Add the device tree binding of this chip, in order to make it possible to add this interrupt pin to device trees. Signed-off-by: Icenowy Zheng <icenowy@aosc.io> --- .../bindings/net/wireless/allwinner,xr819.txt | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt diff --git a/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt new file mode 100644 index 000000000000..64dd9c1c0584 --- /dev/null +++ b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt @@ -0,0 +1,37 @@ +Allwinner XRadio wireless SDIO devices + +This node provides properties for controlling the XRadio wireless device. The +node is expected to be specified as a child node to the SDIO controller that +connects the device to the system. + +Required properties: + + - compatible : Should be "allwinner,xr819". + +Optional properties: + - interrupt-parent : the phandle for the interrupt controller to which the + device interrupts are connected. + - interrupts : specifies attributes for the out-of-band interrupt (host-wake). + When not specified the device will use in-band SDIO interrupts. + +Example: + +mmc1: mmc@01c10000 { + #address-cells = <1>; + #size-cells = <0>; + + pinctrl-names = "default"; + pinctrl-0 = <&mmc1_pins_a>; + vmmc-supply = <®_vcc_wifi>; + mmc-pwrseq = <&wifi_pwrseq>; + bus-width = <4>; + non-removable; + status = "okay"; + + xr819: sdio_wifi@1 { + reg = <1>; + compatible = "allwinner,xr819"; + interrupt-parent = <&pio>; + interrupts = <6 10 IRQ_TYPE_EDGE_RISING>; + }; +}; -- 2.13.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20170718072940.17872-1-icenowy-h8G6r0blFSE@public.gmane.org>]
* Re: [PATCH] dt-bindings: add device tree binding for Allwinner XR819 SDIO Wi-Fi [not found] ` <20170718072940.17872-1-icenowy-h8G6r0blFSE@public.gmane.org> @ 2017-07-24 17:54 ` Rob Herring 2017-07-25 13:14 ` Kalle Valo 1 sibling, 0 replies; 3+ messages in thread From: Rob Herring @ 2017-07-24 17:54 UTC (permalink / raw) To: Icenowy Zheng Cc: Kalle Valo, Maxime Ripard, linux-wireless-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-sunxi-/JYPxA39Uh5TLH3MbocFFw On Tue, Jul 18, 2017 at 03:29:40PM +0800, Icenowy Zheng wrote: > Allwinner XR819 is a SDIO Wi-Fi chip, which has the functionality to use > an out-of-band interrupt pin instead of SDIO in-band interrupt. > > Add the device tree binding of this chip, in order to make it possible > to add this interrupt pin to device trees. > > Signed-off-by: Icenowy Zheng <icenowy-h8G6r0blFSE@public.gmane.org> > --- > .../bindings/net/wireless/allwinner,xr819.txt | 37 ++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > create mode 100644 Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > > diff --git a/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > new file mode 100644 > index 000000000000..64dd9c1c0584 > --- /dev/null > +++ b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > @@ -0,0 +1,37 @@ > +Allwinner XRadio wireless SDIO devices > + > +This node provides properties for controlling the XRadio wireless device. The > +node is expected to be specified as a child node to the SDIO controller that > +connects the device to the system. > + > +Required properties: > + > + - compatible : Should be "allwinner,xr819". reg is also required. > + > +Optional properties: > + - interrupt-parent : the phandle for the interrupt controller to which the > + device interrupts are connected. > + - interrupts : specifies attributes for the out-of-band interrupt (host-wake). > + When not specified the device will use in-band SDIO interrupts. > + > +Example: > + > +mmc1: mmc@01c10000 { > + #address-cells = <1>; > + #size-cells = <0>; > + > + pinctrl-names = "default"; > + pinctrl-0 = <&mmc1_pins_a>; > + vmmc-supply = <®_vcc_wifi>; > + mmc-pwrseq = <&wifi_pwrseq>; > + bus-width = <4>; > + non-removable; > + status = "okay"; Don't show status in examples. > + > + xr819: sdio_wifi@1 { wifi@1 > + reg = <1>; > + compatible = "allwinner,xr819"; > + interrupt-parent = <&pio>; > + interrupts = <6 10 IRQ_TYPE_EDGE_RISING>; > + }; > +}; > -- > 2.13.0 > ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] dt-bindings: add device tree binding for Allwinner XR819 SDIO Wi-Fi [not found] ` <20170718072940.17872-1-icenowy-h8G6r0blFSE@public.gmane.org> 2017-07-24 17:54 ` Rob Herring @ 2017-07-25 13:14 ` Kalle Valo 1 sibling, 0 replies; 3+ messages in thread From: Kalle Valo @ 2017-07-25 13:14 UTC (permalink / raw) To: Icenowy Zheng Cc: Rob Herring, Maxime Ripard, linux-wireless-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-sunxi-/JYPxA39Uh5TLH3MbocFFw Icenowy Zheng <icenowy-h8G6r0blFSE@public.gmane.org> writes: > Allwinner XR819 is a SDIO Wi-Fi chip, which has the functionality to use > an out-of-band interrupt pin instead of SDIO in-band interrupt. > > Add the device tree binding of this chip, in order to make it possible > to add this interrupt pin to device trees. > > Signed-off-by: Icenowy Zheng <icenowy-h8G6r0blFSE@public.gmane.org> > --- > .../bindings/net/wireless/allwinner,xr819.txt | 37 ++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > create mode 100644 Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > > diff --git > a/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > new file mode 100644 > index 000000000000..64dd9c1c0584 > --- /dev/null > +++ b/Documentation/devicetree/bindings/net/wireless/allwinner,xr819.txt > @@ -0,0 +1,37 @@ > +Allwinner XRadio wireless SDIO devices > + > +This node provides properties for controlling the XRadio wireless device. The > +node is expected to be specified as a child node to the SDIO controller that > +connects the device to the system. > + > +Required properties: > + > + - compatible : Should be "allwinner,xr819". > + > +Optional properties: > + - interrupt-parent : the phandle for the interrupt controller to which the > + device interrupts are connected. > + - interrupts : specifies attributes for the out-of-band interrupt (host-wake). > + When not specified the device will use in-band SDIO interrupts. Where is the driver which uses this? I don't see it in drivers/net/wireless but I guess that's not a blocker for the bindings? -- Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-25 13:14 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-07-18 7:29 [PATCH] dt-bindings: add device tree binding for Allwinner XR819 SDIO Wi-Fi Icenowy Zheng [not found] ` <20170718072940.17872-1-icenowy-h8G6r0blFSE@public.gmane.org> 2017-07-24 17:54 ` Rob Herring 2017-07-25 13:14 ` Kalle Valo
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).