ccch: Add a copyright header to that file.
[osmocom-bb.git] / src / host / layer23 / src / misc / app_phone.c
1 /* "Application" code of the layer2/3 stack */
2
3 /* (C) 2010 by Holger Hans Peter Freyther
4  * (C) 2010 by Harald Welte <laforge@gnumonks.org>
5  *
6  * All Rights Reserved
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  */
23
24 #include <osmocom/bb/common/osmocom_data.h>
25 #include <osmocom/bb/common/l1ctl.h>
26 #include <osmocom/bb/common/lapdm.h>
27 #include <osmocom/bb/common/logging.h>
28 #include <osmocom/bb/common/l23_app.h>
29 #include <osmocom/bb/misc/layer3.h>
30
31 #include <osmocore/msgb.h>
32 #include <osmocore/talloc.h>
33 #include <osmocore/select.h>
34 #include <osmocore/signal.h>
35
36 static int signal_cb(unsigned int subsys, unsigned int signal,
37                      void *handler_data, void *signal_data)
38 {
39         struct osmocom_ms *ms;
40
41         if (subsys != SS_L1CTL)
42                 return 0;
43
44         switch (signal) {
45         case S_L1CTL_RESET:
46                 ms = signal_data;
47                 layer3_app_reset();
48                 return l1ctl_tx_fbsb_req(ms, ms->test_arfcn,
49                                          L1CTL_FBSB_F_FB01SB, 100, 0,
50                                          CCCH_MODE_NONE);
51                 break;
52         }
53         return 0;
54 }
55
56
57 int l23_app_init(struct osmocom_ms *ms)
58 {
59         register_signal_handler(SS_L1CTL, &signal_cb, NULL);
60         l1ctl_tx_reset_req(ms, L1CTL_RES_T_FULL);
61         return layer3_init(ms);
62 }
63
64 static struct l23_app_info info = {
65         .copyright      = "Copyright (C) 2010 Harald Welte <laforge@gnumonks.org>\n",
66         .contribution   = "Contributions by Holger Hans Peter Freyther\n",
67 };
68
69 struct l23_app_info *l23_app_info()
70 {
71         return &info;
72 }