huangcm
2025-03-10 313d899ea76a728046c194ded35c2d20909cb707
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 *  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/console.h>
#include <linux/vt_kern.h>
#include <linux/screen_info.h>
#include <linux/init.h>
#include <linux/module.h>
 
/*
 *  Dummy console driver
 */
 
#if defined(__arm__)
#define DUMMY_COLUMNS    screen_info.orig_video_cols
#define DUMMY_ROWS    screen_info.orig_video_lines
#else
/* set by Kconfig. Use 80x25 for 640x480 and 160x64 for 1280x1024 */
#define DUMMY_COLUMNS    CONFIG_DUMMY_CONSOLE_COLUMNS
#define DUMMY_ROWS    CONFIG_DUMMY_CONSOLE_ROWS
#endif
 
static const char *dummycon_startup(void)
{
    return "dummy device";
}
 
static void dummycon_init(struct vc_data *vc, int init)
{
    vc->vc_can_do_color = 1;
    if (init) {
   vc->vc_cols = DUMMY_COLUMNS;
   vc->vc_rows = DUMMY_ROWS;
    } else
   vc_resize(vc, DUMMY_COLUMNS, DUMMY_ROWS);
}
 
static void dummycon_deinit(struct vc_data *vc)
{
}
 
static void dummycon_clear(struct vc_data *vc, int a, int b, int c, int d)
{
}
 
static void dummycon_putc(struct vc_data *vc, int a, int b, int c)
{
}
 
static void dummycon_putcs(struct vc_data *vc, const unsigned short *s, int a, int b, int c)
{
}
 
static void dummycon_cursor(struct vc_data *vc, int a)
{
}
 
static int dummycon_scroll(struct vc_data *vc, int a, int b, int c, int d)
{
    return 0;
}
 
static int dummycon_switch(struct vc_data *vc)
{
    return 0;
}
 
static int dummycon_blank(struct vc_data *vc, int a, int b)
{
    return 0;
}
 
static int dummycon_font_set(struct vc_data *vc, struct console_font *f, unsigned u)
{
    return 0;
}
 
static int dummycon_font_default(struct vc_data *vc, struct console_font *f, char *c)
{
    return 0;
}
 
static int dummycon_font_copy(struct vc_data *vc, int a)
{
    return 0;
}
 
/*
 *  The console `switch' structure for the dummy console
 *
 *  Most of the operations are dummies.
 */
 
const struct consw dummy_con = {
    .owner =        THIS_MODULE,
    .con_startup =    dummycon_startup,
    .con_init =        dummycon_init,
    .con_deinit =    dummycon_deinit,
    .con_clear =    dummycon_clear,
    .con_putc =        dummycon_putc,
    .con_putcs =    dummycon_putcs,
    .con_cursor =    dummycon_cursor,
    .con_scroll =    dummycon_scroll,
    .con_switch =    dummycon_switch,
    .con_blank =    dummycon_blank,
    .con_font_set =    dummycon_font_set,
    .con_font_default =    dummycon_font_default,
    .con_font_copy =    dummycon_font_copy,
};
EXPORT_SYMBOL_GPL(dummy_con);