- First stab at running linuxbios without the old static device tree.
[coreboot.git] / src / mainboard / newisys / khepri / auto.c
1 #define ASSEMBLY 1
2 #define MAXIMUM_CONSOLE_LOGLEVEL 9
3 #define DEFAULT_CONSOLE_LOGLEVEL 9
4
5 #include <stdint.h>
6 #include <device/pci_def.h>
7 #include <arch/io.h>
8 #include <device/pnp_def.h>
9 #include <arch/romcc_io.h>
10 #include <arch/smp/lapic.h>
11 #include "option_table.h"
12 #include "pc80/mc146818rtc_early.c"
13 #include "pc80/serial.c"
14 #include "arch/i386/lib/console.c"
15 #include "ram/ramtest.c"
16 #include "northbridge/amd/amdk8/incoherent_ht.c"
17 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
18 #include "northbridge/amd/amdk8/raminit.h"
19 #include "cpu/k8/apic_timer.c"
20 #include "lib/delay.c"
21 #include "cpu/p6/boot_cpu.c"
22 #include "northbridge/amd/amdk8/reset_test.c"
23 #include "northbridge/amd/amdk8/debug.c"
24 #include "northbridge/amd/amdk8/cpu_rev.c"
25 #include "superio/NSC/pc87360/pc87360_early_serial.c"
26
27 #define SERIAL_DEV PNP_DEV(0x2e, PC87360_SP1)
28
29 static void hard_reset(void)
30 {
31         set_bios_reset();
32
33         /* enable cf9 */
34         pci_write_config8(PCI_DEV(0, 0x04, 3), 0x41, 0xf1);
35         /* reset */
36         outb(0x0e, 0x0cf9);
37 }
38
39 static void soft_reset(void)
40 {
41         set_bios_reset();
42         pci_write_config8(PCI_DEV(0, 0x04, 0), 0x47, 1);
43 }
44
45 static void memreset_setup(void)
46 {
47         if (is_cpu_pre_c0()) {
48                 /* Set the memreset low */
49                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 28);
50                 /* Ensure the BIOS has control of the memory lines */
51                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 29);
52         }
53         else {
54                 /* Ensure the CPU has controll of the memory lines */
55                 outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 29);
56         }
57 }
58
59 static void memreset(int controllers, const struct mem_controller *ctrl)
60 {
61         if (is_cpu_pre_c0()) {
62                 udelay(800);
63                 /* Set memreset_high */
64                 outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 28);
65                 udelay(90);
66         }
67 }
68
69 static unsigned int generate_row(uint8_t node, uint8_t row, uint8_t maxnodes)
70 {
71         /* Routing Table Node i 
72          *
73          * F0: 0x40, 0x44, 0x48, 0x4c, 0x50, 0x54, 0x58, 0x5c 
74          *  i:    0,    1,    2,    3,    4,    5,    6,    7
75          *
76          * [ 0: 3] Request Route
77          *     [0] Route to this node
78          *     [1] Route to Link 0
79          *     [2] Route to Link 1
80          *     [3] Route to Link 2
81          * [11: 8] Response Route
82          *     [0] Route to this node
83          *     [1] Route to Link 0
84          *     [2] Route to Link 1
85          *     [3] Route to Link 2
86          * [19:16] Broadcast route
87          *     [0] Route to this node
88          *     [1] Route to Link 0
89          *     [2] Route to Link 1
90          *     [3] Route to Link 2
91          */
92
93         uint32_t ret=0x00010101; /* default row entry */
94
95         static const unsigned int rows_2p[2][2] = {
96                 { 0x00090101, 0x00010808 },
97                 { 0x00010404, 0x00050101 }
98         };
99
100         if(maxnodes > 2) {
101                 print_debug("this mainboard is only designed for 2 cpus\r\n");
102                 maxnodes=2;
103         }
104
105
106         if (!(node >= maxnodes || row >= maxnodes)) {
107                 ret=rows_2p[node][row];
108         }
109
110         return ret;
111 }
112
113 static inline void activate_spd_rom(const struct mem_controller *ctrl)
114 {
115         /* nothing to do */
116 }
117
118 static inline int spd_read_byte(unsigned device, unsigned address)
119 {
120         return smbus_read_byte(device, address);
121 }
122
123 #include "northbridge/amd/amdk8/raminit.c"
124
125 #include "northbridge/amd/amdk8/coherent_ht.c"
126
127 #include "sdram/generic_sdram.c"
128
129 #include "resourcemap.c" /* newisys khepri does not want the default */
130
131 static void main(void)
132 {
133         /*
134          * GPIO28 of 8111 will control H0_MEMRESET_L
135          * GPIO29 of 8111 will control H1_MEMRESET_L
136          */
137         static const struct mem_controller cpu[] = {
138                 {
139                         .node_id = 0,
140                         .f0 = PCI_DEV(0, 0x18, 0),
141                         .f1 = PCI_DEV(0, 0x18, 1),
142                         .f2 = PCI_DEV(0, 0x18, 2),
143                         .f3 = PCI_DEV(0, 0x18, 3),
144                         .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
145                         .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
146                 },
147                 {
148                         .node_id = 1,
149                         .f0 = PCI_DEV(0, 0x19, 0),
150                         .f1 = PCI_DEV(0, 0x19, 1),
151                         .f2 = PCI_DEV(0, 0x19, 2),
152                         .f3 = PCI_DEV(0, 0x19, 3),
153                         .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
154                         .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
155                 },
156         };
157         int needs_reset;
158         enable_lapic();
159         init_timer();
160         if (cpu_init_detected()) {
161                 asm("jmp __cpu_reset");
162         }
163         distinguish_cpu_resets();
164         if (!boot_cpu()) {
165                 stop_this_cpu();
166         }
167         pc87360_enable_serial(SERIAL_DEV, TTYS0_BASE);
168         uart_init();
169         console_init();
170         setup_khepri_resource_map();
171         needs_reset = setup_coherent_ht_domain();
172         needs_reset |= ht_setup_chain(PCI_DEV(0, 0x18, 0), 0x80);
173         if (needs_reset) {
174                 print_info("ht reset -\r\n");
175                 soft_reset();
176         }
177 #if 0
178         print_pci_devices();
179 #endif
180         enable_smbus();
181 #if 0
182         dump_spd_registers(&cpu[0]);
183 #endif
184         memreset_setup();
185         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
186
187 #if 0
188         dump_pci_devices();
189 #endif
190 #if 0
191         dump_pci_device(PCI_DEV(0, 0x18, 2));
192 #endif
193
194 #if 0
195         /* Check the first 1M */
196         ram_check(0x00000000, 0x000100000);
197 #endif
198 }