vbe_info.rs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. use core::fmt;
  2. /// This tag contains VBE metadata, VBE controller information returned by the
  3. /// VBE Function 00h and VBE mode information returned by the VBE Function 01h.
  4. #[derive(Debug, Copy, Clone)]
  5. #[repr(C, packed)]
  6. pub struct VBEInfoTag {
  7. typ: u32,
  8. length: u32,
  9. /// Indicates current video mode in the format specified in VBE 3.0.
  10. pub mode: u16,
  11. /// Contain the segment of the table of a protected mode interface defined in VBE 2.0+.
  12. ///
  13. /// If the information for a protected mode interface is not available
  14. /// this field is set to zero.
  15. pub interface_segment: u16,
  16. /// Contain the segment offset of the table of a protected mode interface defined in VBE 2.0+.
  17. ///
  18. /// If the information for a protected mode interface is not available
  19. /// this field is set to zero.
  20. pub interface_offset: u16,
  21. /// Contain the segment length of the table of a protected mode interface defined in VBE 2.0+.
  22. ///
  23. /// If the information for a protected mode interface is not available
  24. /// this field is set to zero.
  25. pub interface_length: u16,
  26. /// Contains VBE controller information returned by the VBE Function `00h`.
  27. pub control_info: VBEControlInfo,
  28. /// Contains VBE mode information returned by the VBE Function `01h`.
  29. pub mode_info: VBEModeInfo,
  30. }
  31. /// VBE controller information.
  32. ///
  33. /// The capabilities of the display controller, the revision level of the
  34. /// VBE implementation, and vendor specific information to assist in supporting all display
  35. /// controllers in the field are listed here.
  36. ///
  37. /// The purpose of this struct is to provide information to the kernel about the general
  38. /// capabilities of the installed VBE software and hardware.
  39. #[derive(Copy, Clone)]
  40. #[repr(C, packed)]
  41. pub struct VBEControlInfo {
  42. /// VBE Signature aka "VESA".
  43. pub signature: [u8; 4],
  44. /// The VBE version.
  45. pub version: u16,
  46. /// A far pointer the the OEM String.
  47. pub oem_string_ptr: u32,
  48. /// Capabilities of the graphics controller.
  49. pub capabilities: VBECapabilities,
  50. /// Far pointer to the video mode list.
  51. pub mode_list_ptr: u32,
  52. /// Number of 64KiB memory blocks (Added for VBE 2.0+).
  53. pub total_memory: u16,
  54. /// VBE implementation software revision.
  55. pub oem_software_revision: u16,
  56. /// Far pointer to the vendor name string.
  57. pub oem_vendor_name_ptr: u32,
  58. /// Far pointer to the product name string.
  59. pub oem_product_name_ptr: u32,
  60. /// Far pointer to the product revision string.
  61. pub oem_product_revision_ptr: u32,
  62. /// Reserved for VBE implementation scratch area.
  63. reserved: [u8; 222],
  64. /// Data area for OEM strings.
  65. oem_data: [u8; 256],
  66. }
  67. impl fmt::Debug for VBEControlInfo {
  68. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  69. f.debug_struct("VBEControlInfo")
  70. .field("signature", &self.signature)
  71. .field("version", &{ self.version })
  72. .field("oem_string_ptr", &{ self.oem_string_ptr })
  73. .field("capabilities", &{ self.capabilities })
  74. .field("mode_list_ptr", &{ self.mode_list_ptr })
  75. .field("total_memory", &{ self.total_memory })
  76. .field("oem_software_revision", &{ self.oem_software_revision })
  77. .field("oem_vendor_name_ptr", &{ self.oem_vendor_name_ptr })
  78. .field("oem_product_name_ptr", &{ self.oem_product_name_ptr })
  79. .field("oem_product_revision_ptr", &{
  80. self.oem_product_revision_ptr
  81. })
  82. .finish()
  83. }
  84. }
  85. /// Extended information about a specific VBE display mode from the
  86. /// mode list returned by `VBEControlInfo` (VBE Function `00h`).
  87. #[derive(Copy, Clone)]
  88. #[repr(C, packed)]
  89. pub struct VBEModeInfo {
  90. /// Mode attributes.
  91. pub mode_attributes: VBEModeAttributes,
  92. /// Window A attributes.
  93. pub window_a_attributes: VBEWindowAttributes,
  94. /// Window B attributes.
  95. pub window_b_attributes: VBEWindowAttributes,
  96. /// Window granularity (Measured in Kilobytes.)
  97. pub window_granularity: u16,
  98. /// Window size.
  99. pub window_size: u16,
  100. /// Window A start segment.
  101. pub window_a_segment: u16,
  102. /// Window B start segment.
  103. pub window_b_segment: u16,
  104. /// Real mode pointer to window function.
  105. pub window_function_ptr: u32,
  106. /// Bytes per scan line
  107. pub pitch: u16,
  108. /// Horizontal and vertical resolution in pixels or characters.
  109. pub resolution: (u16, u16),
  110. /// Character cell width and height in pixels.
  111. pub character_size: (u8, u8),
  112. /// Number of memory planes.
  113. pub number_of_planes: u8,
  114. /// Bits per pixel
  115. pub bpp: u8,
  116. /// Number of banks
  117. pub number_of_banks: u8,
  118. /// Memory model type
  119. pub memory_model: VBEMemoryModel,
  120. /// Bank size (Measured in Kilobytes.)
  121. pub bank_size: u8,
  122. /// Number of images.
  123. pub number_of_image_pages: u8,
  124. /// Reserved for page function.
  125. reserved0: u8,
  126. /// Red colour field.
  127. pub red_field: VBEField,
  128. /// Green colour field.
  129. pub green_field: VBEField,
  130. /// Blue colour field.
  131. pub blue_field: VBEField,
  132. /// Reserved colour field.
  133. pub reserved_field: VBEField,
  134. /// Direct colour mode attributes.
  135. pub direct_color_attributes: VBEDirectColorAttributes,
  136. /// Physical address for flat memory frame buffer
  137. pub framebuffer_base_ptr: u32,
  138. /// A pointer to the start of off screen memory.
  139. ///
  140. /// # Deprecated
  141. ///
  142. /// In VBE3.0 and above these fields are reserved and unused.
  143. pub offscreen_memory_offset: u32,
  144. /// The amount of off screen memory in 1k units.
  145. ///
  146. /// # Deprecated
  147. ///
  148. /// In VBE3.0 and above these fields are reserved and unused.
  149. pub offscreen_memory_size: u16,
  150. /// Remainder of mode info block
  151. reserved1: [u8; 206],
  152. }
  153. impl fmt::Debug for VBEModeInfo {
  154. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  155. f.debug_struct("VBEModeInfo")
  156. .field("mode_attributes", &{ self.mode_attributes })
  157. .field("window_a_attributes", &self.window_a_attributes)
  158. .field("window_b_attributes", &self.window_b_attributes)
  159. .field("window_granularity", &{ self.window_granularity })
  160. .field("window_size", &{ self.window_size })
  161. .field("window_a_segment", &{ self.window_a_segment })
  162. .field("window_b_segment", &{ self.window_b_segment })
  163. .field("window_function_ptr", &{ self.window_function_ptr })
  164. .field("pitch", &{ self.pitch })
  165. .field("resolution", &{ self.resolution })
  166. .field("character_size", &self.character_size)
  167. .field("number_of_planes", &self.number_of_planes)
  168. .field("bpp", &self.bpp)
  169. .field("number_of_banks", &self.number_of_banks)
  170. .field("memory_model", &self.memory_model)
  171. .field("bank_size", &self.bank_size)
  172. .field("number_of_image_pages", &self.number_of_image_pages)
  173. .field("red_field", &self.red_field)
  174. .field("green_field", &self.green_field)
  175. .field("blue_field", &self.blue_field)
  176. .field("reserved_field", &self.reserved_field)
  177. .field("direct_color_attributes", &self.direct_color_attributes)
  178. .field("framebuffer_base_ptr", &{ self.framebuffer_base_ptr })
  179. .field("offscreen_memory_offset", &{ self.offscreen_memory_offset })
  180. .field("offscreen_memory_size", &{ self.offscreen_memory_size })
  181. .finish()
  182. }
  183. }
  184. /// A VBE colour field.
  185. ///
  186. /// Descirbes the size and position of some colour capability.
  187. #[derive(Debug, PartialEq, Copy, Clone)]
  188. #[repr(C, packed)]
  189. pub struct VBEField {
  190. /// The size, in bits, of the color components of a direct color pixel.
  191. pub size: u8,
  192. /// define the bit position within the direct color pixel or YUV pixel of
  193. /// the least significant bit of the respective color component.
  194. pub position: u8,
  195. }
  196. bitflags! {
  197. /// The Capabilities field indicates the support of specific features in the graphics environment.
  198. pub struct VBECapabilities: u32 {
  199. /// Can the DAC be switched between 6 and 8 bit modes.
  200. const SWITCHABLE_DAC = 0x1;
  201. /// Is the controller VGA compatible.
  202. const NOT_VGA_COMPATIBLE = 0x2;
  203. /// The operating behaviour of the RAMDAC.
  204. ///
  205. /// When writing lots of information to the RAMDAC, use the blank bit in Function `09h`.
  206. const RAMDAC_FIX = 0x4;
  207. }
  208. }
  209. bitflags! {
  210. /// A Mode attributes bitfield.
  211. pub struct VBEModeAttributes: u16 {
  212. /// Mode supported by hardware configuration.
  213. const SUPPORTED = 0x1;
  214. /// TTY Output functions supported by BIOS
  215. const TTY_SUPPORTED = 0x4;
  216. /// Color support.
  217. const COLOR = 0x8;
  218. /// Mode type (text or graphics).
  219. const GRAPHICS = 0x10;
  220. /// VGA compatibility.
  221. const NOT_VGA_COMPATIBLE = 0x20;
  222. /// VGA Window compatibility.
  223. ///
  224. /// If this is set, the window A and B fields of VBEModeInfo are invalid.
  225. const NO_VGA_WINDOW = 0x40;
  226. /// Linear framebuffer availability.
  227. ///
  228. /// Set if a linear framebuffer is available for this mode.
  229. const LINEAR_FRAMEBUFFER = 0x80;
  230. }
  231. }
  232. bitflags! {
  233. /// The WindowAttributes describe the characteristics of the CPU windowing
  234. /// scheme such as whether the windows exist and are read/writeable, as follows:
  235. pub struct VBEWindowAttributes: u8 {
  236. /// Relocatable window(s) supported?
  237. const RELOCATABLE = 0x1;
  238. /// Window is readable?
  239. const READABLE = 0x2;
  240. /// Window is writeable?
  241. const WRITEABLE = 0x4;
  242. }
  243. }
  244. bitflags! {
  245. /// The DirectColorModeInfo field describes important characteristics of direct color modes.
  246. ///
  247. /// Bit D0 specifies whether the color ramp of the DAC is fixed or
  248. /// programmable. If the color ramp is fixed, then it can not be changed.
  249. /// If the color ramp is programmable, it is assumed that the red, green,
  250. /// and blue lookup tables can be loaded by using VBE Function `09h`
  251. /// (it is assumed all color ramp data is 8 bits per primary).
  252. /// Bit D1 specifies whether the bits in the Rsvd field of the direct color
  253. /// pixel can be used by the application or are reserved, and thus unusable.
  254. pub struct VBEDirectColorAttributes: u8 {
  255. /// Color ramp is fixed when cleared and programmable when set.
  256. const PROGRAMMABLE = 0x1;
  257. /// Bits in Rsvd field when cleared are reserved and usable when set.
  258. const RESERVED_USABLE = 0x2;
  259. }
  260. }
  261. /// The MemoryModel field specifies the general type of memory organization used in modes.
  262. #[derive(Debug, PartialEq, Copy, Clone)]
  263. #[repr(u8)]
  264. #[allow(missing_docs)]
  265. pub enum VBEMemoryModel {
  266. Text = 0x00,
  267. CGAGraphics = 0x01,
  268. HerculesGraphics = 0x02,
  269. Planar = 0x03,
  270. PackedPixel = 0x04,
  271. Unchained = 0x05,
  272. DirectColor = 0x06,
  273. YUV = 0x07,
  274. }