[Mesa-dev] [PATCH 3/3] meson: build freedreno
Eric Engestrom
eric.engestrom at imgtec.com
Tue Oct 24 16:30:20 UTC 2017
On Tuesday, 2017-10-24 11:12:50 -0400, Rob Clark wrote:
> Mostly copy/pasta from Dylan Baker's conversion of nouveau and i965.
>
> Signed-off-by: Rob Clark <robdclark at gmail.com>
> ---
> meson.build | 6 +
> meson_options.txt | 2 +-
> src/gallium/drivers/freedreno/meson.build | 221 +++++++++++++++++++++++++++
> src/gallium/meson.build | 3 +-
> src/gallium/targets/dri/meson.build | 6 +
> src/gallium/winsys/freedreno/drm/meson.build | 30 ++++
> 6 files changed, 266 insertions(+), 2 deletions(-)
> create mode 100644 src/gallium/drivers/freedreno/meson.build
> create mode 100644 src/gallium/winsys/freedreno/drm/meson.build
>
> diff --git a/meson.build b/meson.build
> index 9f481225823..8db4699ec5c 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -94,6 +94,7 @@ with_gallium = false
> with_gallium_pl111 = false
> with_gallium_radeonsi = false
> with_gallium_nouveau = false
> +with_gallium_freedreno = false
> with_gallium_softpipe = false
> with_gallium_vc4 = false
> with_gallium_vc5 = false
> @@ -105,6 +106,7 @@ if _drivers != ''
> with_gallium_pl111 = _split.contains('pl111')
> with_gallium_radeonsi = _split.contains('radeonsi')
> with_gallium_nouveau = _split.contains('nouveau')
> + with_gallium_freedreno = _split.contains('freedreno')
> with_gallium_softpipe = _split.contains('swrast')
> with_gallium_vc4 = _split.contains('vc4')
> with_gallium_vc5 = _split.contains('vc5')
> @@ -614,6 +616,7 @@ dep_libdrm_amdgpu = []
> dep_libdrm_radeon = []
> dep_libdrm_nouveau = []
> dep_libdrm_etnaviv = []
> +dep_libdrm_freedreno = []
> if with_amd_vk or with_gallium_radeonsi
> dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.85')
> endif
> @@ -626,6 +629,9 @@ endif
> if with_gallium_etnaviv
> dep_libdrm_etnaviv = dependency('libdrm_etnaviv', version : '>= 2.4.82')
> endif
> +if with_gallium_freedreno
> + dep_libdrm_freedreno = dependency('libdrm_freedreno', version : '>= 2.4.74')
> +endif
>
> llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
> if with_amd_vk
> diff --git a/meson_options.txt b/meson_options.txt
> index be93871d614..1b90f5ced88 100644
> --- a/meson_options.txt
> +++ b/meson_options.txt
> @@ -46,7 +46,7 @@ option(
> option(
> 'gallium-drivers',
> type : 'string',
> - value : 'pl111,radeonsi,nouveau,swrast,vc4,etnaviv,imx',
> + value : 'pl111,radeonsi,nouveau,freedreno,swrast,vc4,etnaviv,imx',
> description : 'comma separated list of gallium drivers to build.'
> )
> option(
> diff --git a/src/gallium/drivers/freedreno/meson.build b/src/gallium/drivers/freedreno/meson.build
> new file mode 100644
> index 00000000000..e7f3becf9e6
> --- /dev/null
> +++ b/src/gallium/drivers/freedreno/meson.build
> @@ -0,0 +1,221 @@
> +# Copyright © 2017 Rob Clark
> +
> +# Permission is hereby granted, free of charge, to any person obtaining a copy
> +# of this software and associated documentation files (the "Software"), to deal
> +# in the Software without restriction, including without limitation the rights
> +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> +# copies of the Software, and to permit persons to whom the Software is
> +# furnished to do so, subject to the following conditions:
> +
> +# The above copyright notice and this permission notice shall be included in
> +# all copies or substantial portions of the Software.
> +
> +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> +# SOFTWARE.
> +
> +ir3_nir_trig_c = custom_target(
> + 'ir3_nir_trig.c',
> + input : 'ir3/ir3_nir_trig.py',
> + output : 'ir3_nir_trig.c',
> + command : [prog_python2, '@INPUT@', '-p',
> + join_paths(meson.source_root(), 'src/compiler/nir/')],
This is kind of ugly, but I don't think there's a better way of doing
this :(
> + capture : true,
> + depend_files : files(
> + 'ir3/ir3_nir_trig.py',
> + nir_algebraic_py,
> + ),
With my suggestion on the previous patch, this becomes:
depend_files : [
files('ir3/ir3_nir_trig.py'),
nir_algebraic_py,
],
That said, I think the `input` array gets tracked automatically, no need
to add it to the `depend_files`.
Other than that, this patch looks good to me
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>
> +)
> +
> +files_libfreedreno = files(
> + 'adreno_common.xml.h',
> + 'adreno_pm4.xml.h',
> + 'disasm.h',
> + 'freedreno_batch.c',
> + 'freedreno_batch.h',
> + 'freedreno_batch_cache.c',
> + 'freedreno_batch_cache.h',
> + 'freedreno_context.c',
> + 'freedreno_context.h',
> + 'freedreno_draw.c',
> + 'freedreno_draw.h',
> + 'freedreno_fence.c',
> + 'freedreno_fence.h',
> + 'freedreno_gmem.c',
> + 'freedreno_gmem.h',
> + 'freedreno_program.c',
> + 'freedreno_program.h',
> + 'freedreno_query.c',
> + 'freedreno_query.h',
> + 'freedreno_query_acc.c',
> + 'freedreno_query_acc.h',
> + 'freedreno_query_hw.c',
> + 'freedreno_query_hw.h',
> + 'freedreno_query_sw.c',
> + 'freedreno_query_sw.h',
> + 'freedreno_resource.c',
> + 'freedreno_resource.h',
> + 'freedreno_screen.c',
> + 'freedreno_screen.h',
> + 'freedreno_state.c',
> + 'freedreno_state.h',
> + 'freedreno_surface.c',
> + 'freedreno_surface.h',
> + 'freedreno_texture.c',
> + 'freedreno_texture.h',
> + 'freedreno_util.c',
> + 'freedreno_util.h',
> + 'a2xx/a2xx.xml.h',
> + 'a2xx/disasm-a2xx.c',
> + 'a2xx/fd2_blend.c',
> + 'a2xx/fd2_blend.h',
> + 'a2xx/fd2_compiler.c',
> + 'a2xx/fd2_compiler.h',
> + 'a2xx/fd2_context.c',
> + 'a2xx/fd2_context.h',
> + 'a2xx/fd2_draw.c',
> + 'a2xx/fd2_draw.h',
> + 'a2xx/fd2_emit.c',
> + 'a2xx/fd2_emit.h',
> + 'a2xx/fd2_gmem.c',
> + 'a2xx/fd2_gmem.h',
> + 'a2xx/fd2_program.c',
> + 'a2xx/fd2_program.h',
> + 'a2xx/fd2_rasterizer.c',
> + 'a2xx/fd2_rasterizer.h',
> + 'a2xx/fd2_screen.c',
> + 'a2xx/fd2_screen.h',
> + 'a2xx/fd2_texture.c',
> + 'a2xx/fd2_texture.h',
> + 'a2xx/fd2_util.c',
> + 'a2xx/fd2_util.h',
> + 'a2xx/fd2_zsa.c',
> + 'a2xx/fd2_zsa.h',
> + 'a2xx/instr-a2xx.h',
> + 'a2xx/ir-a2xx.c',
> + 'a2xx/ir-a2xx.h',
> + 'a3xx/a3xx.xml.h',
> + 'a3xx/fd3_blend.c',
> + 'a3xx/fd3_blend.h',
> + 'a3xx/fd3_context.c',
> + 'a3xx/fd3_context.h',
> + 'a3xx/fd3_draw.c',
> + 'a3xx/fd3_draw.h',
> + 'a3xx/fd3_emit.c',
> + 'a3xx/fd3_emit.h',
> + 'a3xx/fd3_format.c',
> + 'a3xx/fd3_format.h',
> + 'a3xx/fd3_gmem.c',
> + 'a3xx/fd3_gmem.h',
> + 'a3xx/fd3_program.c',
> + 'a3xx/fd3_program.h',
> + 'a3xx/fd3_query.c',
> + 'a3xx/fd3_query.h',
> + 'a3xx/fd3_rasterizer.c',
> + 'a3xx/fd3_rasterizer.h',
> + 'a3xx/fd3_screen.c',
> + 'a3xx/fd3_screen.h',
> + 'a3xx/fd3_texture.c',
> + 'a3xx/fd3_texture.h',
> + 'a3xx/fd3_zsa.c',
> + 'a3xx/fd3_zsa.h',
> + 'a4xx/a4xx.xml.h',
> + 'a4xx/fd4_blend.c',
> + 'a4xx/fd4_blend.h',
> + 'a4xx/fd4_context.c',
> + 'a4xx/fd4_context.h',
> + 'a4xx/fd4_draw.c',
> + 'a4xx/fd4_draw.h',
> + 'a4xx/fd4_emit.c',
> + 'a4xx/fd4_emit.h',
> + 'a4xx/fd4_format.c',
> + 'a4xx/fd4_format.h',
> + 'a4xx/fd4_gmem.c',
> + 'a4xx/fd4_gmem.h',
> + 'a4xx/fd4_program.c',
> + 'a4xx/fd4_program.h',
> + 'a4xx/fd4_query.c',
> + 'a4xx/fd4_query.h',
> + 'a4xx/fd4_rasterizer.c',
> + 'a4xx/fd4_rasterizer.h',
> + 'a4xx/fd4_screen.c',
> + 'a4xx/fd4_screen.h',
> + 'a4xx/fd4_texture.c',
> + 'a4xx/fd4_texture.h',
> + 'a4xx/fd4_zsa.c',
> + 'a4xx/fd4_zsa.h',
> + 'a5xx/a5xx.xml.h',
> + 'a5xx/fd5_blend.c',
> + 'a5xx/fd5_blend.h',
> + 'a5xx/fd5_compute.c',
> + 'a5xx/fd5_compute.h',
> + 'a5xx/fd5_context.c',
> + 'a5xx/fd5_context.h',
> + 'a5xx/fd5_draw.c',
> + 'a5xx/fd5_draw.h',
> + 'a5xx/fd5_emit.c',
> + 'a5xx/fd5_emit.h',
> + 'a5xx/fd5_format.c',
> + 'a5xx/fd5_format.h',
> + 'a5xx/fd5_gmem.c',
> + 'a5xx/fd5_gmem.h',
> + 'a5xx/fd5_program.c',
> + 'a5xx/fd5_program.h',
> + 'a5xx/fd5_query.c',
> + 'a5xx/fd5_query.h',
> + 'a5xx/fd5_rasterizer.c',
> + 'a5xx/fd5_rasterizer.h',
> + 'a5xx/fd5_screen.c',
> + 'a5xx/fd5_screen.h',
> + 'a5xx/fd5_texture.c',
> + 'a5xx/fd5_texture.h',
> + 'a5xx/fd5_zsa.c',
> + 'a5xx/fd5_zsa.h',
> + 'ir3/disasm-a3xx.c',
> + 'ir3/instr-a3xx.h',
> + 'ir3/ir3.c',
> + 'ir3/ir3_compiler_nir.c',
> + 'ir3/ir3_compiler.c',
> + 'ir3/ir3_compiler.h',
> + 'ir3/ir3_cp.c',
> + 'ir3/ir3_depth.c',
> + 'ir3/ir3_group.c',
> + 'ir3/ir3.h',
> + 'ir3/ir3_legalize.c',
> + 'ir3/ir3_nir.c',
> + 'ir3/ir3_nir.h',
> + 'ir3/ir3_nir_lower_if_else.c',
> + 'ir3/ir3_print.c',
> + 'ir3/ir3_ra.c',
> + 'ir3/ir3_sched.c',
> + 'ir3/ir3_shader.c',
> + 'ir3/ir3_shader.h',
> +)
> +
> +freedreno_includes = [
> + inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_nir,
> + include_directories('ir3')
> +]
> +
> +libfreedreno = static_library(
> + 'freedreno',
> + [files_libfreedreno, ir3_nir_trig_c],
> + include_directories : freedreno_includes,
> + c_args : [c_vis_args],
> + cpp_args : [cpp_vis_args],
> + dependencies : [dep_libdrm, dep_libdrm_freedreno],
> + build_by_default : false,
> +)
> +
> +ir3_compiler = executable(
> + 'ir3_compiler',
> + 'ir3/ir3_cmdline.c',
> + include_directories : freedreno_includes,
> + dependencies : [dep_libdrm, dep_libdrm_freedreno],
> + link_with : [libfreedreno, libgallium, libmesa_util],
> + build_by_default : false,
> +)
> diff --git a/src/gallium/meson.build b/src/gallium/meson.build
> index 4f39e6dad37..570c37e6475 100644
> --- a/src/gallium/meson.build
> +++ b/src/gallium/meson.build
> @@ -31,6 +31,7 @@ subdir('drivers/rbug')
> subdir('drivers/radeon')
> subdir('drivers/radeonsi')
> subdir('drivers/nouveau')
> +subdir('drivers/freedreno')
> subdir('drivers/softpipe')
> if with_gallium_vc4
> subdir('drivers/vc4')
> @@ -52,6 +53,7 @@ endif
> subdir('winsys/radeon/drm')
> subdir('winsys/amdgpu/drm')
> subdir('winsys/nouveau/drm')
> +subdir('winsys/freedreno/drm')
> if with_gallium_vc4
> subdir('winsys/vc4/drm')
> endif
> @@ -65,7 +67,6 @@ if with_gallium_imx
> subdir('winsys/imx/drm')
> endif
> subdir('state_trackers/dri')
> -# TODO: freedreno
> # TODO: i915
> # TODO: SVGA
> # TODO: r300
> diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build
> index 1517fcc5d3c..0ce088e1aca 100644
> --- a/src/gallium/targets/dri/meson.build
> +++ b/src/gallium/targets/dri/meson.build
> @@ -69,6 +69,12 @@ if with_gallium_nouveau
> gallium_dri_link_with += [libnouveauwinsys, libnouveau]
> gallium_dri_drivers += 'nouveau_dri.so'
> endif
> +if with_gallium_freedreno
> + gallium_dri_c_args += '-DGALLIUM_FREEDRENO'
> + gallium_dri_link_with += [libfreedrenowinsys, libfreedreno]
> + gallium_dri_drivers += 'msm_dri.so'
> + gallium_dri_drivers += 'kgsl_dri.so'
> +endif
> if with_gallium_softpipe
> gallium_dri_c_args += '-DGALLIUM_SOFTPIPE'
> gallium_dri_link_with += libsoftpipe
> diff --git a/src/gallium/winsys/freedreno/drm/meson.build b/src/gallium/winsys/freedreno/drm/meson.build
> new file mode 100644
> index 00000000000..71ee01139d3
> --- /dev/null
> +++ b/src/gallium/winsys/freedreno/drm/meson.build
> @@ -0,0 +1,30 @@
> +# Copyright © 2017 Rob Clark
> +
> +# Permission is hereby granted, free of charge, to any person obtaining a copy
> +# of this software and associated documentation files (the "Software"), to deal
> +# in the Software without restriction, including without limitation the rights
> +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> +# copies of the Software, and to permit persons to whom the Software is
> +# furnished to do so, subject to the following conditions:
> +
> +# The above copyright notice and this permission notice shall be included in
> +# all copies or substantial portions of the Software.
> +
> +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> +# SOFTWARE.
> +
> +libfreedrenowinsys = static_library(
> + 'freedrenowinsys',
> + files('freedreno_drm_public.h', 'freedreno_drm_winsys.c'),
> + include_directories : [
> + inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_gallium_drivers,
> + ],
> + c_args : [c_vis_args],
> + dependencies : [dep_libdrm_freedreno],
> + build_by_default : false,
> +)
> --
> 2.13.6
>
More information about the mesa-dev
mailing list