touch_modules.bzl 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. ]
  44. )
  45. #define ddk_module() for dummy_ts
  46. module_entry(
  47. name = "dummy_ts",
  48. config_option = "CONFIG_TOUCHSCREEN_DUMMY",
  49. srcs = [
  50. "dummy_touch/dummy_touch.c"
  51. ]
  52. )