blob: d9d970da23bb0e5f16e04633fe0884785f1f4c78 [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() :
60 have_ms_i_level(0)
61 {}
62#endif
63};
64
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020065struct pcu_l1_meas {
66 unsigned have_rssi:1;
67 unsigned have_ber:1;
68 unsigned have_bto:1;
69 unsigned have_link_qual:1;
Jacob Erlbeck51b11512015-06-11 16:54:50 +020070 unsigned have_ms_rx_qual:1;
71 unsigned have_ms_c_value:1;
72 unsigned have_ms_sign_var:1;
73 unsigned have_ms_i_level:1;
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020074
75 int8_t rssi; /* RSSI in dBm */
76 uint8_t ber; /* Bit error rate in % */
77 int16_t bto; /* Burst timing offset in quarter bits */
Jacob Erlbeck51b11512015-06-11 16:54:50 +020078 int16_t link_qual; /* Link quality in dB */
79 int16_t ms_rx_qual; /* MS RXQUAL value in % */
80 int16_t ms_c_value; /* C value in dB */
81 int16_t ms_sign_var; /* SIGN_VAR in dB */
82
83 struct pcu_l1_meas_ts ts[8];
84
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020085#ifdef __cplusplus
86 pcu_l1_meas& set_rssi(int8_t v) { rssi = v; have_rssi = 1; return *this;}
87 pcu_l1_meas& set_ber(uint8_t v) { ber = v; have_ber = 1; return *this;}
88 pcu_l1_meas& set_bto(int16_t v) { bto = v; have_bto = 1; return *this;}
89 pcu_l1_meas& set_link_qual(int16_t v) {
90 link_qual = v; have_link_qual = 1; return *this;
91 }
Jacob Erlbeck51b11512015-06-11 16:54:50 +020092 pcu_l1_meas& set_ms_rx_qual(int16_t v) {
93 ms_rx_qual = v; have_ms_rx_qual = 1; return *this;
94 }
95 pcu_l1_meas& set_ms_c_value(int16_t v) {
96 ms_c_value = v; have_ms_c_value = 1; return *this;
97 }
98 pcu_l1_meas& set_ms_sign_var(int16_t v) {
99 ms_sign_var = v; have_ms_sign_var = 1; return *this;
100 }
101 pcu_l1_meas& set_ms_i_level(size_t idx, int16_t v) {
102 ts[idx].set_ms_i_level(v); have_ms_i_level = 1; return *this;
103 }
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200104 pcu_l1_meas() :
105 have_rssi(0),
106 have_ber(0),
107 have_bto(0),
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200108 have_link_qual(0),
109 have_ms_rx_qual(0),
110 have_ms_c_value(0),
111 have_ms_sign_var(0),
112 have_ms_i_level(0)
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200113 {}
114#endif
115};
116
117#ifdef __cplusplus
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200118void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
119 uint32_t fn, uint8_t block_nr);
120void pcu_l1if_tx_ptcch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
121 uint32_t fn, uint8_t block_nr);
122void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400123
Holger Hans Peter Freyther52c911b2013-08-24 18:30:54 +0200124void pcu_l1if_tx_pch(bitvec * block, int plen, const char *imsi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400125
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200126int pcu_l1if_open(void);
127void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400128
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400129int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
130int pcu_sock_send(struct msgb *msg);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100131#endif
132
133#ifdef __cplusplus
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200134extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100135#endif
Max878bd1f2016-07-20 13:05:05 +0200136int pcu_rx_rts_req_pdtch(uint8_t trx, uint8_t ts,
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100137 uint32_t fn, uint8_t block_nr);
138
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100139int pcu_rx_data_ind_pdtch(uint8_t trx, uint8_t ts, uint8_t *data,
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200140 uint8_t len, uint32_t fn, struct pcu_l1_meas *meas);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100141
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200142void pcu_rx_block_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
143void pcu_rx_ra_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
144
145#ifdef __cplusplus
146}
147#endif
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400148#endif // PCU_L1_IF_H