entry_efi_32.rs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. use crate::{HeaderTagFlag, HeaderTagType};
  2. use core::fmt;
  3. use core::fmt::{Debug, Formatter};
  4. use core::mem::size_of;
  5. /// This tag is taken into account only on EFI i386 platforms when Multiboot2 image header
  6. /// contains EFI boot services tag. Then entry point specified in ELF header and the entry address
  7. /// tag of Multiboot2 header are ignored.
  8. ///
  9. /// Technically, this is equivalent to the [`crate::EntryAddressHeaderTag`] but with a different
  10. /// [`crate::HeaderTagType`].
  11. #[derive(Copy, Clone, PartialEq, Eq)]
  12. #[repr(C)]
  13. pub struct EntryEfi32HeaderTag {
  14. typ: HeaderTagType,
  15. flags: HeaderTagFlag,
  16. size: u32,
  17. entry_addr: u32,
  18. }
  19. impl EntryEfi32HeaderTag {
  20. pub const fn new(flags: HeaderTagFlag, entry_addr: u32) -> Self {
  21. EntryEfi32HeaderTag {
  22. typ: HeaderTagType::EntryAddressEFI32,
  23. flags,
  24. size: size_of::<Self>() as u32,
  25. entry_addr,
  26. }
  27. }
  28. pub const fn typ(&self) -> HeaderTagType {
  29. self.typ
  30. }
  31. pub const fn flags(&self) -> HeaderTagFlag {
  32. self.flags
  33. }
  34. pub const fn size(&self) -> u32 {
  35. self.size
  36. }
  37. pub const fn entry_addr(&self) -> u32 {
  38. self.entry_addr
  39. }
  40. }
  41. impl Debug for EntryEfi32HeaderTag {
  42. fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
  43. f.debug_struct("EntryEfi32HeaderTag")
  44. .field("type", &{ self.typ })
  45. .field("flags", &{ self.flags })
  46. .field("size", &{ self.size })
  47. .field("entry_addr", &(self.entry_addr as *const u32))
  48. .finish()
  49. }
  50. }
  51. #[cfg(test)]
  52. mod tests {
  53. use crate::EntryEfi32HeaderTag;
  54. #[test]
  55. fn test_assert_size() {
  56. assert_eq!(core::mem::size_of::<EntryEfi32HeaderTag>(), 2 + 2 + 4 + 4);
  57. }
  58. }