From: Jim Lin <jilin@nvidia.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 1/2] console: usbkbd: Improve TFTP booting performance
Date: Fri, 28 Jun 2013 11:59:07 +0800 [thread overview]
Message-ID: <1372391947.2491.31.camel@jilin-desktop> (raw)
In-Reply-To: <51CC8254.2060409@wwwdotorg.org>
On Fri, 2013-06-28 at 02:20 +0800, Stephen Warren wrote:
> On 06/27/2013 03:45 AM, Jim Lin wrote:
> > TFTP booting is observed a little bit slow, especially when a USB
> > keyboard is installed.
> > The fix is to move polling to every second if we sense that other task
> > like TFTP boot is running.
> >
>
> > diff --git a/common/usb_kbd.c b/common/usb_kbd.c
>
> > +#ifdef CONFIG_USBKB_TESTC_PERIOD
> > + /*
> > + * T is the time between two calls of usb_kbd_testc().
> > + * If CONFIG_USBKB_TESTC_PERIOD ms < T < 1000 ms,
> > + * it implies other task like TFTP boot is running,
> > + * then we reduce polling to every second
> > + * to improve TFTP booting performance.
> > + */
> > + if ((get_timer(kbd_testc_tms) >=
> > + (CONFIG_USBKB_TESTC_PERIOD * CONFIG_SYS_HZ / 1000)) &&
> > + (get_timer(kbd_testc_tms) < CONFIG_SYS_HZ))
> > + return 0;
> > + else
> > + kbd_testc_tms = get_timer(0);
> > +#endif
>
> I have a hard time understanding why the fact that "some other task is
> running" implies anything at all re: how often usb_kbd_testc() would be
> called.
In my case it takes about 95 ms on Tegra20 and Tegra114 for
usb_kbd_testc() to be called periodically.
So I set CONFIG_USBKB_TESTC_PERIOD to 100.
Like I said, if CONFIG_USBKB_TESTC_PERIOD ms < T < 1000 ms
we reduce polling (send command to USB keyboard to check is there
any key pressed) to every second.
>
> It's quite possible that "some other task" is extremely fine-grained,
> and calls usb_kbd_testc() every 0.1ms, and would be severely negatively
> affected by usb_kbd_testc() taking a long time to execute.
>
> Conversly, it's quite possible that "some other task" is quite granular,
> and calls usb_kbd_testc() a wide intervals, say every 200ms.
>
> So, I think this change keys of entirely the wrong thing.
>
> Shouldn't the TFTP process (or use of USB networking?) or other
> long-running tasks that do check for keyboard IO simply set some flag to
> indicate to usb_kbd_testc() that it should run at a reduced rate, or
> even just have those long-running processses call usb_kbd_testc() at a
> reduced rate themselves?
To fix in usb_kbd_testc() is easier because this issue happens only when
USB keyboard is installed and CONFIG_USB_KEYBOARD is defined.
--
nvpublic
next prev parent reply other threads:[~2013-06-28 3:59 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-27 9:45 [U-Boot] [PATCH v3 1/2] console: usbkbd: Improve TFTP booting performance Jim Lin
2013-06-27 9:45 ` [U-Boot] [PATCH v3 2/2] config: Tegra: " Jim Lin
2013-06-27 18:20 ` [U-Boot] [PATCH v3 1/2] console: usbkbd: " Stephen Warren
2013-06-28 3:59 ` Jim Lin [this message]
2013-06-28 5:09 ` Stephen Warren
2013-06-28 10:01 ` Jim Lin
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=1372391947.2491.31.camel@jilin-desktop \
--to=jilin@nvidia.com \
--cc=u-boot@lists.denx.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox