d5e68e234334c5d04d8c0e0e0a262c1fcef53103
[coreboot.git] / src / mainboard / intel / jarrell / auto.c
1 #define ASSEMBLY 1
2 #include <stdint.h>
3 #include <device/pci_def.h>
4 #include <arch/io.h>
5 #include <device/pnp_def.h>
6 #include <arch/romcc_io.h>
7 #include <cpu/x86/lapic.h>
8 #include "option_table.h"
9 #include "pc80/mc146818rtc_early.c"
10 #include "pc80/serial.c"
11 #include "arch/i386/lib/console.c"
12 #include "ram/ramtest.c"
13 #include "southbridge/intel/i82801er/i82801er_early_smbus.c"
14 #include "northbridge/intel/e7520/raminit.h"
15 #include "superio/nsc/pc87427/pc87427.h"
16 #include "cpu/x86/lapic/boot_cpu.c"
17 #include "cpu/x86/mtrr/earlymtrr.c"
18 #include "watchdog.c"
19 #include "reset.c"
20 #include "power_reset_check.c"
21 #include "jarrell_fixups.c"
22 #include "superio/nsc/pc87427/pc87427_early_init.c"
23 #include "northbridge/intel/e7520/memory_initialized.c"
24 #include "cpu/x86/bist.h"
25
26 #define SIO_GPIO_BASE 0x680
27 #define SIO_XBUS_BASE 0x4880
28
29 #define CONSOLE_SERIAL_DEV PNP_DEV(0x2e, PC87427_SP2)
30 #define HIDDEN_SERIAL_DEV  PNP_DEV(0x2e, PC87427_SP1)
31
32 #define DEVPRES_CONFIG  (DEVPRES_D1F0 | DEVPRES_D2F0 | DEVPRES_D6F0)
33 #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
34
35 /* Beta values:         0x00090800 */
36 /* Silver values:       0x000a0900 */
37 #define RECVENA_CONFIG  0x000a090a
38 #define RECVENB_CONFIG  0x000a090a
39 #define DIMM_MAP_LOGICAL 0x0124
40
41 static inline void activate_spd_rom(const struct mem_controller *ctrl)
42 {
43         /* nothing to do */
44 }
45 static inline int spd_read_byte(unsigned device, unsigned address)
46 {
47         return smbus_read_byte(device, address);
48 }
49
50 #include "northbridge/intel/e7520/raminit.c"
51 #include "sdram/generic_sdram.c"
52 #include "debug.c"
53
54
55 static void main(unsigned long bist)
56 {
57         /*
58          * 
59          * 
60          */
61         static const struct mem_controller mch[] = {
62                 {
63                         .node_id = 0,
64                         .f0 = PCI_DEV(0, 0x00, 0),
65                         .f1 = PCI_DEV(0, 0x00, 1),
66                         .f2 = PCI_DEV(0, 0x00, 2),
67                         .f3 = PCI_DEV(0, 0x00, 3),
68                         .channel0 = { (0xa<<3)|2, (0xa<<3)|1, (0xa<<3)|0, 0 },
69                         .channel1 = { (0xa<<3)|6, (0xa<<3)|5, (0xa<<3)|4, 0 },
70                 }
71         };
72
73         if (bist == 0) {
74                 /* Skip this if there was a built in self test failure */
75                 early_mtrr_init();
76                 if (memory_initialized()) {
77                         asm volatile ("jmp __cpu_reset");
78                 }
79         }
80         /* Setup the console */
81         pc87427_disable_dev(CONSOLE_SERIAL_DEV);
82         pc87427_disable_dev(HIDDEN_SERIAL_DEV);
83         pc87427_enable_dev(CONSOLE_SERIAL_DEV, TTYS0_BASE);
84         /* Enable Serial 2 lines instead of GPIO */
85         outb(0x2c, 0x2e);
86         outb((inb(0x2f) & (~1<<1)), 0x2f);
87         uart_init();
88         console_init();
89
90         /* Halt if there was a built in self test failure */
91         report_bist_failure(bist);
92
93         pc87427_enable_dev(PC87427_GPIO_DEV, SIO_GPIO_BASE);
94
95         pc87427_enable_dev(PC87427_XBUS_DEV, SIO_XBUS_BASE);
96         xbus_cfg(PC87427_XBUS_DEV);
97
98         /* MOVE ME TO A BETTER LOCATION !!! */
99         /* config LPC decode for flash memory access */
100         device_t dev;
101         dev = pci_locate_device(PCI_ID(0x8086, 0x24d0), 0);
102         if (dev == PCI_DEV_INVALID) {
103                 die("Missing ich5?");
104         }
105         pci_write_config32(dev, 0xe8, 0x00000000);
106         pci_write_config8(dev, 0xf0, 0x00);
107
108 #if 0
109         print_pci_devices();
110 #endif
111         enable_smbus();
112 #if 0
113 //      dump_spd_registers(&cpu[0]);
114         int i;
115         for(i = 0; i < 1; i++) {
116                 dump_spd_registers();
117         }
118 #endif
119         disable_watchdogs();
120         power_down_reset_check();
121 //      dump_ipmi_registers();
122         mainboard_set_e7520_leds();     
123         sdram_initialize(sizeof(mch)/sizeof(mch[0]), mch);
124         ich5_watchdog_on();
125 #if 0
126         dump_pci_devices();
127 #endif
128 #if 0
129         dump_pci_device(PCI_DEV(0, 0x00, 0));
130         dump_bar14(PCI_DEV(0, 0x00, 0));
131 #endif
132
133 #if 0 // temporarily disabled 
134         /* Check the first 1M */
135 //      ram_check(0x00000000, 0x000100000);
136 //      ram_check(0x00000000, 0x000a0000);
137         ram_check(0x00100000, 0x01000000);
138         /* check the first 1M in the 3rd Gig */
139         ram_check(0x30100000, 0x31000000);
140 #if 0
141         ram_check(0x00000000, 0x02000000);
142 #endif
143         
144 #endif
145 #if 0   
146         while(1) {
147                 hlt();
148         }
149 #endif
150 }