Nouveau Archive on lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-02-18 21:21:41 to 2026-02-25 08:26:04 UTC [more...]

[PATCH v11 0/2] rust: clist patches for nova-core memory management
 2026-02-25  8:25 UTC  (5+ messages)
` [PATCH v11 1/2] rust: ffi: Convert pub use to pub mod and create ffi module
` [PATCH v11 2/2] rust: clist: Add support to interface with C linked lists

[PATCH v8 00/25] gpu: nova-core: Add memory management support
 2026-02-25  5:39 UTC  (27+ messages)
` [PATCH v8 01/25] gpu: nova-core: Select GPU_BUDDY for VRAM allocation
` [PATCH v8 02/25] gpu: nova-core: Kconfig: Sort select statements alphabetically
` [PATCH v8 03/25] gpu: nova-core: gsp: Return GspStaticInfo and FbLayout from boot()
` [PATCH v8 04/25] gpu: nova-core: gsp: Extract usable FB region from GSP
` [PATCH v8 05/25] gpu: nova-core: fb: Add usable_vram field to FbLayout
` [PATCH v8 06/25] gpu: nova-core: mm: Add support to use PRAMIN windows to write to VRAM
` [PATCH v8 07/25] docs: gpu: nova-core: Document the PRAMIN aperture mechanism
` [PATCH v8 08/25] gpu: nova-core: mm: Add common memory management types
` [PATCH v8 09/25] gpu: nova-core: mm: Add TLB flush support
` [PATCH v8 10/25] gpu: nova-core: mm: Add GpuMm centralized memory manager
` [PATCH v8 11/25] gpu: nova-core: mm: Use usable VRAM region for buddy allocator
` [PATCH v8 12/25] gpu: nova-core: mm: Add common types for all page table formats
` [PATCH v8 13/25] gpu: nova-core: mm: Add MMU v2 page table types
` [PATCH v8 14/25] gpu: nova-core: mm: Add MMU v3 "
` [PATCH v8 15/25] gpu: nova-core: mm: Add unified page table entry wrapper enums
` [PATCH v8 16/25] gpu: nova-core: mm: Add page table walker for MMU v2/v3
` [PATCH v8 17/25] gpu: nova-core: mm: Add Virtual Memory Manager
` [PATCH v8 18/25] gpu: nova-core: mm: Add virtual address range tracking to VMM
` [PATCH v8 19/25] gpu: nova-core: mm: Add multi-page mapping API "
` [PATCH v8 20/25] gpu: nova-core: Add BAR1 aperture type and size constant
` [PATCH v8 21/25] gpu: nova-core: gsp: Add BAR1 PDE base accessors
` [PATCH v8 22/25] gpu: nova-core: mm: Add BAR1 user interface
` [PATCH v8 23/25] gpu: nova-core: mm: Add BarUser to struct Gpu and create at boot
` [PATCH v8 24/25] gpu: nova-core: mm: Add BAR1 memory management self-tests
` [PATCH v8 25/25] gpu: nova-core: mm: Add PRAMIN aperture self-tests

[PATCH v3 0/8] gpu: nova-core: miscellaneous improvements
 2026-02-25  1:01 UTC  (4+ messages)

[PATCH v3 0/5] gpu: nova-core: gsp: fix command queue ring buffer bugs
 2026-02-25  1:00 UTC  (3+ messages)

[PATCH v2 0/5] gpu: nova-core: use checked arithmetic for firmware parsing robustness
 2026-02-25  0:59 UTC  (3+ messages)

[PATCH v11 0/4] Rust GPU buddy allocator bindings
 2026-02-24 22:40 UTC  (5+ messages)
` [reference PATCH v11 1/4] gpu: Move DRM buddy allocator one level up (part one)
` [reference PATCH v11 2/4] gpu: Move DRM buddy allocator one level up (part two)
` [reference PATCH v11 3/4] gpu: Fix uninitialized buddy for built-in drivers
` [PATCH v11 4/4] rust: gpu: Add GPU buddy allocator bindings

[PATCH v10 0/8] Preparatory patches for nova-core memory management
 2026-02-24 16:15 UTC  (66+ messages)
` [PATCH v10 2/8] gpu: Move DRM buddy allocator one level up (part two)
` [PATCH v10 3/8] gpu: Fix uninitialized buddy for built-in drivers
` [PATCH v10 4/8] rust: ffi: Convert pub use to pub mod and create ffi module
` [PATCH v10 5/8] rust: clist: Add support to interface with C linked lists
` [PATCH v10 6/8] rust: gpu: Add GPU buddy allocator bindings
` [PATCH v10 7/8] nova-core: mm: Select GPU_BUDDY for VRAM allocation

[PATCH v5 00/38] gpu: nova-core: firmware: Hopper/Blackwell support
 2026-02-24 14:47 UTC  (50+ messages)
` [PATCH v5 01/38] gpu: nova-core: fix aux device registration for multi-GPU systems
` [PATCH v5 02/38] gpu: nova-core: pass pdev directly to dev_* logging macros
` [PATCH v5 03/38] gpu: nova-core: print FB sizes, along with ranges
` [PATCH v5 04/38] gpu: nova-core: add FbRange.len() and use it in boot.rs
` [PATCH v5 05/38] gpu: nova-core: Hopper/Blackwell: basic GPU identification
` [PATCH v5 06/38] gpu: nova-core: factor .fwsignature* selection into a new find_gsp_sigs_section()
` [PATCH v5 07/38] gpu: nova-core: use GPU Architecture to simplify HAL selections
` [PATCH v5 08/38] gpu: nova-core: apply the one "use" item per line policy to commands.rs
` [PATCH v5 09/38] gpu: nova-core: move GPU init and DMA mask setup into Gpu::new()
` [PATCH v5 10/38] gpu: nova-core: set DMA mask width based on GPU architecture
` [PATCH v5 11/38] gpu: nova-core: Hopper/Blackwell: skip GFW boot waiting
` [PATCH v5 12/38] gpu: nova-core: move firmware image parsing code to firmware.rs
` [PATCH v5 13/38] gpu: nova-core: factor out an elf_str() function
` [PATCH v5 14/38] gpu: nova-core: don't assume 64-bit firmware images
` [PATCH v5 15/38] gpu: nova-core: add support for 32-bit "
` [PATCH v5 16/38] gpu: nova-core: add auto-detection of 32-bit, 64-bit "
` [PATCH v5 17/38] gpu: nova-core: Hopper/Blackwell: add FMC firmware image, in support of FSP
` [PATCH v5 18/38] gpu: nova-core: Hopper/Blackwell: add FSP falcon engine stub
` [PATCH v5 19/38] gpu: nova-core: Hopper/Blackwell: add FSP falcon EMEM operations
` [PATCH v5 20/38] gpu: nova-core: Hopper/Blackwell: add FSP message infrastructure
` [PATCH v5 21/38] rust: ptr: add const_align_up() and enable inline_const feature
` [PATCH v5 22/38] gpu: nova-core: Hopper/Blackwell: calculate reserved FB heap size
` [PATCH v5 23/38] gpu: nova-core: add MCTP/NVDM protocol types for firmware communication
` [PATCH v5 24/38] gpu: nova-core: Hopper/Blackwell: add FSP secure boot completion waiting
` [PATCH v5 25/38] gpu: nova-core: Hopper/Blackwell: add FSP message structures
` [PATCH v5 26/38] gpu: nova-core: Hopper/Blackwell: add FMC signature extraction
` [PATCH v5 27/38] gpu: nova-core: Hopper/Blackwell: add FSP send/receive messaging
` [PATCH v5 28/38] gpu: nova-core: Hopper/Blackwell: add FspCotVersion type
` [PATCH v5 29/38] gpu: nova-core: Hopper/Blackwell: larger non-WPR heap
` [PATCH v5 30/38] gpu: nova-core: Hopper/Blackwell: add FSP Chain of Trust boot
` [PATCH v5 31/38] gpu: nova-core: Blackwell: use correct sysmem flush registers
` [PATCH v5 32/38] gpu: nova-core: Hopper/Blackwell: larger WPR2 (GSP) heap
` [PATCH v5 33/38] gpu: nova-core: refactor SEC2 booter loading into BooterFirmware::run()
` [PATCH v5 34/38] gpu: nova-core: Hopper/Blackwell: add GSP lockdown release polling
` [PATCH v5 35/38] gpu: nova-core: Hopper/Blackwell: new location for PCI config mirror
` [PATCH v5 36/38] gpu: nova-core: Hopper/Blackwell: integrate FSP boot path into boot()
` [PATCH v5 37/38] rust: sizes: add u64 variants of SZ_* constants
` [PATCH v5 38/38] gpu: nova-core: use SZ_*_U64 constants from kernel::sizes

[PATCH v2 7/8] gpu: nova-core: remove redundant `.as_ref()` for `dev_*` print
 2026-02-24 14:17 UTC  (2+ messages)

[PATCH v3 0/2] drm/nouveau: zcull support
 2026-02-24 14:14 UTC  (4+ messages)
` [PATCH v3 1/2] drm/nouveau: Fetch zcull info from device
` [PATCH v3 2/2] drm/nouveau: Add DRM_IOCTL_NOUVEAU_GET_ZCULL_INFO

[PATCH] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep
 2026-02-24  3:17 UTC 

[PATCH v9 0/9] gpu: nova-core: add Turing support
 2026-02-24  2:31 UTC  (6+ messages)
` [PATCH v9 6/9] gpu: nova-core: add PIO support for loading firmware images
` [PATCH v9 9/9] gpu: nova-core: use the Generic Bootloader to boot FWSEC on Turing

[PATCH v4 00/33] gpu: nova-core: firmware: Hopper/Blackwell support
 2026-02-23  3:36 UTC  (33+ messages)
` [PATCH v4 17/33] gpu: nova-core: Hopper/Blackwell: add FSP falcon EMEM operations
` [PATCH v4 18/33] gpu: nova-core: Hopper/Blackwell: add FSP message infrastructure
    ` Tegra notes for Nova: "
` [PATCH v4 19/33] gpu: nova-core: Hopper/Blackwell: calculate reserved FB heap size
` [PATCH v4 20/33] gpu: nova-core: Hopper/Blackwell: add FSP secure boot completion waiting
` [PATCH v4 24/33] gpu: nova-core: Hopper/Blackwell: add FSP Chain of Trust boot
` [PATCH v4 25/33] gpu: nova-core: Hopper/Blackwell: larger non-WPR heap
` [PATCH v4 27/33] gpu: nova-core: Hopper/Blackwell: larger WPR2 (GSP) heap
` [PATCH v4 28/33] gpu: nova-core: refactor SEC2 booter loading into run_booter() helper
` [PATCH v4 29/33] gpu: nova-core: Hopper/Blackwell: add GSP lockdown release polling

[PATCH v7 00/23] nova-core: Add memory management support
 2026-02-20  3:25 UTC  (14+ messages)
` [PATCH v7 15/23] nova-core: mm: Add multi-page mapping API to VMM
` [PATCH v7 16/23] nova-core: mm: Add BAR1 user interface
` [PATCH v7 17/23] nova-core: gsp: Return GspStaticInfo and FbLayout from boot()
` [PATCH v7 18/23] nova-core: mm: Add BAR1 memory management self-tests
` [PATCH v7 19/23] nova-core: mm: Add PRAMIN aperture self-tests
` [PATCH v7 20/23] nova-core: gsp: Extract usable FB region from GSP
` [PATCH v7 21/23] nova-core: fb: Add usable_vram field to FbLayout
` [PATCH v7 22/23] nova-core: mm: Use usable VRAM region for buddy allocator
` [PATCH v7 23/23] nova-core: mm: Add BarUser to struct Gpu and create at boot

[PATCH -next v9 0/3] rust: Add CList and GPU buddy allocator bindings
 2026-02-20  1:57 UTC  (8+ messages)
` [PATCH -next v9 1/3] rust: clist: Add support to interface with C linked lists

[PATCH v2 0/9] gpu: nova-core: gsp: add continuation record support
 2026-02-19  7:30 UTC  (10+ messages)
` [PATCH v2 1/9] gpu: nova-core: gsp: sort MsgFunction variants alphabetically
` [PATCH v2 2/9] gpu: nova-core: gsp: add mechanism to wait for space on command queue
` [PATCH v2 3/9] rust: add EMSGSIZE error code
` [PATCH v2 4/9] gpu: nova-core: gsp: add checking oversized commands
` [PATCH v2 5/9] gpu: nova-core: gsp: clarify invariant on command queue
` [PATCH v2 6/9] gpu: nova-core: gsp: unconditionally call variable payload handling
` [PATCH v2 7/9] gpu: nova-core: gsp: add command_size helper
` [PATCH v2 8/9] gpu: nova-core: gsp: support large RPCs via continuation record
` [PATCH v2 9/9] gpu: nova-core: gsp: add tests for SplitState

[PATCH v3] gpu: nova-core: fix stack overflow in GSP memory allocation
 2026-02-18 23:23 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox