mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-22 23:36:30 +00:00
This is something I sometimes want to do in testing, to see if a mystery bug (say, 29172) is due to broken clock gating. Sadly, in this case it isn't. Note that it isn't supported on non-ILK chipsets yet.
47 lines
861 B
Makefile
47 lines
861 B
Makefile
bin_PROGRAMS = \
|
|
intel_disable_clock_gating \
|
|
intel_audio_dump \
|
|
intel_bios_dumper \
|
|
intel_bios_reader \
|
|
intel_error_decode \
|
|
intel_gpu_dump \
|
|
intel_gpu_top \
|
|
intel_gpu_time \
|
|
intel_gtt \
|
|
intel_lid \
|
|
intel_stepping \
|
|
intel_reg_dumper \
|
|
intel_reg_snapshot \
|
|
intel_reg_write \
|
|
intel_reg_read \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS = \
|
|
intel_dump_decode \
|
|
$(NULL)
|
|
|
|
intel_gpu_dump_SOURCES = \
|
|
intel_gpu_dump.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_dump_decode_SOURCES = \
|
|
intel_dump_decode.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_error_decode_SOURCES = \
|
|
intel_error_decode.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_bios_reader_SOURCES = \
|
|
intel_bios_reader.c \
|
|
intel_bios.h
|
|
|
|
LDADD = ../lib/libintel_tools.la $(DRM_LIBS) $(PCIACCESS_LIBS)
|
|
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(WARN_CFLAGS) \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../lib
|