Lines Matching full:chipset
16 use crate::gpu::Chipset;
32 pub(crate) fn new(dev: &device::Device, chipset: Chipset, ver: &str) -> Result<Firmware> { in new() argument
33 let mut chip_name = CString::try_from_fmt(fmt!("{chipset}"))?; in new()
156 const fn make_entry_file(self, chipset: &str, fw: &str) -> Self { in make_entry_file()
161 .push(chipset) in make_entry_file()
170 const fn make_entry_chipset(self, chipset: &str) -> Self { in make_entry_chipset()
171 self.make_entry_file(chipset, "booter_load") in make_entry_chipset()
172 .make_entry_file(chipset, "booter_unload") in make_entry_chipset()
173 .make_entry_file(chipset, "bootloader") in make_entry_chipset()
174 .make_entry_file(chipset, "gsp") in make_entry_chipset()
183 while i < gpu::Chipset::NAMES.len() { in create()
184 this = this.make_entry_chipset(gpu::Chipset::NAMES[i]); in create()