Lines Matching full:chipset
20 /// Enum representation of the GPU chipset.
22 pub(crate) enum Chipset {
26 impl Chipset { impl
27 pub(crate) const ALL: &'static [Chipset] = &[
28 $( Chipset::$variant, )*
41 impl TryFrom<u32> for Chipset {
46 $( $value => Ok(Chipset::$variant), )*
76 impl Chipset { implementation
100 impl fmt::Display for Chipset { implementation
149 chipset: Chipset, field
150 /// The revision of the chipset.
159 chipset: boot0.chipset()?, in new()
272 let fw = Firmware::new(pdev.as_ref(), spec.chipset, FIRMWARE_VERSION)?; in new()
276 "NVIDIA (Chipset: {}, Architecture: {:?}, Revision: {})\n", in new()
277 spec.chipset, in new()
278 spec.chipset.arch(), in new()
286 let sysmem_flush = SysmemFlush::register(pdev.as_ref(), bar, spec.chipset)?; in new()
290 spec.chipset, in new()
292 spec.chipset > Chipset::GA100, in new()
296 let _sec2_falcon = Falcon::<Sec2>::new(pdev.as_ref(), spec.chipset, bar, true)?; in new()
298 let fb_layout = FbLayout::new(spec.chipset, bar)?; in new()