xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] xen: ARM HDLCD video driver
@ 2012-12-05 18:19 Stefano Stabellini
  2012-12-05 18:19 ` [PATCH 1/6] xen/arm: introduce map_phys_range Stefano Stabellini
                   ` (5 more replies)
  0 siblings, 6 replies; 24+ messages in thread
From: Stefano Stabellini @ 2012-12-05 18:19 UTC (permalink / raw)
  To: xen-devel; +Cc: Tim Deegan, Ian Campbell, Stefano Stabellini

Hi all,
this patch series introduces a very simple driver for the ARM HDLCD
Controller, that means that we can finally have something on the screen
while Xen is booting on ARM :)

The driver is very limited at the moment and it is only capable of
setting one resolution that is 1280x1024. Also it requires the OSC5
timer to be set to 108Mhz in the Versatile Express config file.

In order to reduce code duplication with x86, I tried to generalize the
existing vesa character rendering functions into a architecture agnostic
framebuffer driver that can be used by vesa and the hdlcd drivers.

I would very much appreciate if you could give a close look at the vesa
changes because I don't have any x86 test machines that boot in vesa
mode, therefore I couldn't test it.



Stefano Stabellini (6):
      xen/arm: introduce map_phys_range
      xen: infrastructure to have cross-platform video drivers
      xen: introduce a generic framebuffer driver
      xen/vesa: use the new fb_* functions
      xen/device_tree: introduce find_compatible_node
      xen/arm: introduce a driver for the ARM HDLCD controller

 xen/arch/arm/Rules.mk         |    2 +
 xen/arch/arm/mm.c             |   23 +++++
 xen/arch/arm/setup.c          |    2 +-
 xen/arch/x86/Rules.mk         |    1 +
 xen/common/device_tree.c      |   47 +++++++++
 xen/drivers/Makefile          |    2 +-
 xen/drivers/char/console.c    |   12 +-
 xen/drivers/video/Makefile    |   12 ++-
 xen/drivers/video/arm_hdlcd.c |  165 ++++++++++++++++++++++++++++++++
 xen/drivers/video/fb.c        |  209 +++++++++++++++++++++++++++++++++++++++++
 xen/drivers/video/fb.h        |   44 +++++++++
 xen/drivers/video/vesa.c      |  179 +++++------------------------------
 xen/drivers/video/vga.c       |   12 +-
 xen/include/asm-arm/config.h  |    3 +
 xen/include/asm-arm/mm.h      |    3 +
 xen/include/asm-x86/config.h  |    1 +
 xen/include/xen/device_tree.h |    3 +
 xen/include/xen/vga.h         |    9 +--
 xen/include/xen/video.h       |   24 +++++
 19 files changed, 573 insertions(+), 180 deletions(-)



Cheers,

Stefano

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

end of thread, other threads:[~2012-12-07 15:50 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-05 18:19 [PATCH 0/6] xen: ARM HDLCD video driver Stefano Stabellini
2012-12-05 18:19 ` [PATCH 1/6] xen/arm: introduce map_phys_range Stefano Stabellini
2012-12-06  9:55   ` Ian Campbell
2012-12-06 16:06     ` Stefano Stabellini
2012-12-07  9:53       ` Ian Campbell
2012-12-06 12:44   ` Tim Deegan
2012-12-05 18:19 ` [PATCH 2/6] xen: infrastructure to have cross-platform video drivers Stefano Stabellini
2012-12-06  9:57   ` Ian Campbell
2012-12-06 11:25   ` Jan Beulich
2012-12-06 12:46   ` Tim Deegan
2012-12-05 18:19 ` [PATCH 3/6] xen: introduce a generic framebuffer driver Stefano Stabellini
2012-12-05 18:19 ` [PATCH 4/6] xen/vesa: use the new fb_* functions Stefano Stabellini
2012-12-06 11:28   ` Jan Beulich
2012-12-06 11:36     ` Ian Campbell
2012-12-06 15:39       ` Stefano Stabellini
2012-12-06 15:18     ` Stefano Stabellini
2012-12-05 18:19 ` [PATCH 5/6] xen/device_tree: introduce find_compatible_node Stefano Stabellini
2012-12-06 10:14   ` Ian Campbell
2012-12-06 12:55     ` Stefano Stabellini
2012-12-05 18:19 ` [PATCH 6/6] xen/arm: introduce a driver for the ARM HDLCD controller Stefano Stabellini
2012-12-06 10:28   ` Ian Campbell
2012-12-07 15:50     ` Stefano Stabellini
2012-12-06 12:53   ` Tim Deegan
2012-12-06 16:35     ` Stefano Stabellini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).