blob: 03cbe0fb882afa70f52a754a16268a2d8ec6815f (
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
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* printk() for use before the final page tables are setup.
*
* Copyright (C) 2012 Citrix Systems, Inc.
*/
#include <xen/init.h>
#include <xen/lib.h>
#include <xen/stdarg.h>
#include <xen/string.h>
#include <xen/early_printk.h>
void early_putch(char c);
void early_flush(void);
void early_puts(const char *s, size_t nr)
{
while ( nr-- > 0 )
{
if (*s == '\n')
early_putch('\r');
early_putch(*s);
s++;
}
/*
* Wait the UART has finished to transfer all characters before
* to continue. This will avoid lost characters if Xen abort.
*/
early_flush();
}
|