Kbuild 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. LINUX_INC += -Iinclude/linux \
  7. -Iinclude/linux/drm \
  8. -Iinclude/linux/gunyah \
  9. -Iinclude/linux/input
  10. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  11. -DANI_LITTLE_BIT_ENDIAN \
  12. -DDOT11F_LITTLE_ENDIAN_HOST \
  13. -DANI_COMPILER_TYPE_GCC \
  14. -DANI_OS_TYPE_ANDROID=6 \
  15. -DPTT_SOCK_SVC_ENABLE \
  16. -Wall\
  17. -Werror\
  18. -D__linux__
  19. KBUILD_CPPFLAGS += $(CDEFINES)
  20. ccflags-y += $(LINUX_INC)
  21. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  22. EXTRA_CFLAGS += -Wmaybe-uninitialized
  23. endif
  24. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  25. EXTRA_CFLAGS += -Wheader-guard
  26. endif
  27. ######### CONFIG_MSM_TOUCH ########
  28. ifeq ($(CONFIG_TOUCHSCREEN_SYNAPTICS_DSX), y)
  29. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx.h
  30. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx_core.h
  31. synaptics_dsx-y := \
  32. ./synaptics_dsx/synaptics_dsx_core.o \
  33. ./synaptics_dsx/synaptics_dsx_i2c.o
  34. obj-$(CONFIG_MSM_TOUCH) += synaptics_dsx.o
  35. endif
  36. ifeq ($(CONFIG_TOUCH_FOCALTECH), y)
  37. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_common.h
  38. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_config.h
  39. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_core.h
  40. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_flash.h
  41. focaltech_fts-y := \
  42. ./focaltech_touch/focaltech_core.o \
  43. ./focaltech_touch/focaltech_ex_fun.o \
  44. ./focaltech_touch/focaltech_ex_mode.o \
  45. ./focaltech_touch/focaltech_gesture.o \
  46. ./focaltech_touch/focaltech_esdcheck.o \
  47. ./focaltech_touch/focaltech_point_report_check.o \
  48. ./focaltech_touch/focaltech_i2c.o \
  49. ./focaltech_touch/focaltech_flash.o \
  50. ./focaltech_touch/focaltech_flash/focaltech_upgrade_ft3518.o
  51. obj-$(CONFIG_MSM_TOUCH) += focaltech_fts.o
  52. endif
  53. ifeq ($(CONFIG_TOUCHSCREEN_NT36XXX_I2C), y)
  54. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx.h
  55. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mem_map.h
  56. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mp_ctrlram.h
  57. nt36xxx-i2c-y := \
  58. ./nt36xxx/nt36xxx.o \
  59. ./nt36xxx/nt36xxx_fw_update.o \
  60. ./nt36xxx/nt36xxx_ext_proc.o \
  61. ./nt36xxx/nt36xxx_mp_ctrlram.o
  62. obj-$(CONFIG_MSM_TOUCH) += nt36xxx-i2c.o
  63. endif
  64. CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"