23 lines
747 B
C
23 lines
747 B
C
|
/*
|
||
|
* Utility for QEMU MIPS to generate it's simple bootloader
|
||
|
*
|
||
|
* Copyright (C) 2020 Jiaxun Yang <jiaxun.yang@flygoat.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef HW_MIPS_BOOTLOADER_H
|
||
|
#define HW_MIPS_BOOTLOADER_H
|
||
|
|
||
|
#include "exec/cpu-defs.h"
|
||
|
|
||
|
void bl_gen_jump_to(uint32_t **p, target_ulong jump_addr);
|
||
|
void bl_gen_jump_kernel(uint32_t **p, target_ulong sp, target_ulong a0,
|
||
|
target_ulong a1, target_ulong a2, target_ulong a3,
|
||
|
target_ulong kernel_addr);
|
||
|
void bl_gen_write_ulong(uint32_t **p, target_ulong addr, target_ulong val);
|
||
|
void bl_gen_write_u32(uint32_t **p, target_ulong addr, uint32_t val);
|
||
|
void bl_gen_write_u64(uint32_t **p, target_ulong addr, uint64_t val);
|
||
|
|
||
|
#endif
|