touch_modules.bzl 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Importing to touch module entry api from touch_modules_build.bzl to define module entried for touch drivers
  2. load(":touch_modules_build.bzl", "touch_module_entry")
  3. # Importing the touch driver headers defined in BUILD.bazel
  4. touch_driver_modules = touch_module_entry([":touch_drivers_headers"])
  5. #Including the headers in the modules to be declared
  6. module_entry = touch_driver_modules.register
  7. #--------------- TOUCH-DRIVERS MODULES ------------------
  8. #define ddk_module() for goodix_ts
  9. module_entry(
  10. name = "goodix_ts",
  11. config_option = "CONFIG_TOUCHSCREEN_GOODIX_BRL",
  12. srcs = [
  13. "goodix_berlin_driver/goodix_brl_fwupdate.c",
  14. "goodix_berlin_driver/goodix_brl_hw.c",
  15. "goodix_berlin_driver/goodix_brl_i2c.c",
  16. "goodix_berlin_driver/goodix_brl_spi.c",
  17. "goodix_berlin_driver/goodix_cfg_bin.c",
  18. "goodix_berlin_driver/goodix_ts_core.c",
  19. "goodix_berlin_driver/goodix_ts_gesture.c",
  20. "goodix_berlin_driver/goodix_ts_inspect.c",
  21. "goodix_berlin_driver/goodix_ts_tools.c",
  22. "goodix_berlin_driver/goodix_ts_utils.c",
  23. "qts/qts_core.c"
  24. ]
  25. )
  26. #define ddk_module() for nt36xxx
  27. module_entry(
  28. name = "nt36xxx-i2c",
  29. config_option = "CONFIG_TOUCHSCREEN_NT36XXX_I2C",
  30. srcs = [
  31. "nt36xxx/nt36xxx_ext_proc.c",
  32. "nt36xxx/nt36xxx_fw_update.c",
  33. "nt36xxx/nt36xxx_mp_ctrlram.c",
  34. "nt36xxx/nt36xxx.c"
  35. ]
  36. )
  37. #define ddk_module() for atmel_mxt_ts
  38. module_entry(
  39. name = "atmel_mxt_ts",
  40. config_option = "CONFIG_TOUCHSCREEN_ATMEL_MXT",
  41. srcs = [
  42. "atmel_mxt/atmel_mxt_ts.c",
  43. "qts/qts_core.c"
  44. ]
  45. )
  46. #define ddk_module() for dummy_ts
  47. module_entry(
  48. name = "dummy_ts",
  49. config_option = "CONFIG_TOUCHSCREEN_DUMMY",
  50. srcs = [
  51. "dummy_touch/dummy_touch.c"
  52. ]
  53. )