You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
244 B
14 lines
244 B
6 years ago
|
#ifndef _RISCV_FINISHER_H
|
||
|
#define _RISCV_FINISHER_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define FINISHER_REG_FINISH 0
|
||
|
#define FINISHER_FAIL 0x3333
|
||
|
#define FINISHER_PASS 0x5555
|
||
|
|
||
|
void finisher_exit(uint16_t code);
|
||
|
void query_finisher(uintptr_t fdt);
|
||
|
|
||
|
#endif
|