Parcourir la source

dedicated module file for ImageLoadPhysAddr MBI tag

Philipp Schuster il y a 3 ans
Parent
commit
4644bc363d
3 fichiers modifiés avec 14 ajouts et 11 suppressions
  1. 11 0
      src/image_load_addr.rs
  2. 3 1
      src/lib.rs
  3. 0 10
      src/rsdp.rs

+ 11 - 0
src/image_load_addr.rs

@@ -0,0 +1,11 @@
+use crate::TagType;
+
+/// If the image has relocatable header tag, this tag contains the image's
+/// base physical address.
+#[derive(Debug)]
+#[repr(C)]
+pub struct ImageLoadPhysAddr {
+    typ: TagType,
+    size: u32,
+    load_base_addr: u32,
+}

+ 3 - 1
src/lib.rs

@@ -39,8 +39,9 @@ pub use memory_map::{
 };
 pub use module::{ModuleIter, ModuleTag};
 pub use rsdp::{
-    ImageLoadPhysAddr, RsdpV1Tag, RsdpV2Tag,
+    RsdpV1Tag, RsdpV2Tag,
 };
+pub use image_load_addr::ImageLoadPhysAddr;
 pub use efi::{EFIImageHandle32, EFIImageHandle64, EFISdt32, EFISdt64};
 pub use vbe_info::{
     VBECapabilities, VBEControlInfo, VBEDirectColorAttributes, VBEField, VBEInfoTag,
@@ -60,6 +61,7 @@ mod module;
 mod rsdp;
 mod vbe_info;
 mod efi;
+mod image_load_addr;
 
 /// Load the multiboot boot information struct from an address.
 ///

+ 0 - 10
src/rsdp.rs

@@ -14,16 +14,6 @@ use crate::TagType;
 
 const RSDPV1_LENGTH: usize = 20;
 
-/// If the image has relocatable header tag, this tag contains the image's
-/// base physical address.
-#[derive(Debug)]
-#[repr(C)]
-pub struct ImageLoadPhysAddr {
-    typ: TagType,
-    size: u32,
-    load_base_addr: u32,
-}
-
 /// This tag contains a copy of RSDP as defined per ACPI 1.0 specification.
 #[derive(Clone, Copy, Debug)]
 #[repr(C, packed)]