Add more timestamps in coreboot.
[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 #include <timestamp.h>
24
25 static void cbfs_and_run_core(const char *filename, unsigned ebp)
26 {
27         u8 *dst;
28
29         timestamp_add_now(TS_START_COPYRAM);
30         print_debug("Loading image.\n");
31         dst = cbfs_load_stage(filename);
32         if ((void *)dst == (void *) -1)
33                 die("FATAL: Essential component is missing.\n");
34
35         timestamp_add_now(TS_END_COPYRAM);
36         print_debug("Jumping to image.\n");
37         __asm__ volatile (
38                 "movl %%eax, %%ebp\n"
39                 "jmp  *%%edi\n"
40                 :: "a"(ebp), "D"(dst)
41         );
42 }
43
44 void __attribute__((regparm(0))) copy_and_run(unsigned cpu_reset)
45 {
46         // FIXME fix input parameters instead normalizing them here.
47         if (cpu_reset == 1) cpu_reset = -1;
48         else cpu_reset = 0;
49
50         cbfs_and_run_core(CONFIG_CBFS_PREFIX "/coreboot_ram", cpu_reset);
51 }
52
53 #if CONFIG_AP_CODE_IN_CAR == 1
54 void __attribute__((regparm(0))) copy_and_run_ap_code_in_car(unsigned ret_addr)
55 {
56         cbfs_and_run_core(CONFIG_CBFS_PREFIX "/coreboot_ap", ret_addr);
57 }
58 #endif