From 571330f5946e66159228d785103b50b531997508 Mon Sep 17 00:00:00 2001 From: Wendal Chen Date: Mon, 30 Dec 2024 20:06:16 +0800 Subject: [PATCH] add: csdk update a40a194f --- PLAT/core/ld/ec7xxxm_0h00_flash.c | 13 ++-- .../common/inc/mem_map_csdk_718hm.h | 20 +++--- .../common/inc/mem_map_csdk_718pm.h | 19 ++---- .../common/inc/mem_map_csdk_718um.h | 12 ++-- PLAT/libs/metas.json | 62 +++++++++---------- .../developed/debug/inc/dbversion.h | 4 +- PLAT/prebuild/metas.json | 2 +- PLAT/tools/ec716e/comdb.txt | 6 +- PLAT/tools/ec716e/dbversion.h | 4 +- PLAT/tools/ec716s-mid/comdb.txt | 6 +- PLAT/tools/ec716s-mid/dbversion.h | 4 +- PLAT/tools/ec716s/comdb.txt | 6 +- PLAT/tools/ec716s/dbversion.h | 4 +- PLAT/tools/ec718hm-ims/comdb.txt | 6 +- PLAT/tools/ec718hm-ims/dbversion.h | 4 +- PLAT/tools/ec718hm/comdb.txt | 6 +- PLAT/tools/ec718hm/dbversion.h | 4 +- PLAT/tools/ec718p/comdb.txt | 6 +- PLAT/tools/ec718p/dbversion.h | 4 +- PLAT/tools/ec718pm-ims/comdb.txt | 6 +- PLAT/tools/ec718pm-ims/dbversion.h | 4 +- PLAT/tools/ec718pm/comdb.txt | 6 +- PLAT/tools/ec718pm/dbversion.h | 4 +- PLAT/tools/ec718pv/comdb.txt | 6 +- PLAT/tools/ec718pv/dbversion.h | 4 +- PLAT/tools/ec718s-mid/comdb.txt | 6 +- PLAT/tools/ec718s-mid/dbversion.h | 4 +- PLAT/tools/ec718s/comdb.txt | 6 +- PLAT/tools/ec718s/dbversion.h | 4 +- PLAT/tools/ec718u-ims/comdb.txt | 6 +- PLAT/tools/ec718u-ims/dbversion.h | 4 +- PLAT/tools/ec718u/comdb.txt | 6 +- PLAT/tools/ec718u/dbversion.h | 4 +- PLAT/tools/ec718um-ims/comdb.txt | 6 +- PLAT/tools/ec718um-ims/dbversion.h | 4 +- PLAT/tools/ec718um/comdb.txt | 6 +- PLAT/tools/ec718um/dbversion.h | 4 +- 37 files changed, 133 insertions(+), 149 deletions(-) diff --git a/PLAT/core/ld/ec7xxxm_0h00_flash.c b/PLAT/core/ld/ec7xxxm_0h00_flash.c index 4139c9d..6b67b5c 100644 --- a/PLAT/core/ld/ec7xxxm_0h00_flash.c +++ b/PLAT/core/ld/ec7xxxm_0h00_flash.c @@ -85,12 +85,6 @@ SECTIONS Image$$LOAD_AP_PIRAM_UNCOMP_MSMB$$Length = SIZEOF(.load_ap_piram_uncomp_msmb); // psram part3 for customer - .csdk_sect_ap_psram_p2_unued (NOLOAD): ALIGN(4) - { - . = ALIGN(4); - *(.csdk_sect_ap_psram_p2_unued.*) - . = ALIGN(4); - } >PSRAM_P2_AREA .load_ap_psram_p2_ram : ALIGN(4) { @@ -499,14 +493,17 @@ SECTIONS Image$$LOAD_AP_FPSRAM_P1_ZI$$Limit = .; } >PSRAM_P1_AREA - .unload_voiceEng_buffer (.|PSRAM_PCACHE1_BASE) (NOLOAD): + . = ALIGN(4); + PROVIDE(end_ap_data = .|PSRAM_PCACHE1_BASE); + PROVIDE(start_up_buffer = up_buf_start); + .unload_voiceEng_buffer start_up_buffer (NOLOAD): { . = ALIGN(4); *(.sect_voiceEngSharebuf.*) . = ALIGN(4); } >PSRAM_P1_AREA - .unload_up_buffer (.|PSRAM_PCACHE1_BASE) (NOLOAD): + .unload_up_buffer (up_buf_start+SIZEOF(.unload_voiceEng_buffer)) (NOLOAD): { . = ALIGN(1024); *(.sect_catShareBuf_data.*) diff --git a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718hm.h b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718hm.h index d789dfb..9efb176 100644 --- a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718hm.h +++ b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718hm.h @@ -360,7 +360,7 @@ flash xip address(from both ap/cp view): 0x00800000---0x01000000 #define XP_DBGRESERVED_BASE_ADDR (0x08000f00) #define IPC_SHAREDMEM_START_ADDR (0x08001000) -#ifdef OPEN_CPU_MODE + #if FEATURE_IMS_ENABLE #ifdef FEATURE_IMS_USE_PSRAM_ENABLE #define min_heap_size_threshold 0x57800//ims heap(250KB) will also use heap @@ -368,12 +368,12 @@ flash xip address(from both ap/cp view): 0x00800000---0x01000000 #define min_heap_size_threshold 0x5F000//ims heap(280KB) will also use heap #endif #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa086000 // should be 4 byte align #else #if defined(FEATURE_IMS_CC_ENABLE) || defined(FEATURE_AUDIO_ENABLE) -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa066000 // should be 4 byte align #endif #endif @@ -382,23 +382,17 @@ flash xip address(from both ap/cp view): 0x00800000---0x01000000 #define min_heap_size_threshold 0x19000 #if defined (FEATURE_AMR_CP_ENABLE) && defined (FEATURE_VEM_CP_ENABLE) #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #endif #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a066000 // should be 4 byte align #endif #endif #define UP_BUF_MAX_SIZE 0x3CA00//only upbuf size, need another 512B for other buf also in this region -#else -#define min_heap_size_threshold 0x20000 -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align -#define UP_BUF_MAX_SIZE 0x66D00//only upbuf size, need another 512B for other buf also in this region -#endif - #if (PSRAM_EXIST==1) #define heap_boundary_psram PSRAM_END_ADDR #define cust_min_heap_size_threshold (0x32000) // min heap size threshold is 200K. diff --git a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718pm.h b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718pm.h index 3f7ecc1..f22f82a 100644 --- a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718pm.h +++ b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718pm.h @@ -379,7 +379,6 @@ flash xip address(from both ap/cp view): 0x00800000---0x00c00000 #define IPC_SHAREDMEM_START_ADDR (0x08001000) -#ifdef OPEN_CPU_MODE #if FEATURE_IMS_ENABLE #ifdef FEATURE_IMS_USE_PSRAM_ENABLE #define min_heap_size_threshold 0x57800//ims heap(250KB) will also use heap @@ -387,13 +386,13 @@ flash xip address(from both ap/cp view): 0x00800000---0x00c00000 #define min_heap_size_threshold 0x5F000//ims heap(280KB) will also use heap #endif #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #else #if defined(FEATURE_IMS_CC_ENABLE) || defined(FEATURE_AUDIO_ENABLE) -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa066000 // should be 4 byte align #endif #endif @@ -402,23 +401,17 @@ flash xip address(from both ap/cp view): 0x00800000---0x00c00000 #define min_heap_size_threshold 0x19000 #if defined (FEATURE_AMR_CP_ENABLE) && defined (FEATURE_VEM_CP_ENABLE) #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #endif #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a066000 // should be 4 byte align #endif #endif #define UP_BUF_MAX_SIZE 0x3CA00//only upbuf size, need another 512B for other buf also in this region -#else -#define min_heap_size_threshold 0x20000 -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align -#define UP_BUF_MAX_SIZE 0x66D00//only upbuf size, need another 512B for other buf also in this region - -#endif #if (PSRAM_EXIST==1) #define heap_boundary_psram PSRAM_END_ADDR diff --git a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718um.h b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718um.h index d562c54..cc27c05 100644 --- a/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718um.h +++ b/PLAT/device/target/board/ec7xx_0h00/common/inc/mem_map_csdk_718um.h @@ -368,12 +368,12 @@ flash xip address(from both ap/cp view): 0x00800000---0x01000000 #define min_heap_size_threshold 0x5F000//ims heap(280KB) will also use heap #endif #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa086000 // should be 4 byte align #else #if defined(FEATURE_IMS_CC_ENABLE) || defined(FEATURE_AUDIO_ENABLE) -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0xa066000 // should be 4 byte align #endif #endif @@ -382,12 +382,12 @@ flash xip address(from both ap/cp view): 0x00800000---0x01000000 #define min_heap_size_threshold 0x19000 #if defined (FEATURE_AMR_CP_ENABLE) && defined (FEATURE_VEM_CP_ENABLE) #if FEATURE_SUPPORT_APP_PCM_MEM_POOL//hal app mem pool 640*3+8align to 2K -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a086000 // should be 4 byte align #endif #else -#define up_buf_start PSRAM_APMEM_END_ADDR // should be 4 byte align +#define up_buf_start 0x0a066000 // should be 4 byte align #endif #endif diff --git a/PLAT/libs/metas.json b/PLAT/libs/metas.json index 48d3e6c..de6e6ae 100644 --- a/PLAT/libs/metas.json +++ b/PLAT/libs/metas.json @@ -1,66 +1,66 @@ { "version": "1.0", - "update_time": "2024-12-27 18:33:43.370233", + "update_time": "2024-12-30 19:59:30.009037", "libs": { "ec718u": { - "sha1": "3a3adc74ce2e976c46ffafe0e511c3138036c853", - "size": 7246238 + "sha1": "5010d6b0bf178ceb3b3b70cf1bf54f000fcb63b5", + "size": 7247292 }, "ec718u-ims": { - "sha1": "c688614477e02b3fe9a7c5976a3ca599ee05e80c", - "size": 7372481 + "sha1": "b931d1071569ccbc73e128903936817814deb354", + "size": 7377323 }, "ec718um": { - "sha1": "c67ff21a0ac9ca1652169686755911221709b687", - "size": 7329760 + "sha1": "5873bd8a7782a505d5d10c0bab9de4326b84bd17", + "size": 7327022 }, "ec718um-ims": { - "sha1": "c9d029d47869fa785161de39cf6d8553620cf77a", - "size": 7461894 + "sha1": "7aa705ddc7037e67e6578cc650e2d235144953ee", + "size": 7463064 }, "ec718hm": { - "sha1": "a65534499e77259386fa117b6f8dcd4d2f8b3af8", - "size": 7321931 + "sha1": "ef38d36836aae32b84e909081b51b333b62f6353", + "size": 7325246 }, "ec718hm-ims": { - "sha1": "6ab2a4278cc09b42705aa64f2fa99722e6dcd8ed", - "size": 7463254 + "sha1": "cc4e6a2cc76a783a8f375bbc37ce5b7f7360e142", + "size": 7470712 }, "ec718pm": { - "sha1": "b39b539036b83bf0ea051e8ccc1e7ef830733658", - "size": 7325139 + "sha1": "800feb6ee49b5a5f154fc0f6f53080a5744181fe", + "size": 7314106 }, "ec718pm-ims": { - "sha1": "09c4b8103d167b3923a663bf373c9a32fed4fd43", - "size": 7458043 + "sha1": "d81966c92c1de01cf7959f2ade049893be4cb59a", + "size": 7458995 }, "ec716e": { - "sha1": "594a16ae591b4cf0c670f712eadd4356758f1556", - "size": 7141007 + "sha1": "986ff61f00bb96b88d8bd51b71a0af8db771df4d", + "size": 7146530 }, "ec718p": { - "sha1": "1dcd2aa1ca6ef99d6a5bbc5cae1f752bb122d0db", - "size": 7242402 + "sha1": "afe2271e544277447aabb223d4531c716dd6e4a2", + "size": 7247982 }, "ec718pv": { - "sha1": "043cc84a61f6ecb02d8baad87bff1e4de00887ab", - "size": 7389707 + "sha1": "9f4a40162a4c8be38a8f26fe489f83b4294f55c8", + "size": 7394596 }, "ec718s": { - "sha1": "818639b42c10fccda81b2a06ba3ded02433743aa", - "size": 13627254 + "sha1": "74cd6801ea9629915960d5eb25f3c31815133a77", + "size": 13616090 }, "ec718s-mid": { - "sha1": "681f1c24c210024f5b4cfb8e6a1c8cb3c56b098f", - "size": 13387754 + "sha1": "3efab4e9f66b3fe5344d4ca24ecc3c09c0655791", + "size": 13383003 }, "ec716s": { - "sha1": "098a27f3f0d6f905d67232565a46485ae360a425", - "size": 13586721 + "sha1": "4ed647c6ea25fdf5c45b768e67118836e801cb1f", + "size": 13593919 }, "ec716s-mid": { - "sha1": "b0c731a13f22015ac3f3cff24f1ac58a9ccebe3d", - "size": 13347998 + "sha1": "094e76c5d85acb6b12c157d0b83b031c548bf420", + "size": 13343054 } } } \ No newline at end of file diff --git a/PLAT/middleware/developed/debug/inc/dbversion.h b/PLAT/middleware/developed/debug/inc/dbversion.h index 92f6aee..a60d0fa 100644 --- a/PLAT/middleware/developed/debug/inc/dbversion.h +++ b/PLAT/middleware/developed/debug/inc/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:31:43 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:57:31 2024 -#define DB_VERSION_UNIQ_ID "0x42d812cd" +#define DB_VERSION_UNIQ_ID "0x3ee47452" #endif //_DB_VERSION_H diff --git a/PLAT/prebuild/metas.json b/PLAT/prebuild/metas.json index 05e40e6..09edfe9 100644 --- a/PLAT/prebuild/metas.json +++ b/PLAT/prebuild/metas.json @@ -1,6 +1,6 @@ { "version": "1.0", - "update_time": "2024-12-27 18:39:18.745314", + "update_time": "2024-12-30 20:04:52.502500", "libs": {}, "prebuild": { "sha1": "7f485f1f06171b4bc95466059adfce9df89995bb", diff --git a/PLAT/tools/ec716e/comdb.txt b/PLAT/tools/ec716e/comdb.txt index e5bc699..85df760 100644 --- a/PLAT/tools/ec716e/comdb.txt +++ b/PLAT/tools/ec716e/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1717047824,100 +80102041,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:21:33 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:49:35 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_1,P_ERROR,swLogPrintf("Incorrect ICS stage ( %d ) for new euArfcn arranged for ICS MEAS "); @@ -9683,5 +9683,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,C215C6D3A78C744B38535DC8CA3FB7E871C8F995E2C7A4E0C5862A328052D3D3 +optional_sk_01,A952B57CB7BE1370000940206C6ED2AF658BAD7F543C450F81902E62D88F48F0 diff --git a/PLAT/tools/ec716e/dbversion.h b/PLAT/tools/ec716e/dbversion.h index 49f95fc..3385689 100644 --- a/PLAT/tools/ec716e/dbversion.h +++ b/PLAT/tools/ec716e/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:21:34 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:49:35 2024 -#define DB_VERSION_UNIQ_ID "0x66581210" +#define DB_VERSION_UNIQ_ID "0x04c64299" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec716s-mid/comdb.txt b/PLAT/tools/ec716s-mid/comdb.txt index febd96f..31aca3e 100644 --- a/PLAT/tools/ec716s-mid/comdb.txt +++ b/PLAT/tools/ec716s-mid/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1121456845,100 +1055159378,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:31:43 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:57:31 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_1,P_ERROR,swLogPrintf("Incorrect ICS stage ( %d ) for new euArfcn arranged for ICS MEAS "); @@ -8952,5 +8952,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,DD7FAC749BA27D39A35CD7055AD6D88E0F44B6304A71EC66C0D422DAB2457314 +optional_sk_01,A9F6A38E3B3B99318C230A0DD2F663798880C08F45766D4A764F6876F257716B diff --git a/PLAT/tools/ec716s-mid/dbversion.h b/PLAT/tools/ec716s-mid/dbversion.h index 92f6aee..a60d0fa 100644 --- a/PLAT/tools/ec716s-mid/dbversion.h +++ b/PLAT/tools/ec716s-mid/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:31:43 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:57:31 2024 -#define DB_VERSION_UNIQ_ID "0x42d812cd" +#define DB_VERSION_UNIQ_ID "0x3ee47452" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec716s/comdb.txt b/PLAT/tools/ec716s/comdb.txt index 3c2e518..e55f249 100644 --- a/PLAT/tools/ec716s/comdb.txt +++ b/PLAT/tools/ec716s/comdb.txt @@ -1,8 +1,8 @@ DbVersion -60126097,100 +1976829701,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:29:27 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:55:25 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_1,P_ERROR,swLogPrintf("Incorrect ICS stage ( %d ) for new euArfcn arranged for ICS MEAS "); @@ -8975,5 +8975,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,916088866D4F39616D95F78EF890BF39C8A76797F988ACAA1B0C1FAA8771AE1B +optional_sk_01,3FC236A4CBF3A14B42088F39EBBBB78E28B790B7BFC23617A74686014BF06843 diff --git a/PLAT/tools/ec716s/dbversion.h b/PLAT/tools/ec716s/dbversion.h index c367312..de3d60e 100644 --- a/PLAT/tools/ec716s/dbversion.h +++ b/PLAT/tools/ec716s/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:29:28 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:55:25 2024 -#define DB_VERSION_UNIQ_ID "0x03957391" +#define DB_VERSION_UNIQ_ID "0x75d40705" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718hm-ims/comdb.txt b/PLAT/tools/ec718hm-ims/comdb.txt index bec27a4..f9f7534 100644 --- a/PLAT/tools/ec718hm-ims/comdb.txt +++ b/PLAT/tools/ec718hm-ims/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1634145156,100 +487340154,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:18:02 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:45:36 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -17623,5 +17623,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,BE1A7F4847B9949D4075AA9C4584613B35889827107935ECCB562C47CDFBA5B0 +optional_sk_01,7AFFC0343F56ED130A6FE46DB34876E715360EED1CD096E5B8D44F4B6F2CBD6D diff --git a/PLAT/tools/ec718hm-ims/dbversion.h b/PLAT/tools/ec718hm-ims/dbversion.h index 064c15d..dadac8f 100644 --- a/PLAT/tools/ec718hm-ims/dbversion.h +++ b/PLAT/tools/ec718hm-ims/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:18:03 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:45:36 2024 -#define DB_VERSION_UNIQ_ID "0x61671384" +#define DB_VERSION_UNIQ_ID "0x1d0c387a" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718hm/comdb.txt b/PLAT/tools/ec718hm/comdb.txt index fa3a8ba..4085327 100644 --- a/PLAT/tools/ec718hm/comdb.txt +++ b/PLAT/tools/ec718hm/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1903045601,100 +38355877,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:16:53 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:44:03 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -9967,5 +9967,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,094C7B21969B4DD461204F9A073212C197894F9F98E9762091F5B00748F497AD +optional_sk_01,7EECE6464F064F9754A117654FF9679FC782CCFD630EB10B61AADDF0328E7F39 diff --git a/PLAT/tools/ec718hm/dbversion.h b/PLAT/tools/ec718hm/dbversion.h index 1d608d6..fe3de73 100644 --- a/PLAT/tools/ec718hm/dbversion.h +++ b/PLAT/tools/ec718hm/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:16:54 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:44:04 2024 -#define DB_VERSION_UNIQ_ID "0x716e2be1" +#define DB_VERSION_UNIQ_ID "0x024943a5" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718p/comdb.txt b/PLAT/tools/ec718p/comdb.txt index 5dcd7b1..7e6e463 100644 --- a/PLAT/tools/ec718p/comdb.txt +++ b/PLAT/tools/ec718p/comdb.txt @@ -1,8 +1,8 @@ DbVersion -756028184,100 +445142329,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:22:39 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:50:17 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -9953,5 +9953,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,129FF1D5EDA5890BC8F07E766AC049F91D6CFC0F387C0055ECE409C3FBE95618 +optional_sk_01,DE5174DA7D0CC005EEA871CBD13924A4E3045F7FE7B927A70059A566C7C068C0 diff --git a/PLAT/tools/ec718p/dbversion.h b/PLAT/tools/ec718p/dbversion.h index df32ea8..262dcca 100644 --- a/PLAT/tools/ec718p/dbversion.h +++ b/PLAT/tools/ec718p/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:22:39 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:50:17 2024 -#define DB_VERSION_UNIQ_ID "0x2d101318" +#define DB_VERSION_UNIQ_ID "0x1a885539" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718pm-ims/comdb.txt b/PLAT/tools/ec718pm-ims/comdb.txt index 6658b0f..728f972 100644 --- a/PLAT/tools/ec718pm-ims/comdb.txt +++ b/PLAT/tools/ec718pm-ims/comdb.txt @@ -1,8 +1,8 @@ DbVersion -169566902,100 +1023746009,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:20:26 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:48:39 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -17623,5 +17623,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,761E7A20FC2D582DB11727BAABB04F79ED7595234630A0983ACBFEA08FFF7FA0 +optional_sk_01,924ECD8E3F2D7D472C1BDD361620F98DE5F83A2088C268C1AA959BE285682238 diff --git a/PLAT/tools/ec718pm-ims/dbversion.h b/PLAT/tools/ec718pm-ims/dbversion.h index e2edd6d..e269e87 100644 --- a/PLAT/tools/ec718pm-ims/dbversion.h +++ b/PLAT/tools/ec718pm-ims/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:20:27 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:48:40 2024 -#define DB_VERSION_UNIQ_ID "0x0a1b62b6" +#define DB_VERSION_UNIQ_ID "0x3d051fd9" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718pm/comdb.txt b/PLAT/tools/ec718pm/comdb.txt index e9bbd40..0d328fb 100644 --- a/PLAT/tools/ec718pm/comdb.txt +++ b/PLAT/tools/ec718pm/comdb.txt @@ -1,8 +1,8 @@ DbVersion -602239575,100 +798843474,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:19:18 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:47:08 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -9967,5 +9967,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,11C4D1FD552081AEB3D9C8C1224F5BF19E11E43E23E137493A17F4D59C77BDEB +optional_sk_01,2E84621B25B543AD2852262E88C808ED15F9100F7EB4F5E53F213509294E7C9E diff --git a/PLAT/tools/ec718pm/dbversion.h b/PLAT/tools/ec718pm/dbversion.h index 86938d2..9bf912f 100644 --- a/PLAT/tools/ec718pm/dbversion.h +++ b/PLAT/tools/ec718pm/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:19:18 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:47:08 2024 -#define DB_VERSION_UNIQ_ID "0x23e57257" +#define DB_VERSION_UNIQ_ID "0x2f9d6252" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718pv/comdb.txt b/PLAT/tools/ec718pv/comdb.txt index 5af46fa..fb42851 100644 --- a/PLAT/tools/ec718pv/comdb.txt +++ b/PLAT/tools/ec718pv/comdb.txt @@ -1,8 +1,8 @@ DbVersion -2026124450,100 +1171614244,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:23:45 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:51:00 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -17627,5 +17627,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,2BF9EC209B91DBCB44D6615CC168373D32C1B530EEADC7B235744ED0F649D7CD +optional_sk_01,C9269C6D8D4E10A6C6C594D8D06A127CDB42475307474188B10771A7FC1E6AF1 diff --git a/PLAT/tools/ec718pv/dbversion.h b/PLAT/tools/ec718pv/dbversion.h index 6cda40e..52ad432 100644 --- a/PLAT/tools/ec718pv/dbversion.h +++ b/PLAT/tools/ec718pv/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:23:46 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:51:01 2024 -#define DB_VERSION_UNIQ_ID "0x78c434a2" +#define DB_VERSION_UNIQ_ID "0x45d56a24" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718s-mid/comdb.txt b/PLAT/tools/ec718s-mid/comdb.txt index b6e10f7..560738e 100644 --- a/PLAT/tools/ec718s-mid/comdb.txt +++ b/PLAT/tools/ec718s-mid/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1166087432,100 +1950756395,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:27:12 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:53:34 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_1,P_ERROR,swLogPrintf("Incorrect ICS stage ( %d ) for new euArfcn arranged for ICS MEAS "); @@ -8684,5 +8684,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,5CE16874BD09F3EB9976216B8BB88DB1B5D4980FC2D8D78EF00426769FA0B177 +optional_sk_01,9B63929A2F2E2BCA609021217BF6230D76D3D89A0F18728881EF3D1AA8F53A33 diff --git a/PLAT/tools/ec718s-mid/dbversion.h b/PLAT/tools/ec718s-mid/dbversion.h index a8ef2a0..3ecfea5 100644 --- a/PLAT/tools/ec718s-mid/dbversion.h +++ b/PLAT/tools/ec718s-mid/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:27:12 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:53:35 2024 -#define DB_VERSION_UNIQ_ID "0x45811508" +#define DB_VERSION_UNIQ_ID "0x74462e2b" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718s/comdb.txt b/PLAT/tools/ec718s/comdb.txt index 9eb3410..d3044ae 100644 --- a/PLAT/tools/ec718s/comdb.txt +++ b/PLAT/tools/ec718s/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1015043315,100 +1864515395,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:24:51 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:51:43 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_1,P_ERROR,swLogPrintf("Incorrect ICS stage ( %d ) for new euArfcn arranged for ICS MEAS "); @@ -8707,5 +8707,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,6528EF359A57A079EEBA4137A22F4AA9D85B159D8FBF97D9162AE232725361BF +optional_sk_01,B49F93B2E37DB427CC8966798B9C678CF0B4D21878047BF57F7567DA3FDF1F14 diff --git a/PLAT/tools/ec718s/dbversion.h b/PLAT/tools/ec718s/dbversion.h index 134cf51..4cafd48 100644 --- a/PLAT/tools/ec718s/dbversion.h +++ b/PLAT/tools/ec718s/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:24:51 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:51:44 2024 -#define DB_VERSION_UNIQ_ID "0x3c8054f3" +#define DB_VERSION_UNIQ_ID "0x6f223f43" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718u-ims/comdb.txt b/PLAT/tools/ec718u-ims/comdb.txt index f13f401..648ed53 100644 --- a/PLAT/tools/ec718u-ims/comdb.txt +++ b/PLAT/tools/ec718u-ims/comdb.txt @@ -1,8 +1,8 @@ DbVersion -1845963976,100 +202315862,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:13:32 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:39:53 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -17550,5 +17550,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,9F872374A7F97DA8921765B3089C0308D3E9FD0B21343863BEC9C95B1D39387A +optional_sk_01,38225ABD7FF46A6FF0BF08B141C2C7082C22A673E81C181B292F37C3F30F06E6 diff --git a/PLAT/tools/ec718u-ims/dbversion.h b/PLAT/tools/ec718u-ims/dbversion.h index 62e86fe..2951ef3 100644 --- a/PLAT/tools/ec718u-ims/dbversion.h +++ b/PLAT/tools/ec718u-ims/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:13:33 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:39:54 2024 -#define DB_VERSION_UNIQ_ID "0x6e072cc8" +#define DB_VERSION_UNIQ_ID "0x0c0f1856" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718u/comdb.txt b/PLAT/tools/ec718u/comdb.txt index ff2ca48..71a0347 100644 --- a/PLAT/tools/ec718u/comdb.txt +++ b/PLAT/tools/ec718u/comdb.txt @@ -1,8 +1,8 @@ DbVersion -983977592,100 +1388669427,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:12:28 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:39:19 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -9886,5 +9886,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,FC75A5FE5A99B49EC654889C33609B9421DB898A9BFC0FE60D7E8964AD83970D +optional_sk_01,63547E9DEA9B3396764D8255F547BF6F2812107B40C65C32643DA2DD8129C470 diff --git a/PLAT/tools/ec718u/dbversion.h b/PLAT/tools/ec718u/dbversion.h index 325dcf3..33ecce9 100644 --- a/PLAT/tools/ec718u/dbversion.h +++ b/PLAT/tools/ec718u/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:12:28 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:39:19 2024 -#define DB_VERSION_UNIQ_ID "0x3aa64e78" +#define DB_VERSION_UNIQ_ID "0x52c569f3" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718um-ims/comdb.txt b/PLAT/tools/ec718um-ims/comdb.txt index 8d4cf62..13551e3 100644 --- a/PLAT/tools/ec718um-ims/comdb.txt +++ b/PLAT/tools/ec718um-ims/comdb.txt @@ -1,8 +1,8 @@ DbVersion -151389676,100 +1583221988,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:15:45 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:42:30 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -17623,5 +17623,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,258A7AAEAE910E839A0AF55D7958400A1A095BC80533D22D747CAD8F2E9AB97D +optional_sk_01,A2070CE4312B74A2D2F6E254CF7F833B4032F5BD957A81631D1526CFEAA3676C diff --git a/PLAT/tools/ec718um-ims/dbversion.h b/PLAT/tools/ec718um-ims/dbversion.h index bac3eda..476c197 100644 --- a/PLAT/tools/ec718um-ims/dbversion.h +++ b/PLAT/tools/ec718um-ims/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:15:46 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:42:31 2024 -#define DB_VERSION_UNIQ_ID "0x090605ec" +#define DB_VERSION_UNIQ_ID "0x5e5e0ce4" #endif //_DB_VERSION_H diff --git a/PLAT/tools/ec718um/comdb.txt b/PLAT/tools/ec718um/comdb.txt index 67e0f9e..799b806 100644 --- a/PLAT/tools/ec718um/comdb.txt +++ b/PLAT/tools/ec718um/comdb.txt @@ -1,8 +1,8 @@ DbVersion -403384678,100 +1148000041,100 BuildInfo -The current data file was built by the Application Ver. 2.2.81.216, Fri Dec 27 18:14:36 2024 +The current data file was built by the Application Ver. 2.2.81.216, Mon Dec 30 19:40:58 2024 EnumVals 0,0,0,0,PHY_ONLINE,PHY_ICS_MODULE,PhyIcsMeasMainEntrance_0,P_INFO,swLogPrintf("ICS MEAS of euArfcn %d will be started "); @@ -9967,5 +9967,5 @@ MW_INFO_PHY_EDRX_PARAM,midWareNvmInfoPhyEdrxParam plat_config,plat_config_fs_t OptionalSegment -optional_sk_01,1E6EA4D53CB6F6C13E73A0129CC173357E63A22F73D08C3E5AE2F23B474B029D +optional_sk_01,513494327ED1BD810D880A667ED3503BE5DE0DFEE7A8FB333E6E18C5B1FA94E8 diff --git a/PLAT/tools/ec718um/dbversion.h b/PLAT/tools/ec718um/dbversion.h index df5d245..4950221 100644 --- a/PLAT/tools/ec718um/dbversion.h +++ b/PLAT/tools/ec718um/dbversion.h @@ -1,8 +1,8 @@ #if !defined _DB_VERSION_H #define _DB_VERSION_H -//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Fri Dec 27 18:14:36 2024 +//The file was automatically generated by the PrePass Application Ver 2.2.81.216, Mon Dec 30 19:40:58 2024 -#define DB_VERSION_UNIQ_ID "0x180b2966" +#define DB_VERSION_UNIQ_ID "0x446d1729" #endif //_DB_VERSION_H