Add 'src/shared/libosmocore/' from commit 'ed00fe4449ac2309ad80c32f0ba7aa80b2b8895a'
[osmocom-bb.git] / include / l1a_l23_interface.h
1 /* Messages to be sent between the different layers */
2
3 /* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4  * (C) 2010 by Holger Hans Peter Freyther
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 #ifndef l1a_l23_interface_h
25 #define l1a_l23_interface_h
26
27 #define L1CTL_FBSB_REQ          1
28 #define L1CTL_FBSB_CONF         2
29 #define L1CTL_DATA_IND          3
30 #define L1CTL_RACH_REQ          4
31 #define L1CTL_DM_EST_REQ        5
32 #define L1CTL_DATA_REQ          7
33 #define L1CTL_RESET_IND         8
34 #define L1CTL_PM_REQ            9       /* power measurement */
35 #define L1CTL_PM_CONF           10      /* power measurement */
36 #define L1CTL_ECHO_REQ          11
37 #define L1CTL_ECHO_CONF         12
38 #define L1CTL_RACH_CONF         13
39 #define L1CTL_RESET_REQ         14
40 #define L1CTL_RESET_CONF        15
41 #define L1CTL_DATA_CONF         16
42 #define L1CTL_CCCH_MODE_REQ     17
43 #define L1CTL_CCCH_MODE_CONF    18
44 #define L1CTL_DM_REL_REQ        19
45
46 enum ccch_mode {
47         CCCH_MODE_NONE = 0,
48         CCCH_MODE_NON_COMBINED,
49         CCCH_MODE_COMBINED,
50 };
51
52 /*
53  * NOTE: struct size. We do add manual padding out of the believe
54  * that it will avoid some unaligned access.
55  */
56
57 /* there are no more messages in a sequence */
58 #define L1CTL_F_DONE    0x01
59
60 struct l1ctl_hdr {
61         uint8_t msg_type;
62         uint8_t flags;
63         uint8_t padding[2];
64         uint8_t data[0];
65 } __attribute__((packed));
66
67 /*
68  * downlink info ... down from the BTS..
69  */
70 struct l1ctl_info_dl {
71         /* GSM 08.58 channel number (9.3.1) */
72         uint8_t chan_nr;
73         /* GSM 08.58 link identifier (9.3.2) */
74         uint8_t link_id;
75         /* the ARFCN and the band. FIXME: what about MAIO? */
76         uint16_t band_arfcn;
77
78         uint32_t frame_nr;
79
80         uint8_t rx_level;       /* 0 .. 63 in typical GSM notation (dBm+110) */
81         uint8_t snr;            /* Signal/Noise Ration (dB) */
82         uint8_t num_biterr;
83         uint8_t fire_crc;
84
85         uint8_t payload[0];
86 } __attribute__((packed));
87
88 /* new CCCH was found. This is following the header */
89 struct l1ctl_fbsb_conf {
90         int16_t initial_freq_err;
91         uint8_t result;
92         uint8_t bsic;
93         /* FIXME: contents of cell_info ? */
94 } __attribute__((packed));
95
96 /* CCCH mode was changed */
97 struct l1ctl_ccch_mode_conf {
98         uint8_t ccch_mode;      /* enum ccch_mode */
99         uint8_t padding[3];
100 } __attribute__((packed));
101
102 /* data on the CCCH was found. This is following the header */
103 struct l1ctl_data_ind {
104         uint8_t data[23];
105 } __attribute__((packed));
106
107 /*
108  * uplink info
109  */
110 struct l1ctl_info_ul {
111         /* GSM 08.58 channel number (9.3.1) */
112         uint8_t chan_nr;
113         /* GSM 08.58 link identifier (9.3.2) */
114         uint8_t link_id;
115         uint8_t tx_power;
116         uint8_t padding2;
117
118         uint8_t payload[0];
119 } __attribute__((packed));
120
121 /*
122  * msg for FBSB_REQ
123  * the l1_info_ul header is in front
124  */
125 struct l1ctl_fbsb_req {
126         uint16_t band_arfcn;
127         uint16_t timeout;       /* in TDMA frames */
128
129         uint16_t freq_err_thresh1;
130         uint16_t freq_err_thresh2;
131
132         uint8_t num_freqerr_avg;
133         uint8_t flags;          /* L1CTL_FBSB_F_* */
134         uint8_t sync_info_idx;
135         uint8_t ccch_mode;      /* enum ccch_mode */
136 } __attribute__((packed));
137
138 #define L1CTL_FBSB_F_FB0        (1 << 0)
139 #define L1CTL_FBSB_F_FB1        (1 << 1)
140 #define L1CTL_FBSB_F_SB         (1 << 2)
141 #define L1CTL_FBSB_F_FB01SB     (L1CTL_FBSB_F_FB0|L1CTL_FBSB_F_FB1|L1CTL_FBSB_F_SB)
142
143 /*
144  * msg for CCCH_MODE_REQ
145  * the l1_info_ul header is in front
146  */
147 struct l1ctl_ccch_mode_req {
148         uint8_t ccch_mode;      /* enum ccch_mode */
149         uint8_t padding[3];
150 } __attribute__((packed));
151
152 /* the l1_info_ul header is in front */
153 struct l1ctl_rach_req {
154         uint8_t ra;
155         uint8_t fn51;
156         uint8_t mf_off;
157         uint8_t padding[1];
158 } __attribute__((packed));
159
160 struct l1ctl_dm_est_req {
161         uint8_t tsc;
162         uint8_t h;
163         union {
164                 struct {
165                         uint16_t band_arfcn;
166                 } h0;
167                 struct {
168                         uint8_t hsn;
169                         uint8_t maio;
170                         uint8_t n;
171                         uint8_t _padding[1];
172                         uint16_t ma[64];
173                 } h1;
174         };
175 } __attribute__((packed));
176
177 struct l1ctl_pm_req {
178         uint8_t type;
179         uint8_t padding[3];
180
181         union {
182                 struct {
183                         uint16_t band_arfcn_from;
184                         uint16_t band_arfcn_to;
185                 } range;
186         };
187 } __attribute__((packed));
188
189 /* a single L1CTL_PM response */
190 struct l1ctl_pm_conf {
191         uint16_t band_arfcn;
192         uint8_t pm[2];
193 } __attribute__((packed));
194
195 enum l1ctl_reset_type {
196         L1CTL_RES_T_BOOT,       /* only _IND */
197         L1CTL_RES_T_FULL,
198 };
199
200 /* argument to L1CTL_RESET_REQ and L1CTL_RESET_IND */
201 struct l1ctl_reset {
202         uint8_t type;
203         uint8_t pad[3];
204 } __attribute__((packed));
205
206 #endif