git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6376 2b7e53f0-3cfb-0310-b3e9-8179ed...
[coreboot.git] / src / mainboard / asrock / e350m1 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <stdint.h>
21 #include <string.h>
22 #include <device/pci_def.h>
23 #include <device/pci_ids.h>
24 #include <arch/io.h>
25 #include <arch/stages.h>
26 #include <device/pnp_def.h>
27 #include <arch/romcc_io.h>
28 #include <arch/cpu.h>
29 #include <cpu/x86/lapic.h>
30 #include <console/console.h>
31 #include <console/loglevel.h>
32 #include "agesawrapper.h"
33 #include "cpu/x86/bist.h"
34 #include "superio/fintek/f81865f/f81865f_early_serial.c"
35 #include "cpu/x86/lapic/boot_cpu.c"
36 #include "pc80/i8254.c"
37 #include "pc80/i8259.c"
38 #include "SbEarly.h"
39 #include "SBPLATFORM.h"
40
41 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
42
43 #define SERIAL_DEV PNP_DEV(0x4e, F81865F_SP1)
44
45 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
46 {
47   u32 val;
48   u8 reg8;
49
50   if (!cpu_init_detectedx && boot_cpu()) {
51     post_code(0x30);
52     sb_poweron_init();
53
54     post_code(0x31);
55     f81865f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
56     uart_init();
57     console_init();
58   }
59         //reg8 = pmio_read(0x24);
60   outb(0x24, 0xCD6);
61   reg8 = inb(0xCD7);
62         reg8 |= 1;
63         reg8 &= ~(1 << 1);
64         //pmio_write(0x24, reg8);
65         outb(0x24, 0xCD6);
66         outb(reg8, 0xCD7);
67
68         *(volatile u32 *)(0xFED80000+0xE00+0x40) &= ~((1 << 0) | (1 << 2)); /* 48Mhz */
69         *(volatile u32 *)(0xFED80000+0xE00+0x40) |= 1 << 1; /* 48Mhz */
70
71   /* Halt if there was a built in self test failure */
72   post_code(0x34);
73   report_bist_failure(bist);
74
75   // Load MPB
76   val = cpuid_eax(1);
77   printk(BIOS_DEBUG, "BSP Family_Model: %08x \n", val);
78   printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx \n", cpu_init_detectedx);
79
80   post_code(0x35);
81   val = agesawrapper_amdinitmmio();
82
83   post_code(0x37);
84   val = agesawrapper_amdinitreset();
85   if(val) {
86     printk(BIOS_DEBUG, "agesawrapper_amdinitreset failed: %x \n", val);
87   }
88
89   post_code(0x38);
90   printk(BIOS_DEBUG, "Got past sb800_early_setup\n");
91
92   post_code(0x39);
93   val = agesawrapper_amdinitearly ();
94   if(val) {
95     printk(BIOS_DEBUG, "agesawrapper_amdinitearly failed: %x \n", val);
96   }
97   printk(BIOS_DEBUG, "Got past agesawrapper_amdinitearly\n");
98
99   post_code(0x40);
100   val = agesawrapper_amdinitpost ();
101   if(val) {
102     printk(BIOS_DEBUG, "agesawrapper_amdinitpost failed: %x \n", val);
103   }
104   printk(BIOS_DEBUG, "Got past agesawrapper_amdinitpost\n");
105
106   post_code(0x41);
107   val = agesawrapper_amdinitenv ();
108   if(val) {
109     printk(BIOS_DEBUG, "agesawrapper_amdinitenv failed: %x \n", val);
110   }
111   printk(BIOS_DEBUG, "Got past agesawrapper_amdinitenv\n");
112
113   /* Initialize i8259 pic */
114   post_code(0x41);
115   setup_i8259 ();
116
117   /* Initialize i8254 timers */
118   post_code(0x42);
119   setup_i8254 ();
120
121   post_code(0x50);
122   copy_and_run(0);
123
124   post_code(0x54);  // Should never see this post code.
125 }
126