From patchwork Mon Sep 5 09:51:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felix Fietkau X-Patchwork-Id: 9313309 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B95886075E for ; Mon, 5 Sep 2016 09:51:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A3D9C28A0B for ; Mon, 5 Sep 2016 09:51:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 98AD928A29; Mon, 5 Sep 2016 09:51:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5337D28A0B for ; Mon, 5 Sep 2016 09:51:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932803AbcIEJvi (ORCPT ); Mon, 5 Sep 2016 05:51:38 -0400 Received: from nbd.name ([46.4.11.11]:57526 "EHLO nbd.name" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932301AbcIEJvd (ORCPT ); Mon, 5 Sep 2016 05:51:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=nbd.name; s=20160729; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=xEXr2k8VSsdQxBK46Si7b/XMNb/keia2ufYRMs1v3KA=; b=TBEUHFw6VlLMFXoUc7Ebal1liuS25fYSj7h+BAiC/nSkVl0JLtAPhiE0DmzyTgnC2A75EZDogBy945wkocNNk2QIOROMJDqCw7C+mFPNmhsmd0H0PnhZEVGiawCVfBtBRDmQU3Hs8tKbYcgCzoawHslP0CN8IUDTD3W8TfmcH90=; Received: by nf-4.local (Postfix, from userid 501) id 2A46915E6CC93; Mon, 5 Sep 2016 11:51:28 +0200 (CEST) From: Felix Fietkau To: linux-wireless@vger.kernel.org Cc: kvalo@codeaurora.org Subject: [PATCH v3 1/3] Documentation: dt: net: add mt76 wireless device binding Date: Mon, 5 Sep 2016 11:51:26 +0200 Message-Id: <20160905095128.80560-2-nbd@nbd.name> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20160905095128.80560-1-nbd@nbd.name> References: <20160905095128.80560-1-nbd@nbd.name> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Felix Fietkau --- .../bindings/net/wireless/mediatek,mt76.txt | 26 ++++++++++++++++++++++ 1 file changed, 26 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 0000000..d51c35f --- /dev/null +++ b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt @@ -0,0 +1,26 @@ +* 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 +- mediatek,2ghz: Override the 2.4 GHz band capability from EEPROM +- mediatek,5ghz: Override the 5 GHz band capability from EEPROM +- mediatek,mtd-eeprom: Specify a MTD partition + offset containing EEPROM data + +&pcie { + status = "okay"; + + pcie0 { + mt76@0,0 { + reg = <0x0000 0 0 0 0>; + device_type = "pci"; + mediatek,mtd-eeprom = <&factory 0x8000>; + mediatek,2ghz = <0>; + }; + }; +};