securemsm_modules.bzl 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. SMCINVOKE_PATH = "smcinvoke"
  2. QSEECOM_PATH = "qseecom"
  3. TZLOG_PATH = "tz_log"
  4. # This dictionary holds all the securemsm-kernel modules included by calling register_securemsm_module
  5. securemsm_modules = {}
  6. securemsm_modules_by_config = {}
  7. # Registers securemsm module to kernel build system.
  8. # name: The name of the module. The name of the file generated for this module will be {name}.ko.
  9. # path: The path that will be prepended to all sources listed for this module.
  10. # config_option: If this module is enabled, the config optiont that will get enabled if so. Not all modules have this, and this is an optional parameter.
  11. # config_srcs: A dictionary of sources to be added to the module depending on if a configuration option is enabled or not. The keys to the dictionary are
  12. # the name of the config option, and the value depends If it is a list, it will just be the list of sources to be added to the module if the config option
  13. # is enabled. If the value is another dictionary, then you can specify sources to be added if the config option is DISABLED by having a list under the
  14. # default_srcs: A list of sources to be added to the module regardless of configuration options.
  15. # deps: A list of kernel_module or ddk_module rules that this module depends on.
  16. def register_securemsm_module(name, path = None, config_option = None, default_srcs = [], config_srcs = {}, deps = [], srcs = [], copts = [], hdrs = []):
  17. processed_config_srcs = {}
  18. for config_src_name in config_srcs:
  19. config_src = config_srcs[config_src_name]
  20. if type(config_src) == "list":
  21. processed_config_srcs[config_src_name] = { True: config_src }
  22. else:
  23. processed_config_srcs[config_src_name] = config_src
  24. module = {
  25. "name": name,
  26. "path": path,
  27. "default_srcs": default_srcs,
  28. "config_srcs": processed_config_srcs,
  29. "config_option": config_option,
  30. "deps": deps,
  31. "copts": copts,
  32. "srcs": srcs,
  33. "hdrs": hdrs,
  34. }
  35. securemsm_modules[name] = module
  36. if config_option:
  37. securemsm_modules_by_config[config_option] = name
  38. # ------------------------------------ SECUREMSM MODULE DEFINITIONS ---------------------------------
  39. register_securemsm_module(
  40. name = "smcinvoke_dlkm",
  41. path = SMCINVOKE_PATH,
  42. default_srcs = [
  43. "smcinvoke.c",
  44. "smcinvoke_kernel.c",
  45. "trace_smcinvoke.h",
  46. "IQSEEComCompat.h",
  47. "IQSEEComCompatAppLoader.h",
  48. ],
  49. deps = [":smcinvoke_kernel_headers"],
  50. hdrs = [":smcinvoke_kernel_headers"],
  51. )
  52. register_securemsm_module(
  53. name = "qseecom_dlkm",
  54. path = QSEECOM_PATH,
  55. default_srcs = ["qseecom.c",
  56. "ice.h"],
  57. deps = [":securemsm_kernel_headers"],
  58. srcs = ["config/sec-kernel_defconfig_qseecom.h"],
  59. copts = ["-include", "config/sec-kernel_defconfig_qseecom.h"],
  60. )
  61. register_securemsm_module(
  62. name = "tz_log_dlkm",
  63. path = TZLOG_PATH,
  64. default_srcs = ["tz_log.c"],
  65. )