瀏覽代碼

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

qctecmdr 1 年之前
父節點
當前提交
c164ae51f3
共有 4 個文件被更改,包括 110 次插入1 次删除
  1. 4 0
      Android.mk
  2. 18 1
      BUILD.bazel
  3. 29 0
      target.bzl
  4. 59 0
      touch_modules.bzl

+ 4 - 0
Android.mk

@@ -25,6 +25,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

+ 18 - 1
BUILD.bazel

@@ -47,9 +47,26 @@ ddk_headers(
     includes = ["config"]
 )
 
+ddk_headers(
+    name = "pt_headers",
+    hdrs = glob([
+            "pt/*.h"
+        ]
+    )
+)
+
+ddk_headers(
+    name = "raydium_headers",
+    hdrs = glob([
+            "raydium/*.h",
+            "raydium/chip_raydium/*.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", ":raydium_headers", ":config_headers"]
 )
 
 load(":target.bzl", "define_touch_target")

+ 29 - 0
target.bzl

@@ -64,11 +64,40 @@ 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",
+            "raydium_ts",
+        ],
+        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",
+            "CONFIG_TOUCHSCREEN_RM_TS",
+        ],
+)
+
 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)

+ 59 - 0
touch_modules.bzl

@@ -85,3 +85,62 @@ 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"
+    ]
+)
+
+#define ddk_module() for raydium_ts
+module_entry(
+    name = "raydium_ts",
+    config_option = "CONFIG_TOUCHSCREEN_RM_TS",
+    srcs = [
+            "raydium/drv_interface.c",
+            "raydium/raydium_driver.c",
+            "raydium/raydium_fw_update.c",
+            "raydium/raydium_selftest.c",
+            "raydium/raydium_sysfs.c",
+            "raydium/chip_raydium/f303_ic_control.c",
+            "raydium/chip_raydium/f303_ic_test.c",
+            "raydium/chip_raydium/ic_drv_global.c",
+            "raydium/chip_raydium/ic_drv_interface.c"
+    ]
+)