gallium: Add renderonly-based support for pl111+vc4.
authorEric Anholt <eric@anholt.net>
Mon, 8 May 2017 22:57:21 +0000 (15:57 -0700)
committerEric Anholt <eric@anholt.net>
Thu, 15 Jun 2017 18:41:22 +0000 (11:41 -0700)
commit7029ec05e2c7cb9f9fe34070161be7d190a7581e
treefda95b737e0b06f14ab932fde759598a57fa1c82
parent7a171913052bacfee4c68f6fbd2b5d67e001dbae
gallium: Add renderonly-based support for pl111+vc4.

This follows the model of imx (display) and etnaviv (render): pl111 is a
display-only device, so when asked to do GL for it, we see if we have a
vc4 renderer, make the vc4 screen, and have vc4 call back to pl111 to do
scanout allocations.

The difference from etnaviv is that we share the same BO between vc4 and
pl111, rather than having a vc4 bo and a pl11 bo and copies between the
two.  The only mismatch between their requirements is that vc4 requires
4-pixel (at 32bpp) stride alignment, while pl111 requires that stride
match width.  The kernel will reject any modesets to an incorrect stride,
so the 3D driver doesn't need to worry about that.

v2: Rebase on Android rework, drop unused include.
v3: Fix another Android bug, from Rob Herring's build-testing.

Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
26 files changed:
.travis.yml
Android.mk
Makefile.am
configure.ac
src/gallium/Android.mk
src/gallium/Makefile.am
src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
src/gallium/auxiliary/target-helpers/drm_helper.h
src/gallium/auxiliary/target-helpers/drm_helper_public.h
src/gallium/drivers/pl111/Android.mk [new file with mode: 0644]
src/gallium/drivers/pl111/Automake.inc [new file with mode: 0644]
src/gallium/drivers/pl111/Makefile.am [new file with mode: 0644]
src/gallium/drivers/pl111/Makefile.sources [new file with mode: 0644]
src/gallium/drivers/vc4/vc4_resource.c
src/gallium/drivers/vc4/vc4_resource.h
src/gallium/drivers/vc4/vc4_screen.c
src/gallium/drivers/vc4/vc4_screen.h
src/gallium/targets/dri/Makefile.am
src/gallium/targets/dri/target.c
src/gallium/winsys/pl111/drm/Android.mk [new file with mode: 0644]
src/gallium/winsys/pl111/drm/Makefile.am [new file with mode: 0644]
src/gallium/winsys/pl111/drm/Makefile.sources [new file with mode: 0644]
src/gallium/winsys/pl111/drm/pl111_drm_public.h [new file with mode: 0644]
src/gallium/winsys/pl111/drm/pl111_drm_winsys.c [new file with mode: 0644]
src/gallium/winsys/vc4/drm/vc4_drm_public.h
src/gallium/winsys/vc4/drm/vc4_drm_winsys.c