No Paging On LTE Due To No TAU Procedure: Application Note

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

Qualcomm Technologies, Inc.

No Paging on LTE Due to No TAU Procedure


Application Note
80-P4065-1 A
December 3, 2015

Confidential and Proprietary – Qualcomm Technologies, Inc.

© 2015 Qualcomm Technologies, Inc. and/or its affiliated companies. All rights reserved.

NO PUBLIC DISCLOSURE PERMITTED: Please report postings of this document on public servers or websites to:
DocCtrlAgent@qualcomm.com.
Not to be used, copied, reproduced, or modified in whole or in part, nor its contents revealed in any manner to others without the
express written permission of Qualcomm Technologies, Inc.
Other Qualcomm products referenced herein are products of Qualcomm Technologies, Inc. or its subsidiaries.
Restricted Distribution: Not to be distributed to anyone who is not an employee of either Qualcomm Technologies, Inc. or its
affiliated companies without the express approval of Qualcomm Configuration Management.
Qualcomm is a trademark of Qualcomm Incorporated, registered in the United States and other countries. All Qualcomm
Incorporated trademarks are used with permission. Other product and brand names may be trademarks or registered trademarks of
their respective owners.
This technical data may be subject to U.S. and international export, re-export, or transfer (“export”) laws. Diversion contrary to U.S.
and international law is strictly prohibited.
Qualcomm Technologies, Inc.
5775 Morehouse Drive
San Diego, CA 92121
U.S.A.
Revision history

Revision Date Description


A Dec 2015 Initial release
Note: There is no Rev. I, O, Q, S, X, or Z per Mil. standards.

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 3


Confidential and Proprietary – Qualcomm Technologies, Inc.
Contents

1 Introduction...................................................................................................... 5
1.1 Purpose.......................................................................................................................... 5
1.2 Conventions .................................................................................................................. 5
1.3 Technical assistance ...................................................................................................... 5

2 No Paging on LTE Issue.................................................................................. 6


2.1 Issue description ........................................................................................................... 6
2.2 Issue Analysis ............................................................................................................... 6
2.3 Impact ........................................................................................................................... 7
2.4 Change description ....................................................................................................... 7
2.5 Code change .................................................................................................................. 7

A References....................................................................................................... 9
A.1 Related documents ....................................................................................................... 9
A.2 Acronyms and terms .................................................................................................... 9

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 4


Confidential and Proprietary – Qualcomm Technologies, Inc.
1 Introduction

1.1 Purpose
This document describes why the UE does not send TAU Req with type2 after CSFB MT call
release and NW does not send MT paging anymore, which leads to a MT call failure. A
workaround for the network issue is provided, with the suggested code that solves the issue.

1.2 Conventions
Function declarations, function names, type declarations, attributes, and code samples appear in a
different font, for example, #include.
Code variables appear in angle brackets, for example, <number>.
Commands to be entered appear in a different font, e.g., copy a:*.* b:.
Button and key names appear in bold font, for example, click Save or press Enter.
Shading indicates content that has been added or changed in this revision of the document.

1.3 Technical assistance


For assistance or clarification on information in this document, submit a case to Qualcomm
Technologies, Inc. (QTI) at https://support.cdmatech.com/.
If you do not have access to the CDMATech Support website, register for access or send email to
support.cdmatech@qti.qualcomm.com.

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 5


Confidential and Proprietary – Qualcomm Technologies, Inc.
2 No Paging on LTE Issue

2.1 Issue description


Issue Scenario
1. UE receives Paging on LTE and sends ESR.
2. UE moves to UMTS cell via redirection.
3. UE sends Paging Response but no response is received from the network.
4. The network releases the RRC connection and redirects the UE to LTE.
5. UE moves to LTE Idle.
6. UE sends TAU Req with type1.
7. The MT call fails.

2.2 Issue Analysis


With FR#3726, NAS will update SGs status (i.e. performing TAU with IMSI Attach on returning
to LTE) after
 RR Connection is established for LU in GSM.
 CS session is established for LU in UMTS.
 PS session is established for Combined RAU in UMTS.
 L2 ACK for Combined RAU in GSM on PLs where GPRS L2 ACK is supported.
 Confirming that there is an existing PS session used for Combined RAU in UMTS, for
example, when RAU is triggered after L2W PSHO.
In the current scenario, after the call ends, the NAS sends LU but CS session is not established for
LU because of the Fast Return To LTE feature. So the NAS doesn’t set SG association and
doesn’t need to send TAU on LTE.
As LU is not sent to the network successfully, SG association should not be broken on NW.
Therefore, NW should not expect TAU when UE moves back to LTE. The UE’s behavior is thus
compliant with 3GPP spec.
But some NWs break the SG association in this case. So without TAU proceure on LTE, NW
may think that the UE still stays on UMTS, and sends Paging on UMTS. As a result, the UE on
LTE cannot receive the Paging.
To conclude, this is a NW issue because there is no reason for NW to break SG association in this
case.

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 6


Confidential and Proprietary – Qualcomm Technologies, Inc.
No Paging on LTE Due to No TAU Procedure Application Note No Paging on LTE Issue

2.3 Impact
The UE may miss the Paging on LTE.

2.4 Change description


NAS will set SG assoication flag upon sending LU, so that when coming back to LTE it performs
a TAU.

2.5 Code change


NOTE: If you are viewing this document using a color monitor, or if you print this document to a color
printer, bold red text indicates code that is to be added.

File: mmlu.c
Function: mm_send_lu_request

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 7


Confidential and Proprietary – Qualcomm Technologies, Inc.
No Paging on LTE Due to No TAU Procedure Application Note No Paging on LTE Issue

#if defined(FEATURE_LTE)
if((emm_ctrl_data_ptr->TIN == NAS_MM_TIN_RAT_RELATED_TMSI)
#ifdef FEATURE_SGLTE
&& (MM_IS_SGLTE_ON_PS_STACK_ID)
#endif
)
{
emm_set_and_write_tin_type(NAS_MM_TIN_P_TMSI);
}

/* Do not set the sg association flag if we are in CCO. Because if


CCO fails and UE comes back to LTE, we should not do TAU as LU request is
not sent out to the network. */
if((emm_ctrl_data_ptr->l2gcco_state != EMM_LTOG_CCO_IN_PROGRESS)
#ifdef FEATURE_SGLTE
&& MM_IS_SGLTE_ON_PS_STACK_ID
#endif
)
{
emm_ctrl_data_ptr->sg_association_to_be_established =
NAS_EMM_SG_ASSOC_REQ_DUE_TO_CS_OR_CSPS_PROC;
MSG_HIGH_DS(MM_SUB,"=MM= Set SGs assosicaiton flag - Start
LU",0,0,0);
}
gmm_lte_deact_isr_timer_expired = FALSE;
#endif

mmsend_request_reject_event(TRUE,SMGMM_EVENT_LOCATION_AREA_UPDATE_REQUEST
,lu_cause);

NOTE: This is not a spec-compliant behavior. And this workaround works only in this scenario.

NOTE: There can be more scenarios where page miss can be an issue for China Unicom due to NW
issue.

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 8


Confidential and Proprietary – Qualcomm Technologies, Inc.
A References

A.1 Related documents

Documents

Qualcomm Technologies, Inc.


Application Note: Software Glossary for Customers CL93-V3077-1
Standards
Non-Access-Stratum (NAS) Protocol for Evolved Packet System 3GPP TS 24.301
(EPS)

A.2 Acronyms and terms


N/A.

80-P4065-1 A MAY CONTAIN U.S. AND INTERNATIONAL EXPORT CONTROLLED INFORMATION 9


Confidential and Proprietary – Qualcomm Technologies, Inc.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy