Skip to content

Commit 44dda43

Browse files
GnurouDanilo Krummrich
authored andcommitted
gpu: nova-core: add missing GA100 definition
linux-firmware contains a directory for GA100, and it is a defined chipset in Nouveau. Signed-off-by: Alexandre Courbot <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Danilo Krummrich <[email protected]>
1 parent 297b2cd commit 44dda43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/gpu/nova-core/gpu.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ define_chipset!({
5454
TU117 = 0x167,
5555
TU116 = 0x168,
5656
// Ampere
57+
GA100 = 0x170,
5758
GA102 = 0x172,
5859
GA103 = 0x173,
5960
GA104 = 0x174,
@@ -73,7 +74,7 @@ impl Chipset {
7374
Self::TU102 | Self::TU104 | Self::TU106 | Self::TU117 | Self::TU116 => {
7475
Architecture::Turing
7576
}
76-
Self::GA102 | Self::GA103 | Self::GA104 | Self::GA106 | Self::GA107 => {
77+
Self::GA100 | Self::GA102 | Self::GA103 | Self::GA104 | Self::GA106 | Self::GA107 => {
7778
Architecture::Ampere
7879
}
7980
Self::AD102 | Self::AD103 | Self::AD104 | Self::AD106 | Self::AD107 => {

0 commit comments

Comments
 (0)