Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
Modded BIOS for HP 6730b to support Q900...
Last Post: DeathBringer
Today 05:00 AM
» Replies: 6
» Views: 342
Asus P5Q Deluxe EFI
Last Post: maoshen1234
Today 12:55 AM
» Replies: 7
» Views: 18630
ACER Aspire 7736ZG BIOS microcode update...
Last Post: DeathBringer
Today 12:25 AM
» Replies: 7
» Views: 236
[REQUEST] Lenovo IdeaPad P400, P500, Z40...
Last Post: anto77562
Yesterday 11:39 PM
» Replies: 686
» Views: 361556
[REQUEST] Lenovo Legion 5 (EFCNxxWW) BIO...
Last Post: SQ0O
Yesterday 06:29 PM
» Replies: 53
» Views: 39870
[REQUEST] Lenovo G500(s) (7BCNxxWW) BIOS...
Last Post: INARIUS
Yesterday 03:34 PM
» Replies: 65
» Views: 49740
[REQUEST] Lenovo T440(S) (GJETxxWW) Whit...
Last Post: cnv
Yesterday 01:59 PM
» Replies: 502
» Views: 289536
[REQUEST] Lenovo Y50-70 (9ECNxxWW) BIOS ...
Last Post: krankbg
Yesterday 10:31 AM
» Replies: 1970
» Views: 1200034
[REQUEST] Lenovo Y70-70 (9ECNxxWW) White...
Last Post: Dudu2002
Yesterday 06:41 AM
» Replies: 91
» Views: 52256
[REQUEST] Lenovo Thinkpad T440p (GLETxxW...
Last Post: laralang
Yesterday 12:37 AM
» Replies: 530
» Views: 319068
Acer aspire Aspire A315-54k
Last Post: Haaazefan
02-25-2026 07:20 PM
» Replies: 0
» Views: 116
[REQUEST] Lenovo G500 (78CNxxWW) Whiteli...
Last Post: Dudu2002
02-25-2026 09:54 AM
» Replies: 1230
» Views: 595767
[REQUEST] Lenovo B50-70 (9DCNxxWW) BIOS ...
Last Post: Dudu2002
02-25-2026 09:53 AM
» Replies: 77
» Views: 56925
[REQUEST] Lenovo G50-70 (9ACNxxWW) White...
Last Post: Dudu2002
02-25-2026 09:50 AM
» Replies: 253
» Views: 148062
Toshiba Satellite C50-A (PSCG6x & PSCGAx...
Last Post: Renitoko
02-25-2026 07:46 AM
» Replies: 15
» Views: 12790
[REQUEST] 2 HP Bioses for Unlock
Last Post: ineedhelp61
02-24-2026 05:06 PM
» Replies: 0
» Views: 187
[REQUEST] Lenovo G400S (7BCNxxWW) Whitel...
Last Post: INARIUS
02-24-2026 11:55 AM
» Replies: 220
» Views: 140114
[Paid Request] Adding Epyc 2nd gen CPU s...
Last Post: EPYC
02-24-2026 09:05 AM
» Replies: 1
» Views: 1744
HP Pro 3300 & 3400 (H61): Upgrade to Ivy...
Last Post: ngocthienta
02-24-2026 08:40 AM
» Replies: 137
» Views: 143085
[REQUEST] Lenovo Y50-70 (9ECNxxWW) White...
Last Post: Boberec
02-24-2026 08:16 AM
» Replies: 1777
» Views: 910709

About Option ROM scan process
#1
Smile 
Dear all,
I have a question about the process of Option ROM scan and maybe you can help me to clarify it Smile

In chapter 6, Bios Boot Specification v1.01 said
Quote:The POST sequence is:
1. Power-on initialization
...
- All option ROM must be mapped into system memory between C0000~EFFFFh
2. PnP Option ROM initialization
...
- Option ROM in PnP card will be called in the order of lowest to highest ...

Thus I guess first BIOS should copy the Option ROM to memory for "all" devices then sequentially call its INIT(lowest memory address called first)... Am I correct ?

And in https://sites.google.com/site/pinczakko/...t_func_ext
Quote:For example, a device expansion ROM may require 24 KB for its initialization and runtime code, but only 8 KB for the runtime code. The image in the ROM will show a size of 24 KB, so that the POST code copies the whole thing into RAM. Then when the INIT function is running, it can adjust the size byte down to 8 KB. When the INIT function returns, the POST code sees that the runtime size is 8 KB and can copy the next expansion BIOS to the optimum location.

That means after INIT function completed BIOS could release memory and copy the next option ROM to the optimum location.

My question is: what is the current scheme for Option ROM scan ? (assume 3 option ROM to be processed...)

way 1:
- copy OPROM a to memory
- copy OPROM b to memory
- copy OPROM c to memory
- init OPROM a and downsize
- init OPROM b and downsize
- init OPROM c and downsize

way 2:
- copy OPROM a to memory
- init OPROM a and downsize
- copy OPROM b to memory <- OPROM b will be in optimum location !
- init OPROM b and downsize
- copy OPROM c to memory
- init OPROM c and downsize

Thanks !
liaoo
find
quote
#2
(10-29-2012, 11:35 PM)liaoo Wrote: Dear all,
I have a question about the process of Option ROM scan and maybe you can help me to clarify it Smile

In chapter 6, Bios Boot Specification v1.01 said
Quote:The POST sequence is:
1. Power-on initialization
...
- All option ROM must be mapped into system memory between C0000~EFFFFh
2. PnP Option ROM initialization
...
- Option ROM in PnP card will be called in the order of lowest to highest ...

Thus I guess first BIOS should copy the Option ROM to memory for "all" devices then sequentially call its INIT(lowest memory address called first)... Am I correct ?

And in https://sites.google.com/site/pinczakko/...t_func_ext
Quote:For example, a device expansion ROM may require 24 KB for its initialization and runtime code, but only 8 KB for the runtime code. The image in the ROM will show a size of 24 KB, so that the POST code copies the whole thing into RAM. Then when the INIT function is running, it can adjust the size byte down to 8 KB. When the INIT function returns, the POST code sees that the runtime size is 8 KB and can copy the next expansion BIOS to the optimum location.

That means after INIT function completed BIOS could release memory and copy the next option ROM to the optimum location.

My question is: what is the current scheme for Option ROM scan ? (assume 3 option ROM to be processed...)

way 1:
- copy OPROM a to memory
- copy OPROM b to memory
- copy OPROM c to memory
- init OPROM a and downsize
- init OPROM b and downsize
- init OPROM c and downsize

way 2:
- copy OPROM a to memory
- init OPROM a and downsize
- copy OPROM b to memory <- OPROM b will be in optimum location !
- init OPROM b and downsize
- copy OPROM c to memory
- init OPROM c and downsize

Thanks !
liaoo

I think it's way 2 because it's most logic and also on way 1 where do you copy your data when you need to downsize everything? Read here also: http://www.bios-mods.com/forum/Thread-Op...ice?page=2. In the bottom of the thread the op talks about option rom init and resizing.
find
quote
#3
It is the second way.
And btw, not all oroms need to be at C0000~EFFFFh, this requirement has been lifted for PCIe 3.0 compliant oroms.
find
quote


Forum Jump:


Users browsing this thread: 1 Guest(s)