Skip to content

Commit bd63364

Browse files
Scot Doylegregkh
authored andcommitted
vt: add cursor blink interval escape sequence
Add an escape sequence to specify the current console's cursor blink interval. The interval is specified as a number of milliseconds until the next cursor display state toggle, from 50 to 65535. /proc/loadavg did not show a difference with a one msec interval, but the lower bound is set to 50 msecs since slower hardware wasn't tested. Store the interval in the vc_data structure for later access by fbcon, initializing the value to fbcon's current hardcoded value of 200 msecs. Signed-off-by: Scot Doyle <[email protected]> Acked-by: Pavel Machek <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent ad909b3 commit bd63364

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

drivers/tty/vt/vt.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ const struct consw *conswitchp;
135135
*/
136136
#define DEFAULT_BELL_PITCH 750
137137
#define DEFAULT_BELL_DURATION (HZ/8)
138+
#define DEFAULT_CURSOR_BLINK_MS 200
138139

139140
struct vc vc_cons [MAX_NR_CONSOLES];
140141

@@ -1590,6 +1591,13 @@ static void setterm_command(struct vc_data *vc)
15901591
case 15: /* activate the previous console */
15911592
set_console(last_console);
15921593
break;
1594+
case 16: /* set cursor blink duration in msec */
1595+
if (vc->vc_npar >= 1 && vc->vc_par[1] >= 50 &&
1596+
vc->vc_par[1] <= USHRT_MAX)
1597+
vc->vc_cur_blink_ms = vc->vc_par[1];
1598+
else
1599+
vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
1600+
break;
15931601
}
15941602
}
15951603

@@ -1717,6 +1725,7 @@ static void reset_terminal(struct vc_data *vc, int do_clear)
17171725

17181726
vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
17191727
vc->vc_bell_duration = DEFAULT_BELL_DURATION;
1728+
vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
17201729

17211730
gotoxy(vc, 0, 0);
17221731
save_cur(vc);

include/linux/console_struct.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ struct vc_data {
104104
unsigned int vc_resize_user; /* resize request from user */
105105
unsigned int vc_bell_pitch; /* Console bell pitch */
106106
unsigned int vc_bell_duration; /* Console bell duration */
107+
unsigned short vc_cur_blink_ms; /* Cursor blink duration */
107108
struct vc_data **vc_display_fg; /* [!] Ptr to var holding fg console for this display */
108109
struct uni_pagedir *vc_uni_pagedir;
109110
struct uni_pagedir **vc_uni_pagedir_loc; /* [!] Location of uni_pagedir variable for this console */

0 commit comments

Comments
 (0)