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 DC4E42FFDCE; Wed, 24 Sep 2025 12:04:18 +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=1758715459; cv=none; b=m4EzF07KHGUGBcf/PY47KyY0HdCrkWTbKEBXAgQ3NH7nPAs3+XXbLFNmmH/d43/YWXlrmmgW3cZcjndTW3foCRAYb6R8N1VogD+WyMAOEwmG4UvOECkva9j+vRUDE1hHV/fiNpR1XRmbk/SBmj4JwzVjHYbcnXRF9Jx2NbFz8Dc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758715459; c=relaxed/simple; bh=WkKWSTKQK3ER2Y4tGyeGlKZjke1YkCrFXEV5CaatahE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QIjSiU0dcyeNEwTnUV970g9NVEzeq44URqDNpcNZjh7rHfvzXlnGvlCOzFoBq0Bgq0jDwdRs4oFbreKqXX0ZCKL+dLdz12QUzSjPO3K97QIOD0+/MdxEvzn0cx2vBXkPJD3yMAB7mtiqdq8j8MqCSraIBkWLTE2FiIcGBG73YXg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=QjMXdBQg; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="QjMXdBQg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7DF9C4CEE7; Wed, 24 Sep 2025 12:04:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1758715458; bh=WkKWSTKQK3ER2Y4tGyeGlKZjke1YkCrFXEV5CaatahE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=QjMXdBQgx/x1h/za5phJQCEeSYjcj+UkrV7fK0KhNTuOix7QnyxRgr/dbnha9vSd9 zdsd6ZvlYBePWju+YtvQKlxSAwrg12fLt0mCCh0F/Ue4NMqcRTXbuCih7Hd1u2XqYI zqZCxjtSSyjfAVIL0y7H+sT9mHMOZ771oEjotlPU= Date: Wed, 24 Sep 2025 14:04:14 +0200 From: Greg KH To: Danilo Krummrich Cc: Benno Lossin , Joel Fernandes , linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, dri-devel@lists.freedesktop.org, acourbot@nvidia.com, Alistair Popple , Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , bjorn3_gh@protonmail.com, Andreas Hindborg , Alice Ryhl , Trevor Gross , David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , John Hubbard , Timur Tabi , joel@joelfernandes.org, Elle Rhumsaa , Yury Norov , Daniel Almeida , nouveau@lists.freedesktop.org Subject: Re: [PATCH v4 1/6] nova-core: bitfield: Move bitfield-specific code from register! into new macro Message-ID: <2025092433-bakeshop-derail-28a7@gregkh> References: <20250920182232.2095101-1-joelagnelf@nvidia.com> <20250920182232.2095101-2-joelagnelf@nvidia.com> <2025092157-pauper-snap-aad1@gregkh> <2025092125-urban-muppet-1c2f@gregkh> <2025092432-entrust-citizen-0232@gregkh> Precedence: bulk X-Mailing-List: rust-for-linux@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: On Wed, Sep 24, 2025 at 01:28:18PM +0200, Danilo Krummrich wrote: > On Wed Sep 24, 2025 at 12:52 PM CEST, Greg KH wrote: > > Ok, great, but right now it's not doing that from what I am seeing when > > reading the code. Shouldn't IoMem::new() take that as an argument? > > That's correct, neither IoMem nor pci::Bar do consider it yet; it's on the list > of things that still need to be done. > > > But, that feels odd as our current iomem api in C doesn't care about > > endian issues at all because it "assumes" that the caller has already > > handle this properly and all that the caller "wants" is to write/read to > > some memory chunk and not twiddle bits. > > Yet it seems to be the correct place to deal with it. As mentioned below, regmap > could just become part of an I/O backend implementation to do exactly that. > > >> (Actually, we could even implement an I/O backend that uses regmap.) > > > > That would probably be best to do eventually as most platform drivers > > use regmap today as it's the sanest api we have at the moment. > > I agree it's what we should do eventually. > > >> So, I think the register!() stuff is rather orthogonal. > > > > I think it's very relevant as people seem to just be "assuming" that all > > the world (hardware and cpus) are little-endian, while in reality, they > > are anything but. As proof, the code that uses this register!() logic > > today totally ignores endian issues and just assumes that it is both > > running on a little-endian system, AND the hardware is little-endian. > > > > As a crazy example, look at the USB host controllers that at runtime, > > have to be queried to determine what endian they are running on and the > > kernel drivers have to handle this "on the fly". Yes, one can argue > > that the hardware developers who came up with that should be forced to > > write the drivers as penance for such sins, but in the end, it's us that > > has to deal with it... > > > > So ignoring it will get us quite a ways forward with controlling sane > > hardware on sane systems, but when s390 finally realizes they can be > > writing their drivers in rust, we are going to have to have these > > conversations again :) > > I think it's not really that anyone is ignoring it (intentionally). It's two > different things that should be addressed here; yet they are related: > > (1) Implementation of an abstract representation of a register that drivers > can interact with. > > (2) The I/O layer that lays out the raw data on the physcial bus. > > The register!() macro intends to provide an abstract representation of a > register for drivers to interact with. Think of it as an abstract box, where the > memory layout does not matter at all -- could be anything. > > Theoretically, this abstraction could even store every single field of a > register in its own u32 or u64, etc. Of course, that's a waste of memory, which > is why we're using this bitfield thing instead. > > The only thing that matters is that there is a contract between the struct > representing a register (generated by the register!() macro) and the I/O backend > layer that lays out the raw value on the bus. > > This works attempts to address (1), whereas you are (rightfully) asking for (2). > And I think the answer for (2) simply is, we still have to address it. Ok, fair enough, you've convinced me, I'll let you all argue which side the "0" should be on (left or right) :) Let's wait for the first platform drivers to start showing up that want to use regmap, hopefully that will be soon as almost all of the pieces are there to do so. thanks, greg k-h