blob: eaa01436be74af0996f716a191edf68e45116cc4 [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>
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010032#ifdef __cplusplus
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040033}
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020034#endif
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040035
Maxd71e8b32016-09-19 16:17:06 +020036static inline uint8_t qta2ta(int16_t qta)
37{
38 if (qta < 0)
39 return 0;
40 if (qta > 252)
41 qta = 252;
42 return qta >> 2;
43}
44
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020045/*
46 * L1 Measurement values
47 */
48
Jacob Erlbeck51b11512015-06-11 16:54:50 +020049struct pcu_l1_meas_ts {
50 unsigned have_ms_i_level:1;
51
52 int16_t ms_i_level; /* I_LEVEL in dB */
53
54#ifdef __cplusplus
55 pcu_l1_meas_ts& set_ms_i_level(int16_t v) {
56 ms_i_level = v; have_ms_i_level = 1; return *this;
57 }
58
59 pcu_l1_meas_ts() :
Harald Welte1f2bb6e2016-11-26 15:22:08 +010060 have_ms_i_level(0),
61 ms_i_level(0)
Jacob Erlbeck51b11512015-06-11 16:54:50 +020062 {}
63#endif
64};
65
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020066struct pcu_l1_meas {
67 unsigned have_rssi:1;
68 unsigned have_ber:1;
69 unsigned have_bto:1;
70 unsigned have_link_qual:1;
Jacob Erlbeck51b11512015-06-11 16:54:50 +020071 unsigned have_ms_rx_qual:1;
72 unsigned have_ms_c_value:1;
73 unsigned have_ms_sign_var:1;
74 unsigned have_ms_i_level:1;
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020075
76 int8_t rssi; /* RSSI in dBm */
77 uint8_t ber; /* Bit error rate in % */
78 int16_t bto; /* Burst timing offset in quarter bits */
Jacob Erlbeck51b11512015-06-11 16:54:50 +020079 int16_t link_qual; /* Link quality in dB */
80 int16_t ms_rx_qual; /* MS RXQUAL value in % */
81 int16_t ms_c_value; /* C value in dB */
82 int16_t ms_sign_var; /* SIGN_VAR in dB */
83
84 struct pcu_l1_meas_ts ts[8];
85
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020086#ifdef __cplusplus
87 pcu_l1_meas& set_rssi(int8_t v) { rssi = v; have_rssi = 1; return *this;}
88 pcu_l1_meas& set_ber(uint8_t v) { ber = v; have_ber = 1; return *this;}
89 pcu_l1_meas& set_bto(int16_t v) { bto = v; have_bto = 1; return *this;}
90 pcu_l1_meas& set_link_qual(int16_t v) {
91 link_qual = v; have_link_qual = 1; return *this;
92 }
Jacob Erlbeck51b11512015-06-11 16:54:50 +020093 pcu_l1_meas& set_ms_rx_qual(int16_t v) {
94 ms_rx_qual = v; have_ms_rx_qual = 1; return *this;
95 }
96 pcu_l1_meas& set_ms_c_value(int16_t v) {
97 ms_c_value = v; have_ms_c_value = 1; return *this;
98 }
99 pcu_l1_meas& set_ms_sign_var(int16_t v) {
100 ms_sign_var = v; have_ms_sign_var = 1; return *this;
101 }
102 pcu_l1_meas& set_ms_i_level(size_t idx, int16_t v) {
103 ts[idx].set_ms_i_level(v); have_ms_i_level = 1; return *this;
104 }
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200105 pcu_l1_meas() :
106 have_rssi(0),
107 have_ber(0),
108 have_bto(0),
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200109 have_link_qual(0),
110 have_ms_rx_qual(0),
111 have_ms_c_value(0),
112 have_ms_sign_var(0),
Harald Welte963cdaf2016-11-26 15:24:06 +0100113 have_ms_i_level(0),
114 rssi(0),
115 ber(0),
116 bto(0),
117 link_qual(0),
118 ms_rx_qual(0),
119 ms_c_value(0),
120 ms_sign_var(0)
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200121 {}
122#endif
123};
124
125#ifdef __cplusplus
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200126void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
127 uint32_t fn, uint8_t block_nr);
128void pcu_l1if_tx_ptcch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
129 uint32_t fn, uint8_t block_nr);
130void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400131
Holger Hans Peter Freyther52c911b2013-08-24 18:30:54 +0200132void pcu_l1if_tx_pch(bitvec * block, int plen, const char *imsi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400133
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200134int pcu_l1if_open(void);
135void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400136
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400137int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
138int pcu_sock_send(struct msgb *msg);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100139#endif
140
141#ifdef __cplusplus
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200142extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100143#endif
Max878bd1f2016-07-20 13:05:05 +0200144int pcu_rx_rts_req_pdtch(uint8_t trx, uint8_t ts,
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100145 uint32_t fn, uint8_t block_nr);
146
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100147int pcu_rx_data_ind_pdtch(uint8_t trx, uint8_t ts, uint8_t *data,
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200148 uint8_t len, uint32_t fn, struct pcu_l1_meas *meas);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100149
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200150void pcu_rx_block_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
151void pcu_rx_ra_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
152
153#ifdef __cplusplus
154}
155#endif
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400156#endif // PCU_L1_IF_H