OSDev.org

The Place to Start for Operating System Developers
It is currently Sat Apr 27, 2024 11:17 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 26 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 4:56 am 
Offline
Member
Member

Joined: Thu Jul 05, 2012 5:12 am
Posts: 923
Location: Finland
hey22 wrote:
[...] write my own vga driver which intialize vga


hey22 wrote:
[...] that i can write my own protocol


It is possible that I do not understand your intentions and if so, I would like to apologize.

It has been said many times that it is not a good idea to play around with the VGA specific things anymore. Of course, it would work if the hardware supports it. With UEFI being concerned, it would be reasonable to look into the future and use a standard interface to control the video hardware.

If you want to do this anyway, there should be some VGA documentations available. I am quite sure that someone can give you a better reply concerning that topic.

_________________
Undefined behavior since 2012


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 5:00 am 
Offline
Member
Member
User avatar

Joined: Wed Oct 18, 2006 3:45 am
Posts: 9301
Location: On the balcony, where I can actually keep 1½m distance
If EFI leaves the video card in native mode, you can pretty much assume you will not be getting it into a VGA mode using only VGA code. And since EFI makes absolutely no guarantee about setting a VGA-compatible mode, basically all bets are off.

Which leaves two options: make a wild guess, expect a PC bios available for use, and subsequently alienate all Mac users and then some, or just forget about VGA completely. Sensibility (and pretty much all the previous posters sentiments) expects you to choose the latter.


TL;DR: EFI and VGA are mutually exclusive.

_________________
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 8:42 am 
Offline
Member
Member

Joined: Wed Oct 01, 2008 1:55 pm
Posts: 3195
Combuster wrote:
This notably does not apply to Apple hardware. And as a consequence, this does *not* work on a significant part of EFI-based machines - if not the majority of them.


If booted on Mac, RDOS will fail long before getting to the video-BIOS, so that is no problem. :mrgreen:


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 8:51 am 
Offline
Member
Member

Joined: Wed Oct 01, 2008 1:55 pm
Posts: 3195
Antti wrote:
It has been said many times that it is not a good idea to play around with the VGA specific things anymore. Of course, it would work if the hardware supports it. With UEFI being concerned, it would be reasonable to look into the future and use a standard interface to control the video hardware.

If you want to do this anyway, there should be some VGA documentations available. I am quite sure that someone can give you a better reply concerning that topic.


Reason like this about it:

UEFI is not a spec that is usuable for writing video-software. It is a spec that makes it possible for OSes with custom-made graphics drivers to make some minimal user-interaction in case there are problems with boot or similar (I bet that is why Linux runs the UEFI defined mode when booting fail-safe).

As an OS developper without a specific video-driver for every possible video hardware you are out of luck with UEFI. You won't get past the initial boot, and can at best display to the user that you have no video driver, and lock-up. Users will not be very content with this.

Thus, you try the existing standards for setting up a video mode, and getting a LFB address. That standard is called VBE, and UEFI in no way can superseed it as UEFI doesn't contain an interface for setting video resolution and getting the LFB buffer, in addition to its bit organization. Instead, UEFI makes it possible for OSes with a driver for every video hardware (Windows) to drop the VBE interface so less lucky OSes cannot run. That's what UEFI is really about. A way for BIOS developpers to stop supporting anything else than Windows, or their own pet-OS.


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 8:55 am 
Offline
Member
Member

Joined: Wed Oct 01, 2008 1:55 pm
Posts: 3195
Combuster wrote:
If EFI leaves the video card in native mode, you can pretty much assume you will not be getting it into a VGA mode using only VGA code. And since EFI makes absolutely no guarantee about setting a VGA-compatible mode, basically all bets are off.

Which leaves two options: make a wild guess, expect a PC bios available for use, and subsequently alienate all Mac users and then some, or just forget about VGA completely. Sensibility (and pretty much all the previous posters sentiments) expects you to choose the latter.


TL;DR: EFI and VGA are mutually exclusive.


No, sensibility makes you use VBE, and if this fails, you are out of luck anyway since no typical hobby-OS developer has a graphics driver for every possible video hardware.


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 10:44 am 
Offline
Member
Member

Joined: Thu Jul 05, 2012 5:12 am
Posts: 923
Location: Finland
rdos wrote:
As an OS developper without a specific video-driver for every possible video hardware you are out of luck with UEFI.


I do not understand. Graphics Output Protocol? I can set the video mode and get the linear framebuffer address. I do not need to develop a specific video driver for that. The backend of that functionality may currently be the VBE but I do not have to care about that.

rdos wrote:
That's what UEFI is really about. A way for BIOS developpers to stop supporting anything else than Windows, or their own pet-OS.


There might be some truth behind this statement.

_________________
Undefined behavior since 2012


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 12:33 pm 
Offline
Member
Member

Joined: Wed Oct 01, 2008 1:55 pm
Posts: 3195
Antti wrote:
I do not understand. Graphics Output Protocol? I can set the video mode and get the linear framebuffer address. I do not need to develop a specific video driver for that. The backend of that functionality may currently be the VBE but I do not have to care about that.


I read-up on it, and it is better than I first suspected. GOP might give you a linear frame-buffer, and could setup the mode for you. That is the same as for VBE. For doing this dynamically after OS boot, it might be possible to create a process with unity-mapped page-tables, and let it call the GOP entry-points, which is also possible to do with VBE (using V86-mode). What is unclear is "exit-boot services". Would this be necesary to do, and what exactly does this do? What is the drawback of not doing this? Will some devices be started if this is not done?

I also suppose that if an OS expects to set a 80 x 25 text mode, and none is provided, this could be emulated in graphics mode one way or another. The hard way would be to intercept and emulate accesses to B8000 -BFFFF. The easy way would be to have a API for outputting text that could be built on real text mode or emulated.


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 12:48 pm 
Offline
Member
Member
User avatar

Joined: Sat Jul 30, 2011 10:07 am
Posts: 374
Location: Wrocław/Racibórz, Poland
Antti wrote:
I read-up on it, and it is better than I first suspected. GOP might give you a linear frame-buffer, and could setup the mode for you. That is the same as for VBE. For doing this dynamically after OS boot, it might be possible to create a process with unity-mapped page-tables, and let it call the GOP entry-points, which is also possible to do with VBE (using V86-mode). What is unclear is "exit-boot services". Would this be necesary to do, and what exactly does this do? What is the drawback of not doing this? Will some devices be started if this is not done?
ExitBootServices() call is necessary to get full control over the system. Up until that point, (U)EFI firmware is owner of everything; after the call, the full control is passed to the application. By everything, I mean literally everything - you can check for example memory management functions in UEFI specs.

It's simple: if you want UEFI application, don't call it. If you want OS, call it.

_________________
Reaver Project :: Repository :: Ohloh project page
<klange> This is a horror story about what happens when you need a hammer and all you have is the skulls of the damned.
<drake1> as long as the lock is read and modified by atomic operations


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Thu Jul 26, 2012 12:50 pm 
Offline
Member
Member
User avatar

Joined: Fri Jun 13, 2008 3:21 pm
Posts: 1700
Location: Cambridge, United Kingdom
rdos wrote:
Antti wrote:
I do not understand. Graphics Output Protocol? I can set the video mode and get the linear framebuffer address. I do not need to develop a specific video driver for that. The backend of that functionality may currently be the VBE but I do not have to care about that.


I read-up on it, and it is better than I first suspected. GOP might give you a linear frame-buffer, and could setup the mode for you. That is the same as for VBE. For doing this dynamically after OS boot, it might be possible to create a process with unity-mapped page-tables, and let it call the GOP entry-points, which is also possible to do with VBE (using V86-mode). What is unclear is "exit-boot services". Would this be necesary to do, and what exactly does this do? What is the drawback of not doing this? Will some devices be started if this is not done?

The ExitBootServices API is used to disable the boot services, and the requirements of those. Among the requirements are: No paging (most platforms)/Firmware managed identity paging (amd64); firmware managed interrupts; all memory allocation through firwmare; all hardware interaction through firmware enumerated EFI device drivers.

Once you invoke ExitBootServices (Probably after SetVirtualAddressMap, so that you can tell EFI where you're going to map all of its runtime services and it can redo its executable relocations when you invoke ExitBootServices), all boot services become, well, unavailable.

Quote:
I also suppose that if an OS expects to set a 80 x 25 text mode, and none is provided, this could be emulated in graphics mode one way or another. The hard way would be to intercept and emulate accesses to B8000 -BFFFF. The easy way would be to have a API for outputting text that could be built on real text mode or emulated.

Emulating a text mode isn't hard with a bitmap font. For colour attributes and such, you might decide to go for the traditional option and just interpret ANSI escape sequences.


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Fri Jul 27, 2012 1:51 am 
Offline
Member
Member

Joined: Thu Feb 09, 2012 6:53 am
Posts: 67
Location: Czechoslovakia
hey22 wrote:
hey, Thanks for ur reply.

So i need to know how can i set vga text mode before DXE and i want to know the required register setting of vga to set text mode without int 10h(intterupt call).

plzzz help me
Thanks in advance... :)

http://wiki.osdev.org/VGA_Hardware
the last table: List of register settings
you'll have to reprogram via ports

_________________
hypervisor-based solutions developer (Intel, AMD)


Top
 Profile  
 
 Post subject: Re: set 80 x 25 text mode by UEFI
PostPosted: Tue Dec 05, 2023 9:28 pm 
Offline
Member
Member

Joined: Sat Feb 04, 2012 5:03 pm
Posts: 111
I know this is a thread from 2012 but here's the basics of what it would take to get an Intel-based Mac into legacy VGA modes such as text mode - since its BIOS has been removed, and it only has EFI.

tl;dr: you can use the VGA modes on Intel-based Macs because they use AMD and Intel GPUs.

1. If it is an AMD GPU (such as the Mac Pro) -

The AMD ATOMBIOS is missing.

Grab a copy of the ATOMBIOS from the most closely related card. Example: the 2013 Mac Pro "Trashcan" used dual AMD FirePro D300, D500 or D700s - Pitcairn or Tahiti silicon - and you can't get the exact match on any other hardware. But for ATOMBIOS you would be fine using AMD FirePro W7000 to match the D300, and FirePro W9000 for the D500 and D700.

ATOMBIOS is an emulated instruction set and has the entry point for setting the card in VGA text mode - xorg-x11-drv-amdgpu is where I would start (but it can't be used as-is because it assumes the ATOMBIOS is present and it's missing on Macs). Or it's sometimes called xserver-xorg-video-amdgpu. xf86-video-amdgpu is the proper name. https://gitlab.freedesktop.org/xorg/dri ... deo-amdgpu

2. If it is an Intel iGPU (such as a Macbook pro) -

It's the same thing, only use xorg-x11-drv-intel or xserver-xorg-video-intel - actually xf86-video-intel is the proper name. https://gitlab.freedesktop.org/xorg/dri ... ideo-intel - but check out very old commits to find the last time it included legacy text mode support.

Intel iGPUs started by extending the VGA register spec.

i810 graphics has a VTOTAL register that uses the 10 bits defined by the legacy VGA registers. But CR80 bit 0 enables "extended modes." It enables the 4 high bits in CR30. In other words, search for where CR80 bit 0 is set or cleared, and start reading from there (it's a typo but it's #define IO_CTNL 0x80) Check out the i810 chipset programming reference manual 298026.

Through Iris Xe (and in the driver, Sandybridge New Acceleration, replacing UXA) https://github.com/Igalia/intel-osrc-gfx-prm - the file intel-gfx-prm-osrc-tgl-vol-12-display-engine.pdf starts with a table and discussion of legacy text modes.

The most challenging work would be to program the CRT Controller to send display signals to the panel that the panel supports. Maybe start with a Mac mini since it will be easier to get working with a normal display that can interpret the legacy text mode resolution.

(And to be pedantic, nvidia cards should have an untampered BIOS and therefore you can call the BIOS to set it into legacy text mode. Want to boot your OS on a mac with an nvidia gpu in text mode?)


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 26 posts ]  Go to page Previous  1, 2

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot] and 27 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group