#[allow(unused_imports)]
use crate::{AllDevices, prelude::*};
impl AllDevices {
pub(crate) fn probe_bus_devices(&mut self) {
#[cfg(feature = "virtio")]
for reg in ax_config::devices::VIRTIO_MMIO_RANGES {
for_each_drivers!(type Driver, {
if let Some(dev) = Driver::probe_mmio(reg.0, reg.1) {
info!(
"registered a new {:?} device at [PA:{:#x}, PA:{:#x}): {:?}",
dev.device_type(),
reg.0, reg.0 + reg.1,
dev.device_name(),
);
self.add_device(dev);
continue; }
});
}
}
}