2019-06-25 01:11:49 +03:00
|
|
|
/*
|
|
|
|
* QEMU RISC-V Boot Helper
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 SiFive, Inc.
|
|
|
|
* Copyright (c) 2019 Alistair Francis <alistair.francis@wdc.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RISCV_BOOT_H
|
|
|
|
#define RISCV_BOOT_H
|
|
|
|
|
2019-08-12 08:23:31 +03:00
|
|
|
#include "exec/cpu-defs.h"
|
|
|
|
|
2019-07-16 21:47:25 +03:00
|
|
|
void riscv_find_and_load_firmware(MachineState *machine,
|
|
|
|
const char *default_machine_firmware,
|
2020-04-27 11:06:42 +03:00
|
|
|
hwaddr firmware_load_addr,
|
|
|
|
symbol_fn_t sym_cb);
|
2019-08-16 16:09:35 +03:00
|
|
|
char *riscv_find_firmware(const char *firmware_filename);
|
2019-06-25 01:11:52 +03:00
|
|
|
target_ulong riscv_load_firmware(const char *firmware_filename,
|
2020-04-27 11:06:42 +03:00
|
|
|
hwaddr firmware_load_addr,
|
|
|
|
symbol_fn_t sym_cb);
|
2019-11-19 09:21:09 +03:00
|
|
|
target_ulong riscv_load_kernel(const char *kernel_filename,
|
|
|
|
symbol_fn_t sym_cb);
|
2019-06-25 01:11:49 +03:00
|
|
|
hwaddr riscv_load_initrd(const char *filename, uint64_t mem_size,
|
|
|
|
uint64_t kernel_entry, hwaddr *start);
|
|
|
|
|
|
|
|
#endif /* RISCV_BOOT_H */
|