work linuxbios with openbios

2005-01-10 Thread zhu shi song
How to use linuxbios together with openbios?  Is there
any clear howto doc?  What's the main purpose of
openbios?  What's the main difference between openbios
and filo?
Now I'm using filo to boot my linux kernel.
tks
zhu



__ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.yahoo.com 
 

___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Linux kernel in Rom

2005-01-10 Thread Gin
>Here is my config file for a kernel version of linuxbios.
>opteron_phase1_p4_noapic is a kernel that I ran mkelfImage on.

Ok. I will test on this config file.

I am trying to make my linux kernel image smaller as I want to embed it
with the ROM. Is there anyway you suggest to do this instead of using
the menuconfig in RedHat linux. I can only take out options provided in
the menu but the sometimes the dependency doesn't work that well. I get
compile errors later when make bzImage.


gin


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Linux kernel in Rom

2005-01-10 Thread Ronald G. Minnich
did you look at:
http://tinylinux.sourceforge.net/


ron


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


LinuxBIOS on the Intel 9IGLM motherboard

2005-01-10 Thread Csányi Pál
Hi!
I have the
motherboard 9IGLM with
Intel 845GL chipset.
I know that this motherboard is not supported by LinuxBIOS (am I right?)
but I ask you: what would be happen, if I would update the flash EPROM with
LinuxBIOS?
I run on my PC the MS Win2000 and Debian GNU/Linux Woody.
And I have one more question:
memtest86 v3.1 says:
Unexpected Interrupt - Halting
Errors: 261 905
Type: Gen_Prot
I configured the memtest:
Cache Mode: Always On
Test Selection: All Tests
Address Range: Test All Memory
Memory Sizing: BIOS - All
If in the configuration the Memory Sizing: BIOS - is not All,
then the memtest not reports errors.
Is my BIOS then defective or not?
--
Thanks, and sorry for my English
Paul
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.298 / Virus Database: 265.6.9 - Release Date: 6.1.2005
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


Re: LinuxBIOS on the Intel 9IGLM motherboard

2005-01-10 Thread Ronald G. Minnich


On Mon, 10 Jan 2005, CsÃnyi PÃl wrote:
> I know that this motherboard is not supported by LinuxBIOS (am I right?)
> but I ask you: what would be happen, if I would update the flash EPROM with
> LinuxBIOS?
you would own a paperweight.

ron
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


Re: work linuxbios with openbios

2005-01-10 Thread Greg Watson
This is a work-in-progress, so there is no documentation. The major 
issue that needs to be addressed is that there is currently no 
mechanism for passing the linuxbios discovered device information to 
openbios. This is on my todo list.

Openbios is an implementation of the IEEE-1275 standard for Open 
Firmware. This provides a standard means for loading an operating 
system image from a device, as well as a series of callbacks that an 
operating system can use to perform certain functions, such as writing 
to an attached display. It is similar to filo in some respects, such as 
the ability to load images from attached devices, but provides an 
architecture neutral layer that simplifies the interface between the 
operating system and the hardware. This means an Open Firmware enabled 
kernel will run on virtually any platform that provides Open Firmware 
support, without requiring kernel code that is specific to the 
platform.

Greg
On Jan 10, 2005, at 3:33 AM, zhu shi song wrote:
How to use linuxbios together with openbios?  Is there
any clear howto doc?  What's the main purpose of
openbios?  What's the main difference between openbios
and filo?
Now I'm using filo to boot my linux kernel.
tks
zhu

__
Do you Yahoo!?
The all-new My Yahoo! - Get yours free!
http://my.yahoo.com
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


Re: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread Li-Ta Lo
On Fri, 2005-01-07 at 14:35, YhLu wrote:
> Stefan,
> 
> Please check out the code from the CVS code.
> 
> After LinuxBIOS keeps the bsp to still use apicid 0. Kernel (2.6.10) x86-64
> can work well.
> 
> Andi suggest that. But I wonder why the normal BIOS (kernel with acpi
> enabled) can lift that to 0x10. --- normal BIOS (kernel with acpi disabled)
> will fail too.
> 

YhLU,

You change the cpu_init_detected(void) to cpu_init_detected(nodeid),
what should I put in the nodeid? You break EVERY K8 mainboard we
have.

Ollie

___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread YhLu
Please refer s4882 to change the MB that you support.

nodeid = lapicid() & 0xf;

orm with initial apic id
 nodeid = (cpuid_ebx(1) >> 24) & 0xf;



YH

-Original Message-
From: Li-Ta Lo [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 1:24 PM
To: YhLu
Cc: Stefan Reinauer; Ronald G. Minnich; LinuxBIOS; Andi Kleen;
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Matt
Domsch
Subject: Re: Enable apic ext id to use 256 apic id for AMD64

On Fri, 2005-01-07 at 14:35, YhLu wrote:
> Stefan,
> 
> Please check out the code from the CVS code.
> 
> After LinuxBIOS keeps the bsp to still use apicid 0. Kernel (2.6.10)
x86-64
> can work well.
> 
> Andi suggest that. But I wonder why the normal BIOS (kernel with acpi
> enabled) can lift that to 0x10. --- normal BIOS (kernel with acpi
disabled)
> will fail too.
> 

YhLU,

You change the cpu_init_detected(void) to cpu_init_detected(nodeid),
what should I put in the nodeid? You break EVERY K8 mainboard we
have.

Ollie
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread Li-Ta Lo
On Mon, 2005-01-10 at 15:18, YhLu wrote:
> Please refer s4882 to change the MB that you support.
> 
> nodeid = lapicid() & 0xf;
> 
> orm with initial apic id
>  nodeid = (cpuid_ebx(1) >> 24) & 0xf;
>   

What is this thing all about ?

Ollie


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread YhLu
For dual core and lifting apic id, you can not just use apic id as node id.

And you have to use
Lapicid() & 0xf

Or cupid to get it.

Regards

YH

-Original Message-
From: Li-Ta Lo [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 2:14 PM
To: YhLu
Cc: Stefan Reinauer; Ronald G. Minnich; LinuxBIOS; Andi Kleen;
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Matt
Domsch
Subject: RE: Enable apic ext id to use 256 apic id for AMD64

On Mon, 2005-01-10 at 15:18, YhLu wrote:
> Please refer s4882 to change the MB that you support.
> 
> nodeid = lapicid() & 0xf;
> 
> orm with initial apic id
>  nodeid = (cpuid_ebx(1) >> 24) & 0xf;
>   

What is this thing all about ?

Ollie

___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread Li-Ta Lo
On Mon, 2005-01-10 at 15:18, YhLu wrote:
> Please refer s4882 to change the MB that you support.
> 
> nodeid = lapicid() & 0xf;
> 
> orm with initial apic id
>  nodeid = (cpuid_ebx(1) >> 24) & 0xf;
>   
>   

Can you do that to the s2885 for me? I am busy working on the
VGABIOS support and have to brain for that.

Ollie


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread YhLu
OK.

-Original Message-
From: Li-Ta Lo [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 2:16 PM
To: YhLu
Cc: Stefan Reinauer; Ronald G. Minnich; LinuxBIOS; Andi Kleen;
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Matt
Domsch
Subject: RE: Enable apic ext id to use 256 apic id for AMD64

On Mon, 2005-01-10 at 15:18, YhLu wrote:
> Please refer s4882 to change the MB that you support.
> 
> nodeid = lapicid() & 0xf;
> 
> orm with initial apic id
>  nodeid = (cpuid_ebx(1) >> 24) & 0xf;
>   
>   

Can you do that to the s2885 for me? I am busy working on the
VGABIOS support and have to brain for that.

Ollie

___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread YhLu
I changed that for all tyan, amd, and arima MB.

YH

-Original Message-
From: YhLu 
Sent: Monday, January 10, 2005 2:28 PM
To: Li-Ta Lo
Cc: Stefan Reinauer; Ronald G. Minnich; LinuxBIOS; Andi Kleen;
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Matt
Domsch
Subject: RE: Enable apic ext id to use 256 apic id for AMD64

OK.

-Original Message-
From: Li-Ta Lo [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 2:16 PM
To: YhLu
Cc: Stefan Reinauer; Ronald G. Minnich; LinuxBIOS; Andi Kleen;
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Matt
Domsch
Subject: RE: Enable apic ext id to use 256 apic id for AMD64

On Mon, 2005-01-10 at 15:18, YhLu wrote:
> Please refer s4882 to change the MB that you support.
> 
> nodeid = lapicid() & 0xf;
> 
> orm with initial apic id
>  nodeid = (cpuid_ebx(1) >> 24) & 0xf;
>   
>   

Can you do that to the s2885 for me? I am busy working on the
VGABIOS support and have to brain for that.

Ollie

___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


RE: Enable apic ext id to use 256 apic id for AMD64

2005-01-10 Thread Li-Ta Lo
On Mon, 2005-01-10 at 15:40, YhLu wrote:
> I changed that for all tyan, amd, and arima MB.
> 

Thanks a lot.

Ollie


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


PCI Expansion ROM POST committed

2005-01-10 Thread Li-Ta Lo
Hello,

I just committed the VGABIOS support. It works for some ATI and
Nvidia card. Currently it will try to POST any PCI card it can
find with PCI expansion ROM. I will add the #ifdef PCI_EXPANSION_ROM
or if (class == vga_class) later.

Ollie


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


Re: linuxbios on geode gx1 with sst-39SF020A and CompactFlash [PMX:#]

2005-01-10 Thread ramesh bios
Hi Ron,

Just wanted to report that your suggestion was
excellent. I'm now getting serial output saying
"Jumping to LinuxBIOS". It took only a few minutes to
get this working so I was pleasantly surprised. :-)
Thanks! 

Ok, I'm now going to read a bit more about x86 booting
and figure out what's next and what the memory output
means.

LinuxBIOS-1.0.0 Tue Jan 11 06:22:00 IST 2005
starting...
Setting up default parameters for memory
Sizing memory
Probing for DIMM0
Probing for DIMM1
Found DIMM1
Page Size:   1000
Component Banks: 4
Module Banks:2
DIMM size:   0800
Memory sizing done, MC_BANK_CFG = 0x55200070
Copying LinuxBIOS to ram.
Jumping to LinuxBIOS.

Thanks all!



--- "Ronald G. Minnich"  wrote:

> your plan is fine. use the advantech pcm5823 as a
> model board, and use 
> freebios, not freebios2.
> 
> Don't fit linux into the flash. Use filo and boot
> linux from a hard drive. 
> 
> Keep me posted on how it goes and good luck. 
> 
> ron
> ___
> Linuxbios mailing list
> Linuxbios@clustermatic.org
>
http://www.clustermatic.org/mailman/listinfo/linuxbios
> 




__ 
Do you Yahoo!? 
Yahoo! Mail - 250MB free storage. Do more. Manage less. 
http://info.mail.yahoo.com/mail_250
___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios


855gme chip set support

2005-01-10 Thread Adam Talbot
Just pulled down freebios2 and found that there is now 855pm and i855pm
chips in the northbridge.  Is the 855gme supported by any of those chips??
Working on getting a Pentium M board running with linuxbios. Can any one
give me a quick status report on the 855gme chipset.
-Adam


___
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios