1*7025114bSStafford Horne /* 2*7025114bSStafford Horne * QEMU OpenRISC boot helpers. 3*7025114bSStafford Horne * 4*7025114bSStafford Horne * Copyright (c) 2022 Stafford Horne <shorne@gmail.com> 5*7025114bSStafford Horne * 6*7025114bSStafford Horne * This program is free software; you can redistribute it and/or modify it 7*7025114bSStafford Horne * under the terms and conditions of the GNU General Public License, 8*7025114bSStafford Horne * version 2 or later, as published by the Free Software Foundation. 9*7025114bSStafford Horne * 10*7025114bSStafford Horne * This program is distributed in the hope it will be useful, but WITHOUT 11*7025114bSStafford Horne * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12*7025114bSStafford Horne * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13*7025114bSStafford Horne * more details. 14*7025114bSStafford Horne * 15*7025114bSStafford Horne * You should have received a copy of the GNU General Public License along with 16*7025114bSStafford Horne * this program. If not, see <http://www.gnu.org/licenses/>. 17*7025114bSStafford Horne */ 18*7025114bSStafford Horne 19*7025114bSStafford Horne #ifndef OPENRISC_BOOT_H 20*7025114bSStafford Horne #define OPENRISC_BOOT_H 21*7025114bSStafford Horne 22*7025114bSStafford Horne #include "exec/cpu-defs.h" 23*7025114bSStafford Horne 24*7025114bSStafford Horne hwaddr openrisc_load_kernel(ram_addr_t ram_size, 25*7025114bSStafford Horne const char *kernel_filename, 26*7025114bSStafford Horne uint32_t *bootstrap_pc); 27*7025114bSStafford Horne 28*7025114bSStafford Horne hwaddr openrisc_load_initrd(void *fdt, const char *filename, 29*7025114bSStafford Horne hwaddr load_start, uint64_t mem_size); 30*7025114bSStafford Horne 31*7025114bSStafford Horne uint32_t openrisc_load_fdt(void *fdt, hwaddr load_start, 32*7025114bSStafford Horne uint64_t mem_size); 33*7025114bSStafford Horne 34*7025114bSStafford Horne #endif /* OPENRISC_BOOT_H */ 35