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 A389E189BB6; Sun, 18 Jan 2026 03:21:19 +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=1768706481; cv=none; b=RLVeHFhyjdY1TVXpSi9jUYGCeW3+vPIhiV7/74F+AtAjZO/78lMGZtpyF7Rx5PPpqBWe1rMJ7zorziGoGDBQ3jTaiFVG+o8tIvHSaSSWmCqLH5KIVfg5+BpKP2FY1LPlEgTkFwBth9ko1IknETyHkrvp6owmcoGP4PJ2ZZso4xY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768706481; c=relaxed/simple; bh=7qz5A++6QUJoQlaouoPD2B1x3tDa0j3al2aTB7ntUkw=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=sO08Dpw4Vv+7/A9n8h9QLTH8fBhHiY1xJkfjWsvYq7qVwhkKFuA6350fYq4W4hoKsKBAuDAf4mdiBsSzGHSukWL517ON7f3328vGaCynXslzkD44CEJupg+0g9z2p6wwkFxbWFnK5A7T1gWI/ui9d8iKpGMIPbNtvOJGhAXWZ0E= 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.99) (envelope-from ) id 1vhJLi-000000000d5-0FeH; Sun, 18 Jan 2026 03:21:10 +0000 Date: Sun, 18 Jan 2026 03:21:01 +0000 From: Daniel Golle To: Hauke Mehrtens , Andrew Lunn , Vladimir Oltean , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Russell King , netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Chen Minqiang , Xinfa Deng Subject: [PATCH net-next v5 0/6] net: dsa: lantiq: add support for Intel GSW150 Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The Intel GSW150 Ethernet Switch (aka. Lantiq PEB7084) is the predecessor of MaxLinear's GSW1xx series of switches. It shares most features, but has a slightly different port layout and different MII interfaces. Adding support for this switch to the mxl-gsw1xx driver is quite trivial. --- Changes since v4: * fix wrong indexes in array default initializers Changes since v3: * spell out mii_cfg and mii_pcdu values in struct gswip_hw_info instead of using default initializer which requires diag exception Changes since v2: * enclose the gswip_hw_info initializers in compiler diag exception to prevent triggering -Woverride-init Changes since initial submission: * add patch fixing node naming convention for dt-bindings * introduce GSWIP_MAX_PORTS macro * don't assert SGMII PCS reset in case chip doesn't have SGMII * use case ranges in phylink_get_caps Daniel Golle (6): dt-bindings: net: dsa: lantiq,gswip: use correct node name dt-bindings: net: dsa: lantiq,gswip: add Intel GSW150 net: dsa: lantiq: allow arbitrary MII registers net: dsa: lantiq: clean up phylink_get_caps switch statement net: dsa: mxl-gsw1xx: only setup SerDes PCS if it exists net: dsa: mxl-gsw1xx: add support for Intel GSW150 .../bindings/net/dsa/lantiq,gswip.yaml | 6 +- drivers/net/dsa/lantiq/lantiq_gswip.c | 46 ++++-- drivers/net/dsa/lantiq/lantiq_gswip.h | 6 +- drivers/net/dsa/lantiq/lantiq_gswip_common.c | 27 +--- drivers/net/dsa/lantiq/mxl-gsw1xx.c | 145 ++++++++++++++---- drivers/net/dsa/lantiq/mxl-gsw1xx.h | 2 + 6 files changed, 159 insertions(+), 73 deletions(-) -- 2.52.0