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