blob: bd8fe940f049cffa1a995ca0725b7cbb6e636164 [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}
34
Andreas Eversberg0aed6542012-06-23 10:33:16 +020035void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
36 uint32_t fn, uint8_t block_nr);
37void pcu_l1if_tx_ptcch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
38 uint32_t fn, uint8_t block_nr);
39void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040040
Holger Hans Peter Freyther52c911b2013-08-24 18:30:54 +020041void pcu_l1if_tx_pch(bitvec * block, int plen, const char *imsi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040042
Andreas Eversberg0aed6542012-06-23 10:33:16 +020043int pcu_l1if_open(void);
44void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040045
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040046int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
47int pcu_sock_send(struct msgb *msg);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010048#endif
49
50#ifdef __cplusplus
51extern "C"
52#endif
53int pcu_rx_rts_req_pdtch(uint8_t trx, uint8_t ts, uint16_t arfcn,
54 uint32_t fn, uint8_t block_nr);
55
56#ifdef __cplusplus
57extern "C"
58#endif
59int pcu_rx_data_ind_pdtch(uint8_t trx, uint8_t ts, uint8_t *data,
Andreas Eversberg570b44b2013-03-16 16:15:01 +010060 uint8_t len, uint32_t fn, int8_t rssi);
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010061
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040062#endif // PCU_L1_IF_H