From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 D063032571D; Thu, 19 Mar 2026 19:55:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773950114; cv=none; b=F/IYUy7ldlx4oJ9OHVDoOvpY0QmgRM0EMB68oH+tIp4naKtQ01DaUBJbSkBpXpNXcRRlJGIsKp6esLLlMhhKg51oCaf1R8U/avwrsAo7NIxs0SqeEBiF6v+bfrxCqyQdM9C0GZjaN8xa6nEsjbMmpGviV9j+Dl1GEBRDKTn1HHw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773950114; c=relaxed/simple; bh=BKVZIah/27SLYSlA2gUiVUQcfkViEh1zQPpjbR2l7E8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=AVVyEfUAVqfHGDlTnlnSHKHX6j5/AueU5SkB+AKzeOleVgSIkjGEX1qEa1kAtcZ4Ju+hXPExgkrIfZAxEMy2j/eAPffacFpiWXaahPQSzT6DJPOL4Ju5FzuBR0om8mmB1s2vd7ypPCcGltjwhRX2uo3ajcoYsAbFFWZtKjZ1ht4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=f3RZ7ji8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="f3RZ7ji8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1D42EC19424; Thu, 19 Mar 2026 19:55:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773950114; bh=BKVZIah/27SLYSlA2gUiVUQcfkViEh1zQPpjbR2l7E8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=f3RZ7ji8vqCdCclzDcS8bxpmooQGTTnlKkdFQgEXQg1eZhvBRCr9f4qrNJ620yjUg YXtywyDtB3wVVShkAOr430yMfXJiqfY3rfQ1InBq05TObVmEqtHm54N2IyAgiJtvOW iKPvf3mUn/pmOYLr3WRNE9a2eJQ/ySMghE5TG76mi4z5rJtyWPdlt7Egf5zN+IxS6Z xfQ7LaxJFhQw4Il7ujQAJneS9zlanA5TqyXxq2dxbOTEGDdKtnTe1CrvJgY3S/N2zu wrBmDbvn+/z5e9BiWqOALDtaQKasCXlGI8VZEuZybeyU/2gPSvL0WXjLUzh5ckvJ4r Ie4Y49eFc4y2A== Date: Thu, 19 Mar 2026 19:52:38 +0000 From: Simon Horman To: Conor Dooley Cc: netdev@vger.kernel.org, Conor Dooley , Valentina.FernandezAlanis@microchip.com, Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Daire McNamara , Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , Nicolas Ferre , Claudiu Beznea , Richard Cochran , Samuel Holland , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org, Dave Stevenson , Sean Anderson , Vineeth Karumanchi , Abin Joseph , =?utf-8?B?VGjDqW8=?= Lebrun , Ryan.Wanner@microchip.com Subject: Re: [PATCH net-next v4 00/13] macb usrio/tsu patches Message-ID: <20260319195238.GT1753385@horms.kernel.org> References: <20260318-surpass-puzzle-f94b46aa8808@spud> 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 In-Reply-To: <20260318-surpass-puzzle-f94b46aa8808@spud> On Wed, Mar 18, 2026 at 04:37:31PM +0000, Conor Dooley wrote: > From: Conor Dooley > > Hey folks, > > At the very least, it'd be good of the soc vendor folks could check > their platforms and see if their usrio stuff actually lines up with what > the driver currently calls "macb_default_usrio". Ours didn't and it was > a nasty surprise. > > Ryan and I figured out that the sama7g5 stuff is not actually using the > same usrio bits as earlier devices, so there's now more patches in this > series to split them apart. I've not tested the split or the new > property due to lack of hardware, but Ryan has. > > Marking this stuff net-next, because although they're fixes I don't see > any particular urgency, and it avoids creating some dependencies between > cleanup items and the fixes. > > Cheers, > Conor. > > v4: > - deprecate instead of remove existing devicetree property > - pick up Theo's patches > > v3: > - reorder patches > - fix smatch issue reported by Simon > - add patches reworking usrio handling of clken/refclk (and remove the > issue the llm reported in the process) > - add a new devicetree property for refclk selection, replacing the > existing one. > - drop the dts patch Hi Conor, Unfortunately this does not apply cleanly to net-next, which breaks our CI. Please rebase and repost. Thanks! -- pw-bot: changes-requested