From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-176.mta1.migadu.com (out-176.mta1.migadu.com [95.215.58.176]) (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 51DC925485E for ; Mon, 12 May 2025 17:16:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.176 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747070168; cv=none; b=Irlh7BueiQt1vflJXtJB3JQyCDuvNU1+HIOmdD6xKXjHnhoVqrSplDrM2HG8II0oNZV+8bXnsuGTl91MazbPkUb3tsPUD17Jx27OYpvc3XEla/1FH0r1hc82fwL1NFs1trgrZkzbbIw3i/ulLF7fCtk6dmnEW4F1E5vJmhOTmjk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747070168; c=relaxed/simple; bh=Klm9/xnlMVHXujMrDhURyLZBgR3GvxsmIVTqJHHrWl4=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=NJxdNin2EojRn0ImiUcsoEncEgpT2462Of+6AXxL6g6sLRpFdh2VWSka2OuNyNpxyhHGNNL9QynvIvIftp5tNn+nNeYerDoA2Xty3P7iIPdfG34MtTkjljpy9lmfh6cvRC8DXiOFtjh3ggTwGRf57ieghNOPZFdRc8Teb/Zjeug= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=aCzoCDXj; arc=none smtp.client-ip=95.215.58.176 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="aCzoCDXj" Message-ID: <5f99168b-c309-4c60-9313-d6687bb1998c@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1747070162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=K8N6GKlbK16hAp/92AuGA8T5bSLcIE21CMka1AVFczE=; b=aCzoCDXjrbj/khZWc3y7z15EqUNWmg1j25agjJ4p6xbwu55Ty1xS9zdRCHBWMpvgl1XE2d T2RIo99ThvKuKH578Qs7qFHYNP552cmLjy0rOJ10TA1ra3CePl0qIM8khepBF06SERJT8P FxLOwkO9bIqHawSbMjbhAcMiFx+rLCE= Date: Mon, 12 May 2025 13:15:53 -0400 Precedence: bulk X-Mailing-List: imx@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [net-next PATCH v4 00/11] Add PCS core support To: Daniel Golle Cc: netdev@vger.kernel.org, Andrew Lunn , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Russell King , upstream@airoha.com, Kory Maincent , Simon Horman , Christian Marangi , linux-kernel@vger.kernel.org, Heiner Kallweit , Alexandre Belloni , Alexandre Torgue , Clark Wang , Claudiu Beznea , Claudiu Manoil , Conor Dooley , Ioana Ciornei , Jonathan Corbet , Joyce Ooi , Krzysztof Kozlowski , Madalin Bucur , Maxime Coquelin , Michal Simek , Nicolas Ferre , Radhey Shyam Pandey , Rob Herring , Rob Herring , Robert Hancock , Saravana Kannan , UNGLinuxDriver@microchip.com, Vladimir Oltean , Wei Fang , devicetree@vger.kernel.org, imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com References: <20250512161013.731955-1-sean.anderson@linux.dev> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Sean Anderson In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 5/12/25 13:11, Daniel Golle wrote: > On Mon, May 12, 2025 at 12:10:02PM -0400, Sean Anderson wrote: >> This series adds support for creating PCSs as devices on a bus with a >> driver (patch 3). As initial users, >> >> - The Lynx PCS (and all of its users) is converted to this system (patch 5) >> - The Xilinx PCS is broken out from the AXI Ethernet driver (patches 6-8) >> - The Cadence MACB driver is converted to support external PCSs (namely >> the Xilinx PCS) (patches 9-10). > > Are those changes tested on real hardware? Yes. I have tested the Xilinx changes on a custom board which uses both macb and axi ethernet MACs with the Xilinx PCS. I also tested the Lynx PCS changes on an LS1046ARDB. As noted in the AXI Ethernet commit, it has also been tested by Suraj Gupta, although I am not sure what hardware he used. --Sean