Kbuild 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. KDIR := $(TOP)/kernel_platform/common
  2. ifeq ($(CONFIG_ARCH_WAIPIO), y)
  3. include $(TOUCH_ROOT)/config/gki_waipiotouch.conf
  4. LINUX_INC += -include $(TOUCH_ROOT)/config/gki_waipiotouchconf.h
  5. endif
  6. #ifeq ($(CONFIG_ARCH_KALAMA), y)
  7. include $(TOUCH_ROOT)/config/gki_kalamatouch.conf
  8. LINUX_INC += -include $(TOUCH_ROOT)/config/gki_kalamatouchconf.h
  9. #endif
  10. LINUX_INC += -Iinclude/linux \
  11. -Iinclude/linux/drm \
  12. -Iinclude/linux/gunyah \
  13. -Iinclude/linux/input
  14. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  15. -DANI_LITTLE_BIT_ENDIAN \
  16. -DDOT11F_LITTLE_ENDIAN_HOST \
  17. -DANI_COMPILER_TYPE_GCC \
  18. -DANI_OS_TYPE_ANDROID=6 \
  19. -DPTT_SOCK_SVC_ENABLE \
  20. -Wall\
  21. -Werror\
  22. -D__linux__
  23. KBUILD_CPPFLAGS += $(CDEFINES)
  24. ccflags-y += $(LINUX_INC)
  25. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  26. EXTRA_CFLAGS += -Wmaybe-uninitialized
  27. endif
  28. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  29. EXTRA_CFLAGS += -Wheader-guard
  30. endif
  31. ######### CONFIG_MSM_TOUCH ########
  32. ifeq ($(CONFIG_TOUCHSCREEN_SYNAPTICS_DSX), y)
  33. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx.h
  34. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx_core.h
  35. synaptics_dsx-y := \
  36. ./synaptics_dsx/synaptics_dsx_core.o \
  37. ./synaptics_dsx/synaptics_dsx_i2c.o
  38. obj-$(CONFIG_MSM_TOUCH) += synaptics_dsx.o
  39. endif
  40. ifeq ($(CONFIG_TOUCH_FOCALTECH), y)
  41. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_common.h
  42. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_config.h
  43. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_core.h
  44. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_flash.h
  45. focaltech_fts-y := \
  46. ./focaltech_touch/focaltech_core.o \
  47. ./focaltech_touch/focaltech_ex_fun.o \
  48. ./focaltech_touch/focaltech_ex_mode.o \
  49. ./focaltech_touch/focaltech_gesture.o \
  50. ./focaltech_touch/focaltech_esdcheck.o \
  51. ./focaltech_touch/focaltech_point_report_check.o \
  52. ./focaltech_touch/focaltech_i2c.o \
  53. ./focaltech_touch/focaltech_flash.o \
  54. ./focaltech_touch/focaltech_flash/focaltech_upgrade_ft3518.o
  55. obj-$(CONFIG_MSM_TOUCH) += focaltech_fts.o
  56. endif
  57. ifeq ($(CONFIG_TOUCHSCREEN_NT36XXX_I2C), y)
  58. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx.h
  59. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mem_map.h
  60. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mp_ctrlram.h
  61. nt36xxx-i2c-y := \
  62. ./nt36xxx/nt36xxx.o \
  63. ./nt36xxx/nt36xxx_fw_update.o \
  64. ./nt36xxx/nt36xxx_ext_proc.o \
  65. ./nt36xxx/nt36xxx_mp_ctrlram.o
  66. obj-$(CONFIG_MSM_TOUCH) += nt36xxx-i2c.o
  67. endif
  68. ifeq ($(CONFIG_TOUCHSCREEN_GOODIX_BRL), y)
  69. LINUX_INC += -include $(TOUCH_ROOT)/goodix_berlin_driver/goodix_ts_core.h
  70. LINUX_INC += -include $(TOUCH_ROOT)/qts/qts_core.h
  71. LINUX_INC += -include $(TOUCH_ROOT)/qts/qts_core_common.h
  72. goodix_ts-y := \
  73. ./goodix_berlin_driver/goodix_ts_core.o \
  74. ./goodix_berlin_driver/goodix_brl_hw.o \
  75. ./goodix_berlin_driver/goodix_cfg_bin.o \
  76. ./goodix_berlin_driver/goodix_ts_utils.o \
  77. ./goodix_berlin_driver/goodix_brl_fwupdate.o \
  78. ./goodix_berlin_driver/goodix_ts_tools.o \
  79. ./goodix_berlin_driver/goodix_ts_gesture.o \
  80. ./goodix_berlin_driver/goodix_ts_inspect.o \
  81. ./goodix_berlin_driver/goodix_brl_spi.o \
  82. ./goodix_berlin_driver/goodix_brl_i2c.o \
  83. ./qts/qts_core.o
  84. obj-$(CONFIG_MSM_TOUCH) += goodix_ts.o
  85. endif
  86. CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"