All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/5] serial console support
@ 2016-07-14  8:52 Gerd Hoffmann
  2016-07-14  8:52 ` [Qemu-devel] [PATCH 1/5] std: add cp437 to unicode map Gerd Hoffmann
                   ` (4 more replies)
  0 siblings, 5 replies; 17+ messages in thread
From: Gerd Hoffmann @ 2016-07-14  8:52 UTC (permalink / raw)
  To: seabios; +Cc: qemu-devel, Gerd Hoffmann

  Hi,

Next round of serial console patches,  Still not ready to merge.

Headline feature of this version is split mode (i.e. output on both vga
and serial).  Have a initial working implementation now, logic is
simliar to the vgabios timer hook (as suggested by Kevin).

Also changed the output logic, down to a one-cell buffer (char+attr) for
output.  Cursor updates are simply written to BDA now, with the actual
move being done lazily when printing the next character or checking for
keyboard input.  That is especially useful for splitmode as we can
simply skip the cursor position updates and let the vgabios do them
instead.

TODO list:
  * compile time (CONFIG_*) option.
  * input handling cleanups.
  * implement missing int10h functions.
  * more testing.

cheers,
  Gerd

Gerd Hoffmann (5):
  std: add cp437 to unicode map
  kbd: make enqueue_key public, add ascii_to_keycode
  paravirt: read QEMU_CFG_NOGRAPHIC, store in etc/sercon-enable romfile
  add serial console support
  [wip] sercon: initial split-output implementation

 Makefile          |   7 +-
 src/clock.c       |   1 +
 src/fw/paravirt.c |   2 +
 src/kbd.c         |  17 +-
 src/misc.c        |   2 +
 src/optionroms.c  |   9 +-
 src/romlayout.S   |  39 ++++
 src/sercon.c      | 621 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/std/cp437.c   | 275 ++++++++++++++++++++++++
 src/std/cp437.h   |   1 +
 src/util.h        |   5 +
 11 files changed, 974 insertions(+), 5 deletions(-)
 create mode 100644 src/sercon.c
 create mode 100644 src/std/cp437.c
 create mode 100644 src/std/cp437.h

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2016-10-13  8:09 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-14  8:52 [Qemu-devel] [PATCH 0/5] serial console support Gerd Hoffmann
2016-07-14  8:52 ` [Qemu-devel] [PATCH 1/5] std: add cp437 to unicode map Gerd Hoffmann
2016-07-14 16:17   ` [Qemu-devel] [SeaBIOS] " Kevin O'Connor
2016-07-14  8:52 ` [Qemu-devel] [PATCH 2/5] kbd: make enqueue_key public, add ascii_to_keycode Gerd Hoffmann
2016-07-14  8:53 ` [Qemu-devel] [PATCH 3/5] paravirt: read QEMU_CFG_NOGRAPHIC, store in etc/sercon-enable romfile Gerd Hoffmann
2016-07-14  8:53 ` [Qemu-devel] [PATCH 4/5] add serial console support Gerd Hoffmann
2016-07-14  8:53 ` [Qemu-devel] [PATCH 5/5] [wip] sercon: initial split-output implementation Gerd Hoffmann
2016-07-14 16:15   ` [Qemu-devel] [SeaBIOS] " Kevin O'Connor
2016-07-15 11:49     ` Gerd Hoffmann
2016-07-15 14:35       ` Kevin O'Connor
2016-08-08 13:14         ` Gerd Hoffmann
2016-09-27 12:00         ` Gerd Hoffmann
2016-10-04  3:03           ` Kevin O'Connor
2016-10-04  8:49             ` Gerd Hoffmann
2016-10-04  9:21               ` Igor Mammedov
2016-10-13  7:17                 ` Gerd Hoffmann
2016-10-13  8:09                   ` Igor Mammedov

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.