- Apr 03, 2025
-
-
Add a GPUVM abstraction to be used by Rust GPU drivers. GPUVM keeps track of a GPU's virtual address (VA) space and manages the corresponding virtual mappings represented by "GPU VA" objects. It also keeps track of the mapping's backing GEM buffers. This initial version only support synchronous operations. In other words, we do not support the use case where the operations are pre-built and handed over to the driver. We also do not support using a driver-specific lock in order to serialize the gpuva list for a given GEM object. This has to be the GEM object resv, which is the default behavior in C. Similarly to the C code, locking is left to the driver. This means that the driver should make sure that the VM's interval tree is protected against concurrent access. In Rust, we encode this requirement by requiring a generic Guard type in GpuVm::lock(), which is a similar approach as the one taken by CondVar. It is up to drivers to make sure that the guard indeed provides the required locking. Any operations that modifies the interval tree is only available after the VM has been locked as per above. Signed-off-by:
Asahi Lina <lina@asahilina.net> Co-developed-by:
Daniel Almeida <daniel.almeida@collabora.com> Signed-off-by:
Daniel Almeida <daniel.almeida@collabora.com>
-
- Mar 24, 2025
-
-
This is just for basic usage in the DRM shmem abstractions for implied locking, not intended as a full DMA Reservation abstraction yet. Signed-off-by:
Asahi Lina <lina@asahilina.net>
-
- Mar 20, 2025
-
-
Daniel Almeida authored
# Describe the purpose of this series. The information you put here # will be used by the project maintainer to make a decision whether # your patches should be reviewed, and in what priority order. Please be # very detailed and link to any relevant discussions or sites that the # maintainer can review to better understand your proposed changes. If you # only have a single patch in your series, the contents of the cover # letter will be appended to the "under-the-cut" portion of the patch. # Lines starting with # will be removed from the cover letter. You can # use them to add notes or reminders to yourself. If you want to use # markdown headers in your cover letter, start the line with ">#". # You can add trailers to the cover letter. Any email addresses found in # these trailers will be added to the addresses specified/generated # during the b4 send stage. You can also run "b4 prep --auto-to-cc" to # auto-populate the To: and Cc: trailers based on the code being # modified. Changes from v0: This version changes how `LockedGpuVm` operates. The previous code assumed that the interval tree would be protected if all the associated GEM's resvs were locked, but this is completely unrelated. In fact, this initial version only aims to support the core VA range management feature of GPUVM, and not any of the "convenience" functions like "exec_lock()" and friends, so this function was removed accordingly. LockedGpuVm is now produced by a call to GpuVm::lock(). This takes a generic guard type to signal that the driver-specific locks have been acquired in order to protect the VMs tree, and hence its view of the address space. This approach is somewhat similar to CondVar, but also incurs in the same pitfall: it is up to the caller to give meaning to the guard by ensuring that it actually protects against concurrent access to the VM. Maybe this is a good candidate to the upcoming "Pitfall" docs section? Note that LockedGpuVm::obj was removed. I'm not really sure why this field was there in the first place, but callers should indicate the object through the sm_map() and sm_unmap() APIs instead. I am not sure why GpuVm::inner uses UnsafeCell, though. I did not touch this so that we can first discuss whether UnsafeCell is really needed. The docs were also updated. Care was taken to reuse the C documentation as much as possible. Itemized changes: - Rebased on top of nova-drm - Use `srctree` in the docs - Add docs as appropriate and remove #[allow(missing_docs)] - Remove `impl DriverGpuVa for ()`. Drivers can to that themselves, if they want. - Added #[inline] to getters, as Rust cannot inline across crates otherwise (unless this changed recently?) - Exposed `drm_gpuva_op_unmap::keep`. - Removed `pub(super)` from unsafe fns meant to be called from the C code. - Added "# Safety" blocks to the above. - Removed `exec_lock_gem_object()`. - Removed `exec_lock()` - Removed `LockedGpuVm::vm_exec`. This initial version does not support `exec` calls at all. - By the same token, removed `LockedGpuVm::drop()` - Removed `LockedGpuVm::obj`. This object has to be passed explicitly. To: Miguel Ojeda <ojeda@kernel.org> To: Alex Gaynor <alex.gaynor@gmail.com> To: Boqun Feng <boqun.feng@gmail.com> To: Gary Guo <gary@garyguo.net> To: Björn Roy Baron <bjorn3_gh@protonmail.com> To: Benno Lossin <benno.lossin@proton.me> To: Andreas Hindborg <a.hindborg@kernel.org> To: Alice Ryhl <aliceryhl@google.com> To: Trevor Gross <tmgross@umich.edu> To: Sumit Semwal <sumit.semwal@linaro.org> To: Christian König <christian.koenig@amd.com> To: Boris Brezillon <boris.brezillon@collabora.com> Cc: linux-kernel@vger.kernel.org Cc: rust-for-linux@vger.kernel.org Cc: dri-devel@lists.freedesktop.org --- b4-submit-tracking --- # This section is used internally by b4 prep for tracking purposes. { "series": { "revision": 1, "change-id": "20250320-gpuvm-29d3e0726f34", "prefixes": [] } }
-
- Mar 19, 2025
-
-
Danilo Krummrich authored
Add the initial nova-drm driver stub. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Register an auxiliary device for nova-drm. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Asahi Lina authored
The DRM GEM subsystem is the DRM memory management subsystem used by most modern drivers. Add a Rust abstraction to allow Rust DRM driver implementations to use it. Signed-off-by:
Asahi Lina <lina@asahilina.net> Co-developed-by:
Danilo Krummrich <dakr@redhat.com> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Asahi Lina authored
A DRM File is the DRM counterpart to a kernel file structure, representing an open DRM file descriptor. Add a Rust abstraction to allow drivers to implement their own File types that implement the DriverFile trait. Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement the DRM driver `Registration`. The `Registration` structure is responsible to register and unregister a DRM driver. It makes use of the `Devres` container in order to allow the `Registration` to be owned by devres, such that it is automatically dropped (and the DRM driver unregistered) once the parent device is unbound. Co-developed-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement the abstraction for a `struct drm_device`. A `drm::device::Device` creates a static const `struct drm_driver` filled with the data from the `drm::drv::Driver` trait implementation of the actual driver creating the `drm::device::Device`. Co-developed-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement the DRM driver abstractions. The `Driver` trait provides the interface to the actual driver to fill in the driver specific data, such as the `DriverInfo`, driver features and IOCTLs. Co-developed-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Asahi Lina authored
Some traits exposed by the kernel crate may not be intended to be implemented by downstream modules. Add a Sealed trait to allow avoiding this using the sealed trait pattern. Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Asahi Lina authored
DRM drivers need to be able to declare which driver-specific ioctls they support. Add an abstraction implementing the required types and a helper macro to generate the ioctl definition inside the DRM driver. Note that this macro is not usable until further bits of the abstraction are in place (but it will not fail to compile on its own, if not called). Signed-off-by:
Asahi Lina <lina@asahilina.net> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Add a sample Rust auxiliary driver based on a PCI driver for QEMU's "pci-testdev" device. The PCI driver only registers an auxiliary device, in order to make the corresponding auxiliary driver probe. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement the `auxiliary::Registration` type, which provides an API to create and register new auxiliary devices in the system. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement the basic auxiliary abstractions required to implement a driver matching an auxiliary device. The design and implementation is analogous to PCI and platform and is based on the generic device / driver abstractions. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
In Rust we can safely derive a struct auxiliary_device pointer from a generic struct device pointer by checking dev->bus == auxiliary_bus_type hence, export auxiliary_bus_type. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Analogous to `Opaque::uninit` add `Opaque::zeroed`, which sets the corresponding memory to zero. In contrast to `Opaque::uninit`, the corresponding value, depending on its type, may be initialized. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement TryFrom<&device::Device> for &Device. This allows us to get a &platform::Device from a generic &Device in a safe way; the conversion fails if the device' bus type does not match with the platform bus type. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement TryFrom<&device::Device> for &Device. This allows us to get a &pci::Device from a generic &Device in a safe way; the conversion fails if the device' bus type does not match with the PCI bus type. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Implement bus_type_raw(), which returns a raw pointer to the device' struct bus_type. This is useful for bus devices, to implement the following trait. impl TryFrom<&Device> for &pci::Device With this a caller can try to get the bus specific device from a generic device in a safe way. try_from() will only succeed if the generic device' bus type pointer matches the pointer of the bus' type. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Device::parent() returns a reference to the device' parent device, if any. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
The instance of Self, returned and created by Driver::probe() is dropped in the bus' remove() callback. Request implementers of the Driver trait to implement Send, since the remove() callback is not guaranteed to run from the same thread as probe(). Fixes: 683a63be ("rust: platform: add basic platform device / driver abstractions") Reported-by:
Alice Ryhl <aliceryhl@google.com> Closes: https://lore.kernel.org/lkml/Z9rDxOJ2V2bPjj5i@google.com/ Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
The instance of Self, returned and created by Driver::probe() is dropped in the bus' remove() callback. Request implementers of the Driver trait to implement Send, since the remove() callback is not guaranteed to run from the same thread as probe(). Fixes: 1bd8b6b2 ("rust: pci: add basic PCI device / driver abstractions") Reported-by:
Alice Ryhl <aliceryhl@google.com> Closes: https://lore.kernel.org/lkml/Z9rDxOJ2V2bPjj5i@google.com/ Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Commit 4d320e30 ("rust: platform: fix unrestricted &mut platform::Device") changed the definition of platform::Device and discarded the implicitly derived Send and Sync traits. This isn't required by upstream code yet, and hence did not cause any issues. However, it is relied on by upcoming drivers, hence add it back in. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Commit 7b948a2a ("rust: pci: fix unrestricted &mut pci::Device") changed the definition of pci::Device and discarded the implicitly derived Send and Sync traits. This isn't required by upstream code yet, and hence did not cause any issues. However, it is relied on by upcoming drivers, hence add it back in. Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
- Mar 14, 2025
-
-
Danilo Krummrich authored
As by now, platform::Device is implemented as: #[derive(Clone)] pub struct Device(ARef<device::Device>); This may be convenient, but has the implication that drivers can call device methods that require a mutable reference concurrently at any point of time. Instead define platform::Device as pub struct Device<Ctx: DeviceContext = Normal>( Opaque<bindings::platform_dev>, PhantomData<Ctx>, ); and manually implement the AlwaysRefCounted trait. With this we can implement methods that should only be called from bus callbacks (such as probe()) for platform::Device<Core>. Consequently, we make this type accessible in bus callbacks only. Arbitrary references taken by the driver are still of type ARef<platform::Device> and hence don't provide access to methods that are reserved for bus callbacks. Fixes: 683a63be ("rust: platform: add basic platform device / driver abstractions") Reviewed-by:
Benno Lossin <benno.lossin@proton.me> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
As by now, pci::Device is implemented as: #[derive(Clone)] pub struct Device(ARef<device::Device>); This may be convenient, but has the implication that drivers can call device methods that require a mutable reference concurrently at any point of time. Instead define pci::Device as pub struct Device<Ctx: DeviceContext = Normal>( Opaque<bindings::pci_dev>, PhantomData<Ctx>, ); and manually implement the AlwaysRefCounted trait. With this we can implement methods that should only be called from bus callbacks (such as probe()) for pci::Device<Core>. Consequently, we make this type accessible in bus callbacks only. Arbitrary references taken by the driver are still of type ARef<pci::Device> and hence don't provide access to methods that are reserved for bus callbacks. Fixes: 1bd8b6b2 ("rust: pci: add basic PCI device / driver abstractions") Reviewed-by:
Benno Lossin <benno.lossin@proton.me> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Some bus device functions should only be called from bus callbacks, such as probe(), remove(), resume(), suspend(), etc. To ensure this add device context marker structs, that can be used as generics for bus device implementations. Reviewed-by:
Benno Lossin <benno.lossin@proton.me> Suggested-by:
Benno Lossin <benno.lossin@proton.me> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Simplify enable_device_mem() by using to_result() to handle the return value of the corresponding FFI call. Reviewed-by:
Benno Lossin <benno.lossin@proton.me> Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
- Mar 09, 2025
-
-
Danilo Krummrich authored
Add the initial documentation of the Nova project. The initial project documentation consists out of a brief introduction of the project, as well as project guidelines both general and nova-core specific and a task list for nova-core specifically. The task list is divided into tasks for general Rust infrastructure required by the project, tasks regarding GSP enablement and firmware abstraction, general GPU driver tasks as well as tasks related to external API design and test infrastructure. Reviewed-by:
Alexandre Courbot <acourbot@nvidia.com> Link: https://lore.kernel.org/r/20250306222336.23482-6-dakr@kernel.org Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Add the initial nova-core driver stub. nova-core is intended to serve as a common base for nova-drm (the corresponding DRM driver) and the vGPU manager VFIO driver, serving as a hard- and firmware abstraction layer for GSP-based NVIDIA GPUs. The Nova project, including nova-core and nova-drm, in the long term, is intended to serve as the successor of Nouveau for all GSP-based GPUs. The motivation for both, starting a successor project for Nouveau and doing so using the Rust programming language, is documented in detail through a previous post on the mailing list [1], an LWN article [2] and a talk from LPC '24. In order to avoid the chicken and egg problem to require a user to upstream Rust abstractions, but at the same time require the Rust abstractions to implement the driver, nova-core kicks off as a driver stub and is subsequently developed upstream. Link: https://lore.kernel.org/dri-devel/Zfsj0_tb-0-tNrJy@cassiopeiae/T/#u [1] Link: https://lwn.net/Articles/990736/ [2] Link: https://youtu.be/3Igmx28B3BQ?si=sBdSEer4tAPKGpOs [3] Reviewed-by:
Alexandre Courbot <acourbot@nvidia.com> Link: https://lore.kernel.org/r/20250306222336.23482-5-dakr@kernel.org Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
Analogous to the `module!` macro `module_firmware!` adds additional firmware path strings to the .modinfo section. In contrast to `module!`, where path strings need to be string literals, path strings can be composed with the `firmware::ModInfoBuilder`. Some drivers require a lot of firmware files (such as nova-core) and hence benefit from more flexibility composing firmware path strings. Acked-by:
Jarkko Sakkinen <jarkko@kernel.org> Link: https://lore.kernel.org/r/20250306222336.23482-4-dakr@kernel.org Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
The `firmware` field of the `module!` only accepts literal strings, which is due to the fact that it is implemented as a proc macro. Some drivers require a lot of firmware files (such as nova-core) and hence benefit from more flexibility composing firmware path strings. The `firmware::ModInfoBuilder` is a helper component to flexibly compose firmware path strings for the .modinfo section in const context. It is meant to be used in combination with `kernel::module_firmware!`. Co-developed-by:
Alice Ryhl <aliceryhl@google.com> Signed-off-by:
Alice Ryhl <aliceryhl@google.com> Link: https://lore.kernel.org/r/20250306222336.23482-3-dakr@kernel.org Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
Danilo Krummrich authored
The `LocalModule` type is the type of the module created by `module!`, `module_pci_driver!`, `module_platform_driver!`, etc. Since the exact type of the module is sometimes generated on the fly by the listed macros, provide an alias. This is first used by the `module_firmware!` macro. Acked-by:
Miguel Ojeda <ojeda@kernel.org> Suggested-by:
Alice Ryhl <aliceryhl@google.com> Link: https://lore.kernel.org/r/20250306222336.23482-2-dakr@kernel.org Signed-off-by:
Danilo Krummrich <dakr@kernel.org>
-
- Mar 02, 2025
-
-
Linus Torvalds authored
-
git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengineLinus Torvalds authored
Pull dmaengine fixes from Vinod Koul: - tegra210 div_u64 divison and max page fixes - revert Qualcomm unavailable register workaround which is causing regression, fixes have been proposed but still gaps are present so revert this for now * tag 'dmaengine-fix-6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine: dmaengine: Revert "dmaengine: qcom: bam_dma: Avoid writing unavailable register" dmaengine: tegra210-adma: check for adma max page dmaengine: tegra210-adma: Use div_u64 for 64 bit division
-
git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phyLinus Torvalds authored
Pull phy fixes from Vinod Koul: - rockchip phy kconfig dependency fix with USB_COMMON and regression fix for old DT - stm32 phy overflow assertion fix - exonysfs phy refclk masks fix and power gate on exit fix - freescale fix for clock dividor valid range - TI regmap syscon register fix - tegra reset registers on init fix * tag 'phy-fixes-6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy: phy: tegra: xusb: reset VBUS & ID OVERRIDE phy: ti: gmii-sel: Do not use syscon helper to build regmap phy: exynos5-usbdrd: gs101: ensure power is gated to SS phy in phy_exit() phy: freescale: fsl-samsung-hdmi: Limit PLL lock detection clock divider to valid range phy: exynos5-usbdrd: fix MPLL_MULTIPLIER and SSC_REFCLKSEL masks in refclk phy: stm32: Fix constant-value overflow assertion phy: rockchip: naneng-combphy: compatible reset with old DT phy: rockchip: fix Kconfig dependency more
-
git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linuxLinus Torvalds authored
Pull gpio fix from Bartosz Golaszewski: - fix a buggy get_direction() retval check * tag 'gpio-fixes-for-v6.14-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: gpiolib: Fix Oops in gpiod_direction_input_nonotify()
-
git://git.kernel.org/pub/scm/linux/kernel/git/mips/linuxLinus Torvalds authored
Pull MIPS fix from Thomas Bogendoerfer: "Fix fallout of /scripts/sorttable cleanup" * tag 'mips-fixes_6.14_2' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: MIPS: Ignore relocs against __ex_table for relocatable kernel
-
git://git.samba.org/sfrench/cifs-2.6Linus Torvalds authored
Pull smb client fix from Steve French: "Fix SMB1 netfs client regression" * tag 'v6.14-rc4-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6: cifs: Fix the smb1 readv callback to correctly call netfs
-