vbe_info.rs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. unsafe {
  70. f.debug_struct("VBEControlInfo")
  71. .field("signature", &self.signature)
  72. .field("version", &self.version)
  73. .field("oem_string_ptr", &self.oem_string_ptr)
  74. .field("capabilities", &self.capabilities)
  75. .field("mode_list_ptr", &self.mode_list_ptr)
  76. .field("total_memory", &self.total_memory)
  77. .field("oem_software_revision", &self.oem_software_revision)
  78. .field("oem_vendor_name_ptr", &self.oem_vendor_name_ptr)
  79. .field("oem_product_name_ptr", &self.oem_product_name_ptr)
  80. .field("oem_product_revision_ptr", &self.oem_product_revision_ptr)
  81. .finish()
  82. }
  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. unsafe {
  156. f.debug_struct("VBEModeInfo")
  157. .field("mode_attributes", &self.mode_attributes)
  158. .field("window_a_attributes", &self.window_a_attributes)
  159. .field("window_b_attributes", &self.window_b_attributes)
  160. .field("window_granularity", &self.window_granularity)
  161. .field("window_size", &self.window_size)
  162. .field("window_a_segment", &self.window_a_segment)
  163. .field("window_b_segment", &self.window_b_segment)
  164. .field("window_function_ptr", &self.window_function_ptr)
  165. .field("pitch", &self.pitch)
  166. .field("resolution", &self.resolution)
  167. .field("character_size", &self.character_size)
  168. .field("number_of_planes", &self.number_of_planes)
  169. .field("bpp", &self.bpp)
  170. .field("number_of_banks", &self.number_of_banks)
  171. .field("memory_model", &self.memory_model)
  172. .field("bank_size", &self.bank_size)
  173. .field("number_of_image_pages", &self.number_of_image_pages)
  174. .field("red_field", &self.red_field)
  175. .field("green_field", &self.green_field)
  176. .field("blue_field", &self.blue_field)
  177. .field("reserved_field", &self.reserved_field)
  178. .field("direct_color_attributes", &self.direct_color_attributes)
  179. .field("framebuffer_base_ptr", &self.framebuffer_base_ptr)
  180. .field("offscreen_memory_offset", &self.offscreen_memory_offset)
  181. .field("offscreen_memory_size", &self.offscreen_memory_size)
  182. .finish()
  183. }
  184. }
  185. }
  186. /// A VBE colour field.
  187. ///
  188. /// Descirbes the size and position of some colour capability.
  189. #[derive(Debug, PartialEq, Copy, Clone)]
  190. #[repr(C, packed)]
  191. pub struct VBEField {
  192. /// The size, in bits, of the color components of a direct color pixel.
  193. pub size: u8,
  194. /// define the bit position within the direct color pixel or YUV pixel of
  195. /// the least significant bit of the respective color component.
  196. pub position: u8
  197. }
  198. bitflags! {
  199. /// The Capabilities field indicates the support of specific features in the graphics environment.
  200. pub struct VBECapabilities: u32 {
  201. /// Can the DAC be switched between 6 and 8 bit modes.
  202. const SWITCHABLE_DAC = 0x1;
  203. /// Is the controller VGA compatible.
  204. const NOT_VGA_COMPATIBLE = 0x2;
  205. /// The operating behaviour of the RAMDAC.
  206. ///
  207. /// When writing lots of information to the RAMDAC, use the blank bit in Function `09h`.
  208. const RAMDAC_FIX = 0x4;
  209. }
  210. }
  211. bitflags! {
  212. /// A Mode attributes bitfield.
  213. pub struct VBEModeAttributes: u16 {
  214. /// Mode supported by hardware configuration.
  215. const SUPPORTED = 0x1;
  216. /// TTY Output functions supported by BIOS
  217. const TTY_SUPPORTED = 0x4;
  218. /// Color support.
  219. const COLOR = 0x8;
  220. /// Mode type (text or graphics).
  221. const GRAPHICS = 0x10;
  222. /// VGA compatibility.
  223. const NOT_VGA_COMPATIBLE = 0x20;
  224. /// VGA Window compatibility.
  225. ///
  226. /// If this is set, the window A and B fields of VBEModeInfo are invalid.
  227. const NO_VGA_WINDOW = 0x40;
  228. /// Linear framebuffer availability.
  229. ///
  230. /// Set if a linear framebuffer is available for this mode.
  231. const LINEAR_FRAMEBUFFER = 0x80;
  232. }
  233. }
  234. bitflags! {
  235. /// The WindowAttributes describe the characteristics of the CPU windowing
  236. /// scheme such as whether the windows exist and are read/writeable, as follows:
  237. pub struct VBEWindowAttributes: u8 {
  238. /// Relocatable window(s) supported?
  239. const RELOCATABLE = 0x1;
  240. /// Window is readable?
  241. const READABLE = 0x2;
  242. /// Window is writeable?
  243. const WRITEABLE = 0x4;
  244. }
  245. }
  246. bitflags! {
  247. /// The DirectColorModeInfo field describes important characteristics of direct color modes.
  248. ///
  249. /// Bit D0 specifies whether the color ramp of the DAC is fixed or
  250. /// programmable. If the color ramp is fixed, then it can not be changed.
  251. /// If the color ramp is programmable, it is assumed that the red, green,
  252. /// and blue lookup tables can be loaded by using VBE Function `09h`
  253. /// (it is assumed all color ramp data is 8 bits per primary).
  254. /// Bit D1 specifies whether the bits in the Rsvd field of the direct color
  255. /// pixel can be used by the application or are reserved, and thus unusable.
  256. pub struct VBEDirectColorAttributes: u8 {
  257. /// Color ramp is fixed when cleared and programmable when set.
  258. const PROGRAMMABLE = 0x1;
  259. /// Bits in Rsvd field when cleared are reserved and usable when set.
  260. const RESERVED_USABLE = 0x2;
  261. }
  262. }
  263. /// The MemoryModel field specifies the general type of memory organization used in modes.
  264. #[derive(Debug, PartialEq, Copy, Clone)]
  265. #[repr(u8)]
  266. #[allow(missing_docs)]
  267. pub enum VBEMemoryModel {
  268. Text = 0x00,
  269. CGAGraphics = 0x01,
  270. HerculesGraphics = 0x02,
  271. Planar = 0x03,
  272. PackedPixel = 0x04,
  273. Unchained = 0x05,
  274. DirectColor = 0x06,
  275. YUV = 0x07
  276. }