Searched refs:compatible_nodes (Results 1 – 6 of 6) sorted by relevance
36 let Some(node) = fdt.compatible_nodes(c"restricted-dma-pool")?.next() else { in new_from_fdt()
360 let mut cpu_nodes = fdt.compatible_nodes(c"arm,armv8")?;400 let mut nodes = fdt.compatible_nodes(c"virtual,android-v-only-cpufreq")?; in read_vcpufreq_info()637 let node = fdt.compatible_nodes(c"pci-host-cam-generic")?.next().ok_or(FdtError::NotFound)?; in read_pci_info_from()832 let mut serial_nodes = fdt.compatible_nodes(c"ns16550a")?; in read_serial_info_from()878 let mut node_iter = fdt.compatible_nodes(c"qemu,vcpu-stall-detector")?; in read_wdt_info_from()1009 let node = fdt.compatible_nodes(c"arm,gic-v3")?.next().ok_or(FdtError::NotFound)?; in patch_gic()1034 let node = fdt.compatible_nodes(c"arm,armv8-timer")?.next().ok_or(FdtError::NotFound)?; in patch_timer()
950 for compatible in fdt.compatible_nodes(Self::PVIOMMU_COMPATIBLE)? { in parse_pviommus()1279 for pviommu in fdt.compatible_nodes(c"pkvm,pviommu")? { in collect_pviommus()
106 fdt.compatible_nodes(c"pci-host-cam-generic") in pci_node()
146 for c in reader.compatible_nodes(compatible).unwrap() { in check_fdt()
740 pub fn compatible_nodes<'a>(&'a self, compatible: &'a CStr) -> Result<CompatibleIterator<'a>> { in compatible_nodes() method