devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 1/3] Documentation: dt: net: add mt76 wireless device binding
       [not found] ` <20170207202035.64224-1-nbd-Vt+b4OUoWG0@public.gmane.org>
@ 2017-02-07 20:20   ` Felix Fietkau
       [not found]     ` <20170207202035.64224-2-nbd-Vt+b4OUoWG0@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Felix Fietkau @ 2017-02-07 20:20 UTC (permalink / raw)
  To: linux-wireless-u79uwXL29TY76Z2rM5mHXA
  Cc: kvalo-sgV2jX0FEOL9JmXXK+q4OQ, sgruszka-H+wXaHxf7aLQT0dZR+AlfA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Rob Herring

Signed-off-by: Felix Fietkau <nbd-Vt+b4OUoWG0@public.gmane.org>
---
 .../bindings/net/wireless/mediatek,mt76.txt        | 24 ++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt

diff --git a/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
new file mode 100644
index 000000000000..19522ab97d62
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
@@ -0,0 +1,24 @@
+* MediaTek mt76xx devices
+
+This node provides properties for configuring the MediaTek mt76xx wireless
+device. The node is expected to be specified as a child node of the PCI
+controller to which the wireless chip is connected.
+
+Optional properties:
+
+- mac-address: See ethernet.txt in the parent directory
+- local-mac-address: See ethernet.txt in the parent directory
+- ieee80211-freq-limit: See ieee80211.txt
+- mediatek,mtd-eeprom: Specify a MTD partition + offset containing EEPROM data
+
+&pcie {
+	status = "okay";
+
+	pcie0 {
+		wifi@0,0 {
+			reg = <0x0000 0 0 0 0>;
+			ieee80211-freq-limit = <5000000 6000000>;
+			mediatek,mtd-eeprom = <&factory 0x8000>;
+		};
+	};
+};
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v5 1/3] Documentation: dt: net: add mt76 wireless device binding
       [not found]     ` <20170207202035.64224-2-nbd-Vt+b4OUoWG0@public.gmane.org>
@ 2017-02-15 22:33       ` Rob Herring
  2017-05-12 15:27         ` Kalle Valo
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2017-02-15 22:33 UTC (permalink / raw)
  To: Felix Fietkau
  Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA,
	kvalo-sgV2jX0FEOL9JmXXK+q4OQ, sgruszka-H+wXaHxf7aLQT0dZR+AlfA,
	devicetree-u79uwXL29TY76Z2rM5mHXA

On Tue, Feb 07, 2017 at 09:20:33PM +0100, Felix Fietkau wrote:
> Signed-off-by: Felix Fietkau <nbd-Vt+b4OUoWG0@public.gmane.org>

Commit msg? Also, use "dt-bindings: net: " for the subject prefix.

> ---
>  .../bindings/net/wireless/mediatek,mt76.txt        | 24 ++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
> 
> diff --git a/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
> new file mode 100644
> index 000000000000..19522ab97d62
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
> @@ -0,0 +1,24 @@
> +* MediaTek mt76xx devices
> +
> +This node provides properties for configuring the MediaTek mt76xx wireless
> +device. The node is expected to be specified as a child node of the PCI
> +controller to which the wireless chip is connected.
> +
> +Optional properties:
> +
> +- mac-address: See ethernet.txt in the parent directory
> +- local-mac-address: See ethernet.txt in the parent directory
> +- ieee80211-freq-limit: See ieee80211.txt
> +- mediatek,mtd-eeprom: Specify a MTD partition + offset containing EEPROM data
> +
> +&pcie {
> +	status = "okay";
> +
> +	pcie0 {
> +		wifi@0,0 {
> +			reg = <0x0000 0 0 0 0>;
> +			ieee80211-freq-limit = <5000000 6000000>;
> +			mediatek,mtd-eeprom = <&factory 0x8000>;
> +		};
> +	};
> +};
> -- 
> 2.11.0
> 
--
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

* Re: [PATCH v5 1/3] Documentation: dt: net: add mt76 wireless device binding
  2017-02-15 22:33       ` Rob Herring
@ 2017-05-12 15:27         ` Kalle Valo
  0 siblings, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2017-05-12 15:27 UTC (permalink / raw)
  To: Felix Fietkau
  Cc: Rob Herring, linux-wireless-u79uwXL29TY76Z2rM5mHXA,
	sgruszka-H+wXaHxf7aLQT0dZR+AlfA,
	devicetree-u79uwXL29TY76Z2rM5mHXA

Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> writes:

> On Tue, Feb 07, 2017 at 09:20:33PM +0100, Felix Fietkau wrote:
>> Signed-off-by: Felix Fietkau <nbd-Vt+b4OUoWG0@public.gmane.org>
>
> Commit msg? Also, use "dt-bindings: net: " for the subject prefix.

Felix, are you planning to submit v6? Now that we are close to -rc1
release it's the best time to get this driver merged.

Also in patch 3 it would be good to have longer commit log, for example
describing what works (and what not), what modes are supported etc.

I applied this to pending branch for kbuild bot testing:

https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git/log/?h=pending

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-12 15:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20170207202035.64224-1-nbd@nbd.name>
     [not found] ` <20170207202035.64224-1-nbd-Vt+b4OUoWG0@public.gmane.org>
2017-02-07 20:20   ` [PATCH v5 1/3] Documentation: dt: net: add mt76 wireless device binding Felix Fietkau
     [not found]     ` <20170207202035.64224-2-nbd-Vt+b4OUoWG0@public.gmane.org>
2017-02-15 22:33       ` Rob Herring
2017-05-12 15:27         ` 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).