Hi guys,<br>    Is there any implementation of Cache as RAM in the current LinuxBIOS code (it's version 2 at the moment, right?) for processor other than  K8 (Opteron/Athlon64 family)? I've just grepped through the code and can spot supports for K8 platforms.
<br>    Anyway, I've got this conversation with Dell BIOS developer few years back maybe of some use:<br>-------------<br><u><i>written in my article :</i></u><br>
<br>
There are couples of tricky areas in the BIOS code due to the execution
of some of its parts in ROM. I'll present some of my findings below.<br>
<br>
<b>call instruction is not available during bios code execution from within BIOS ROM chip</b>.
This is due to call instruction uses/manipulate stack while we don't
have writeable area in BIOS ROM chip to be used for stack. What I mean
by manipulating stack here is the "implicit" push instruction which is
executed by the call instruction to "write/save" the return address in
the stack. As we know clearly, address pointed to by ss:sp at this
point is in ROM, meaning: we can't write into it. If you think, why
don't use the RAM altogether ? the DRAM chip is not even available at
this point. It hasn't been tested by the BIOS code, thus we haven't
know if RAM even exists!<br>
<br>
<br>
<u><i>Mark_Larson (a reader of the article) :</i></u><br>
<br>
Sort of. On current Intel processors there is a feature called <b>Cache As Ram</b>.
It allows you to use your cache as if it were RAM before memory is
initialized. Cache As Ram is only supported on the latest processors.
On older processors in some BIOSes a trick was used to <b>"fake" a stack in the cache</b>.
This allowed the BIOS programmer to do CALLs and RETs without memory
having been set up. You fake a stack in the cache and then disable the
cache. All accesses to the stack come from the cache. The fake stack
never gets removed from the cache because the cache is disabled. AMI
first did this about 8 years ago.<br>
<br>
<br>
<u><i>further explanation from Mark Larson</i></u><br>
 I'll expand a bit on both parts.<br>
<br>
1) <b>Cache As Ram</b> - Intel basically allows you to set the
cache to respond to memory acceses from a certain memory range. For
instance you could set the memory range 1000h:0 for 8k to be your stack
in Cache as Ram. When the processor accesses anything in the 8k range
of 1000h:0 it will get the information from the cache. So setting up a
stack somewhere is trivial. That allows you to do CALLs and RETs<br>
<br>
2) <b>"Faking a stack"</b> -<br>
A) Make sure the L1 is enabled and on and the L2 cache is off.<br>
<br>
B) Have 1K ( or however big you want your stack to be), set aside as
data in the BIOS ROM chip. Doesn't matter what the 1k of data is, as
long as you don't use it for anything else.<br>
<br>
C) Read that data in, forcing it to go into the L1 cache ( rep lods).<br>
<br>
D) Disable the L1 cache.<br>
<br>
E) Now set up the stack through the appropriate commands to point to the data that you just read in.<br>
<br>
F) All accesses to the stack now go through the cache, but the data never gets removed from the cache since it's disabled.<br>
<br>
G) Having the cache disabled doesn't really mean it's "disabled". What
it means is that nothing new can be added to the cache. It still
responds to all "hits" with the appropriate data.<br>
<br>
As a variation, you can do this with the code in the BIOS ROM as well,
and use both the L1 and L2. I only used the L1 to make it easier to
illustrate. There is actually an MSR on P3 and earlier processors ( I
think it got added in the pentium pro), that lets you directly write to
the cache. A lot of 3rd party testing tools use this to test the cache.
It works like a memory test. You write a pattern and read it back via
this MSR. But you can also use it to load up the data or code you want
to use directly into the cache. You can also use that mechanism to
create the stack in the cache. However it won't work on P4's. So the
above method is more robust, since it works in all cases. AMI if I
remember right used the MSR method. Look in Book 3 of any of the
processor manuals in the appendix under MSRs ( appendix B). In my P4
book it's under the section "MSRs in the P6 Family Processors". It
spans multiple MSRs starting at 88h. Keep in mind that this is no
longer on the P4.<br><br>------------------------<br><br>PS: The article mentioned above is my Award BIOS Reverse Engineering Article: <a href="http://www.geocities.com/mamanzip/Articles/Award_Bios_RE/Award_Bios_RE_guide.html">
http://www.geocities.com/mamanzip/Articles/Award_Bios_RE/Award_Bios_RE_guide.html</a><br><br>--Darmawan<br>