blob: 167381b377f611d6ad7a5e08bb3951bf1adca3ef [file] [log] [blame]
Harald Welte8470bf22008-12-25 23:28:35 +00001/* GSM Channel allocation routines
2 *
3 * (C) 2008 by Harald Welte <laforge@gnumonks.org>
Holger Freythere64a7a32009-02-06 21:55:37 +00004 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte8470bf22008-12-25 23:28:35 +000011 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte8470bf22008-12-25 23:28:35 +000017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte8470bf22008-12-25 23:28:35 +000020 *
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <errno.h>
27
Holger Hans Peter Freyther35470452010-12-22 18:13:00 +010028#include <openbsc/gsm_subscriber.h>
Harald Welte8470bf22008-12-25 23:28:35 +000029#include <openbsc/chan_alloc.h>
Harald Welte4b634542008-12-27 01:55:51 +000030#include <openbsc/abis_nm.h>
Holger Freyther67b4b9a2009-01-01 03:46:11 +000031#include <openbsc/abis_rsl.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000032#include <openbsc/debug.h>
Holger Freyther7c19f742009-06-06 13:54:35 +000033#include <openbsc/signal.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000034
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +080035#include <osmocore/talloc.h>
36
Harald Welte4c704542009-12-24 10:10:16 +010037static int ts_is_usable(struct gsm_bts_trx_ts *ts)
38{
39 /* FIXME: How does this behave for BS-11 ? */
40 if (is_ipaccess_bts(ts->trx->bts)) {
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +010041 if (!nm_is_running(&ts->nm_state))
Harald Welte4c704542009-12-24 10:10:16 +010042 return 0;
43 }
44
45 return 1;
46}
47
Harald Welte (local)82ff3972009-12-28 16:36:28 +010048int trx_is_usable(struct gsm_bts_trx *trx)
Harald Welte4c704542009-12-24 10:10:16 +010049{
50 /* FIXME: How does this behave for BS-11 ? */
51 if (is_ipaccess_bts(trx->bts)) {
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +010052 if (!nm_is_running(&trx->nm_state) ||
53 !nm_is_running(&trx->bb_transc.nm_state))
Harald Welte4c704542009-12-24 10:10:16 +010054 return 0;
55 }
56
57 return 1;
58}
59
Harald Welte8470bf22008-12-25 23:28:35 +000060struct gsm_bts_trx_ts *ts_c0_alloc(struct gsm_bts *bts,
61 enum gsm_phys_chan_config pchan)
62{
Harald Weltee441d9c2009-06-21 16:17:15 +020063 struct gsm_bts_trx *trx = bts->c0;
Harald Welte8470bf22008-12-25 23:28:35 +000064 struct gsm_bts_trx_ts *ts = &trx->ts[0];
65
66 if (pchan != GSM_PCHAN_CCCH &&
67 pchan != GSM_PCHAN_CCCH_SDCCH4)
68 return NULL;
69
70 if (ts->pchan != GSM_PCHAN_NONE)
71 return NULL;
72
73 ts->pchan = pchan;
74
75 return ts;
76}
77
Harald Welte4bfdfe72009-06-10 23:11:52 +080078/* Allocate a physical channel (TS) */
Harald Welte8470bf22008-12-25 23:28:35 +000079struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
80 enum gsm_phys_chan_config pchan)
81{
Harald Welte88367262009-08-10 13:25:55 +020082 int j;
83 struct gsm_bts_trx *trx;
84
85 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte75a983f2008-12-27 21:34:06 +000086 int from, to;
87
Harald Welte4c704542009-12-24 10:10:16 +010088 if (!trx_is_usable(trx))
89 continue;
90
Harald Welte75a983f2008-12-27 21:34:06 +000091 /* the following constraints are pure policy,
92 * no requirement to put this restriction in place */
Harald Welted46299d2009-07-29 16:46:37 +020093 if (trx == bts->c0) {
94 /* On the first TRX we run one CCCH and one SDCCH8 */
95 switch (pchan) {
96 case GSM_PCHAN_CCCH:
97 case GSM_PCHAN_CCCH_SDCCH4:
98 from = 0; to = 0;
99 break;
Harald Welted46299d2009-07-29 16:46:37 +0200100 case GSM_PCHAN_TCH_F:
101 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +0200102 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +0200103 break;
Harald Welte89e9d592009-08-09 22:01:26 +0200104 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Welted46299d2009-07-29 16:46:37 +0200105 default:
106 return NULL;
107 }
108 } else {
109 /* Every secondary TRX is configured for TCH/F
110 * and TCH/H only */
111 switch (pchan) {
Harald Welte89e9d592009-08-09 22:01:26 +0200112 case GSM_PCHAN_SDCCH8_SACCH8C:
113 from = 1; to = 1;
Harald Welted46299d2009-07-29 16:46:37 +0200114 case GSM_PCHAN_TCH_F:
115 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +0200116 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +0200117 break;
118 default:
119 return NULL;
120 }
Harald Welte75a983f2008-12-27 21:34:06 +0000121 }
122
123 for (j = from; j <= to; j++) {
Harald Welte8470bf22008-12-25 23:28:35 +0000124 struct gsm_bts_trx_ts *ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100125
126 if (!ts_is_usable(ts))
127 continue;
128
Harald Welte8470bf22008-12-25 23:28:35 +0000129 if (ts->pchan == GSM_PCHAN_NONE) {
130 ts->pchan = pchan;
Harald Welte4b634542008-12-27 01:55:51 +0000131 /* set channel attribute on OML */
Harald Welte21bd3a52009-08-10 12:21:22 +0200132 abis_nm_set_channel_attr(ts, abis_nm_chcomb4pchan(pchan));
Harald Welte8470bf22008-12-25 23:28:35 +0000133 return ts;
134 }
135 }
136 }
137 return NULL;
138}
139
140/* Free a physical channel (TS) */
141void ts_free(struct gsm_bts_trx_ts *ts)
142{
143 ts->pchan = GSM_PCHAN_NONE;
144}
145
146static const u_int8_t subslots_per_pchan[] = {
147 [GSM_PCHAN_NONE] = 0,
148 [GSM_PCHAN_CCCH] = 0,
149 [GSM_PCHAN_CCCH_SDCCH4] = 4,
150 [GSM_PCHAN_TCH_F] = 1,
151 [GSM_PCHAN_TCH_H] = 2,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800152 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welteb908cb72009-12-22 13:09:29 +0100153 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Weltec0d83b02010-03-28 15:58:03 +0800154 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Welte8470bf22008-12-25 23:28:35 +0000155};
156
157static struct gsm_lchan *
Harald Weltefc0d9522009-08-10 13:46:55 +0200158_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte8470bf22008-12-25 23:28:35 +0000159{
Harald Welte8470bf22008-12-25 23:28:35 +0000160 struct gsm_bts_trx_ts *ts;
Harald Welte88367262009-08-10 13:25:55 +0200161 int j, ss;
162
Harald Welte4c704542009-12-24 10:10:16 +0100163 if (!trx_is_usable(trx))
164 return NULL;
165
Harald Weltefc0d9522009-08-10 13:46:55 +0200166 for (j = 0; j < 8; j++) {
167 ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100168 if (!ts_is_usable(ts))
169 continue;
Harald Weltec0d83b02010-03-28 15:58:03 +0800170 /* ip.access dynamic TCH/F + PDCH combination */
171 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH &&
172 pchan == GSM_PCHAN_TCH_F) {
173 /* we can only consider such a dynamic channel
174 * if the PDCH is currently inactive */
175 if (ts->flags & TS_F_PDCH_MODE)
176 continue;
177 } else if (ts->pchan != pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200178 continue;
179 /* check if all sub-slots are allocated yet */
180 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
181 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)3e460312009-12-27 18:12:29 +0100182 if (lc->type == GSM_LCHAN_NONE &&
183 lc->state == LCHAN_S_NONE)
Harald Weltefc0d9522009-08-10 13:46:55 +0200184 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000185 }
186 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800187
Harald Weltefc0d9522009-08-10 13:46:55 +0200188 return NULL;
189}
190
191static struct gsm_lchan *
192_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
193{
194 struct gsm_bts_trx *trx;
195 struct gsm_bts_trx_ts *ts;
196 struct gsm_lchan *lc;
197
198 if (bts->chan_alloc_reverse) {
199 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
200 lc = _lc_find_trx(trx, pchan);
201 if (lc)
202 return lc;
203 }
204 } else {
205 llist_for_each_entry(trx, &bts->trx_list, list) {
206 lc = _lc_find_trx(trx, pchan);
207 if (lc)
208 return lc;
209 }
210 }
211
Harald Welte8470bf22008-12-25 23:28:35 +0000212 /* we cannot allocate more of these */
213 if (pchan == GSM_PCHAN_CCCH_SDCCH4)
214 return NULL;
215
216 /* if we've reached here, we need to allocate a new physical
217 * channel for the logical channel type requested */
218 ts = ts_alloc(bts, pchan);
219 if (!ts) {
220 /* no more radio resources */
221 return NULL;
222 }
223 return &ts->lchan[0];
224}
225
226/* Allocate a logical channel */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800227struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
228 int allow_bigger)
Harald Welte8470bf22008-12-25 23:28:35 +0000229{
230 struct gsm_lchan *lchan = NULL;
Harald Welte65676fe2009-08-10 14:44:24 +0200231 enum gsm_phys_chan_config first, second;
Harald Welte8470bf22008-12-25 23:28:35 +0000232
233 switch (type) {
234 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200235 if (bts->chan_alloc_reverse) {
236 first = GSM_PCHAN_SDCCH8_SACCH8C;
237 second = GSM_PCHAN_CCCH_SDCCH4;
238 } else {
239 first = GSM_PCHAN_CCCH_SDCCH4;
240 second = GSM_PCHAN_SDCCH8_SACCH8C;
241 }
242
243 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000244 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200245 lchan = _lc_find_bts(bts, second);
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800246
247 /* allow to assign bigger channels */
248 if (allow_bigger) {
249 if (lchan == NULL) {
250 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
251 type = GSM_LCHAN_TCH_H;
252 }
253
254 if (lchan == NULL) {
255 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
256 type = GSM_LCHAN_TCH_F;
257 }
258 }
Harald Welte8470bf22008-12-25 23:28:35 +0000259 break;
260 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200261 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte8470bf22008-12-25 23:28:35 +0000262 break;
263 case GSM_LCHAN_TCH_H:
Harald Weltefc0d9522009-08-10 13:46:55 +0200264 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100265 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100266 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100267 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte487e6be2009-12-12 21:16:38 +0100268 type = GSM_LCHAN_TCH_F;
269 }
Harald Welte8470bf22008-12-25 23:28:35 +0000270 break;
271 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100272 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000273 }
274
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000275 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000276 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000277
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100278 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100279 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100280
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100281 /* clear multi rate config */
282 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
Harald Weltec0d83b02010-03-28 15:58:03 +0800283 } else {
284 struct challoc_signal_data sig;
285 sig.bts = bts;
286 sig.type = type;
287 dispatch_signal(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000288 }
Harald Welte8470bf22008-12-25 23:28:35 +0000289
290 return lchan;
291}
292
293/* Free a logical channel */
294void lchan_free(struct gsm_lchan *lchan)
295{
Harald Weltec0d83b02010-03-28 15:58:03 +0800296 struct challoc_signal_data sig;
Harald Welted12b0fd2009-12-15 21:36:05 +0100297 int i;
298
Harald Weltec0d83b02010-03-28 15:58:03 +0800299 sig.type = lchan->type;
Harald Welte8470bf22008-12-25 23:28:35 +0000300 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800301
302
303 if (lchan->conn) {
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100304 struct lchan_signal_data sig;
305
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800306 /* We might kill an active channel... */
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100307 sig.lchan = lchan;
308 sig.mr = NULL;
309 dispatch_signal(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000310 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000311
Harald Weltec627afc2009-01-09 21:39:17 +0000312
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000313 /* stop the timer */
Sylvain Munautf77af1f2009-12-21 01:11:25 +0100314 bsc_del_timer(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000315
Harald Welted12b0fd2009-12-15 21:36:05 +0100316 /* clear cached measuement reports */
317 lchan->meas_rep_idx = 0;
318 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
319 lchan->meas_rep[i].flags = 0;
320 lchan->meas_rep[i].nr = 0;
321 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100322 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
323 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100324
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800325 if (lchan->rqd_ref) {
326 talloc_free(lchan->rqd_ref);
327 lchan->rqd_ref = NULL;
328 lchan->rqd_ta = 0;
329 }
330
Harald Weltec0d83b02010-03-28 15:58:03 +0800331 sig.lchan = lchan;
332 sig.bts = lchan->ts->trx->bts;
333 dispatch_signal(SS_CHALLOC, S_CHALLOC_FREED, &sig);
334
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800335 if (lchan->conn) {
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800336 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800337 lchan->conn = NULL;
338 }
339
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800340 lchan->sach_deact = 0;
341 lchan->release_reason = 0;
342
Harald Welte8470bf22008-12-25 23:28:35 +0000343 /* FIXME: ts_free() the timeslot, if we're the last logical
344 * channel using it */
345}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000346
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200347/*
348 * There was an error with the TRX and we need to forget
349 * any state so that a lchan can be allocated again after
350 * the trx is fully usable.
Holger Hans Peter Freytherf7a1c232010-06-22 12:19:06 +0800351 *
352 * This should be called after lchan_free to force a channel
353 * be available for allocation again. This means that this
354 * method will stop the "delay after error"-timer and set the
355 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200356 */
357void lchan_reset(struct gsm_lchan *lchan)
358{
359 bsc_del_timer(&lchan->T3101);
Holger Hans Peter Freytherde4b0a22010-06-08 12:12:26 +0800360 bsc_del_timer(&lchan->T3111);
361 bsc_del_timer(&lchan->error_timer);
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200362
363 lchan->type = GSM_LCHAN_NONE;
364 lchan->state = LCHAN_S_NONE;
365}
366
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800367/* release the next allocated SAPI or return 0 */
368static int _lchan_release_next_sapi(struct gsm_lchan *lchan)
369{
370 int sapi;
371
372 for (sapi = 1; sapi < ARRAY_SIZE(lchan->sapis); ++sapi) {
373 u_int8_t link_id;
374 if (lchan->sapis[sapi] == LCHAN_SAPI_UNUSED)
375 continue;
376
377 link_id = sapi;
378 if (lchan->type == GSM_LCHAN_TCH_F || lchan->type == GSM_LCHAN_TCH_H)
379 link_id |= 0x40;
380 rsl_release_request(lchan, link_id, lchan->release_reason);
381 return 0;
382 }
383
384 return 1;
385}
386
387/* Drive the release process of the lchan */
388static void _lchan_handle_release(struct gsm_lchan *lchan)
389{
390 /* Ask for SAPI != 0 to be freed first and stop if we need to wait */
391 if (_lchan_release_next_sapi(lchan) == 0)
392 return;
393
394 if (lchan->sach_deact) {
395 gsm48_send_rr_release(lchan);
396 return;
397 }
398
399 rsl_release_request(lchan, 0, lchan->release_reason);
400 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
401}
402
403/* called from abis rsl */
404int rsl_lchan_rll_release(struct gsm_lchan *lchan, u_int8_t link_id)
405{
406 if (lchan->state != LCHAN_S_REL_REQ)
407 return -1;
408
409 if ((link_id & 0x7) != 0)
410 _lchan_handle_release(lchan);
411 return 0;
412}
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200413
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000414/* Consider releasing the channel now */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800415int lchan_release(struct gsm_lchan *lchan, int sach_deact, int reason)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000416{
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800417 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther63d18b52010-04-10 00:14:55 +0200418 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800419
Holger Hans Peter Freytherabf962b2010-11-14 16:04:46 +0100420 lchan->conn = NULL;
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800421 lchan->release_reason = reason;
422 lchan->sach_deact = sach_deact;
423 _lchan_handle_release(lchan);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000424 return 1;
425}
426
Holger Hans Peter Freytherea01ca72010-06-16 13:05:35 +0800427static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200428 struct gsm_bts_trx *trx;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200429 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000430
Harald Weltee441d9c2009-06-21 16:17:15 +0200431 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000432 for (ts_no = 0; ts_no < 8; ++ts_no) {
433 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
434 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200435 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800436 if (lchan->conn && subscr == lchan->conn->subscr)
Holger Freytherd0e38c32009-01-04 03:48:30 +0000437 return lchan;
438 }
439 }
440 }
441
442 return NULL;
443}
Harald Welte1a6f7982009-08-09 18:52:33 +0200444
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +0800445struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welte1a6f7982009-08-09 18:52:33 +0200446{
447 struct gsm_bts *bts;
448 struct gsm_network *net = subscr->net;
449 struct gsm_lchan *lchan;
450
451 llist_for_each_entry(bts, &net->bts_list, list) {
452 lchan = lchan_find(bts, subscr);
453 if (lchan)
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800454 return lchan->conn;
Harald Welte1a6f7982009-08-09 18:52:33 +0200455 }
456
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100457 return NULL;
Harald Welte1a6f7982009-08-09 18:52:33 +0200458}
Harald Welteb908cb72009-12-22 13:09:29 +0100459
460void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
461{
462 struct gsm_bts_trx *trx;
463
464 llist_for_each_entry(trx, &bts->trx_list, list) {
465 int i;
466
467 /* skip administratively deactivated tranxsceivers */
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +0100468 if (!nm_is_running(&trx->nm_state) ||
469 !nm_is_running(&trx->bb_transc.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100470 continue;
471
472 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
473 struct gsm_bts_trx_ts *ts = &trx->ts[i];
474 struct load_counter *pl = &cl->pchan[ts->pchan];
475 int j;
476
477 /* skip administratively deactivated timeslots */
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +0100478 if (!nm_is_running(&ts->nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100479 continue;
480
481 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
482 struct gsm_lchan *lchan = &ts->lchan[j];
483
484 pl->total++;
485
486 switch (lchan->state) {
487 case LCHAN_S_NONE:
488 break;
489 default:
490 pl->used++;
491 break;
492 }
493 }
494 }
495 }
496}
497
498void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
499{
500 struct gsm_bts *bts;
501
502 memset(pl, 0, sizeof(*pl));
503
504 llist_for_each_entry(bts, &net->bts_list, list)
505 bts_chan_load(pl, bts);
506}
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800507