rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # Feature Option {#group_feature_option} |
| 2 | # ============================================================================ |
| 3 | # [TOC] |
| 4 | |
| 5 | # > Internal Feature Option is designed for MediaTek internal development. \n |
| 6 | # > MediaTek suggest customer **NOT** to change these feature options. \n |
| 7 | |
| 8 | # ---------------------------------------------------------------------------- |
| 9 | # # PLATFORM_CHIP {#l1_platform_chip} |
| 10 | # ## description |
| 11 | # > PLATFORM_CHIP is used to specify the current working platform chip. \n |
| 12 | # > Most BSP drivers will rely on this feature option. \n |
| 13 | # |
| 14 | # value | definition |
| 15 | # :-------- | :-------------- |
| 16 | # MT6280 | Platform Chip is MT6280 |
| 17 | # MT6290 | Platform Chip is MT6290 |
| 18 | # MT6291 | Platform Chip is MT6291 |
| 19 | # MT6735 | Platform Chip is MT6735 |
| 20 | # MT7620 | Platform Chip is MT7620 |
| 21 | # MT7621 | Platform Chip is MT7621 |
| 22 | # |
| 23 | # ## present value |
| 24 | PLATFORM_CHIP = "MT6735" |
| 25 | |
| 26 | # ---------------------------------------------------------------------------- |
| 27 | # # PRODUCT_MODE {#l1_product_mode} |
| 28 | # ## description |
| 29 | # > PRODUCT_MODE is used to specify the current support product mode. \n |
| 30 | # > MediaTek Software Stack can support kinds of product modes. |
| 31 | # > Each product mode has their own unique functionality. \n |
| 32 | # > These unique functionalities will be enabled, depending on this feature |
| 33 | # > option. \n |
| 34 | # |
| 35 | # value | definition |
| 36 | # :-------- | :-------------- |
| 37 | # HOTSPOT | HOTSPOT mode implement a portable broadband router |
| 38 | # RNDIS | RNDIS mode implement a modem dongle, with a built-in Web Manager |
| 39 | # HOSTED | HOSTED mode implement a modem dongle, needed software installed in host PC |
| 40 | # TABLET | TABLET mode implement a modem module, easily integrated for tablet |
| 41 | # CPE | CPE mode implement a broadband customer premises equipment |
| 42 | # MODULE | MODULE mode implement a modem module |
| 43 | # |
| 44 | # ## present value |
| 45 | PRODUCT_MODE = "MODULE" |
| 46 | |
| 47 | # ---------------------------------------------------------------------------- |
| 48 | # # ARCH_SUPER_DONGLE {#l1_arch_super_dongle} |
| 49 | # ## description |
| 50 | # > Super Dongle is a new architecture for supporting miscellaneous product |
| 51 | # > modes in a single codebase. \n |
| 52 | # |
| 53 | # value | definition |
| 54 | # :-------- | :-------------- |
| 55 | # TRUE | Super Dongle Architecture is enabled |
| 56 | # FALSE | Super Dongle Architecture is disabled |
| 57 | # |
| 58 | # ## present value |
| 59 | ARCH_SUPER_DONGLE = "TRUE" |
| 60 | |
| 61 | # ---------------------------------------------------------------------------- |
| 62 | # # AP_RAM_SIZE {#l1_ap_ram_size} |
| 63 | # ## description |
| 64 | # > AR_RAM_SIZE is used to set AP RAM size. \n |
| 65 | # |
| 66 | # value | definition |
| 67 | # :-------- | :-------------- |
| 68 | # Hex | RAM Size of AP side |
| 69 | # |
| 70 | # ## present value |
| 71 | AP_RAM_SIZE = "0x08000000" |
| 72 | |