2009年3月31日星期二

MM -> RRC的命令发送与处理

MM -> RRC的命令处理

命令发送

1. Handler file
mmrrcconn.c

2. Handler
send_cmd_to_rrc

3. Comand id file
rrccmd.h

4. Command id
/*--------------------------------------------------------*/
/* Command Ids of RRC commands Sent by MM */
/*--------------------------------------------------------*/

RRC_MM_CMD_BASE = 0x05000000, /* MM commands start here */

/* 0x05000001*/
RRC_SERVICE_REQ,

/* 0x05000002 */
RRC_EST_REQ,

/* 0x05000003 */
RRC_DATA_REQ,

/* 0x05000004 */
RRC_OPEN_SESSION_REQ,

/* 0x05000005 */
RRC_CLOSE_SESSION_REQ,

/* 0x05000006 */
RRC_ABORT_REQ,

/* 0x05000007 */
RRC_PLMN_LIST_REQ,

/* 0x05000008 */
RRC_ACT_REQ,

/* 0x05000009 */
RRC_DEACT_REQ,

/* 0x0500000A */
RRC_STOP_WCDMA_MODE_REQ,

/* 0x0500000B */
RRC_FORBIDDEN_LAI_LIST_UPDATE_REQ,

/* 0x0500000C */
RRC_INVALIDATE_SIM_DATA_REQ,

/* 0x0500000D */
RRC_SIM_INSERTED_REQ,

/* 0x0500000E */
RRC_SIM_UPDATE_REQ,

/* 0x0500000F */
RRC_ACTIVATION_RSP,

/* 0x05000010 */
RRC_CHANGE_MODE_IND,

/* 0x05000011 */
RRC_MODE_CHANGE_REQ,

/* 0x05000012 */
RRC_EQ_PLMN_LIST_CHANGE_IND,

/* 0x05000013 */
RRC_NW_SEL_MODE_RESET_IND,

/* 0x05000014 */
RRC_BPLMN_SEARCH_ABORT_REQ, /* Added for WTOW/WTOG BPLMN SEARCH ABORT */

命令处理
1. Handler file
rrcdispatcher.c

2. Handler
rrc_dispatch_mm_commands

3. Command id file
rrccmd.h

4. Command id
The same with command send

没有评论: