Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. # All rights reserved.
  3. #
  4. # This software is supplied "AS IS" without any warranties.
  5. # RDA assumes no responsibility or liability for the use of the software,
  6. # conveys no license or title under any patent, copyright, or mask work
  7. # right to the product. RDA reserves the right to make changes in the
  8. # software without notification. RDA also make no representation or
  9. # warranty that such application will be suitable for the specified use
  10. # without further testing or modification.
  11. menu "CFW"
  12. config GSM_SUPPORT
  13. bool "Support GSM"
  14. default n if SOC_8811
  15. default n if SOC_8850
  16. default y
  17. config CFW_VOLTE_SUPPORT
  18. bool "Support VOLTE"
  19. depends on QUEC_PROJECT_FEATURE_VOLTE #quectel add
  20. default n if SOC_8811
  21. # default n if SOC_8850 quectel modify
  22. default y
  23. config DEDICATED_BEARER_SUPPORT
  24. bool "Use Support Dedicated bearer"
  25. default n if SOC_8811
  26. default y
  27. config LTE_NBIOT_SUPPORT
  28. bool "Support NBIOT"
  29. default y
  30. config LTE_SUPPORT
  31. bool "Support LTE"
  32. default y if SOC_8910 || SOC_8850
  33. default n
  34. config NUMBER_OF_SIM
  35. int "Number of sim supported"
  36. default 2
  37. help
  38. Number of sum supported.
  39. config EVENT_NAME_ENABLED
  40. bool "Provide function to convert event ID to name"
  41. default x
  42. help
  43. At debugging, it is convenient to show event name rather than
  44. event ID. However, the conversion will take code spaces. Unless
  45. when code size is critical, it is recommended to enable it.
  46. config CFW_PENDING_UTI_COUNT
  47. int "Maximum CFW waiting count"
  48. default 64
  49. help
  50. For each pending UTI, CFW dispatch shall record the response
  51. task, and static memory is used to record this.
  52. config CFW_SKIP_NV_SAVE_RESTORE
  53. bool "Skip CFW NV save and restore"
  54. default n
  55. help
  56. It is for debug only.
  57. When it is defined, CFW NV save and restore are skipped.
  58. config CFW_CALL_WITH_RPC
  59. bool "Use RPC to call CFW API"
  60. default y if SOC_8910
  61. default n
  62. help
  63. When CFW is implemented on other CPU, it is needed to use RPC
  64. to call CFW APIs. In this case, it is needed to enable this.
  65. config CFW_DEBUG_IPFILTER
  66. bool "CFW simple IP filter (debug only)"
  67. default y if SOC_8811
  68. default n
  69. help
  70. When enabled, uplink IP packet will be filtered inside CFW.
  71. Only certain IP packets for debug purpose (such as ICMP, iperf,
  72. DNS and etc) will be sent to stack.
  73. This is for debug only. Don't enable it in real products.
  74. config RPM_SUPPORT
  75. bool "Support RPM"
  76. default n
  77. config CSG_SUPPORT
  78. bool "Support CSG"
  79. default y if SOC_8910
  80. default n
  81. config CFW_CM_SRV_SUPPORT
  82. bool "CFW CM"
  83. default y
  84. config CFW_SS_SRV_SUPPORT
  85. bool "CFW SS"
  86. default y
  87. config CFW_PBK_SRV_SUPPORT
  88. bool "CFW PBK"
  89. default y
  90. config CFW_CB_SRV_SUPPORT
  91. bool "CFW CB"
  92. default y
  93. config CFW_SUPPORT_GLOBAL_APN
  94. bool "The switch for global APN"
  95. default n
  96. config DUAL_SIM_SUPPORT
  97. bool "Support dual sim"
  98. default n
  99. default n if SOC_8811
  100. config FUNC_SUPPORT_SIMLOCK
  101. bool "cp support write simlock data"
  102. default y if SOC_8850
  103. default n
  104. endmenu