bf494367fa
Allows us to use cpu_reset() in place of cpu_state_reset() in main_cpu_reset(). Also pass it through to its reset callbacks, while at it. Signed-off-by: Andreas Färber <afaerber@suse.de> Acked-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
11 lines
331 B
C
11 lines
331 B
C
#ifndef __MICROBLAZE_BOOT__
|
|
#define __MICROBLAZE_BOOT__
|
|
|
|
#include "hw.h"
|
|
|
|
void microblaze_load_kernel(MicroBlazeCPU *cpu, target_phys_addr_t ddr_base,
|
|
uint32_t ramsize, const char *dtb_filename,
|
|
void (*machine_cpu_reset)(MicroBlazeCPU *));
|
|
|
|
#endif /* __MICROBLAZE_BOOT __ */
|