just a few changes before we hit the big fun.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1641 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
1ddc8eaddb
commit
6707a45eb1
|
@ -1,108 +1,125 @@
|
||||||
#define ASSEMBLY 1
|
#define ASSEMBLY 1
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <cpu/p6/apic.h>
|
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <device/pnp_def.h>
|
#include <device/pnp_def.h>
|
||||||
#include <arch/romcc_io.h>
|
#include <arch/romcc_io.h>
|
||||||
#include <arch/hlt.h>
|
#include <arch/smp/lapic.h>
|
||||||
|
#include "option_table.h"
|
||||||
|
#include "pc80/mc146818rtc_early.c"
|
||||||
#include "pc80/serial.c"
|
#include "pc80/serial.c"
|
||||||
#include "arch/i386/lib/console.c"
|
#include "arch/i386/lib/console.c"
|
||||||
#include "ram/ramtest.c"
|
#include "ram/ramtest.c"
|
||||||
#include "northbridge/via/vt8601/raminit.h"
|
#include "southbridge/intel/i82801dbm/i82801dbm_early_smbus.c"
|
||||||
|
#include "northbridge/intel/i855pm/raminit.h"
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
#include "cpu/p6/apic_timer.c"
|
||||||
|
#include "lib/delay.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "cpu/p6/boot_cpu.c"
|
||||||
|
#include "northbridge/intel/i855pm/debug.c"
|
||||||
|
#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
|
||||||
|
|
||||||
#include "cpu/p6/earlymtrr.c"
|
#include "cpu/p6/earlymtrr.c"
|
||||||
|
|
||||||
#include "southbridge/intel/i82801dbm/i82801dbm_early_smbus.c"
|
#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
|
||||||
|
|
||||||
/*
|
static void hard_reset(void)
|
||||||
*/
|
|
||||||
void udelay(int usecs)
|
|
||||||
{
|
{
|
||||||
int i;
|
outb(0x0e, 0x0cf9);
|
||||||
for(i = 0; i < usecs; i++)
|
|
||||||
outb(i&0xff, 0x80);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "lib/delay.c"
|
static void memreset_setup(void)
|
||||||
#include "cpu/p6/boot_cpu.c"
|
|
||||||
#include "debug.c"
|
|
||||||
|
|
||||||
#include "southbridge/via/vt8231/vt8231_early_serial.c"
|
|
||||||
|
|
||||||
static void enable_mainboard_devices(void)
|
|
||||||
{
|
{
|
||||||
device_t dev;
|
|
||||||
/* dev 0 for southbridge */
|
|
||||||
|
|
||||||
dev = pci_locate_device(PCI_ID(0x1106,0x8231), 0);
|
|
||||||
|
|
||||||
if (dev == PCI_DEV_INVALID) {
|
|
||||||
die("Southbridge not found!!!\n");
|
|
||||||
}
|
|
||||||
pci_write_config8(dev, 0x50, 7);
|
|
||||||
pci_write_config8(dev, 0x51, 0xff);
|
|
||||||
#if 0
|
|
||||||
// This early setup switches IDE into compatibility mode before PCI gets
|
|
||||||
// // a chance to assign I/Os
|
|
||||||
// movl $CONFIG_ADDR(0, 0x89, 0x42), %eax
|
|
||||||
// // movb $0x09, %dl
|
|
||||||
// movb $0x00, %dl
|
|
||||||
// PCI_WRITE_CONFIG_BYTE
|
|
||||||
//
|
|
||||||
#endif
|
|
||||||
/* we do this here as in V2, we can not yet do raw operations
|
|
||||||
* to pci!
|
|
||||||
*/
|
|
||||||
dev += 0x100; /* ICKY */
|
|
||||||
|
|
||||||
pci_write_config8(dev, 0x42, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void enable_shadow_ram(void)
|
static void memreset(int controllers, const struct mem_controller *ctrl)
|
||||||
{
|
{
|
||||||
device_t dev = 0; /* no need to look up 0:0.0 */
|
|
||||||
unsigned char shadowreg;
|
|
||||||
/* dev 0 for southbridge */
|
|
||||||
shadowreg = pci_read_config8(dev, 0x63);
|
|
||||||
/* 0xf0000-0xfffff */
|
|
||||||
shadowreg |= 0x30;
|
|
||||||
pci_write_config8(dev, 0x63, shadowreg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static inline void activate_spd_rom(const struct mem_controller *ctrl)
|
||||||
|
{
|
||||||
|
/* nothing to do */
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int spd_read_byte(unsigned device, unsigned address)
|
||||||
|
{
|
||||||
|
return smbus_read_byte(device, address);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "northbridge/intel/i855pm/raminit.c"
|
||||||
|
#include "northbridge/intel/i855pm/reset_test.c"
|
||||||
|
#include "sdram/generic_sdram.c"
|
||||||
|
|
||||||
static void main(void)
|
static void main(void)
|
||||||
{
|
{
|
||||||
unsigned long x;
|
static const struct mem_controller memctrl[] = {
|
||||||
/* init_timer();*/
|
{
|
||||||
outb(5, 0x80);
|
.d0 = PCI_DEV(0, 0, 0),
|
||||||
|
.channel0 = { (0xa<<3)|0, (0xa<<3)|1, (0xa<<3)|2, 0 },
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
enable_vt8231_serial();
|
#if 1
|
||||||
|
enable_lapic();
|
||||||
|
init_timer();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
|
||||||
uart_init();
|
uart_init();
|
||||||
console_init();
|
console_init();
|
||||||
|
|
||||||
enable_mainboard_devices();
|
#if 1
|
||||||
|
print_pci_devices();
|
||||||
|
#endif
|
||||||
|
if(!bios_reset_detected()) {
|
||||||
enable_smbus();
|
enable_smbus();
|
||||||
enable_shadow_ram();
|
#if 1
|
||||||
/* Check all of memory */
|
// dump_spd_registers(&memctrl[0]);
|
||||||
#if 0
|
dump_smbus_registers();
|
||||||
ram_check(0x00000000, msr.lo);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
memreset_setup();
|
||||||
|
sdram_initialize(sizeof(memctrl)/sizeof(memctrl[0]), memctrl);
|
||||||
|
}
|
||||||
#if 0
|
#if 0
|
||||||
static const struct {
|
else {
|
||||||
unsigned long lo, hi;
|
/* clear memory 1meg */
|
||||||
} check_addrs[] = {
|
__asm__ volatile(
|
||||||
/* Check 16MB of memory @ 0*/
|
"1: \n\t"
|
||||||
{ 0x00000000, 0x01000000 },
|
"movl %0, %%fs:(%1)\n\t"
|
||||||
#if TOTAL_CPUS > 1
|
"addl $4,%1\n\t"
|
||||||
/* Check 16MB of memory @ 2GB */
|
"subl $4,%2\n\t"
|
||||||
{ 0x80000000, 0x81000000 },
|
"jnz 1b\n\t"
|
||||||
#endif
|
:
|
||||||
};
|
: "a" (0), "D" (0), "c" (1024*1024)
|
||||||
int i;
|
);
|
||||||
for(i = 0; i < sizeof(check_addrs)/sizeof(check_addrs[0]); i++) {
|
|
||||||
ram_check(check_addrs[i].lo, check_addrs[i].hi);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
early_mtrr_init();
|
|
||||||
|
#if 1
|
||||||
|
dump_pci_devices();
|
||||||
|
#endif
|
||||||
|
#if 1
|
||||||
|
dump_pci_device(PCI_DEV(0, 0, 0));
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
#if 0
|
||||||
|
ram_check(0x00000000, msr.lo+(msr.hi<<32));
|
||||||
|
#else
|
||||||
|
#if 0
|
||||||
|
// Check 16MB of memory @ 0
|
||||||
|
ram_check(0x00000000, 0x01000000);
|
||||||
|
#else
|
||||||
|
// Check 16MB of memory @ 2GB
|
||||||
|
ram_check(0x80000000, 0x81000000);
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -1980,7 +1980,15 @@ static void mem_err {
|
||||||
static void sdram_enable(int controllers, const struct mem_controller *ctrl)
|
static void sdram_enable(int controllers, const struct mem_controller *ctrl)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
uint32_t mchtst;
|
||||||
/* 1 & 2 Power up and start clocks */
|
/* 1 & 2 Power up and start clocks */
|
||||||
|
/* arg! the parts are memory mapped! For now, just grab address 0xc0000000 as the base, since I want to use
|
||||||
|
* constants, not variables, for this.
|
||||||
|
*/
|
||||||
|
mchtst = pci_read_config32(ctrl->d0, 0xf4);
|
||||||
|
mchtst |= (1 << 22);
|
||||||
|
pci_write_config32(ctrl->d0, 0xf4, mchtst);
|
||||||
|
|
||||||
#if DEBUG_RAM_CONFIG
|
#if DEBUG_RAM_CONFIG
|
||||||
print_debug(ram_enable_1);
|
print_debug(ram_enable_1);
|
||||||
print_debug(ram_enable_2);
|
print_debug(ram_enable_2);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#ifndef RAMINIT_H
|
#ifndef RAMINIT_H
|
||||||
#define RAMINIT_H
|
#define RAMINIT_H
|
||||||
|
|
||||||
|
/* I think the 855 is only four sockets -- RGM */
|
||||||
#define DIMM_SOCKETS 4
|
#define DIMM_SOCKETS 4
|
||||||
struct mem_controller {
|
struct mem_controller {
|
||||||
device_t d0;
|
device_t d0;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
/* Convert to C by yhlu */
|
/* Convert to C by yhlu */
|
||||||
|
/* converted to 855 by RGM */
|
||||||
#define MCH_DRC 0x70
|
#define MCH_DRC 0x70
|
||||||
#define DRC_DONE (1 << 29)
|
#define DRC_DONE (1 << 29)
|
||||||
/* If I have already booted once skip a bunch of initialization */
|
/* If I have already booted once skip a bunch of initialization */
|
||||||
|
|
Loading…
Reference in New Issue