From 91cc1acd898ea396116b6590e10ebc72e6bbefd1 Mon Sep 17 00:00:00 2001 From: Yimeng Deng Date: Fri, 7 Feb 2025 15:28:17 +0000 Subject: [PATCH 1/3] 32.298 Rel19 CR1023 Add network slice energy information --- ASN/TS32298_CHFChargingDataTypes.asn | 36 ++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 9989da6..3a62f6b 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -1216,6 +1216,20 @@ InternalGroupIdentifier ::= UTF8String -- -- See 3GPP TS 29.571 [249] for details -- + +-- +-- K +-- +KPIType ::= ENUMERATED +{ + numOfBits (0), + numOfBits_RANBased (1), + invOfLatency (2), + numOfBits_Multiplied_InvOfLatency (3), + maxRegSubs (4), + meanActiveUEs (5) +} + -- -- L -- @@ -1522,6 +1536,21 @@ NcgiTai ::= SEQUENCE tai [0] TAI, cellList [1] SEQUENCE OF Ncgi } + +NetworkSliceEE ::= SEQUENCE +{ + networkSliceType [1] NetworkSliceType OPTIONAL, + kpiType [2] KPIType OPTIONAL, + performance [3] REAL OPTIONAL +} + +NetworkSliceType ::= ENUMERATED +{ + eMBB (0), + uRLLC (1), + mIoT (2) +} + NSACFContainerInformation ::= SEQUENCE { numberOfUEs [0] INTEGER OPTIONAL, @@ -1691,10 +1720,8 @@ NSPAContainerInformation ::= SEQUENCE uplinkThroughput [10] Throughput OPTIONAL, downlinkThroughput [11] Throughput OPTIONAL, maximumPacketLossRateUL [12] INTEGER OPTIONAL, - maximumPacketLossRateDL [13] INTEGER OPTIONAL - - - + maximumPacketLossRateDL [13] INTEGER OPTIONAL, + estimatedEnergyConsumption [14] INTEGER OPTIONAL } NSSAIMap ::= SEQUENCE @@ -2058,6 +2085,7 @@ ServiceProfileChargingInformation ::= SET kPIsMonitoringList [17] OCTET STRING OPTIONAL, supportedAccessTechnology [18] INTEGER OPTIONAL, v2XCommunicationMode [19] V2XCommunicationModeIndicator OPTIONAL, + energyEfficiency [20] NetworkSliceEE OPTIONAL, addServiceProfileChargingInfo [100] OCTET STRING OPTIONAL } -- GitLab From 8b0ec0e4bfbec668924f500ee53f2896a03f70c4 Mon Sep 17 00:00:00 2001 From: Yimeng Deng Date: Fri, 7 Feb 2025 15:37:23 +0000 Subject: [PATCH 2/3] 32.298 Rel19 CR1025 Correction on SMS charging CDR --- ASN/TS32298_CHFChargingDataTypes.asn | 1 + ASN/TS32298_SMSChargingDataTypes.asn | 21 +++++++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 9989da6..72a3ef8 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -57,6 +57,7 @@ FROM GPRSChargingDataTypes {itu-t (0) identified-organization (4) etsi (0) mobil OriginatorInfo, RecipientInfo, +RecipientAddress, SMAddressInfo, SMMessageType, SMSResult, diff --git a/ASN/TS32298_SMSChargingDataTypes.asn b/ASN/TS32298_SMSChargingDataTypes.asn index dd8e8c2..8cf18a3 100644 --- a/ASN/TS32298_SMSChargingDataTypes.asn +++ b/ASN/TS32298_SMSChargingDataTypes.asn @@ -262,8 +262,25 @@ RecipientInfo ::= SEQUENCE recipientReceivedAddress [4] SMAddressInfo OPTIONAL, sMDestinationInterface [5] SMInterface OPTIONAL, sMRecipientProtocolID [6] OCTET STRING OPTIONAL, - recipientOtherAddresses [7] SEQUENCE OF SMAddressInfo OPTIONAL - -- used if type different from IMSI and MSISDN + recipientOtherAddresses [7] SEQUENCE OF SMAddressInfo OPTIONAL, + -- included for backwards compatibility + recipientOtherAddresses [8] SEQUENCE OF RecipientAddress OPTIONAL +} + +RecipientAddress ::= SEQUENCE +{ + recipientAddressInfo [0] SMAddressInfo OPTIONAL, + sMAddresseeType [1] SMAddresseeType OPTIONAL +} + +SMAddresseeType ::= ENUMERATED +-- +-- identifies the how the recipient is addressed in the header +-- +{ + tO (0), + cC (1), + bCC (2) } SMAddressDomain ::= SEQUENCE -- GitLab From 8733388dd251fb50dfece7fdedee419e5b020791 Mon Sep 17 00:00:00 2001 From: Yimeng Deng Date: Wed, 19 Feb 2025 22:33:42 +0000 Subject: [PATCH 3/3] CR1023 rev1 --- ASN/TS32298_CHFChargingDataTypes.asn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 3a62f6b..2407f86 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -1223,9 +1223,9 @@ InternalGroupIdentifier ::= UTF8String KPIType ::= ENUMERATED { numOfBits (0), - numOfBits_RANBased (1), + numOfBitsRANBased (1), invOfLatency (2), - numOfBits_Multiplied_InvOfLatency (3), + numOfBitsInvOfLatency (3), maxRegSubs (4), meanActiveUEs (5) } -- GitLab