2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2011-09-22 00:47:55 +04:00
|
|
|
* Functions for saving/restoring console.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* Originally from swsusp.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/vt_kern.h>
|
|
|
|
#include <linux/kbd_kern.h>
|
2009-12-15 05:00:43 +03:00
|
|
|
#include <linux/vt.h>
|
2008-04-28 13:15:03 +04:00
|
|
|
#include <linux/module.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include "power.h"
|
|
|
|
|
2006-02-07 23:58:50 +03:00
|
|
|
#define SUSPEND_CONSOLE (MAX_NR_CONSOLES-1)
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
static int orig_fgconsole, orig_kmsg;
|
|
|
|
|
|
|
|
int pm_prepare_console(void)
|
|
|
|
{
|
2009-09-20 00:13:25 +04:00
|
|
|
orig_fgconsole = vt_move_to_console(SUSPEND_CONSOLE, 1);
|
|
|
|
if (orig_fgconsole < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
return 1;
|
|
|
|
|
2009-12-15 05:00:43 +03:00
|
|
|
orig_kmsg = vt_kmsg_redirect(SUSPEND_CONSOLE);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pm_restore_console(void)
|
|
|
|
{
|
2009-09-20 00:13:25 +04:00
|
|
|
if (orig_fgconsole >= 0) {
|
|
|
|
vt_move_to_console(orig_fgconsole, 0);
|
2009-12-15 05:00:43 +03:00
|
|
|
vt_kmsg_redirect(orig_kmsg);
|
2009-02-14 04:06:17 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|