2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* drivers/power/process.c - Functions for saving/restoring console.
|
|
|
|
*
|
|
|
|
* Originally from swsusp.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/vt_kern.h>
|
|
|
|
#include <linux/kbd_kern.h>
|
|
|
|
#include <linux/console.h>
|
2008-04-28 11:15:03 +02:00
|
|
|
#include <linux/module.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "power.h"
|
|
|
|
|
2006-02-07 21:58:50 +01:00
|
|
|
#if defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
|
|
|
|
#define SUSPEND_CONSOLE (MAX_NR_CONSOLES-1)
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static int orig_fgconsole, orig_kmsg;
|
|
|
|
|
|
|
|
int pm_prepare_console(void)
|
|
|
|
{
|
2009-09-19 22:13:25 +02:00
|
|
|
orig_fgconsole = vt_move_to_console(SUSPEND_CONSOLE, 1);
|
|
|
|
if (orig_fgconsole < 0)
|
2005-04-17 00:20:36 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
orig_kmsg = kmsg_redirect;
|
|
|
|
kmsg_redirect = SUSPEND_CONSOLE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pm_restore_console(void)
|
|
|
|
{
|
2009-09-19 22:13:25 +02:00
|
|
|
if (orig_fgconsole >= 0) {
|
|
|
|
vt_move_to_console(orig_fgconsole, 0);
|
|
|
|
kmsg_redirect = orig_kmsg;
|
2009-02-14 02:06:17 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2006-02-01 12:05:21 +01:00
|
|
|
#endif
|