blob: f86e7085091ebbbb2291c275689a3cf0449a1d26 [file] [log] [blame]
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04001/* pcu_l1_if.h
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +04002 *
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04003 * Copyright (C) 2012 Ivan Klyuchnikov
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +04004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040020#ifndef PCU_L1_IF_H
21#define PCU_L1_IF_H
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040022
Andreas Eversberg0aed6542012-06-23 10:33:16 +020023#include <stdint.h>
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010024#ifdef __cplusplus
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040025extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010026#endif
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040027#include <osmocom/core/write_queue.h>
28#include <osmocom/core/socket.h>
29#include <osmocom/core/timer.h>
Andreas Eversberg0aed6542012-06-23 10:33:16 +020030#include <osmocom/core/bitvec.h>
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040031#include <osmocom/gsm/gsm_utils.h>
Max0a8fae82017-03-08 18:53:30 +010032#include <osmocom/pcu/pcuif_proto.h>
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010033#ifdef __cplusplus
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040034}
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020035#endif
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040036
Maxd71e8b32016-09-19 16:17:06 +020037static inline uint8_t qta2ta(int16_t qta)
38{
39 if (qta < 0)
40 return 0;
41 if (qta > 252)
42 qta = 252;
43 return qta >> 2;
44}
45
Minh-Quang Nguyen1bcfa9a2017-11-01 14:41:37 -040046static inline int8_t sign_qta2ta(int16_t qta)
47{
48 int8_t ta_adj = 0;
49
50 if (qta < -252)
51 qta = -252;
52
53 if (qta > 252)
54 qta = 252;
55
56 /* 1-bit TA adjustment if TA error reported by L1 is outside +/- 2 qbits */
57 if (qta > 2)
58 ta_adj = 1;
59 if (qta < -2)
60 ta_adj = -1;
61
62 return (qta >> 2) + ta_adj;
63}
64
65static inline uint8_t ta_limit(int16_t ta)
66{
67 if (ta < 0)
68 ta = 0;
69 if (ta > 63)
70 ta = 63;
71 return ta;
72}
73
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020074/*
75 * L1 Measurement values
76 */
77
Jacob Erlbeck51b11512015-06-11 16:54:50 +020078struct pcu_l1_meas_ts {
79 unsigned have_ms_i_level:1;
80
81 int16_t ms_i_level; /* I_LEVEL in dB */
82
83#ifdef __cplusplus
84 pcu_l1_meas_ts& set_ms_i_level(int16_t v) {
85 ms_i_level = v; have_ms_i_level = 1; return *this;
86 }
87
88 pcu_l1_meas_ts() :
Harald Welte1f2bb6e2016-11-26 15:22:08 +010089 have_ms_i_level(0),
90 ms_i_level(0)
Jacob Erlbeck51b11512015-06-11 16:54:50 +020091 {}
92#endif
93};
94
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020095struct pcu_l1_meas {
96 unsigned have_rssi:1;
97 unsigned have_ber:1;
98 unsigned have_bto:1;
99 unsigned have_link_qual:1;
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200100 unsigned have_ms_rx_qual:1;
101 unsigned have_ms_c_value:1;
102 unsigned have_ms_sign_var:1;
103 unsigned have_ms_i_level:1;
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200104
105 int8_t rssi; /* RSSI in dBm */
106 uint8_t ber; /* Bit error rate in % */
107 int16_t bto; /* Burst timing offset in quarter bits */
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200108 int16_t link_qual; /* Link quality in dB */
109 int16_t ms_rx_qual; /* MS RXQUAL value in % */
110 int16_t ms_c_value; /* C value in dB */
111 int16_t ms_sign_var; /* SIGN_VAR in dB */
112
113 struct pcu_l1_meas_ts ts[8];
114
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200115#ifdef __cplusplus
116 pcu_l1_meas& set_rssi(int8_t v) { rssi = v; have_rssi = 1; return *this;}
117 pcu_l1_meas& set_ber(uint8_t v) { ber = v; have_ber = 1; return *this;}
118 pcu_l1_meas& set_bto(int16_t v) { bto = v; have_bto = 1; return *this;}
119 pcu_l1_meas& set_link_qual(int16_t v) {
120 link_qual = v; have_link_qual = 1; return *this;
121 }
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200122 pcu_l1_meas& set_ms_rx_qual(int16_t v) {
123 ms_rx_qual = v; have_ms_rx_qual = 1; return *this;
124 }
125 pcu_l1_meas& set_ms_c_value(int16_t v) {
126 ms_c_value = v; have_ms_c_value = 1; return *this;
127 }
128 pcu_l1_meas& set_ms_sign_var(int16_t v) {
129 ms_sign_var = v; have_ms_sign_var = 1; return *this;
130 }
131 pcu_l1_meas& set_ms_i_level(size_t idx, int16_t v) {
132 ts[idx].set_ms_i_level(v); have_ms_i_level = 1; return *this;
133 }
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200134 pcu_l1_meas() :
135 have_rssi(0),
136 have_ber(0),
137 have_bto(0),
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200138 have_link_qual(0),
139 have_ms_rx_qual(0),
140 have_ms_c_value(0),
141 have_ms_sign_var(0),
Harald Welte963cdaf2016-11-26 15:24:06 +0100142 have_ms_i_level(0),
143 rssi(0),
144 ber(0),
145 bto(0),
146 link_qual(0),
147 ms_rx_qual(0),
148 ms_c_value(0),
149 ms_sign_var(0)
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200150 {}
151#endif
152};
153
154#ifdef __cplusplus
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200155void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
156 uint32_t fn, uint8_t block_nr);
Vadim Yanitskiy78f58612019-10-05 22:22:08 +0700157void pcu_l1if_tx_ptcch(uint8_t trx, uint8_t ts, uint16_t arfcn,
158 uint32_t fn, uint8_t block_nr,
159 uint8_t *data, size_t data_len);
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200160void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400161
Pau Espin Pedrold7c32652019-12-23 12:41:34 +0100162void pcu_l1if_tx_pch(bitvec * block, int plen, uint16_t pgroup);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400163
Max0a8fae82017-03-08 18:53:30 +0100164int pcu_tx_txt_ind(enum gsm_pcu_if_text_type t, const char *fmt, ...);
165
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200166int pcu_l1if_open(void);
167void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400168
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400169int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
170int pcu_sock_send(struct msgb *msg);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100171#endif
172
173#ifdef __cplusplus
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200174extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100175#endif
Max878bd1f2016-07-20 13:05:05 +0200176int pcu_rx_rts_req_pdtch(uint8_t trx, uint8_t ts,
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100177 uint32_t fn, uint8_t block_nr);
Vadim Yanitskiy78f58612019-10-05 22:22:08 +0700178int pcu_rx_rts_req_ptcch(uint8_t trx, uint8_t ts,
179 uint32_t fn, uint8_t block_nr);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100180
Vadim Yanitskiy6fd47332020-05-21 19:23:33 +0700181int pcu_rx_rach_ind_ptcch(uint8_t trx_nr, uint8_t ts_nr, uint32_t fn, int16_t qta);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100182int pcu_rx_data_ind_pdtch(uint8_t trx, uint8_t ts, uint8_t *data,
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200183 uint8_t len, uint32_t fn, struct pcu_l1_meas *meas);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100184
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200185void pcu_rx_block_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
186void pcu_rx_ra_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
Pau Espin Pedrold7c32652019-12-23 12:41:34 +0100187uint16_t imsi2paging_group(const char* imsi);
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200188#ifdef __cplusplus
189}
190#endif
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400191#endif // PCU_L1_IF_H