summaryrefslogtreecommitdiffstats
path: root/rust/kernel/gpu.rs
diff options
context:
space:
mode:
authorJoel Fernandes <joelagnelf@nvidia.com>2026-03-20 00:57:10 -0400
committerDanilo Krummrich <dakr@kernel.org>2026-03-23 21:41:47 +0100
commitb9616d9721bf8a56d5038e85d2ebbe0ec9d56a94 (patch)
tree1105b3ed5f65e884f94cd9f463509f7c60a75f13 /rust/kernel/gpu.rs
parentf9f0b4a1f35d39a1a2a2f8ec46eb7b81efc70a63 (diff)
downloadlinux-b9616d9721bf8a56d5038e85d2ebbe0ec9d56a94.tar.gz
linux-b9616d9721bf8a56d5038e85d2ebbe0ec9d56a94.zip
rust: gpu: Add GPU buddy allocator bindings
Add safe Rust abstractions over the Linux kernel's GPU buddy allocator for physical memory management. The GPU buddy allocator implements a binary buddy system useful for GPU physical memory allocation. nova-core will use it for physical memory allocation. Cc: Nikola Djukic <ndjukic@nvidia.com> Signed-off-by: Joel Fernandes <joelagnelf@nvidia.com> Reviewed-by: Alexandre Courbot <acourbot@nvidia.com> Link: https://patch.msgid.link/20260320045711.43494-2-joelagnelf@nvidia.com [ * Use doc-comments for GpuBuddyAllocMode methods and GpuBuddyGuard, * Fix comma splice in GpuBuddyParams::chunk_size doc-comment, * Remove redundant summary in GpuBuddy::new doc-comment, * Drop Rust helper for gpu_buddy_block_size(). - Danilo ] Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Diffstat (limited to 'rust/kernel/gpu.rs')
-rw-r--r--rust/kernel/gpu.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/rust/kernel/gpu.rs b/rust/kernel/gpu.rs
new file mode 100644
index 000000000000..1dc5d0c8c09d
--- /dev/null
+++ b/rust/kernel/gpu.rs
@@ -0,0 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0
+
+//! GPU subsystem abstractions.
+
+#[cfg(CONFIG_GPU_BUDDY = "y")]
+pub mod buddy;