blob: b2a9832e2c1fd70d9950eb124ef9c384e34a25f7 [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
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020036/*
37 * L1 Measurement values
38 */
39
Jacob Erlbeck51b11512015-06-11 16:54:50 +020040struct pcu_l1_meas_ts {
41 unsigned have_ms_i_level:1;
42
43 int16_t ms_i_level; /* I_LEVEL in dB */
44
45#ifdef __cplusplus
46 pcu_l1_meas_ts& set_ms_i_level(int16_t v) {
47 ms_i_level = v; have_ms_i_level = 1; return *this;
48 }
49
50 pcu_l1_meas_ts() :
51 have_ms_i_level(0)
52 {}
53#endif
54};
55
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020056struct pcu_l1_meas {
57 unsigned have_rssi:1;
58 unsigned have_ber:1;
59 unsigned have_bto:1;
60 unsigned have_link_qual:1;
Jacob Erlbeck51b11512015-06-11 16:54:50 +020061 unsigned have_ms_rx_qual:1;
62 unsigned have_ms_c_value:1;
63 unsigned have_ms_sign_var:1;
64 unsigned have_ms_i_level:1;
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020065
66 int8_t rssi; /* RSSI in dBm */
67 uint8_t ber; /* Bit error rate in % */
68 int16_t bto; /* Burst timing offset in quarter bits */
Jacob Erlbeck51b11512015-06-11 16:54:50 +020069 int16_t link_qual; /* Link quality in dB */
70 int16_t ms_rx_qual; /* MS RXQUAL value in % */
71 int16_t ms_c_value; /* C value in dB */
72 int16_t ms_sign_var; /* SIGN_VAR in dB */
73
74 struct pcu_l1_meas_ts ts[8];
75
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020076#ifdef __cplusplus
77 pcu_l1_meas& set_rssi(int8_t v) { rssi = v; have_rssi = 1; return *this;}
78 pcu_l1_meas& set_ber(uint8_t v) { ber = v; have_ber = 1; return *this;}
79 pcu_l1_meas& set_bto(int16_t v) { bto = v; have_bto = 1; return *this;}
80 pcu_l1_meas& set_link_qual(int16_t v) {
81 link_qual = v; have_link_qual = 1; return *this;
82 }
Jacob Erlbeck51b11512015-06-11 16:54:50 +020083 pcu_l1_meas& set_ms_rx_qual(int16_t v) {
84 ms_rx_qual = v; have_ms_rx_qual = 1; return *this;
85 }
86 pcu_l1_meas& set_ms_c_value(int16_t v) {
87 ms_c_value = v; have_ms_c_value = 1; return *this;
88 }
89 pcu_l1_meas& set_ms_sign_var(int16_t v) {
90 ms_sign_var = v; have_ms_sign_var = 1; return *this;
91 }
92 pcu_l1_meas& set_ms_i_level(size_t idx, int16_t v) {
93 ts[idx].set_ms_i_level(v); have_ms_i_level = 1; return *this;
94 }
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020095 pcu_l1_meas() :
96 have_rssi(0),
97 have_ber(0),
98 have_bto(0),
Jacob Erlbeck51b11512015-06-11 16:54:50 +020099 have_link_qual(0),
100 have_ms_rx_qual(0),
101 have_ms_c_value(0),
102 have_ms_sign_var(0),
103 have_ms_i_level(0)
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200104 {}
105#endif
106};
107
108#ifdef __cplusplus
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200109void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
110 uint32_t fn, uint8_t block_nr);
111void pcu_l1if_tx_ptcch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
112 uint32_t fn, uint8_t block_nr);
113void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400114
Holger Hans Peter Freyther52c911b2013-08-24 18:30:54 +0200115void pcu_l1if_tx_pch(bitvec * block, int plen, const char *imsi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400116
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200117int pcu_l1if_open(void);
118void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400119
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400120int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
121int pcu_sock_send(struct msgb *msg);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100122#endif
123
124#ifdef __cplusplus
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200125extern "C" {
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100126#endif
Max878bd1f2016-07-20 13:05:05 +0200127int pcu_rx_rts_req_pdtch(uint8_t trx, uint8_t ts,
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100128 uint32_t fn, uint8_t block_nr);
129
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100130int pcu_rx_data_ind_pdtch(uint8_t trx, uint8_t ts, uint8_t *data,
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +0200131 uint8_t len, uint32_t fn, struct pcu_l1_meas *meas);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +0100132
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200133void pcu_rx_block_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
134void pcu_rx_ra_time(uint16_t arfcn, uint32_t fn, uint8_t ts_no);
135
136#ifdef __cplusplus
137}
138#endif
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400139#endif // PCU_L1_IF_H