ad36ddc03091c53bb330d921540e607a408646b2
[coreboot.git] / src / arch / x86 / lib / cbfs_and_run.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008-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 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 <console/console.h>
21 #include <cbfs.h>
22 #include <arch/stages.h>
23
24 static void cbfs_and_run_core(const char *filename, unsigned ebp)
25 {
26         u8 *dst;
27
28         print_debug("Loading image.\n");
29         dst = cbfs_load_stage(filename);
30         if ((void *)dst == (void *) -1)
31                 die("FATAL: Essential component is missing.\n");
32
33         print_debug("Jumping to image.\n");
34         __asm__ volatile (
35                 "movl %%eax, %%ebp\n"
36                 "jmp  *%%edi\n"
37                 :: "a"(ebp), "D"(dst)
38         );
39 }
40
41 void __attribute__((regparm(0))) copy_and_run(unsigned cpu_reset)
42 {
43         // FIXME fix input parameters instead normalizing them here.
44         if (cpu_reset == 1) cpu_reset = -1;
45         else cpu_reset = 0;
46
47         cbfs_and_run_core(CONFIG_CBFS_PREFIX "/coreboot_ram", cpu_reset);
48 }
49
50 #if CONFIG_AP_CODE_IN_CAR == 1
51 void __attribute__((regparm(0))) copy_and_run_ap_code_in_car(unsigned ret_addr)
52 {
53         cbfs_and_run_core(CONFIG_CBFS_PREFIX "/coreboot_ap", ret_addr);
54 }
55 #endif