- VIA 686 cleanups from the A7M code (it now works in a different pci slot).
- Update of assembly printing routines to use the debug levels:
TTYS0_TX_CHAR now becomes CONSOLE_<LEVEL>_TX_CHAR.
It's more verbose but now the controls are the same as with the C code.
- Break off of loglevel.h from printk.h. loglevel.h is safe for both
the assembly routines and the C code to include.
- Next round of commits for the supermicro p4dc6
- SMP setup updates (Rons board is broken)
I now allow the other SMP processors to report their existence.
I really need to add a minimum time to run but that hasn't happened yet.
- SMP per motherboard table of apicids, as the assumption that they
would always be 0 & 1 with only two cpus fails.
- RDRAM setup updates. The code isn't done but it now works on more
than one board at a time.
- More cacheram work. Minor bug fixes and some macros to use it from C.
- Entry point changes so we no longer have to jump over our gdt.
- Added/Audited the cpufixup for the i786
- IDE intialization for the 82801 ich2 chip.
final_mainboard_fixup
will be called as the last step in intel_main before calling linuxbiosmain.
Added a final_mainboard_fixup function to the winfast mainboard.c
added a final_southbridge_fixup to southbridge.c for the sis630.
In all cases, this is to get ethernet working until we resolve some problems
with the ethernet interface. Problem is is bar0 does not reliably take the
address I put into it. If I set 0x2401, sometimes it reads back as 0x2001.
This makes linux unhappy, since 0x2001 is already in use. Second, the
COMMAND bit probing in linuxpci.c does not realize that the enet device
can be a busmaster. So we jam register 0x4 to 0x7. Finally, the interrupt line
is getting zero in zero_irq_settings, but the irq table has no info on
this device, with the result that the interface comes up with no IRQ.
So we set reg 0x3c to 0xb, a known-good value.
Ethernet now works fine on my winfast 6300.
ron