From patchwork Wed Apr 17 06:21:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oleksij Rempel X-Patchwork-Id: 10904643 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6EA1E14DB for ; Wed, 17 Apr 2019 06:22:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5B52C289F0 for ; Wed, 17 Apr 2019 06:22:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4ED89289F4; Wed, 17 Apr 2019 06:22:43 +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.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, 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 EEB86289F0 for ; Wed, 17 Apr 2019 06:22:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729774AbfDQGWP (ORCPT ); Wed, 17 Apr 2019 02:22:15 -0400 Received: from metis.ext.pengutronix.de ([85.220.165.71]:47059 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729237AbfDQGWO (ORCPT ); Wed, 17 Apr 2019 02:22:14 -0400 Received: from dude.hi.pengutronix.de ([2001:67c:670:100:1d::7]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hGdxN-0006Es-Fc; Wed, 17 Apr 2019 08:22:05 +0200 Received: from ore by dude.hi.pengutronix.de with local (Exim 4.92-RC6) (envelope-from ) id 1hGdxK-00047i-R0; Wed, 17 Apr 2019 08:22:02 +0200 From: Oleksij Rempel To: Paul Burton , Ralf Baechle , James Hogan , Rob Herring , Jay Cliburn , Chris Snook , "David S. Miller" , Mark Rutland Cc: Oleksij Rempel , Pengutronix Kernel Team , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, John Crispin , Felix Fietkau , netdev@vger.kernel.org Subject: [PATCH v1 0/3] MIPS: ath79: add ag71xx support Date: Wed, 17 Apr 2019 08:21:58 +0200 Message-Id: <20190417062201.15745-1-o.rempel@pengutronix.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::7 X-SA-Exim-Mail-From: ore@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-mips@vger.kernel.org Sender: linux-mips-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch series provide ethernet support for many Atheros/QCA MIPS based SoCs. I reworked ag71xx driver which was previously maintained within OpenWRT repository. So far, following changes was made to make upstreaming easier: - everything what can be some how used in user space was removed. Most of it was debug functionality. - most of deficetree bindings was removed. Not every thing made sense and most of it is SoC specific, so it is possible to detect it by compatible. - mac and mdio parts are merged in to one driver. It makes easier to maintaine SoC specific quirks. Oleksij Rempel (3): dt-bindings: net: add qca,ar71xx.txt documentation MIPS: ath79: ar9331: add Ethernet nodes net: ethernet: add ag71xx driver .../devicetree/bindings/net/qca,ar71xx.txt | 45 + arch/mips/boot/dts/qca/ar9331.dtsi | 25 + arch/mips/boot/dts/qca/ar9331_dpt_module.dts | 8 + drivers/net/ethernet/atheros/Kconfig | 11 +- drivers/net/ethernet/atheros/Makefile | 1 + drivers/net/ethernet/atheros/ag71xx.c | 1971 +++++++++++++++++ 6 files changed, 2060 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/net/qca,ar71xx.txt create mode 100644 drivers/net/ethernet/atheros/ag71xx.c