be72d1c96bd52ec9743ec6bf64cb5a433abb6465
[coreboot.git] / src / mainboard / via / epia / romstage.c
1 #include <stdint.h>
2 #include <device/pci_def.h>
3 #include <arch/io.h>
4 #include <device/pnp_def.h>
5 #include <arch/romcc_io.h>
6 #include <arch/hlt.h>
7 #include <stdlib.h>
8 #include <console/console.h>
9 #include "lib/ramtest.c"
10 #include "northbridge/via/vt8601/raminit.h"
11 #include "cpu/x86/mtrr/earlymtrr.c"
12 #include "cpu/x86/bist.h"
13 #include "pc80/udelay_io.c"
14 #include "lib/delay.c"
15 #include "lib/debug.c"
16 #include "southbridge/via/vt8231/vt8231_early_smbus.c"
17 #include "southbridge/via/vt8231/vt8231_early_serial.c"
18 #include "southbridge/via/vt8231/vt8231_enable_rom.c"
19
20 static inline int spd_read_byte(unsigned device, unsigned address)
21 {
22         return smbus_read_byte(device, address);
23 }
24
25 #include "northbridge/via/vt8601/raminit.c"
26 /*
27   #include "lib/generic_sdram.c"
28 */
29
30 static void enable_mainboard_devices(void)
31 {
32         device_t dev;
33         /* dev 0 for southbridge */
34
35         dev = pci_locate_device(PCI_ID(0x1106,0x8231), 0);
36
37         if (dev == PCI_DEV_INVALID) {
38                 die("Southbridge not found!!!\n");
39         }
40
41         pci_write_config8(dev, 0x50, 7);
42         pci_write_config8(dev, 0x51, 0xff);
43 #if 0
44         // This early setup switches IDE into compatibility mode before PCI gets
45         // a chance to assign I/Os
46         //   movl    $CONFIG_ADDR(0, 0x89, 0x42), %eax
47         //   movb    $0x09, %dl
48         //   movb    $0x00, %dl
49         //   PCI_WRITE_CONFIG_BYTE
50         //
51 #endif
52         /* we do this here as in V2, we can not yet do raw operations
53          * to pci!
54          */
55         /* changed this to work correctly on later revisions of LB.
56         * The original dev += 0x100; stopped working. It also appears
57         * that if this is not set here, but in ide_init() only, the IDE
58         * does not work at all. I assume it needs to be set before something else,
59         * possibly before enabling the IDE peripheral, or it is a timing issue.
60         * Ben Hewson 29 Apr 2007.
61         */
62
63         dev = pci_locate_device(PCI_ID(0x1106,0x0571), 0);
64         pci_write_config8(dev, 0x42, 0);
65 }
66
67 static void enable_shadow_ram(void)
68 {
69         device_t dev = 0;
70         unsigned char shadowreg;
71
72         shadowreg = pci_read_config8(dev, 0x63);
73         /* 0xf0000-0xfffff */
74         shadowreg |= 0x30;
75         pci_write_config8(dev, 0x63, shadowreg);
76 }
77
78 static void main(unsigned long bist)
79 {
80         if (bist == 0) {
81                 early_mtrr_init();
82         }
83         enable_vt8231_serial();
84         uart_init();
85         console_init();
86
87         /* Halt if there was a built in self test failure */
88         report_bist_failure(bist);
89
90         vt8231_enable_rom();
91         enable_mainboard_devices();
92         enable_smbus();
93         enable_shadow_ram();
94
95         /*
96           this is way more generic than we need.
97           sdram_initialize(ARRAY_SIZE(cpu), cpu);
98         */
99         sdram_set_registers((const struct mem_controller *) 0);
100         sdram_set_spd_registers((const struct mem_controller *) 0);
101         sdram_enable(0, (const struct mem_controller *) 0);
102
103         /* Check all of memory */
104 #if 0
105         ram_check(0x00000000, msr.lo);
106 #endif
107 #if 0
108         static const struct {
109                 unsigned long lo, hi;
110         } check_addrs[] = {
111                 /* Check 16MB of memory @ 0*/
112                 { 0x00000000, 0x01000000 },
113 #if TOTAL_CPUS > 1
114                 /* Check 16MB of memory @ 2GB */
115                 { 0x80000000, 0x81000000 },
116 #endif
117         };
118         int i;
119         for(i = 0; i < ARRAY_SIZE(check_addrs); i++) {
120                 ram_check(check_addrs[i].lo, check_addrs[i].hi);
121         }
122 #endif
123 }
124