blob: 0f8dd8374110a0e6a48ee05949fc10dd14debaee [file] [log] [blame]
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04001/* gprs_bssgp_pcu.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 */
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040019
20#ifndef GPRS_BSSGP_PCU_H
21#define GPRS_BSSGP_PCU_H
22
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040023
24extern "C" {
25#include <osmocom/core/talloc.h>
26#include <osmocom/core/rate_ctr.h>
Ivan Kluchnikova9f1ff22012-05-24 22:25:06 +040027#include <osmocom/core/logging.h>
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040028#include <openbsc/signal.h>
29#include <openbsc/gprs_ns.h>
30#include <openbsc/gprs_bssgp.h>
31#include <osmocom/core/application.h>
32
Ivan Kluchnikov8aa4c522012-02-20 15:15:12 +040033int bssgp_tx_bvc_reset(struct bssgp_bvc_ctx *bctx, uint16_t bvci, uint8_t cause);
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040034
35int bssgp_tx_ul_ud(struct bssgp_bvc_ctx *bctx, uint32_t tlli, const uint8_t *qos_profile, struct msgb *llc_pdu);
36
37struct bssgp_bvc_ctx *btsctx_alloc(uint16_t bvci, uint16_t nsei);
38}
Ivan Kluchnikova9f1ff22012-05-24 22:25:06 +040039#include <gprs_debug.h>
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040040
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040041#define BVCI 7
42#define NSEI 3
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040043
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040044#define QOS_PROFILE 0
Ivan Kluchnikov3fa42b22012-06-04 19:07:25 +040045#define BSSGP_HDR_LEN 53
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040046#define NS_HDR_LEN 4
47#define MAX_LEN_PDU 60
48#define IE_PDU 14
Ivan Kluchnikova21f2752012-05-24 22:35:19 +040049#define BLOCK_DATA_LEN 20
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040050#define BLOCK_LEN 23
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040051
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040052#define CELL_ID 3
53#define MNC 55
54#define MCC 905
55#define PCU_LAC 1000
56#define PCU_RAC 1
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040057
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040058
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040059extern struct bssgp_bvc_ctx *bctx;
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040060
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040061int gprs_bssgp_pcu_rx_dl_ud(struct msgb *msg);
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040062
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040063int gprs_bssgp_pcu_rx_ptp(struct msgb *msg, struct tlv_parsed *tp, struct bssgp_bvc_ctx *bctx);
Ivan Kluchnikov5c2f9fb2012-02-05 02:27:17 +040064
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040065int gprs_bssgp_pcu_rx_sign(struct msgb *msg, struct tlv_parsed *tp, struct bssgp_bvc_ctx *bctx);
66
67int gprs_bssgp_pcu_rcvmsg(struct msgb *msg);
68
69#endif // GPRS_BSSGP_PCU_H