-
Notifications
You must be signed in to change notification settings - Fork 1
/
console.c
66 lines (60 loc) · 1.8 KB
/
console.c
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* Copyright (C) 2019, Ward Jaradat
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "include/os.h"
#include "include/console.h"
#include <xen/sched.h>
static evtchn_port_t console_evt;
extern char _text;
struct xencons_interface * console;
int console_init(start_info_t * start)
{
console = (struct xencons_interface*) ((machine_to_phys_mapping[start->console.domU.mfn] << 12) + ((unsigned long)&_text));
console_evt = start->console.domU.evtchn;
return 0;
}
int console_write(char * message)
{
struct evtchn_send event;
event.port = console_evt;
int length = 0;
while(*message != '\0')
{
XENCONS_RING_IDX data;
do
{
data = console->out_prod - console->out_cons;
HYPERVISOR_event_channel_op(EVTCHNOP_send, &event);
mb();
} while (data >= sizeof(console->out));
int ring_index = MASK_XENCONS_IDX(console->out_prod, console->out);
console->out[ring_index] = *message;
wmb();
console->out_prod++;
length++;
message++;
}
HYPERVISOR_event_channel_op(EVTCHNOP_send, &event);
return length;
}
void console_flush()
{
while(console->out_cons < console->out_prod)
{
HYPERVISOR_sched_op(SCHEDOP_yield, 0);
mb();
}
}