|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 2/2] xen: initialise opt_xen_console early in PVH boot path
This helps capture issues before console is initialised.
Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx>
---
xen/arch/x86/setup.c | 5 +++++
xen/drivers/char/console.c | 10 ++++++++--
xen/include/xen/console.h | 2 ++
3 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c
index 2fbf7d574c..20cb0acc3f 100644
--- a/xen/arch/x86/setup.c
+++ b/xen/arch/x86/setup.c
@@ -708,6 +708,11 @@ void __init noreturn __start_xen(unsigned long mbi_p)
if ( pvh_boot )
{
+ /*
+ * Force xen console to be enabled. We will reset it later in console
+ * initialisation code.
+ */
+ opt_console_xen = -1;
ASSERT(mbi_p == 0);
mbi = pvh_init();
}
diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c
index e48039dd82..3b75f7a472 100644
--- a/xen/drivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -91,7 +91,8 @@ static uint32_t conringc, conringp;
static int __read_mostly sercon_handle = -1;
#ifdef CONFIG_X86
-static bool __read_mostly opt_console_xen; /* console=xen */
+/* Tristate: 0 disabled, 1 user enabled, -1 default enabled */
+int8_t __read_mostly opt_console_xen; /* console=xen */
#endif
static DEFINE_SPINLOCK(console_lock);
@@ -832,7 +833,7 @@ void __init console_init_preirq(void)
pv_console_init();
#ifdef CONFIG_X86
else if ( !strncmp(p, "xen", 3) )
- opt_console_xen = true;
+ opt_console_xen = 1;
#endif
else if ( !strncmp(p, "none", 4) )
continue;
@@ -852,6 +853,11 @@ void __init console_init_preirq(void)
}
}
+#ifdef CONFIG_X86
+ if ( opt_console_xen == -1 )
+ opt_console_xen = 0;
+#endif
+
serial_set_rx_handler(sercon_handle, serial_rx);
pv_console_set_rx_handler(serial_rx);
diff --git a/xen/include/xen/console.h b/xen/include/xen/console.h
index ea06fd8078..70c9911a49 100644
--- a/xen/include/xen/console.h
+++ b/xen/include/xen/console.h
@@ -43,4 +43,6 @@ void console_giveback(int id);
int console_suspend(void);
int console_resume(void);
+extern int8_t opt_console_xen;
+
#endif /* __CONSOLE_H__ */
--
2.11.0
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |