blob: 0e6820a4eda301b75d8d578f29b658383ace48da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* SPDX-License-Identifier: (GPL-2.0-or-later) */
/*
* Copyright (c) 2021-2023 Vates SAS.
*
* Taken from xvisor, modified by Bobby Eshleman (bobby.eshleman@gmail.com).
*
* Taken/modified from Xvisor project with the following copyright:
*
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
*/
#ifndef __ASM_RISCV_SBI_H__
#define __ASM_RISCV_SBI_H__
#define SBI_EXT_0_1_CONSOLE_PUTCHAR 0x1
struct sbiret {
long error;
long value;
};
struct sbiret sbi_ecall(unsigned long ext, unsigned long fid,
unsigned long arg0, unsigned long arg1,
unsigned long arg2, unsigned long arg3,
unsigned long arg4, unsigned long arg5);
/**
* Writes given character to the console device.
*
* @param ch The data to be written to the console.
*/
void sbi_console_putchar(int ch);
#endif /* __ASM_RISCV_SBI_H__ */
|