NVIDIA GPU driver infrastructure
 help / color / mirror / Atom feed
 messages from 2026-06-08 16:16:19 to 2026-06-15 14:52:51 UTC [more...]

[PATCH v4 00/20] rust: I/O type generalization and projection
 2026-06-15 14:52 UTC  (35+ messages)
` [PATCH v4 01/20] rust: io: add dynamically-sized `Region` type
` [PATCH v4 02/20] rust: io: add missing safety requirement in `IoCapable` methods
` [PATCH v4 03/20] rust: io: restrict untyped IO access and `register!` to `Region`
` [PATCH v4 04/20] rust: io: implement `Io` on reference types instead
` [PATCH v4 05/20] rust: io: generalize `MmioRaw` to pointer to arbitrary type
` [PATCH v4 06/20] rust: io: rename `Mmio` to `MmioOwned`
` [PATCH v4 07/20] rust: io: implement `Mmio` as view type
` [PATCH v4 08/20] rust: pci: io: make `ConfigSpace` a view
` [PATCH v4 09/20] rust: io: use view types instead of addresses for `Io`
` [PATCH v4 10/20] rust: io: remove `MmioOwned`
` [PATCH v4 11/20] rust: io: move `Io` methods to extension trait
` [PATCH v4 12/20] rust: prelude: add `zerocopy{,_derive}::IntoBytes`
` [PATCH v4 13/20] rust: io: add projection macro and methods
` [PATCH v4 14/20] rust: io: add I/O backend for system memory with volatile access
` [PATCH v4 15/20] rust: io: implement a view type for `Coherent`
` [PATCH v4 16/20] rust: io: add `read_val` and `write_val` functions on `Io`
` [PATCH v4 17/20] gpu: nova-core: use I/O projection for cleaner encapsulation
` [PATCH v4 18/20] rust: dma: drop `dma_read!` and `dma_write!` API
` [PATCH v4 19/20] rust: io: add copying methods
` [PATCH v4 20/20] rust: io: implement `IoSysMap`

[PATCH 00/13] gpu: nova-core: blackwell follow-ups and fixes
 2026-06-15 14:40 UTC  (14+ messages)
` [PATCH 01/13] gpu: nova-core: fsp: limit FSP receive message allocation size
` [PATCH 02/13] gpu: nova-core: fsp: catch bogus queue pointer issues
` [PATCH 03/13] gpu: nova-core: fsp: try to enforce exclusive access to FSP channel
` [PATCH 04/13] gpu: nova-core: falcon: gsp: move PRIV target mask constants
` [PATCH 05/13] gpu: nova-core: gsp: keep FMC boot params DMA region alive during error
` [PATCH 06/13] gpu: nova-core: fsp: move FMC firmware loading into wait_secure_boot
` [PATCH 07/13] gpu: nova-core: gsp: ensure lifetime for FMC boot DMA allocations
` [PATCH 08/13] gpu: nova-core: gsp: ensure LibOS DMA allocation lives long enough
` [PATCH 09/13] gpu: nova-core: wait for FSP boot earlier
` [PATCH 10/13] gpu: nova-core: split FbLayout into FSP and non-FSP versions
` [PATCH 11/13] gpu: nova-core: correct FRTS vidmem offset calculation
` [PATCH 12/13] gpu: nova-core: rename heap size field
` [PATCH 13/13] gpu: nova-core: return non-WPR heap size as u64 from HALs

[PATCH v2] gpu: nova-core: gsp: Move gsp register definition into gsp module
 2026-06-13 14:21 UTC  (7+ messages)

[PATCH v4] rust: make `build_assert` module the home of related macros
 2026-06-13  9:49 UTC  (9+ messages)

[PATCH 0/8] Transition Nova Core to TLV firmware images
 2026-06-12 23:39 UTC  (51+ messages)
` [PATCH 1/8] rust: firmware: add request_into_buf()
` [PATCH 2/8] gpu: nova-core: add request_tlv to load TLV images
` [PATCH 3/8] gpu: nova-core: add TLV parser for firmware files
` [PATCH 4/8] gpu: nova-core: transition booter_load to TLV images
` [PATCH 5/8] gpu: nova-core: transition gsp "
` [PATCH 6/8] gpu: nova-core: transition gen_bootloader "
` [PATCH 7/8] gpu: nova-core: transition fsp "
` [PATCH 8/8] gpu: nova-core: update firmware module info for "

[PATCH] gpu: nova-core: remove `#[allow(non_snake_case)]`
 2026-06-12 23:28 UTC  (4+ messages)

[PATCH v2] gpu: nova-core: clarify FSP ordering in the chipset table
 2026-06-12 17:50 UTC  (7+ messages)

[PATCH] gpu: nova-core: clarify FSP ordering in the chipset table
 2026-06-11 20:28 UTC  (5+ messages)

[PATCH v3 00/19] rust: I/O type generalization and projection
 2026-06-11  5:09 UTC  (24+ messages)
` [PATCH v3 01/19] rust: io: add dynamically-sized `Region` type
` [PATCH v3 02/19] rust: io: add missing safety requirement in `IoCapable` methods
` [PATCH v3 03/19] rust: io: restrict untyped IO access and `register!` to `Region`
` [PATCH v3 04/19] rust: io: implement `Io` on reference types instead
` [PATCH v3 05/19] rust: io: generalize `MmioRaw` to pointer to arbitrary type
` [PATCH v3 06/19] rust: io: rename `Mmio` to `MmioOwned`
` [PATCH v3 07/19] rust: io: implement `Mmio` as view type
` [PATCH v3 08/19] rust: pci: io: make `ConfigSpace` a view
` [PATCH v3 09/19] rust: io: use view types instead of addresses for `Io`
` [PATCH v3 10/19] rust: io: remove `MmioOwned`
` [PATCH v3 11/19] rust: io: move `Io` methods to extension trait
` [PATCH v3 12/19] rust: io: add projection macro and methods
` [PATCH v3 13/19] rust: io: add I/O backend for system memory with volatile access
` [PATCH v3 14/19] rust: io: implement a view type for `Coherent`
` [PATCH v3 15/19] rust: io: add `read_val` and `write_val` function on `Io`
` [PATCH v3 16/19] gpu: nova-core: use I/O projection for cleaner encapsulation
` [PATCH v3 17/19] rust: dma: drop `dma_read!` and `dma_write!` API
` [PATCH v3 18/19] rust: io: add copying methods
` [PATCH v3 19/19] rust: io: implement `Io` for `Either`

[PATCH v2 0/3] gpu: nova-core: fb: Hopper sysmem flush fix and cleanups
 2026-06-11  1:19 UTC  (4+ messages)
` [PATCH v2 1/3] gpu: nova-core: Blackwell: use absolute FBHUB0 flush registers
` [PATCH v2 2/3] gpu: nova-core: Hopper: use correct sysmem "
` [PATCH v2 3/3] gpu: nova-core: fb: two tiny readability cleanups

[PATCH] gpu: nova-core: don't declare booter firmware for FSP chipsets
 2026-06-10 23:23 UTC  (6+ messages)

[PATCH 1/2] gpu: nova-core: remove imports available from prelude
 2026-06-10 19:08 UTC  (4+ messages)
` [PATCH 2/2] gpu: nova-core: use `c"literal"` instead of `c_str!()`

[PATCH 0/4] gpu: nova-core: obtain and display VRAM amount
 2026-06-10 15:38 UTC  (17+ messages)
` [PATCH 1/4] gpu: nova-core: move GSP unload state to a pinned Gpu subobject
` [PATCH 2/4] gpu: nova-core: move GPU static information acquisition to a GSP method
` [PATCH 3/4] gpu: nova-core: gsp: Extract usable FB region from GSP
` [PATCH 4/4] gpu: nova-core: gsp: Expose total physical VRAM end from FB region info

[PATCH 0/2] gpu: nova-core: Hopper sysmem flush fix and FSP comment cleanup
 2026-06-10  2:47 UTC  (7+ messages)
` [PATCH 1/2] gpu: nova-core: Hopper: use correct sysmem flush registers
` [PATCH 2/2] gpu: nova-core: clean up FSP FRTS comments

[PATCH v2 0/4] rust: more memory barriers bindings
 2026-06-09 15:38 UTC  (5+ messages)
` [PATCH v2 1/4] rust: sync: add helpers for mb, dma_mb and friends
` [PATCH v2 2/4] rust: sync: generic memory barriers
` [PATCH v2 3/4] gpu: nova-core: fix barrier usage in CPU->GSP messaging path
` [PATCH v2 4/4] gpu: nova-core: fix barrier usage in GSP->CPU "

[PATCH] gpu: nova-core: gsp: tu102: keep unloading if FWSEC-SB fails
 2026-06-09 13:18 UTC  (4+ messages)

[PATCH v5 0/3] rust: add `bitfield!` macro
 2026-06-09 10:46 UTC  (3+ messages)

[PATCH 0/9] gpu: nova-core: boot GSP with vGPU enabled on
 2026-06-09  6:07 UTC  (5+ messages)
` [PATCH 3/9] gpu: nova-core: return FSP response buffer to caller

[PATCH v2 0/7] rust: drm: Higher-Ranked Lifetime private data
 2026-06-08 20:50 UTC  (7+ messages)
` [PATCH v2 3/7] rust: drm: Add RegistrationData to drm::Driver


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