summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFritz Koenig <frkoenig@google.com>2018-12-05 17:26:17 -0800
committerRob Clark <robdclark@gmail.com>2019-01-22 16:33:27 -0500
commitddbe6171e6a9e5c12a3a55cd45c1b035ab26abba (patch)
treef9da3782db168e3a62aedc8e3148f7bfda1c5f65
parent956c219c8f6604816ce5848fa74ae6c447ff1230 (diff)
freedreno: drm_fourcc.h header include
Add Qualcomm modifier for UBWC
-rw-r--r--include/drm-uapi/drm_fourcc.h13
-rw-r--r--src/gallium/drivers/freedreno/Android.mk3
-rw-r--r--src/gallium/drivers/freedreno/Makefile.am1
3 files changed, 16 insertions, 1 deletions
diff --git a/include/drm-uapi/drm_fourcc.h b/include/drm-uapi/drm_fourcc.h
index d5e52350a3a..459c51b1bf2 100644
--- a/include/drm-uapi/drm_fourcc.h
+++ b/include/drm-uapi/drm_fourcc.h
@@ -298,6 +298,19 @@ extern "C" {
*/
#define DRM_FORMAT_MOD_SAMSUNG_64_32_TILE fourcc_mod_code(SAMSUNG, 1)
+/*
+ * Qualcomm Compressed Format
+ *
+ * Refers to a compressed variant of the base format that is compressed.
+ * Implementation may be platform and base-format specific.
+ *
+ * Each macrotile consists of m x n (mostly 4 x 4) tiles.
+ * Pixel data pitch/stride is aligned with macrotile width.
+ * Pixel data height is aligned with macrotile height.
+ * Entire pixel data buffer is aligned with 4k(bytes).
+ */
+#define DRM_FORMAT_MOD_QCOM_COMPRESSED fourcc_mod_code(QCOM, 1)
+
/* Vivante framebuffer modifiers */
/*
diff --git a/src/gallium/drivers/freedreno/Android.mk b/src/gallium/drivers/freedreno/Android.mk
index ab4b3ed4351..e579264924f 100644
--- a/src/gallium/drivers/freedreno/Android.mk
+++ b/src/gallium/drivers/freedreno/Android.mk
@@ -38,7 +38,8 @@ LOCAL_SRC_FILES := \
# -Wno-packed-bitfield-compat
LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/ir3
+ $(LOCAL_PATH)/ir3 \
+ $(MESA_TOP)/include/drm-uapi
LOCAL_GENERATED_SOURCES := $(MESA_GEN_NIR_H)
diff --git a/src/gallium/drivers/freedreno/Makefile.am b/src/gallium/drivers/freedreno/Makefile.am
index 49af9ab0e28..fe409fa5f52 100644
--- a/src/gallium/drivers/freedreno/Makefile.am
+++ b/src/gallium/drivers/freedreno/Makefile.am
@@ -3,6 +3,7 @@ include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
-Wno-packed-bitfield-compat \
+ -I$(top_srcdir)/include/drm-uapi \
-I$(top_srcdir)/src/gallium/drivers/freedreno/ir3 \
-I$(top_srcdir)/src/freedreno \
-I$(top_srcdir)/src/freedreno/registers \