blob: f3ac59718c505b3ae45262ddaaf6fc0ea25c5b53 [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>
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040024extern "C" {
25#include <osmocom/core/write_queue.h>
26#include <osmocom/core/socket.h>
27#include <osmocom/core/timer.h>
Andreas Eversberg0aed6542012-06-23 10:33:16 +020028#include <osmocom/core/bitvec.h>
Ivan Kluchnikove3a05962012-03-18 15:48:51 +040029#include <osmocom/gsm/gsm_utils.h>
30}
31
Ivan Kluchnikov4277f0c2012-04-12 14:24:35 +040032int get_current_fn();
33
Andreas Eversberg0aed6542012-06-23 10:33:16 +020034void pcu_l1if_tx_pdtch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
35 uint32_t fn, uint8_t block_nr);
36void pcu_l1if_tx_ptcch(msgb *msg, uint8_t trx, uint8_t ts, uint16_t arfcn,
37 uint32_t fn, uint8_t block_nr);
38void pcu_l1if_tx_agch(bitvec * block, int len);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040039
Andreas Eversberge13fa2d2012-07-09 17:10:44 +020040void pcu_l1if_tx_pch(bitvec * block, int plen, char *imsi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040041
Andreas Eversberg0aed6542012-06-23 10:33:16 +020042int pcu_l1if_open(void);
43void pcu_l1if_close(void);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040044
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040045int pcu_rx(uint8_t msg_type, struct gsm_pcu_if *pcu_prim);
46int pcu_sock_send(struct msgb *msg);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040047#endif // PCU_L1_IF_H