summaryrefslogtreecommitdiffstats
path: root/drivers/video/dummycon.c
blob: ecabee5e581c172c9d7dbce36528ab30a5fcf616 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 *  linux/drivers/video/dummycon.c -- A dummy console driver
 *
 *  To be used if there's no other console driver (e.g. for plain VGA text)
 *  available, usually until fbcon takes console over.
 */

#include <linux/types.h>
#include <linux/kdev_t.h>
#include <linux/tty.h>
#include <linux/console.h>
#include <linux/console_struct.h>
#include <linux/vt_kern.h>
#include <linux/init.h>

/*
 *  Dummy console driver
 */

#if defined(__arm__)
#define DUMMY_COLUMNS	ORIG_VIDEO_COLS
#define DUMMY_ROWS	ORIG_VIDEO_LINES
#else
#define DUMMY_COLUMNS	80
#define DUMMY_ROWS	25
#endif

static const char __init *dummycon_startup(void)
{
    return "dummy device";
}

static void dummycon_init(struct vc_data *conp, int init)
{
    conp->vc_can_do_color = 1;
    if (init) {
	conp->vc_cols = DUMMY_COLUMNS;
	conp->vc_rows = DUMMY_ROWS;
    } else
	vc_resize_con(DUMMY_ROWS, DUMMY_COLUMNS, conp->vc_num);
}

static int dummycon_dummy(void)
{
    return 0;
}

/*
 *  The console `switch' structure for the dummy console
 *
 *  Most of the operations are dummies.
 */

struct consw dummy_con = {
    dummycon_startup, dummycon_init,
    (void *)dummycon_dummy,	/* con_deinit */
    (void *)dummycon_dummy,	/* con_clear */
    (void *)dummycon_dummy,	/* con_putc */
    (void *)dummycon_dummy,	/* con_putcs */
    (void *)dummycon_dummy,	/* con_cursor */
    (void *)dummycon_dummy,	/* con_scroll */
    (void *)dummycon_dummy,	/* con_bmove */
    (void *)dummycon_dummy,	/* con_switch */
    (void *)dummycon_dummy,	/* con_blank */
    (void *)dummycon_dummy,	/* con_font_op */
    (void *)dummycon_dummy,	/* con_set_palette */
    (void *)dummycon_dummy,	/* con_scrolldelta */
    NULL,			/* con_set_origin */
    NULL,			/* con_save_screen */
};