From: Eric Anholt Date: Sat, 27 Oct 2018 01:19:37 +0000 (-0700) Subject: vc4: Fall back to renderonly if the vc4 driver doesn't have v3d. X-Git-Tag: upstream/19.3.0~6877 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=edb04953c8b8520108f333b1e289f18719a7d597;p=platform%2Fupstream%2Fmesa.git vc4: Fall back to renderonly if the vc4 driver doesn't have v3d. I have a platform with vc4 display but V3D 4.x. We can fall back on kmsro's probing to bring up the v3d gallium driver. Acked-by: Rob Clark --- diff --git a/src/gallium/drivers/vc4/meson.build b/src/gallium/drivers/vc4/meson.build index 617578d..5ce5af5 100644 --- a/src/gallium/drivers/vc4/meson.build +++ b/src/gallium/drivers/vc4/meson.build @@ -96,7 +96,6 @@ if host_machine.cpu_family() == 'arm' vc4_c_args += '-DUSE_ARM_ASM' endif -dep_simpenrose = dependency('simpenrose', required : false) if dep_simpenrose.found() vc4_c_args += '-DUSE_VC4_SIMULATOR' endif diff --git a/src/gallium/winsys/vc4/drm/meson.build b/src/gallium/winsys/vc4/drm/meson.build index 58216dc..55c8573 100644 --- a/src/gallium/winsys/vc4/drm/meson.build +++ b/src/gallium/winsys/vc4/drm/meson.build @@ -18,12 +18,23 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +dep_simpenrose = dependency('simpenrose', required : false) + +vc4_winsys_c_args = [] +if with_gallium_kmsro + vc4_winsys_c_args += '-DGALLIUM_KMSRO' +endif + +if dep_simpenrose.found() + vc4_winsys_c_args += '-DUSE_VC4_SIMULATOR' +endif + libvc4winsys = static_library( 'vc4winsys', files('vc4_drm_winsys.c'), include_directories : [ inc_src, inc_include, - inc_gallium, inc_gallium_aux, inc_gallium_drivers, + inc_gallium, inc_gallium_aux, inc_gallium_drivers, inc_gallium_winsys, ], - c_args : [c_vis_args], + c_args : [c_vis_args, vc4_winsys_c_args], ) diff --git a/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c b/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c index 73717d2..4215857 100644 --- a/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c +++ b/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c @@ -23,15 +23,36 @@ #include #include +#include #include "renderonly/renderonly.h" +#include "kmsro/drm/kmsro_drm_public.h" #include "vc4_drm_public.h" #include "vc4/vc4_screen.h" +#include "drm-uapi/vc4_drm.h" struct pipe_screen * vc4_drm_screen_create(int fd) { - return vc4_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3), NULL); + bool v3d_present = true; + +#ifndef USE_VC4_SIMULATOR + struct drm_vc4_get_param ident0 = { + .param = DRM_VC4_PARAM_V3D_IDENT0, + }; + + int ret = ioctl(fd, DRM_IOCTL_VC4_GET_PARAM, &ident0); + v3d_present = ret == 0; +#endif + + if (v3d_present) + return vc4_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3), NULL); + +#ifdef GALLIUM_KMSRO + return kmsro_drm_screen_create(fd); +#endif + + return NULL; } struct pipe_screen *