Browse Source

touch: LW: Add support for Bazel to build touch modules

Add support for touch modules to be built with Bazel
for LW IDP.

Change-Id: Iae6825c816938b810daa400095265222eda2772a
Signed-off-by: Srikanth Katteboina <[email protected]>
Signed-off-by: Sayantan Majumder <[email protected]>
Sayantan Majumder 1 year ago
parent
commit
a0abc9d2dc
4 changed files with 82 additions and 1 deletions
  1. 4 0
      Android.mk
  2. 9 1
      BUILD.bazel
  3. 27 0
      target.bzl
  4. 42 0
      touch_modules.bzl

+ 4 - 0
Android.mk

@@ -23,6 +23,10 @@ ifeq ($(TOUCH_DLKM_ENABLE),  true)
               LOCAL_MODULE_DDK_BUILD := true
        endif
 
+       ifeq ($(TARGET_BOARD_PLATFORM), monaco)
+              LOCAL_MODULE_DDK_BUILD := true
+       endif
+
        include $(CLEAR_VARS)
 
        # This makefile is only for DLKM

+ 9 - 1
BUILD.bazel

@@ -47,9 +47,17 @@ ddk_headers(
     includes = ["config"]
 )
 
+ddk_headers(
+    name = "pt_headers",
+    hdrs = glob([
+            "pt/*.h",
+        ]
+    )
+)
+
 ddk_headers(
     name = "touch_drivers_headers",
-    hdrs = [":goodix_ts_headers", ":nt36xxx_headers", ":focaltech_headers", ":synaptics_tcm_headers", ":config_headers"]
+    hdrs = [":goodix_ts_headers", ":nt36xxx_headers", ":focaltech_headers", ":synaptics_tcm_headers", ":pt_headers", ":config_headers"]
 )
 
 load(":target.bzl", "define_touch_target")

+ 27 - 0
target.bzl

@@ -64,11 +64,38 @@ def define_pitti(t,v):
         ],
 )
 
+def define_monaco(t,v):
+    define_target_variant_modules(
+        target = t,
+        variant = v,
+        registry = touch_driver_modules,
+        modules = [
+            "pt_ts",
+            "pt_i2c",
+            "pt_device_access",
+            "pt_debug",
+        ],
+        config_options = [
+            "TOUCH_DLKM_ENABLE",
+            "CONFIG_ARCH_MONACO",
+            "CONFIG_MSM_TOUCH",
+            "CONFIG_TOUCHSCREEN_PARADE",
+            "CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT",
+            "CONFIG_TOUCHSCREEN_PARADE_I2C",
+            "CONFIG_TOUCHSCREEN_PARADE_DEVICE_ACCESS",
+            "CONFIG_TOUCHSCREEN_PARADE_BUTTON",
+            "CONFIG_TOUCHSCREEN_PARADE_PROXIMITY",
+            "CONFIG_TOUCHSCREEN_PARADE_DEBUG_MDL",
+        ],
+)
+
 def define_touch_target():
     for (t, v) in get_all_la_variants() + get_all_le_variants() + get_all_lxc_variants():
         if t == "blair":
             define_blair(t, v)
         elif t == "pitti":
             define_pitti(t, v)
+        elif t == "monaco":
+            define_monaco(t, v)
         else:
             define_pineapple(t, v)

+ 42 - 0
touch_modules.bzl

@@ -85,3 +85,45 @@ module_entry(
             "dummy_touch/dummy_touch.c"
     ]
 )
+
+#define ddk_module() for pt_ts
+module_entry(
+    name = "pt_ts",
+    config_option = "CONFIG_TOUCHSCREEN_PARADE",
+    srcs = [
+            "pt/pt_core.c",
+            "pt/pt_devtree.c",
+            "pt/pt_mt_common.c",
+            "pt/pt_platform.c",
+            "pt/pt_btn.c",
+            "pt/pt_mtb.c",
+            "pt/pt_proximity.c"
+    ]
+)
+
+#define ddk_module() for pt_i2c
+module_entry(
+    name = "pt_i2c",
+    config_option = "CONFIG_TOUCHSCREEN_PARADE_I2C",
+    srcs = [
+            "pt/pt_i2c.c"
+    ]
+)
+
+#define ddk_module() for pt_device_access
+module_entry(
+    name = "pt_device_access",
+    config_option = "CONFIG_TOUCHSCREEN_PARADE_DEVICE_ACCESS",
+    srcs = [
+            "pt/pt_device_access.c"
+    ]
+)
+
+#define ddk_module() for pt_debug
+module_entry(
+    name = "pt_debug",
+    config_option = "CONFIG_TOUCHSCREEN_PARADE_DEBUG_MDL",
+    srcs = [
+            "pt/pt_debug.c"
+    ]
+)