All of lore.kernel.org
 help / color / mirror / Atom feed
From: Scot Doyle <lkml14@scotdoyle.com>
To: Pavel Machek <pavel@ucw.cz>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
	Tomi Valkeinen <tomi.valkeinen@ti.com>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	linux-fbdev@vger.kernel.org, linux-api@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] fbcon: expose cursor blink interval via sysfs
Date: Wed, 25 Feb 2015 23:32:00 +0000 (UTC)	[thread overview]
Message-ID: <alpine.LNX.2.11.1502252319330.276@localhost> (raw)
In-Reply-To: <20150225094946.GA24627@amd>

On Wed, 25 Feb 2015, Pavel Machek wrote:
> On Mon 2015-01-26 20:41:53, Scot Doyle wrote:
> > The fbcon cursor, when set to blink, is hardcoded to toggle display state
> > five times per second. Expose this setting via
> > /sys/class/graphics/fbcon/cursor_blink_ms
> > 
> > Values written to the interface set the approximate time interval in
> > milliseconds between cursor toggles, from 1 to 32767. Since the interval
> > is stored internally as a number of jiffies, the millisecond value read
> > from the interface may not exactly match the entered value.
> > 
> > An outstanding blink timer is reset after a new value is entered.
> > 
> > If the cursor blink is disabled, either via the 'cursor_blink' boolean
> > setting or some other mechanism, the 'cursor_blink_ms' setting may still
> > be modified. The new value will be used if the blink is reactivated.
> > 
> > Signed-off-by: Scot Doyle <lkml14@scotdoyle.com>
> 
> Normally, this would be set by ansi escape sequences, no? We can hide
> cursor using them, set its appearance.. makes sense to change timing
> value there, too....
> 									Pavel

Hi Pavel, what about something like this? For example,
"echo -e '\033[16;500]' would set the blink interval to 500 milliseconds.

The duration is stored twice to avoid locking the console in
cursor_timer_handler().


diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 6e00572..f117966 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -135,6 +135,7 @@ const struct consw *conswitchp;
  */
 #define DEFAULT_BELL_PITCH	750
 #define DEFAULT_BELL_DURATION	(HZ/8)
+#define DEFAULT_CURSOR_BLINK_MS	200
 
 struct vc vc_cons [MAX_NR_CONSOLES];
 
@@ -1590,6 +1591,13 @@ static void setterm_command(struct vc_data *vc)
 		case 15: /* activate the previous console */
 			set_console(last_console);
 			break;
+		case 16: /* set cursor blink duration in msec */
+			if (vc->vc_npar >= 1 && vc->vc_par[1] > 0 &&
+					vc->vc_par[1] <= USHRT_MAX)
+				vc->vc_cur_blink_ms = vc->vc_par[1];
+			else
+				vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
+			break;
 	}
 }
 
@@ -1717,6 +1725,7 @@ static void reset_terminal(struct vc_data *vc, int do_clear)
 
 	vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
 	vc->vc_bell_duration = DEFAULT_BELL_DURATION;
+	vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
 
 	gotoxy(vc, 0, 0);
 	save_cur(vc);
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
index b972106..05b1d1a 100644
--- a/drivers/video/console/fbcon.c
+++ b/drivers/video/console/fbcon.c
@@ -402,7 +402,7 @@ static void cursor_timer_handler(unsigned long dev_addr)
 	struct fbcon_ops *ops = info->fbcon_par;
 
 	queue_work(system_power_efficient_wq, &info->queue);
-	mod_timer(&ops->cursor_timer, jiffies + HZ/5);
+	mod_timer(&ops->cursor_timer, jiffies + ops->cur_blink_jiffies);
 }
 
 static void fbcon_add_cursor_timer(struct fb_info *info)
@@ -417,7 +417,7 @@ static void fbcon_add_cursor_timer(struct fb_info *info)
 
 		init_timer(&ops->cursor_timer);
 		ops->cursor_timer.function = cursor_timer_handler;
-		ops->cursor_timer.expires = jiffies + HZ / 5;
+		ops->cursor_timer.expires = jiffies + ops->cur_blink_jiffies;
 		ops->cursor_timer.data = (unsigned long ) info;
 		add_timer(&ops->cursor_timer);
 		ops->flags |= FBCON_FLAGS_CURSOR_TIMER;
@@ -1309,9 +1309,9 @@ static void fbcon_cursor(struct vc_data *vc, int mode)
 	if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1)
 		return;
 
-	if (vc->vc_cursor_type & 0x10)
-		fbcon_del_cursor_timer(info);
-	else
+	ops->cur_blink_jiffies = msecs_to_jiffies(vc->vc_cur_blink_ms);
+	fbcon_del_cursor_timer(info);
+	if (!(vc->vc_cursor_type & 0x10))
 		fbcon_add_cursor_timer(info);
 
 	ops->cursor_flash = (mode == CM_ERASE) ? 0 : 1;
diff --git a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h
index 6bd2e0c..7aaa4ea 100644
--- a/drivers/video/console/fbcon.h
+++ b/drivers/video/console/fbcon.h
@@ -70,6 +70,7 @@ struct fbcon_ops {
 	struct fb_cursor cursor_state;
 	struct display *p;
         int    currcon;	                /* Current VC. */
+	int    cur_blink_jiffies;
 	int    cursor_flash;
 	int    cursor_reset;
 	int    blank_state;
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h
index e859c98..e329ee2 100644
--- a/include/linux/console_struct.h
+++ b/include/linux/console_struct.h
@@ -104,6 +104,7 @@ struct vc_data {
 	unsigned int    vc_resize_user;         /* resize request from user */
 	unsigned int	vc_bell_pitch;		/* Console bell pitch */
 	unsigned int	vc_bell_duration;	/* Console bell duration */
+	unsigned short	vc_cur_blink_ms;	/* Cursor blink duration */
 	struct vc_data **vc_display_fg;		/* [!] Ptr to var holding fg console for this display */
 	struct uni_pagedir *vc_uni_pagedir;
 	struct uni_pagedir **vc_uni_pagedir_loc; /* [!] Location of uni_pagedir variable for this console */

WARNING: multiple messages have this Message-ID (diff)
From: Scot Doyle <lkml14@scotdoyle.com>
To: Pavel Machek <pavel@ucw.cz>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
	Tomi Valkeinen <tomi.valkeinen@ti.com>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	linux-fbdev@vger.kernel.org, linux-api@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] fbcon: expose cursor blink interval via sysfs
Date: Wed, 25 Feb 2015 23:32:00 +0000	[thread overview]
Message-ID: <alpine.LNX.2.11.1502252319330.276@localhost> (raw)
In-Reply-To: <20150225094946.GA24627@amd>

On Wed, 25 Feb 2015, Pavel Machek wrote:
> On Mon 2015-01-26 20:41:53, Scot Doyle wrote:
> > The fbcon cursor, when set to blink, is hardcoded to toggle display state
> > five times per second. Expose this setting via
> > /sys/class/graphics/fbcon/cursor_blink_ms
> > 
> > Values written to the interface set the approximate time interval in
> > milliseconds between cursor toggles, from 1 to 32767. Since the interval
> > is stored internally as a number of jiffies, the millisecond value read
> > from the interface may not exactly match the entered value.
> > 
> > An outstanding blink timer is reset after a new value is entered.
> > 
> > If the cursor blink is disabled, either via the 'cursor_blink' boolean
> > setting or some other mechanism, the 'cursor_blink_ms' setting may still
> > be modified. The new value will be used if the blink is reactivated.
> > 
> > Signed-off-by: Scot Doyle <lkml14@scotdoyle.com>
> 
> Normally, this would be set by ansi escape sequences, no? We can hide
> cursor using them, set its appearance.. makes sense to change timing
> value there, too....
> 									Pavel

Hi Pavel, what about something like this? For example,
"echo -e '\033[16;500]' would set the blink interval to 500 milliseconds.

The duration is stored twice to avoid locking the console in
cursor_timer_handler().


diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 6e00572..f117966 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -135,6 +135,7 @@ const struct consw *conswitchp;
  */
 #define DEFAULT_BELL_PITCH	750
 #define DEFAULT_BELL_DURATION	(HZ/8)
+#define DEFAULT_CURSOR_BLINK_MS	200
 
 struct vc vc_cons [MAX_NR_CONSOLES];
 
@@ -1590,6 +1591,13 @@ static void setterm_command(struct vc_data *vc)
 		case 15: /* activate the previous console */
 			set_console(last_console);
 			break;
+		case 16: /* set cursor blink duration in msec */
+			if (vc->vc_npar >= 1 && vc->vc_par[1] > 0 &&
+					vc->vc_par[1] <= USHRT_MAX)
+				vc->vc_cur_blink_ms = vc->vc_par[1];
+			else
+				vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
+			break;
 	}
 }
 
@@ -1717,6 +1725,7 @@ static void reset_terminal(struct vc_data *vc, int do_clear)
 
 	vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
 	vc->vc_bell_duration = DEFAULT_BELL_DURATION;
+	vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
 
 	gotoxy(vc, 0, 0);
 	save_cur(vc);
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
index b972106..05b1d1a 100644
--- a/drivers/video/console/fbcon.c
+++ b/drivers/video/console/fbcon.c
@@ -402,7 +402,7 @@ static void cursor_timer_handler(unsigned long dev_addr)
 	struct fbcon_ops *ops = info->fbcon_par;
 
 	queue_work(system_power_efficient_wq, &info->queue);
-	mod_timer(&ops->cursor_timer, jiffies + HZ/5);
+	mod_timer(&ops->cursor_timer, jiffies + ops->cur_blink_jiffies);
 }
 
 static void fbcon_add_cursor_timer(struct fb_info *info)
@@ -417,7 +417,7 @@ static void fbcon_add_cursor_timer(struct fb_info *info)
 
 		init_timer(&ops->cursor_timer);
 		ops->cursor_timer.function = cursor_timer_handler;
-		ops->cursor_timer.expires = jiffies + HZ / 5;
+		ops->cursor_timer.expires = jiffies + ops->cur_blink_jiffies;
 		ops->cursor_timer.data = (unsigned long ) info;
 		add_timer(&ops->cursor_timer);
 		ops->flags |= FBCON_FLAGS_CURSOR_TIMER;
@@ -1309,9 +1309,9 @@ static void fbcon_cursor(struct vc_data *vc, int mode)
 	if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1)
 		return;
 
-	if (vc->vc_cursor_type & 0x10)
-		fbcon_del_cursor_timer(info);
-	else
+	ops->cur_blink_jiffies = msecs_to_jiffies(vc->vc_cur_blink_ms);
+	fbcon_del_cursor_timer(info);
+	if (!(vc->vc_cursor_type & 0x10))
 		fbcon_add_cursor_timer(info);
 
 	ops->cursor_flash = (mode = CM_ERASE) ? 0 : 1;
diff --git a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h
index 6bd2e0c..7aaa4ea 100644
--- a/drivers/video/console/fbcon.h
+++ b/drivers/video/console/fbcon.h
@@ -70,6 +70,7 @@ struct fbcon_ops {
 	struct fb_cursor cursor_state;
 	struct display *p;
         int    currcon;	                /* Current VC. */
+	int    cur_blink_jiffies;
 	int    cursor_flash;
 	int    cursor_reset;
 	int    blank_state;
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h
index e859c98..e329ee2 100644
--- a/include/linux/console_struct.h
+++ b/include/linux/console_struct.h
@@ -104,6 +104,7 @@ struct vc_data {
 	unsigned int    vc_resize_user;         /* resize request from user */
 	unsigned int	vc_bell_pitch;		/* Console bell pitch */
 	unsigned int	vc_bell_duration;	/* Console bell duration */
+	unsigned short	vc_cur_blink_ms;	/* Cursor blink duration */
 	struct vc_data **vc_display_fg;		/* [!] Ptr to var holding fg console for this display */
 	struct uni_pagedir *vc_uni_pagedir;
 	struct uni_pagedir **vc_uni_pagedir_loc; /* [!] Location of uni_pagedir variable for this console */

  reply	other threads:[~2015-02-25 23:32 UTC|newest]

Thread overview: 125+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-26 20:37 [PATCH v3 0/2] fbcon: user-defined cursor blink interval Scot Doyle
2015-01-26 20:37 ` Scot Doyle
2015-01-26 20:40 ` [PATCH v3 1/2] fbcon: store cursor blink interval in fbcon_ops Scot Doyle
2015-01-26 20:40   ` Scot Doyle
2015-01-26 20:41 ` [PATCH v3 2/2] fbcon: expose cursor blink interval via sysfs Scot Doyle
2015-01-26 20:41   ` Scot Doyle
2015-01-26 20:54   ` Richard Weinberger
2015-01-26 20:54     ` Richard Weinberger
2015-02-25  9:49   ` Pavel Machek
2015-02-25  9:49     ` Pavel Machek
2015-02-25 23:32     ` Scot Doyle [this message]
2015-02-25 23:32       ` [PATCH " Scot Doyle
2015-02-26 22:02       ` Pavel Machek
2015-02-26 22:02         ` Pavel Machek
2015-02-26 22:02         ` Pavel Machek
2015-02-27 19:10         ` [PATCH 0/2] add cursor blink interval terminal escape sequence Scot Doyle
2015-02-27 19:10           ` Scot Doyle
2015-02-27 19:10           ` Scot Doyle
2015-02-27 19:13           ` [PATCH 1/2] vt: add cursor blink interval " Scot Doyle
2015-02-27 19:13             ` Scot Doyle
2015-02-27 19:13             ` Scot Doyle
2015-03-14 17:48             ` Scot Doyle
2015-03-14 17:48               ` Scot Doyle
2015-03-14 17:48               ` Scot Doyle
2015-03-25 11:19             ` Greg Kroah-Hartman
2015-03-25 11:19               ` Greg Kroah-Hartman
     [not found]               ` <20150325111949.GA24230-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2015-03-26 13:51                 ` [PATCH v2 0/3] add cursor blink interval terminal " Scot Doyle
2015-03-26 13:51                   ` Scot Doyle
2015-03-26 13:51                   ` Scot Doyle
2015-03-26 13:54                   ` [PATCH v2 1/3] vt: add cursor blink interval " Scot Doyle
2015-03-26 13:54                     ` Scot Doyle
2015-03-26 13:54                     ` Scot Doyle
2015-03-28  0:35                     ` Mike Frysinger
2015-03-28  0:35                       ` Mike Frysinger
2015-03-28  7:50                       ` Pavel Machek
2015-03-28  7:50                         ` Pavel Machek
2015-03-28  7:50                         ` Pavel Machek
2015-03-26 13:56                   ` [PATCH v2 2/3] fbcon: use the cursor blink interval provided by vt Scot Doyle
2015-03-26 13:56                     ` Scot Doyle
2015-03-26 13:56                     ` Scot Doyle
2015-05-19 21:15                     ` Kevin Hilman
2015-05-19 21:15                       ` Kevin Hilman
2015-05-19 21:15                       ` Kevin Hilman
     [not found]                       ` <CAMAWPa-6ZbE5cDkEZq0XpYa2pHcnf3qweSSVHAXhfhUAUCbKcA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-19 21:40                         ` Thierry Reding
2015-05-19 21:40                           ` Thierry Reding
2015-05-19 21:40                           ` Thierry Reding
2015-05-19 21:45                           ` Kevin Hilman
2015-05-19 21:45                             ` Kevin Hilman
     [not found]                             ` <CAMAWPa88E2pfViKLXjxWHuT4ZkVhzYt_BsXGePzc-70ZrEmJFA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-19 21:52                               ` Thierry Reding
2015-05-19 21:52                                 ` Thierry Reding
2015-05-19 21:52                                 ` Thierry Reding
2015-05-19 23:41                                 ` Greg Kroah-Hartman
2015-05-19 23:41                                   ` Greg Kroah-Hartman
     [not found]                                   ` <20150519234112.GA25218-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2015-05-20 12:36                                     ` Thierry Reding
2015-05-20 12:36                                       ` Thierry Reding
2015-05-20 12:36                                       ` Thierry Reding
     [not found]                                       ` <20150520123615.GA24016-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2015-05-21  4:26                                         ` Greg Kroah-Hartman
2015-05-21  4:26                                           ` Greg Kroah-Hartman
2015-05-21  4:26                                           ` Greg Kroah-Hartman
     [not found]                                           ` <20150521042638.GB22632-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2015-05-21  8:00                                             ` Thierry Reding
2015-05-21  8:00                                               ` Thierry Reding
2015-05-21  8:00                                               ` Thierry Reding
2015-05-22  2:00                                               ` Greg Kroah-Hartman
2015-05-22  2:00                                                 ` Greg Kroah-Hartman
2015-05-22  2:00                                                 ` Greg Kroah-Hartman
2015-05-22 10:00                                                 ` Thierry Reding
2015-05-22 10:00                                                   ` Thierry Reding
2015-05-22 10:33                                                   ` Arnd Bergmann
2015-05-22 10:33                                                     ` Arnd Bergmann
2015-05-22 10:33                                                     ` Arnd Bergmann
2015-05-22 11:49                                                     ` Thierry Reding
2015-05-22 11:49                                                       ` Thierry Reding
2015-05-22 11:49                                                       ` Thierry Reding
2015-05-22 13:07                                                       ` Silvan Jegen
2015-05-22 13:07                                                         ` Silvan Jegen
2015-05-22 13:07                                                         ` Silvan Jegen
2015-05-22 13:24                                                       ` Arnd Bergmann
2015-05-22 13:24                                                         ` Arnd Bergmann
2015-05-22 13:24                                                         ` Arnd Bergmann
2015-05-22 14:41                                                         ` Thierry Reding
2015-05-22 14:41                                                           ` Thierry Reding
2015-05-22 14:41                                                           ` Thierry Reding
2015-05-22 14:32                                                       ` Greg Kroah-Hartman
2015-05-22 14:32                                                         ` Greg Kroah-Hartman
2015-05-22 14:32                                                         ` Greg Kroah-Hartman
     [not found]                                                         ` <20150522143205.GA6508-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2015-05-22 14:44                                                           ` Thierry Reding
2015-05-22 14:44                                                             ` Thierry Reding
2015-05-22 14:44                                                             ` Thierry Reding
2015-05-20  0:36                                 ` Scot Doyle
2015-05-20  0:36                                   ` Scot Doyle
2015-03-26 13:57                   ` [PATCH v2 3/3] console_codes.4: Add CSI sequence for cursor blink interval Scot Doyle
2015-03-26 13:57                     ` Scot Doyle
2015-03-26 13:57                     ` Scot Doyle
2015-03-28  7:51                     ` Pavel Machek
2015-03-28  7:51                       ` Pavel Machek
2015-03-28  7:51                       ` Pavel Machek
2015-07-05 17:41                     ` Scot Doyle
2015-07-05 17:41                       ` Scot Doyle
2015-07-05 17:41                       ` Scot Doyle
2015-07-21 16:55                       ` Michael Kerrisk (man-pages)
2015-07-21 16:55                         ` Michael Kerrisk (man-pages)
2015-07-21 16:55                         ` Michael Kerrisk (man-pages)
     [not found]                         ` <CAKgNAkgqTckfydFTDFsoqB1b_fAEiDZGYP=7b-bhN8d4Mp-bsg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-07-21 18:45                           ` Scot Doyle
2015-07-21 18:45                             ` Scot Doyle
2015-07-21 18:45                             ` Scot Doyle
2015-03-28  7:54                   ` [PATCH v2 0/3] add cursor blink interval terminal escape sequence Pavel Machek
2015-03-28  7:54                     ` Pavel Machek
2015-03-28  7:54                     ` Pavel Machek
2015-05-10 13:32                     ` Greg Kroah-Hartman
2015-05-10 13:32                       ` Greg Kroah-Hartman
2015-02-27 19:15           ` [PATCH 2/2] fbcon: use the cursor blink interval provided by vt Scot Doyle
2015-02-27 19:15             ` Scot Doyle
2015-02-27 19:15             ` Scot Doyle
2015-05-27  5:57             ` Andrey Wagin
2015-05-27  5:57               ` Andrey Wagin
2015-05-27  5:57               ` Andrey Wagin
     [not found]               ` <CANaxB-zX4GkExeCzwgYZVDVZE47DHOCnRiYe86difk4fRMK=9A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-27  7:52                 ` Scot Doyle
2015-05-27  7:52                   ` Scot Doyle
2015-05-27  7:52                   ` Scot Doyle
2015-05-27 11:07                   ` Andrey Wagin
2015-05-27 11:07                     ` Andrey Wagin
2015-05-27 11:07                     ` Andrey Wagin
2015-03-02 11:15           ` [PATCH 0/2] add cursor blink interval terminal escape sequence Tomi Valkeinen
2015-03-02 11:15             ` Tomi Valkeinen
2015-03-02 11:15             ` Tomi Valkeinen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LNX.2.11.1502252319330.276@localhost \
    --to=lkml14@scotdoyle.com \
    --cc=geert@linux-m68k.org \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pavel@ucw.cz \
    --cc=plagnioj@jcrosoft.com \
    --cc=tomi.valkeinen@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.