mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Changes for the 810lmr to support the new superio setup.
Changes to the via 8601 ipl.S to enable flash on the vt5426 mainboard
This commit is contained in:
parent
bdea0ef843
commit
6bba8523ae
3 changed files with 22 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
arch i386
|
||||
northsouthbridge sis/730
|
||||
superio sis/950
|
||||
#superio sis/950
|
||||
nsuperio sis/950 com1={1} floppy=1 lpt=1
|
||||
|
||||
option ENABLE_FIXED_AND_VARIABLE_MTRRS
|
||||
option FINAL_MAINBOARD_FIXUP
|
||||
|
|
|
@ -14,5 +14,7 @@ final_mainboard_fixup(void)
|
|||
printk(KERN_INFO "PCCHIPS M810LMR (and similar)...");
|
||||
|
||||
final_southbridge_fixup();
|
||||
#ifndef USE_NEW_SUPERIO_INTERFACE
|
||||
final_superio_fixup();
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -61,7 +61,6 @@ register_table:
|
|||
// LEAVE IT HERE.
|
||||
.byte REG(0x6c), 0x0
|
||||
.byte 0x0
|
||||
|
||||
_realstart:
|
||||
|
||||
cli
|
||||
|
@ -110,11 +109,29 @@ _realstart:
|
|||
orw $FLASHREG, %ax
|
||||
mov $0xcf8,%dx
|
||||
outl %eax,%dx
|
||||
#if (SUPERIO_DEVFN == 0x88)
|
||||
mov $0xfc,%dl
|
||||
inl %dx,%eax
|
||||
/*
|
||||
For 8231:
|
||||
Please see databook revision 1.2, November 13, 2000. Page68.
|
||||
PCI to ISA bridge: Regx40[4]=1, Regx41[0-6]=1.
|
||||
*/
|
||||
orw $0x7f10, %ax
|
||||
outl %eax,%dx
|
||||
#endif
|
||||
#if (SUPERIO_DEVFN == 0x38)
|
||||
Please see databook revision 1.33, January 7, 2000. Page55
|
||||
and 56.
|
||||
PCI to ISA bridge: Regx40[0]=1 (write enable)
|
||||
Regx43[0-7]=1(all bits set to 1)
|
||||
|
||||
/* but 0x01 makes flash writeable. You need this for DoC */
|
||||
mov $0x0cfc,%dx
|
||||
inl %dx,%eax
|
||||
orl $0xc0000001, %eax
|
||||
outl %eax,%dx
|
||||
#endif
|
||||
|
||||
#define loop200 $0x5000
|
||||
#define loop100 $0x2500
|
||||
|
|
Loading…
Add table
Reference in a new issue