From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pidgin.makrotopia.org (pidgin.makrotopia.org [185.142.180.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B1F5E450F2; Fri, 29 Aug 2025 13:01:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.142.180.65 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756472512; cv=none; b=ljCRfBDuM8Vrj3VLvWJ8CvzGFLDaBa5xQaqAaNqmfaPIcZfI/k3dE4UIhRPf5EWeM8wzGaERRaLHOKu7yKK3FAjTmm13qDS8sqmdfSmZDUftXmgNGlcPm1LuOT325GNrsZGWDmmmLH/6a1+/LqMdojPP0b7G6dzIDd8TOTkVfks= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756472512; c=relaxed/simple; bh=IL/flYRlhgJLTRSDPJ/kh2JmFf8C4NzSzKWcKVGhemE=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=Cmg241tJU0LJiIwOokYRKBjCdwfvCR9Rt2FzNX8qUa1M6rZUAQbufCg5VEFfgsQ73aGyH0foFyRTpTGjvV2f13Gm2DxJLUcSAy2KM/KQSrIbhPxbzSbRDqn1K20jrvaAs6qmsaTadSlvNGmVV9smbSbDJl/CDfG5jzsVJcpdydQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=makrotopia.org; spf=pass smtp.mailfrom=makrotopia.org; arc=none smtp.client-ip=185.142.180.65 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=makrotopia.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=makrotopia.org Received: from local by pidgin.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.98.2) (envelope-from ) id 1uryjb-0000000029K-49es; Fri, 29 Aug 2025 13:01:40 +0000 Date: Fri, 29 Aug 2025 14:01:36 +0100 From: Daniel Golle To: Andrew Lunn , Vladimir Oltean , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Hauke Mehrtens , Russell King , linux-kernel@vger.kernel.org, netdev@vger.kernel.org Cc: Andreas Schirm , Lukas Stockmann , Alexander Sverdlin , Peter Christen , Avinash Jayaraman , Bing tao Xu , Liang Xu , Juraj Povazanec , "Fanni (Fang-Yi) Chan" , "Benny (Ying-Tsan) Weng" , "Livia M. Rosu" , John Crispin Subject: [PATCH v3 0/6] net: dsa: lantiq_gswip: prepare for supporting MaxLinear GSW1xx Message-ID: Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Continue to prepare for supporting the newer standalone MaxLinear GSW1xx switch family by extending the existing lantiq_gswip driver to allow it to support MII interfaces and MDIO bus of the GSW1xx. This series has been preceded by an RFC series which covers everything needed to support the MaxLinear GSW1xx family of switches. Andrew Lunn had suggested to split it into a couple of smaller series and start with the changes which don't yet make actual functional changes or support new features. Everything has been compile and runtime tested on AVM Fritz!Box 7490 (GSWIP version 2.1, VR9 v1.2) Link: https://lore.kernel.org/netdev/aKDhFCNwjDDwRKsI@pidgin.makrotopia.org/ v3: explicitly initialize mii_port_reg_offset to 0 v2: move lantiq_gswip driver to its own folder Daniel Golle (6): net: dsa: lantiq_gswip: move to dedicated folder net: dsa: lantiq_gswip: support model-specific mac_select_pcs() net: dsa: lantiq_gswip: ignore SerDes modes in phylink_mac_config() net: dsa: lantiq_gswip: support offset of MII registers net: dsa: lantiq_gswip: support standard MDIO node name net: dsa: lantiq_gswip: move MDIO bus registration to .setup() MAINTAINERS | 3 +- drivers/net/dsa/Kconfig | 8 +-- drivers/net/dsa/Makefile | 2 +- drivers/net/dsa/lantiq/Kconfig | 7 +++ drivers/net/dsa/lantiq/Makefile | 1 + drivers/net/dsa/{ => lantiq}/lantiq_gswip.c | 54 ++++++++++++++++----- drivers/net/dsa/{ => lantiq}/lantiq_gswip.h | 4 ++ drivers/net/dsa/{ => lantiq}/lantiq_pce.h | 0 8 files changed, 57 insertions(+), 22 deletions(-) create mode 100644 drivers/net/dsa/lantiq/Kconfig create mode 100644 drivers/net/dsa/lantiq/Makefile rename drivers/net/dsa/{ => lantiq}/lantiq_gswip.c (98%) rename drivers/net/dsa/{ => lantiq}/lantiq_gswip.h (98%) rename drivers/net/dsa/{ => lantiq}/lantiq_pce.h (100%) -- 2.51.0