A computer components & hardware forum. HardwareBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » HardwareBanter forum » Motherboards » Asus Motherboards
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Matrox & Asus Being Jerks! P4C800-E Dlx + P650/P750 Fails During Boot!



 
 
Thread Tools Display Modes
  #1  
Old April 5th 04, 02:57 AM
Rapu Rapala
external usenet poster
 
Posts: n/a
Default Matrox & Asus Being Jerks! P4C800-E Dlx + P650/P750 Fails During Boot!

Normally BIOS code by definition IS in host CPU code. Such code is NOT
CPU
independent and therefore most PCI or ISA bus PC cards are NOT CPU
independent! They are x86 CPU dependent.


Ron, the cards are connected to the motherboard using a bus such as ISA,
EIDE, VESA, PCI, PCI-X, AGP.. the host system processor does send commands
to the card using either input/output ports or memory mapping, where writes
to specific address are sent to the card through the bus.

If the host processor wants to execute code from the BIOS, it can do this,
but the results are in CPU local registers and address space. If the CPU
wants something to happen, it must again write back to the memory mapped
region or use output ports.

The device must be able to respond to the command stream from the host
system and do whatever it is this device is supposed to be doing. The host
processor can only send command stream to the device. This code is very
rarely x86 specific in any way or form, it is more often hardware specific
values which change the hardware state.

You seriously don't try to make anyone belive that most PC add-on boards
have x86 compatible processor on them!? If not, what precisely is the factor
that you feel that does make them (all?) x86 CPU dependent? Please come
again, this is going to be very interesting.


  #2  
Old April 5th 04, 03:18 AM
Rapu Rapala
external usenet poster
 
Posts: n/a
Default

Ummm. let's bring some facts to the discission, Ron claims to have written
BIOS'es but fails to materialize the easy-to-understand explanation anyone
who had, would be able to provide.

You see, Ron, things that you know about are trivialized.. you don't need to
act high and mighty to be able to explain what is the essense of things.

Let's talk about IBM PC compatible BIOS.

The interface to this BIOS is mostly interrupt 0x21, which is used to call
code which resides in the read-only ROM memory in the so-called BIOS. This
code is executed on x86 compatible processor by the x86 compatible
processor, which is not a very hard thing to grasp.. what the BIOS contains,
is x86 compatible binary code, obviously.

This code is instructions to the motherboard and other components the BIOS
supports (such as IDE, SATA, etc. controllers, whatever the MB supports that
is within the scope of the IBM PC compatible BIOS...), this allows the
common feature set to be commanded through standard interface.

This was more relevant years ago, novadays Operating Systems such as
Windows, Linux and others do most of the tasks with device drivers
'natively'-- so the BIOS could be a lot simpler novadays, just pass the
control to the OS bootstrap and let it do the rest. This is much more
efficient, because BIOS is implemented using Real Mode and modern x86 OS
runs in Protected Mode.

Calls to the BIOS have to be done using API such as DPMI, which is not very
efficient. It is far more efficient to do the I/O directly from the
Protected Mode. Ofcourse different OS take different approach, Windows just
allows drivers to write into memory where they want with full privileges
which sometimes causes some instability with poorly written drivers. ;-) ;-)

I'm assuming the reader knows what Protection Level and Ring 0 means so I
won't insult anyone with excess babbling about how the privilege levels
work.

Interesting that adults find it more productive to argue who's right and
who's wrong without any mentioning how the BIOS on IBM PC compatibles is
supposed to be working.

Disclaimer: I might have made error or two, tough ****, because haven't done
any "BIOS" level programming for 10 years or so, Windows, BeOS, Linux, BSD
and others kind of made it a Solved Problem. IBM PC compatible BIOS is not
very interesting technically, never were, IMHO.

It was the MS-DOS programmers who had to deal with the BIOS most. Those
times are long past. Maybe someone somewhere is writing this embedded system
controller/application/widget, who knows.. good for you whoever you may be!



  #3  
Old April 5th 04, 03:36 AM
Rapu Rapala
external usenet poster
 
Posts: n/a
Default

FWIW, IBM PC compatible BIOS for a motherboard is example of device which
*does* have a x86 compatible CPU very often. Stating that all add-on boards
do, is naive- why would they need to store driver code in ROM when it can be
loaded off the hard-drive by the OS and thereby even upgraded without
flashing? ;-)

As far as I know of, most cards do have a Windows drivers for instance which
are NOT loaded off ROM. ;-)




  #4  
Old April 5th 04, 03:41 AM
Rapu Rapala
external usenet poster
 
Posts: n/a
Default

As far as I know of, most cards do have a Windows drivers for instance
which
are NOT loaded off ROM. ;-)


... except the VGA/VBE bios which is used through interrupt 0x10 .. which is
required feature only on IBM PC compatible systems.. if you drop such PCI
card to another architechture, you can still command it through the bus..
just more code to write, on the other hand the VBE BIOS is not very commonly
used anymore except for booting, maybe by the motherboard BIOS (int 0x21)
and some archaic "SVGA generic" drivers in Linux and MS-DOS, if you happen
to boot it for some bizarre reason.

Some text-mode tools also propably find it more convenient to use int 0x10
rather than write driver for all possible gfx card.. but again.. this is
just IBM PC compatible proprietary feature for cards which are supposed to
work on one.

But I don't see any technical reason why you couldn't use virtually any PCI
card meant for "IBM PC" in any system which has PCI bus, as long as you have
the software for the feat. Ron seemingly does, what a strange fellow!


  #5  
Old April 5th 04, 05:07 AM
Ron Reaugh
external usenet poster
 
Posts: n/a
Default


"Rapu Rapala" wrote in message
...
Normally BIOS code by definition IS in host CPU code. Such code is NOT

CPU
independent and therefore most PCI or ISA bus PC cards are NOT CPU
independent! They are x86 CPU dependent.


Ron, the cards are connected to the motherboard using a bus such as ISA,
EIDE, VESA, PCI, PCI-X, AGP.. the host system processor does send

commands
to the card using either input/output ports or memory mapping, where

writes
to specific address are sent to the card through the bus.

If the host processor wants to execute code from the BIOS, it can do this,
but the results are in CPU local registers and address space. If the CPU
wants something to happen, it must again write back to the memory mapped
region or use output ports.

The device must be able to respond to the command stream from the host
system and do whatever it is this device is supposed to be doing. The host
processor can only send command stream to the device. This code is very
rarely x86 specific in any way or form, it is more often hardware specific
values which change the hardware state.

You seriously don't try to make anyone belive that most PC add-on boards
have x86 compatible processor on them!? If not, what precisely is the

factor
that you feel that does make them (all?) x86 CPU dependent? Please come
again, this is going to be very interesting.


HUH, reread the thread.


  #6  
Old April 5th 04, 05:07 AM
Ron Reaugh
external usenet poster
 
Posts: n/a
Default


"Rapu Rapala" wrote in message
...
Ummm. let's bring some facts to the discission, Ron claims to have written
BIOS'es but fails to materialize the easy-to-understand explanation anyone
who had, would be able to provide.

You see, Ron, things that you know about are trivialized.. you don't need

to
act high and mighty to be able to explain what is the essense of things.

Let's talk about IBM PC compatible BIOS.

The interface to this BIOS is mostly interrupt 0x21, which is used to call
code which resides in the read-only ROM memory in the so-called BIOS. This
code is executed on x86 compatible processor by the x86 compatible
processor, which is not a very hard thing to grasp.. what the BIOS

contains,
is x86 compatible binary code, obviously.

This code is instructions to the motherboard and other components the BIOS
supports (such as IDE, SATA, etc. controllers, whatever the MB supports

that
is within the scope of the IBM PC compatible BIOS...), this allows the
common feature set to be commanded through standard interface.

This was more relevant years ago, novadays Operating Systems such as
Windows, Linux and others do most of the tasks with device drivers
'natively'-- so the BIOS could be a lot simpler novadays, just pass the
control to the OS bootstrap and let it do the rest. This is much more
efficient, because BIOS is implemented using Real Mode and modern x86 OS
runs in Protected Mode.

Calls to the BIOS have to be done using API such as DPMI, which is not

very
efficient. It is far more efficient to do the I/O directly from the
Protected Mode. Ofcourse different OS take different approach, Windows

just
allows drivers to write into memory where they want with full privileges
which sometimes causes some instability with poorly written drivers. ;-)

;-)

I'm assuming the reader knows what Protection Level and Ring 0 means so I
won't insult anyone with excess babbling about how the privilege levels
work.

Interesting that adults find it more productive to argue who's right and
who's wrong without any mentioning how the BIOS on IBM PC compatibles is
supposed to be working.

Disclaimer: I might have made error or two, tough ****, because haven't

done
any "BIOS" level programming for 10 years or so, Windows, BeOS, Linux, BSD
and others kind of made it a Solved Problem. IBM PC compatible BIOS is not
very interesting technically, never were, IMHO.

It was the MS-DOS programmers who had to deal with the BIOS most. Those
times are long past. Maybe someone somewhere is writing this embedded

system
controller/application/widget, who knows.. good for you whoever you may

be!

HUH, again. This thread is about what happens during boot. This thread is
about BIOSs and about what a display card's BIOS does especially during
boot. Read the whole thread and get a clue.


  #7  
Old April 5th 04, 05:07 AM
Ron Reaugh
external usenet poster
 
Posts: n/a
Default


"Rapu Rapala" wrote in message
...
FWIW, IBM PC compatible BIOS for a motherboard is example of device which
*does* have a x86 compatible CPU very often.


DUH!

Stating that all add-on boards
do,


No one ever stated that especially me. If you read the whole thread you'd
see that. The code on a card/controller is specific to the CPU on that
card, which could even be an 80186, such code is referred to as firmware
and not BIOS.

Some cards also(in addition) may have actual BIOS code(x86 code) that is
registered with the mobo BIOS and essentailly becomes part of that x86 boot
code set.



  #8  
Old April 5th 04, 05:07 AM
Ron Reaugh
external usenet poster
 
Posts: n/a
Default


"Rapu Rapala" wrote in message
...
As far as I know of, most cards do have a Windows drivers for instance

which
are NOT loaded off ROM. ;-)


.. except the VGA/VBE bios which is used through interrupt 0x10 ..


OH, so now you are saying x86 code entry...now you got it.

which is
required feature only on IBM PC compatible systems.. if you drop such PCI
card to another architechture, you can still command it through the bus..
just more code to write, on the other hand the VBE BIOS



That's x86 code

is not very commonly
used anymore except for booting,


Now you got it.

maybe by the motherboard BIOS (int 0x21)
and some archaic "SVGA generic" drivers in Linux and MS-DOS, if you happen
to boot it for some bizarre reason.

Some text-mode tools also propably find it more convenient to use int 0x10
rather than write driver for all possible gfx card.. but again.. this is
just IBM PC compatible proprietary feature for cards which are supposed to
work on one.

But I don't see any technical reason why you couldn't use virtually any

PCI
card meant for "IBM PC" in any system which has PCI bus, as long as you

have
the software for the feat. Ron seemingly does, what a strange fellow!


Get a clue cretin.


  #9  
Old April 5th 04, 05:20 AM
Ron Reaugh
external usenet poster
 
Posts: n/a
Default


"johns" wrote in message
...
You are about to get down a real rat-hole with the
ATI cards. They run well on certain hardware, but not
on others !!!!!!!!!! I'm not kidding at all. I wonder
why there is not a hardware compatibility list somewhere?
Don't put ATIs on the VIA chipset !!!


Don't put anything on VIA chipsetsg.


  #10  
Old April 5th 04, 06:17 AM
Rapu Rapala
external usenet poster
 
Posts: n/a
Default

.. except the VGA/VBE bios which is used through interrupt 0x10 ..
OH, so now you are saying x86 code entry...now you got it.


No... I was covering every contingency, unlike you, loser. With assholes
like you that is mandatory, otherwise little ****-ant loser like you can
point out even tiniest omission.. next you propably are going to point out
how poor grammar I've got, because that's all you are going to be able to
complain about, loser.

Oh, hey, loser, while at it.. the VGA/VBE bios on gfx cards is required only
on IBM PC compatibles.. now you *might* get it.. I think you won't, because
you have shown consistently being stupid, loser.


required feature only on IBM PC compatible systems.. if you drop such

PCI
card to another architechture, you can still command it through the

bus..
just more code to write, on the other hand the VBE BIOS


That's x86 code


Wrong, loser, the PCI specification is not tied to x86 specificly, loser. It
is just so, that IBM PC compatibles expect the gfx card for example to have
VGA/VBE BIOS. Other architechtures are not so much concerned about presense
of VGA/VBE BIOS than IBM PC compatibles, they will accept the cards just
fine, unless they have their own requirements, which are less likely to be
port-level hardware level compatibility. As long as you got driver, you're
all set. No hardware obstacle for anything like you claim, loser.

is not very commonly
used anymore except for booting,


Now you got it.


You little piece of ****, if you knew this all along how come I am the one
who had to write it down for the record? Even if you know this stuff, you
sure suck at putting it down in writing, loser. Should be trivial for you as
it is for me, you little worthless ****.


Get a clue cretin.


So far you have been saying that "now you got it" and so on, as if I were
right. Now you ask me to get a clue.. so which is it going to be, you little
weasel? I'm sorry, did I get your feelings hurt by proving you're wrong? Oh
my..


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASUS K8V Deluxe - Motherboard Andre General 2 October 13th 04 01:46 AM
Zalman CNPS7000A-CU on Asus P4C800 Fredrik General 0 March 2nd 04 08:47 PM
Asus a7n8x and Matrox G400 VP General 1 January 31st 04 03:11 AM
Matrox G400 problems with Asus A7N8X VP Asus Motherboards 2 January 30th 04 01:27 AM
Asus P4C800 Deluxe - PATA RAID on only one cable? Noozer General 14 December 22nd 03 05:57 AM


All times are GMT +1. The time now is 10:38 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 HardwareBanter.
The comments are property of their posters.