mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/6] simple framebuffer driver with RPi support
@ 2013-10-24 20:23 Andre Heider
  2013-10-24 20:23 ` [PATCH 1/6] fb: add a stride value to struct fb_info Andre Heider
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: Andre Heider @ 2013-10-24 20:23 UTC (permalink / raw)
  To: barebox

This set adds a common simple framebuffer driver for platforms which choose
to support it. RPi support is part of this set.

The driver serves two functions:
* a framebuffer driver for barebox
* pass an active framebuffer configuration to a loaded kernel

For the latter to work the loaded kernel has to be CONFIG_FB_SIMPLE enabled.

Depending on the configured video mode, the RPi video hardware sets up a
framebuffer with noncontiguous horizonal lines. Patch 1, 2 and 3 prepare
common fb and gui code to support that.

Patch 4 is the driver itself, patch 6 adds support for simplefb to RPi.

Patch 5 just adds a missing field on a fb related mbox response.

Thanks,
Andre

Andre Heider (6):
  fb: add a stride value to struct fb_info
  gui: convert graphic utils to respect the stride value
  gui: convert the bmp renderer to respect the stride value
  video: add a simple framebuffer driver
  ARM: bcm2835: add missing mbox overscan response field
  ARM: rpi: add support for simplefb

 arch/arm/boards/raspberry-pi/rpi.c        |  84 +++++++++++
 arch/arm/mach-bcm2835/include/mach/mbox.h |   1 +
 drivers/video/Kconfig                     |  12 ++
 drivers/video/Makefile                    |   1 +
 drivers/video/fb.c                        |  11 +-
 drivers/video/simplefb.c                  | 224 ++++++++++++++++++++++++++++++
 include/fb.h                              |   1 +
 include/video/simplefb.h                  |  21 +++
 lib/gui/bmp.c                             |   8 +-
 lib/gui/graphic_utils.c                   |  10 +-
 10 files changed, 362 insertions(+), 11 deletions(-)
 create mode 100644 drivers/video/simplefb.c
 create mode 100644 include/video/simplefb.h

-- 
1.8.3.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2013-10-25 23:51 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-24 20:23 [PATCH 0/6] simple framebuffer driver with RPi support Andre Heider
2013-10-24 20:23 ` [PATCH 1/6] fb: add a stride value to struct fb_info Andre Heider
2013-10-25 10:58   ` Jean-Christophe PLAGNIOL-VILLARD
2013-10-25 11:51     ` Andre Heider
2013-10-25 23:04     ` Sascha Hauer
2013-10-24 20:23 ` [PATCH 2/6] gui: convert graphic utils to respect the stride value Andre Heider
2013-10-24 20:23 ` [PATCH 3/6] gui: convert the bmp renderer " Andre Heider
2013-10-24 20:23 ` [PATCH 4/6] video: add a simple framebuffer driver Andre Heider
2013-10-24 20:23 ` [PATCH 5/6] ARM: bcm2835: add missing mbox overscan response field Andre Heider
2013-10-24 20:23 ` [PATCH 6/6] ARM: rpi: add support for simplefb Andre Heider
2013-10-25  7:56 ` [PATCH 0/6] simple framebuffer driver with RPi support Andre Heider
2013-10-25 23:51   ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox