more fixes for via ... plus a little more spew.
[coreboot.git] / src / mainboard / via / epia / auto.c
1 #define ASSEMBLY 1
2
3
4 #include <stdint.h>
5 #include <device/pci_def.h>
6 #include <cpu/p6/apic.h>
7 #include <arch/io.h>
8 #include <device/pnp.h>
9 #include <arch/romcc_io.h>
10 #include "pc80/serial.c"
11 #include "arch/i386/lib/console.c"
12 #include "ram/ramtest.c"
13 #include "northbridge/via/vt8601/raminit.h"
14 /*
15  */
16 void udelay(int usecs) {
17   int i;
18   for(i = 0; i < usecs; i++)
19     outb(i&0xff, 0x80);
20 }
21
22 #include "lib/delay.c"
23 #include "cpu/p6/boot_cpu.c"
24 #include "debug.c"
25
26 #include "southbridge/via/vt8231/vt8231_early_smbus.c"
27
28 #define MAXIMUM_CONSOLE_LOGLEVEL 9
29 #define DEFAULT_CONSOLE_LOGLEVEL 9
30
31 #include "southbridge/via/vt8231/vt8231_early_serial.c"
32 static void memreset_setup(void)
33 {
34 }
35
36 /*
37 static void memreset(int controllers, const struct mem_controller *ctrl)
38 {
39 }
40 */
41 static inline int spd_read_byte(unsigned device, unsigned address)
42 {
43         return smbus_read_byte(device, address);
44 }
45
46
47
48 #include "northbridge/via/vt8601/raminit.c"
49 /*
50 #include "sdram/generic_sdram.c"
51  */
52
53 static void
54 enable_mainboard_devices(void) {
55   device_t dev;
56   /* dev 0 for southbridge */
57   
58   dev = pci_locate_device(PCI_ID(0x1106,0x8231), 0);
59   
60   if (dev == PCI_DEV_INVALID) {
61     die("Southbridge not found!!!\n");
62   }
63   pci_write_config8(dev, 0x50, 7);
64   pci_write_config8(dev, 0x51, 0xff);
65 }
66
67 static void
68 enable_shadow_ram(void) {
69   device_t dev = 0; /* no need to look up 0:0.0 */
70   unsigned char shadowreg;
71   /* dev 0 for southbridge */
72   shadowreg = pci_read_config8(dev, 0x63);
73   /* 0xf0000-0xfffff */
74   shadowreg |= 0x30;
75   pci_write_config8(dev, 0x63, shadowreg);
76 }
77 static void main(void)
78 {
79   unsigned long x;
80   /*    init_timer();*/
81   outb(5, 0x80);
82
83         enable_vt8231_serial();
84         enable_mainboard_devices();
85         uart_init();
86         console_init();
87         
88         enable_smbus();
89         enable_shadow_ram();
90         /*
91         memreset_setup();
92          this is way more generic than we need.
93         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
94         */
95         sdram_set_registers((const struct mem_controller *) 0);
96
97
98         /* Check all of memory */
99 #if 0
100         msr_t msr;
101         msr = rdmsr(TOP_MEM);
102         print_debug("TOP_MEM: ");
103         print_debug_hex32(msr.hi);
104         print_debug_hex32(msr.lo);
105         print_debug("\r\n");
106 #endif
107 #if 0
108         ram_check(0x00000000, msr.lo);
109 #endif
110 #if 0
111         static const struct {
112                 unsigned long lo, hi;
113         } check_addrs[] = {
114                 /* Check 16MB of memory @ 0*/
115                 { 0x00000000, 0x01000000 },
116 #if TOTAL_CPUS > 1
117                 /* Check 16MB of memory @ 2GB */
118                 { 0x80000000, 0x81000000 },
119 #endif
120         };
121         int i;
122         for(i = 0; i < sizeof(check_addrs)/sizeof(check_addrs[0]); i++) {
123                 ram_check(check_addrs[i].lo, check_addrs[i].hi);
124         }
125 #endif
126 }