blob: ad942eae66c7bb4dde2cbe4cff9f22b7f0725704 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +01002
3#include <osmocom/core/prim.h>
4
Andreas Eversberg227a9de2013-02-07 12:21:33 +01005/*! \brief PH-SAP related primitives (L1<->L2 SAP) */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +01006enum osmo_ph_prim {
7 PRIM_PH_DATA, /*!< \brief PH-DATA */
8 PRIM_PH_RACH, /*!< \brief PH-RANDOM_ACCESS */
9 PRIM_PH_CONN, /*!< \brief PH-CONNECT */
10 PRIM_PH_EMPTY_FRAME, /*!< \brief PH-EMPTY_FRAME */
11 PRIM_PH_RTS, /*!< \brief PH-RTS */
Andreas Eversberg227a9de2013-02-07 12:21:33 +010012 PRIM_MPH_INFO, /*!< \brief MPH-INFO */
13 PRIM_TCH, /*!< \brief TCH */
14 PRIM_TCH_RTS, /*!< \brief TCH */
15};
16
Maxadef12a2016-05-25 15:25:02 +020017extern const struct value_string osmo_ph_prim_names[];
18
Andreas Eversberg227a9de2013-02-07 12:21:33 +010019/*! \brief PH-SAP related primitives (L1<->L2 SAP) */
20enum osmo_mph_info_type {
21 PRIM_INFO_TIME, /*!< \brief Current GSM time */
22 PRIM_INFO_MEAS, /*!< \brief Measurement indication */
23 PRIM_INFO_ACTIVATE, /*!< \brief Activation of channel */
24 PRIM_INFO_DEACTIVATE, /*!< \brief Deactivation of channel */
25 PRIM_INFO_MODIFY, /*!< \brief Mode Modify of channel */
26 PRIM_INFO_ACT_CIPH, /*!< \brief Activation of ciphering */
27 PRIM_INFO_DEACT_CIPH, /*!< \brief Deactivation of ciphering */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +010028};
29
Maxcc00bf82016-02-22 11:03:26 +010030/*! \brief PH-DATA presence information */
31enum osmo_ph_pres_info_type {
32 PRES_INFO_INVALID = 0, /*!< \brief Data is invalid */
33 PRES_INFO_HEADER = 1, /*!< \brief Only header is present and valid */
34 PRES_INFO_FIRST = 3, /*!< \brief First half of data + header are valid (2nd half may be present but invalid) */
35 PRES_INFO_SECOND = 5, /*!< \brief Second half of data + header are valid (1st halfmay be present but invalid) */
36 PRES_INFO_BOTH = 7, /*!< \brief Both parts + header are present and valid */
37 PRES_INFO_UNKNOWN
38};
39
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +010040/*! \brief for PH-RANDOM_ACCESS.req */
41struct ph_rach_req_param {
42 uint8_t ra; /*!< \brief Random Access */
43 uint8_t ta; /*!< \brief Timing Advance */
44 uint8_t tx_power; /*!< \brief Transmit Power */
45 uint8_t is_combined_ccch;/*!< \brief Are we using a combined CCCH? */
46 uint16_t offset; /*!< \brief Timing Offset */
47};
48
49/*! \brief for PH-RANDOM_ACCESS.ind */
50struct ph_rach_ind_param {
Andreas Eversberg610517c2013-06-12 09:21:18 +020051 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +010052 uint8_t ra; /*!< \brief Random Access */
53 uint8_t acc_delay; /*!< \brief Delay in bit periods */
54 uint32_t fn; /*!< \brief GSM Frame Number at time of RA */
55};
56
Andreas Eversberg227a9de2013-02-07 12:21:33 +010057/*! \brief for PH-[UNIT]DATA.{req,ind} | PH-RTS.ind */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +010058struct ph_data_param {
59 uint8_t link_id; /*!< \brief Link Identifier (Like RSL) */
60 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
Andreas Eversberg227a9de2013-02-07 12:21:33 +010061 uint32_t fn; /*!< \brief GSM Frame Number */
Andreas Eversberg15b80572013-03-16 16:34:55 +010062 int8_t rssi; /*!< \brief RSSI of receivedindication */
Maxcc00bf82016-02-22 11:03:26 +010063 enum osmo_ph_pres_info_type pdch_presence_info; /*!< \brief Info regarding presence/validity of header and data parts */
Andreas Eversberg227a9de2013-02-07 12:21:33 +010064};
65
66/*! \brief for TCH.{req,ind} | TCH-RTS.ind */
67struct ph_tch_param {
68 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
69 uint32_t fn; /*!< \brief GSM Frame Number */
Andreas Eversberg15b80572013-03-16 16:34:55 +010070 int8_t rssi; /*!< \brief RSSI of received indication */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +010071};
72
73/*! \brief for PH-CONN.ind */
74struct ph_conn_ind_param {
75 uint32_t fn; /*!< \brief GSM Frame Number */
76};
77
Andreas Eversberg227a9de2013-02-07 12:21:33 +010078/*! \brief for TIME MPH-INFO.ind */
79struct info_time_ind_param {
80 uint32_t fn; /*!< \brief GSM Frame Number */
81};
82
83/*! \brief for MEAS MPH-INFO.ind */
84struct info_meas_ind_param {
85 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
86 uint16_t ber10k; /*!< \brief BER in units of 0.01% */
87 int16_t ta_offs_qbits; /*!< \brief timing advance offset (in qbits) */
88 int16_t c_i_cb; /*!< \brief C/I ratio in 0.1 dB */
89 uint8_t is_sub:1; /*!< \brief flags */
90 uint8_t inv_rssi; /*!< \brief RSSI in dBm * -1 */
91};
92
93/*! \brief for {ACTIVATE,DEACTIVATE,MODIFY} MPH-INFO.req */
94struct info_act_req_param {
95 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
96 uint8_t sacch_only; /*!< \breif Only deactivate SACCH */
97};
98
99/*! \brief for {ACTIVATE,DEACTIVATE} MPH-INFO.cnf */
100struct info_act_cnf_param {
101 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
102 uint8_t cause; /*!< \brief RSL cause in case of nack */
103};
104
105/*! \brief for {ACTIVATE,DEACTIVATE} MPH-INFO.{req,cnf} */
106struct info_ciph_req_param {
107 uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */
108 uint8_t downlink; /*!< \brief Apply to downlink */
109 uint8_t uplink; /*!< \brief Apply to uplink */
110};
111
112/*! \brief for MPH-INFO.ind */
113struct mph_info_param {
114 enum osmo_mph_info_type type; /*!< \brief Info message type */
115 union {
116 struct info_time_ind_param time_ind;
117 struct info_meas_ind_param meas_ind;
118 struct info_act_req_param act_req;
119 struct info_act_cnf_param act_cnf;
120 struct info_ciph_req_param ciph_req;
121 } u;
122};
123
124/*! \brief primitive header for PH-SAP primitives */
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +0100125struct osmo_phsap_prim {
126 struct osmo_prim_hdr oph; /*!< \brief generic primitive header */
127 union {
128 struct ph_data_param data;
Andreas Eversberg227a9de2013-02-07 12:21:33 +0100129 struct ph_tch_param tch;
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +0100130 struct ph_rach_req_param rach_req;
131 struct ph_rach_ind_param rach_ind;
132 struct ph_conn_ind_param conn_ind;
Andreas Eversberg227a9de2013-02-07 12:21:33 +0100133 struct mph_info_param info;
Andreas Eversbergaa85a2d2013-02-07 12:18:37 +0100134 } u; /*!< \brief request-specific data */
135};