mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-11 06:36:40 +07:00
08302c35b5
The DPI interface involves taking a ton of our GPIOs to be used as outputs, and routing display signals over them in parallel. v2: Use display_info.bus_formats[] to replace our custom DT properties. v3: Rebase on V3D documentation changes. v4: Fix rebase detritus from V3D documentation changes. Signed-off-by: Eric Anholt <eric@anholt.net> Acked-by: Rob Herring <robh@kernel.org>
28 lines
441 B
Makefile
28 lines
441 B
Makefile
ccflags-y := -Iinclude/drm
|
|
|
|
# Please keep these build lists sorted!
|
|
|
|
# core driver code
|
|
vc4-y := \
|
|
vc4_bo.o \
|
|
vc4_crtc.o \
|
|
vc4_drv.o \
|
|
vc4_dpi.o \
|
|
vc4_kms.o \
|
|
vc4_gem.o \
|
|
vc4_hdmi.o \
|
|
vc4_hvs.o \
|
|
vc4_irq.o \
|
|
vc4_plane.o \
|
|
vc4_render_cl.o \
|
|
vc4_trace_points.o \
|
|
vc4_v3d.o \
|
|
vc4_validate.o \
|
|
vc4_validate_shaders.o
|
|
|
|
vc4-$(CONFIG_DEBUG_FS) += vc4_debugfs.o
|
|
|
|
obj-$(CONFIG_DRM_VC4) += vc4.o
|
|
|
|
CFLAGS_vc4_trace_points.o := -I$(src)
|