blob: ab4ae95a19707f21fea5b531e56cea3b1f5cf21a [file] [log] [blame]
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google 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
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000018 */
19
Aaron Durbin04654a22015-03-17 11:43:44 -050020#include <program_loading.h>
Ronald G. Minnichf47f5fb2015-09-22 15:53:32 -070021#include <vm.h>
22#include <arch/encoding.h>
23#include <rules.h>
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000024
Aaron Durbinb3847e62015-03-20 15:55:08 -050025void arch_prog_run(struct prog *prog)
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000026{
Ronald G. Minnichf47f5fb2015-09-22 15:53:32 -070027 void (*doit)(void *) = prog_entry(prog);
Aaron Durbinb3847e62015-03-20 15:55:08 -050028
Ronald G. Minnichf47f5fb2015-09-22 15:53:32 -070029 if (ENV_RAMSTAGE && prog_type(prog) == ASSET_PAYLOAD) {
30 initVirtualMemory();
31 write_csr(mepc, doit);
32 asm volatile("eret");
33 } else {
34 doit(prog_entry_arg(prog));
35 }
Aaron Durbinb3847e62015-03-20 15:55:08 -050036}