Zoltan Baldaszti f029a94a97 Workaround qemu segfault 1 year ago
..
Makefile 426205e2a3 Added makefiles for LLVM Clang 5 years ago
Makefile.clang 9c5c2813a0 Update QEMU command in all README and Makefile 2 years ago
Makefile.gcc 9c5c2813a0 Update QEMU command in all README and Makefile 2 years ago
OLVASSEL.md 4bfdd46ea7 Use returned channel order, fixed issue #64 4 years ago
README.md 4bfdd46ea7 Use returned channel order, fixed issue #64 4 years ago
delays.c 910619de4c fix missing semicolon 1 year ago
delays.h 7ace64ba9f Initial commit 6 years ago
gpio.h 7ace64ba9f Initial commit 6 years ago
homer.h 7ace64ba9f Initial commit 6 years ago
kernel8.img 4bfdd46ea7 Use returned channel order, fixed issue #64 4 years ago
lfb.c f029a94a97 Workaround qemu segfault 1 year ago
lfb.h 7ace64ba9f Initial commit 6 years ago
link.ld 7ace64ba9f Initial commit 6 years ago
main.c 7ace64ba9f Initial commit 6 years ago
mbox.c 214885df63 compute the mailbox cmd only once 6 years ago
mbox.h 7ace64ba9f Initial commit 6 years ago
start.S ea4691947c Improve comments wrt stack setup 3 years ago
uart.c c59ad439f4 Enable UART0 FIFOs 3 years ago
uart.h 7ace64ba9f Initial commit 6 years ago

README.md

Tutorial 09 - Framebuffer

Okay, finaly some eyecandy :-) So far the screen showed the rainbow splash. Now we're about to change the resolution with several tags in a single mbox_call, then display a pixmap. I've put a lot of comments for each tag and argument to help you, see lfb.c. But at the end of the day it's nothing more than filling up an int array and call mbox_call, really simple. If you wish, you can try to remove or add more tags to the message and see what happens. Could have used MBOX_CH_FB (FrameBuffer channel), but MBOX_CH_PROP gives us more flexibility.

Important note on pitch: maybe you don't know, but video screens does not necessairly map raster lines continously in memory. For example it is possible that 800 pixels (800 * 4=3200 bytes) are stored in 4096 bytes for every line. Therefore it's important to use the queried pitch value instead of width * 4 when calculating the postition for the Y coordinate.

Also note that the GPU on the Raspberry Pi is very powerful. You can create a large virtual screen (let's say 65536x768) but display only 1024x768 pixels at once. With mailbox messages you can move that window very fast without the need of copying pixel buffers, thus creating a smooth scrolling effect. In this tutorial both virtual screen and physical screen is set to 1024x768.

Lfb.h, lfb.c

lfb_init() sets up resolution, depth, and color channel order. Also queries framebuffer's address.

lfb_showpicture() displays a picture in the center of the screen by drawing pixels to the framebuffer. Note that the image is in RGB format. If the lfb isn't, then we have to swap R and B channels manually.

Homer.h

The pixmap, saved with the Gimp as C header file. No compression, pixels are stored one-by-one.

Main

Very simple. We set the resolution and display the picture, that's all.