mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 00:46:17 +00:00
The sample usage is in reg_access.dpio_read(). We should add some semantics to the text files to detect DPIO registers, and do the right thing. Cc: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Ben Widawsky <ben@bwidawsk.net> Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/lib $(PYTHON_CPPFLAGS) $(DRM_CFLAGS)
|
|
|
|
BUILT_SOURCES = chipset_wrap_python.c
|
|
|
|
dist_bin_SCRIPTS = quick_dump.py reg_access.py
|
|
bin_SCRIPTS = chipset.py
|
|
|
|
lib_LTLIBRARIES = I915ChipsetPython.la
|
|
I915ChipsetPython_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS) $(PCIACCESS_LIBS)
|
|
I915ChipsetPython_la_SOURCES = chipset_wrap_python.c intel_chipset.c \
|
|
$(top_srcdir)/lib/intel_drm.c \
|
|
$(top_srcdir)/lib/intel_pci.c \
|
|
$(top_srcdir)/lib/intel_reg_map.c \
|
|
$(top_srcdir)/lib/intel_mmio.c \
|
|
$(top_srcdir)/lib/intel_dpio.c
|
|
|
|
chipset_wrap_python.c chipset.py: chipset.i
|
|
$(SWIG) $(AX_SWIG_PYTHON_OPT) -I/usr/include -I$(top_srcdir)/lib -o $@ $<
|
|
|
|
all-local: I915ChipsetPython.la
|
|
$(LN_S) -f .libs/I915ChipsetPython.so _chipset.so
|
|
|
|
CLEANFILES = chipset_wrap_python.c chipset.py _chipset.so
|
|
EXTRA_DIST = \
|
|
base_display.txt base_interrupt.txt base_other.txt base_power.txt base_rings.txt \
|
|
gen6_other.txt sandybridge \
|
|
gen7_other.txt ivybridge \
|
|
vlv_display.txt valleyview \
|
|
quick_dump.py \
|
|
reg_access.py \
|
|
chipset.i chipset.py
|