- Fix UDELAY options and HAVE_INIT_TIMER [kconfig]
[coreboot.git] / src / cpu / intel / model_6fx / cache_as_ram_disable.c
1 /*
2  * This file is part of the coreboot project.
3  * 
4  * Copyright (C) 2007-2009 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include "cpu/x86/car/copy_and_run.c"
23
24 void real_main(unsigned long bist);
25
26 void stage1_main(unsigned long bist)
27 {
28         unsigned int cpu_reset = 0;
29
30 #if !defined(CONFIG_TINY_BOOTBLOCK) || !CONFIG_TINY_BOOTBLOCK
31 #if CONFIG_USE_FALLBACK_IMAGE == 1
32         /* Is this a deliberate reset by the bios */
33         if (bios_reset_detected() && last_boot_normal()) {
34                 goto normal_image;
35         } else {
36                 /* This is the primary cpu how should I boot? */
37                 check_cmos_failed();
38                 if (do_normal_boot()) {
39                         goto normal_image;
40                 }
41                 else {
42                         goto fallback_image;
43                 }
44         }
45  normal_image:
46         __asm__ volatile ("jmp __normal_image"
47                 : /* outputs */
48                 : "a" (bist) /* inputs */
49                 );
50  fallback_image:
51 #endif
52 #endif
53
54         real_main(bist);
55
56         /* No servicable parts below this line .. */
57
58 #if CAR_DEBUG
59         /* Check value of esp to verify if we have enough rom for stack in Cache as RAM */
60         unsigned v_esp;
61         __asm__ volatile (
62                 "movl   %%esp, %0\n"
63                 : "=a" (v_esp)
64         );
65         printk_spew("v_esp=%08x\n", v_esp);
66 #endif
67
68 cpu_reset_x:
69
70         printk_spew("cpu_reset = %08x\n", cpu_reset);
71         printk_spew("No cache as ram now - ");
72
73         /* store cpu_reset to ebx */
74         __asm__ volatile (
75                 "movl %0, %%ebx\n\t"
76                 ::"a" (cpu_reset)
77         );
78
79 #undef CLEAR_FIRST_1M_RAM 
80 #include "cache_as_ram_post.c"
81
82         /* For now: use rambase + 1MB - 64K (counting downwards) as stack. This
83          * makes sure that we stay completely within the 1M of memory we
84          * preserve with the memcpy above.
85          */
86
87 #ifndef HIGH_MEMORY_SAVE
88 #define HIGH_MEMORY_SAVE ( (1024 - 64) * 1024 )
89 #endif
90
91         __asm__ volatile (
92                 "movl %0, %%ebp\n"
93                 "movl %0, %%esp\n"
94                 :: "a" (CONFIG_RAMBASE + HIGH_MEMORY_SAVE)
95         );
96
97         {
98                 unsigned new_cpu_reset;
99
100                 /* get back cpu_reset from ebx */
101                 __asm__ volatile (
102                         "movl %%ebx, %0\n"
103                         :"=a" (new_cpu_reset)
104                 );
105
106                 /* Copy and execute coreboot_ram */
107                 copy_and_run(new_cpu_reset);
108         }
109
110         /* We will not return */
111         printk_debug("sorry. parachute did not open.\n");
112 }