瀏覽代碼

Add a function to find and maps the entire table. (#2)

LoGin 1 年之前
父節點
當前提交
fb69243dcf
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      acpi/src/lib.rs

+ 13 - 0
acpi/src/lib.rs

@@ -302,6 +302,19 @@ where
             .ok_or(AcpiError::TableMissing(T::SIGNATURE))
     }
 
+    /// Searches through the ACPI table headers and attempts to locate the table with a matching `T::SIGNATURE`.
+    /// Then maps the entire table and returns a [`PhysicalMapping`] to it.
+    pub fn find_entire_table<T: AcpiTable>(&self) -> AcpiResult<PhysicalMapping<H, u8>> {
+        let header_mapping = self.find_table::<T>()?;
+        // Read header and create mapping for entire table
+        let header = header_mapping.header();
+        let len = header.length;
+        let paddr = header_mapping.physical_start();
+        let mapping = unsafe { self.handler.map_physical_region::<u8>(paddr, len as usize) };
+        drop(header_mapping);
+        Ok(mapping)
+    }
+
     /// Iterates through all of the table headers.
     pub fn headers(&self) -> SdtHeaderIterator<'_, H> {
         SdtHeaderIterator { tables_phys_ptrs: self.tables_phys_ptrs(), handler: self.handler.clone() }