I've had ps3fb disabled in my kernel for the past week or so, but I've only just this evening got round to trying this out and can confirm that this does appear to be the case. I tried writing values to the area below 20MB - the values were retained and my TV screen turned a nice shade of purple :)
The pixel format is 32bit XRGB, where the X value has no effect on the displayed image. lv1_gpu_context_attribute(L1GPU_CONTEXT_ATTRIBUTE_DISPLAY_FLIP) can be used to specify the offset in bytes from the start of the memory area that the GPU pulls pixel data from. I've not tested this extensively, but I was able to flip between displaying two different areas of memory filled with known values.
Disabling ps3fb is very straightforward - I replaced ps3fb.c with:
Code: Select all
#include <linux/module.h>
void ps3fb_flip_ctl(int on)
{
}
EXPORT_SYMBOL_GPL(ps3fb_flip_ctl);
void ps3fb_cleanup(void)
{
}
EXPORT_SYMBOL_GPL(ps3fb_cleanup);