using bios after linux

Vivek Goyal vgoyal at in.ibm.com
Mon Oct 1 02:43:09 EDT 2007


On Thu, Sep 27, 2007 at 06:57:30AM -0700, C Michael Sundius wrote:
> 
> Hi,
> 
>   I've been working on a project where we are using linux as an 
> operating environment for some
>   setup work prior to booting windows. our control flow looks like this
> 
>   reset => (1)linux & linux aplication  =>
>   (2)kexec => (3)proprietery 16bit real code (uses bios) =>
>   (4)ntloader => (5)Windows
> 

Interesting. Just curious to know that how above setup is useful?

>   I have come into this project in the middle, however I've seen enough 
> to understand that its not an easy
>   task to run bios calls after linux, especially int13 and power 
> management stuff. The contractor that
>   has been working on this prior to me, used Grub-for-DOS as glue code 
> to get most machines to boot correctly.
>   i.e. kexec-tools loads Grub-for-DOS (GFD) and our proprietery 
> pre-windows real mode code (I'll call that the
>   real mode "stuff" from here on); kexec starts GFD, which then starts 
> the RM "stuff" that does some thing
>   and then finally kicks off ntloader and Windows.
> 
>   It seems as though Grub-for-DOS does some magic since if we simply 
> load our RM STUFF using some simple
>   pergetory code to switch us into real mode the processor goes off into 
> the weeds when we call BIOS
>   int13; not on all machines of course, but many more than with GFD.
> 

I have never done that but Eric Biederman in the past had mentioned that
it is not reliable to call BIOS routines once linux as taken control and
we are out of real mode.

>   I'll also say that we are working off of an older version of 
> kexec-tools, say 6mo to 1year ago.
> 
>   QUESTIONS:
>   1) Is GFD the defacto way of running BIOS calls after linux (chain 
> booting DOS or windows) or has
>   the kexec team or anyone else gotten some a simpler program to go from 
> linux to realmode (and BIOS)?
>   Any pointers to previous work or helpful hints would be greatly 
> appreciated.
> 

Kexec does provide option for real mode entry. It will drop to real mode
and then new kernel will execute real mode code (including bios calls). Not
sure how reliable is that.

I had tried something similar in the past. Drop to real mode and then try
to invoke BIOS calls to rest the display. I think I had partial success.
 
> 
>   2) It would be best if our linux application that runs before kexec 
> call kexec directly*. Thus has anyone
>   thought to provide a kexec-tools-lib and an api such that programs can 
> acess the same high level utility of
>   the kexec program just as easily as from the shell? This would be a 
> great help.  Are the
>   "kexec-tools-powers-that-be" interested in that being integrated into 
> your project? (if we contributed it or
>   part of it)
> 
>   * I'll just add that we would like to pass pointers to the buffer (of 
> code that is loaded) directly to
>   the kexec user program instead of having to store them somewhere (in a 
> file) and then let the kexec
>   program retrieve them (i'm talking about our Real Mode STUFF that runs 
> before windows and after linux).
> 

So you want library just because you don't want to put real mode code in 
a file and then pass it to kexec? You want these to be dynamic options 
and pass the buffers. I would say, easier way is to put everything into
a file and then let kexec read/parse it.

Thanks
Vivek



More information about the kexec mailing list