123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- # Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- # All rights reserved.
- #
- # This software is supplied "AS IS" without any warranties.
- # RDA assumes no responsibility or liability for the use of the software,
- # conveys no license or title under any patent, copyright, or mask work
- # right to the product. RDA reserves the right to make changes in the
- # software without notification. RDA also make no representation or
- # warranty that such application will be suitable for the specified use
- # without further testing or modification.
- menu "CFW"
- config GSM_SUPPORT
- bool "Support GSM"
- default n if SOC_8811
- default n if SOC_8850
- default y
- config CFW_VOLTE_SUPPORT
- bool "Support VOLTE"
- depends on QUEC_PROJECT_FEATURE_VOLTE #quectel add
- default n if SOC_8811
- # default n if SOC_8850 quectel modify
- default y
- config DEDICATED_BEARER_SUPPORT
- bool "Use Support Dedicated bearer"
- default n if SOC_8811
- default y
- config LTE_NBIOT_SUPPORT
- bool "Support NBIOT"
- default y
- config LTE_SUPPORT
- bool "Support LTE"
- default y if SOC_8910 || SOC_8850
- default n
- config NUMBER_OF_SIM
- int "Number of sim supported"
- default 2
- help
- Number of sum supported.
- config EVENT_NAME_ENABLED
- bool "Provide function to convert event ID to name"
- default x
- help
- At debugging, it is convenient to show event name rather than
- event ID. However, the conversion will take code spaces. Unless
- when code size is critical, it is recommended to enable it.
- config CFW_PENDING_UTI_COUNT
- int "Maximum CFW waiting count"
- default 64
- help
- For each pending UTI, CFW dispatch shall record the response
- task, and static memory is used to record this.
- config CFW_SKIP_NV_SAVE_RESTORE
- bool "Skip CFW NV save and restore"
- default n
- help
- It is for debug only.
- When it is defined, CFW NV save and restore are skipped.
- config CFW_CALL_WITH_RPC
- bool "Use RPC to call CFW API"
- default y if SOC_8910
- default n
- help
- When CFW is implemented on other CPU, it is needed to use RPC
- to call CFW APIs. In this case, it is needed to enable this.
- config CFW_DEBUG_IPFILTER
- bool "CFW simple IP filter (debug only)"
- default y if SOC_8811
- default n
- help
- When enabled, uplink IP packet will be filtered inside CFW.
- Only certain IP packets for debug purpose (such as ICMP, iperf,
- DNS and etc) will be sent to stack.
- This is for debug only. Don't enable it in real products.
- config RPM_SUPPORT
- bool "Support RPM"
- default n
- config CSG_SUPPORT
- bool "Support CSG"
- default y if SOC_8910
- default n
- config CFW_CM_SRV_SUPPORT
- bool "CFW CM"
- default y
- config CFW_SS_SRV_SUPPORT
- bool "CFW SS"
- default y
- config CFW_PBK_SRV_SUPPORT
- bool "CFW PBK"
- default y
- config CFW_CB_SRV_SUPPORT
- bool "CFW CB"
- default y
- config CFW_SUPPORT_GLOBAL_APN
- bool "The switch for global APN"
- default n
- config DUAL_SIM_SUPPORT
- bool "Support dual sim"
- default n
- default n if SOC_8811
- config FUNC_SUPPORT_SIMLOCK
- bool "cp support write simlock data"
- default y if SOC_8850
- default n
- endmenu
|