diff options
author | Eric Anholt <eric@anholt.net> | 2018-10-23 12:33:09 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2019-01-28 09:35:45 -0800 |
commit | ed65aeec7810a7d98a19461ba933bd77268cb0f6 (patch) | |
tree | f4d28071e942e011002ec831eb9b4acd80268ebd /meson.build | |
parent | afeef3cacf35376a0c31f0871b57628cafd90ccb (diff) |
pl111: Rename the pl111 driver to "kmsro".
The vc4 driver can do prime sharing to many different KMS-only devices,
such as the various tinydrm drivers for SPI-attached displays. Rename the
driver away from "pl111" to represent what it will actually support:
various sorts of KMS displays with the renderonly layer used to attach a
GPU.
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 2d730708d067..2ebce75b13b8 100644 --- a/meson.build +++ b/meson.build @@ -131,7 +131,7 @@ if _drivers.contains('auto') ] elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) _drivers = [ - 'pl111', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'imx', 'nouveau', + 'kmsro', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'imx', 'nouveau', 'tegra', 'virgl', 'swrast', ] else @@ -145,7 +145,7 @@ if _drivers.contains('auto') host_machine.system())) endif endif -with_gallium_pl111 = _drivers.contains('pl111') +with_gallium_kmsro = _drivers.contains('kmsro') with_gallium_radeonsi = _drivers.contains('radeonsi') with_gallium_r300 = _drivers.contains('r300') with_gallium_r600 = _drivers.contains('r600') @@ -213,8 +213,8 @@ endif if with_gallium_imx and not with_gallium_etnaviv error('IMX driver requires etnaviv driver') endif -if with_gallium_pl111 and not with_gallium_vc4 - error('pl111 driver requires vc4 driver') +if with_gallium_kmsro and not with_gallium_vc4 + error('kmsro driver requires vc4 driver') endif if with_gallium_tegra and not with_gallium_nouveau error('tegra driver requires nouveau driver') |