summaryrefslogtreecommitdiff
path: root/TODO.rst
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2018-10-11 17:18:47 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2018-10-11 21:44:02 +0200
commit93871c6fb3c25e5d350c9faf36ded917174214de (patch)
treebdd34c0bec69d564facdc2e5f31111b704899eed /TODO.rst
parent54cb1aeb4e50dea9f3abae632e317875d147c4ab (diff)
Add TODO.rst
First attempt at collecting a bunch of cleanup tasks. I think using the kernel as an example, it's much better if we keep these here than in our own internal $bug_db instance. v2: Fix typo (Rodrigo). Cc: Petri Latvala <petri.latvala@intel.com> Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'TODO.rst')
-rw-r--r--TODO.rst31
1 files changed, 31 insertions, 0 deletions
diff --git a/TODO.rst b/TODO.rst
new file mode 100644
index 00000000..eb3e50f1
--- /dev/null
+++ b/TODO.rst
@@ -0,0 +1,31 @@
+TODO
+====
+
+This contains a list of refactoring, cleanup and getting-started tasks around
+the IGT library.
+
+Split up igt_kms.c/igt_kms.h
+----------------------------
+
+igt_kms contains both a low-level modeset library, with thin convenience
+wrappers around core kernel code and libdrm. These functions usually have a
+drmtest_ prefix (but not all of them).
+
+The other part is a higher-level library around the igt_display and related
+structures. Those usually come with an igt_ prefix.
+
+The task would be to split this up, and where necessary, fix up the prefixes to
+match the level a function operates at.
+
+Remove property enums from igt_kms
+----------------------------------
+
+These are just needless indirection for writing tests. We can keep the #defines
+(since those strings are defacto uapi), but everything else is best handled by
+runtime-sizing all the arrays.
+
+Documentation
+-------------
+
+igt documentation is full of warnings and fairly incomplete. Pick a library, and
+work together with its authors to fix things up.