summaryrefslogtreecommitdiffstats
path: root/src/host
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-07-28 14:47:41 +0600
committerVadim Yanitskiy <axilirator@gmail.com>2017-11-19 17:35:07 +0700
commitc045bc4fbefc2dd1bd9e45cd21ebd50740700c3e (patch)
treec9207b342eb0e7c8005a8f39b9547a7e3a4d3b7f /src/host
parent539e9a1f18fcf8545a0d2f0646a928f99933622a (diff)
host/trxcon/scheduler: simplify timeslot management
As we know the count of timeslots per GSM TDMA frame, it would be better to have an array of pointers to trx_ts instances instead of linux list, which is more usable for lists with unknown length. Change-Id: I9510a5cddde22950ceb8422e0990d59f05ed4d60
Diffstat (limited to 'src/host')
-rw-r--r--src/host/trxcon/sched_trx.c97
-rw-r--r--src/host/trxcon/sched_trx.h2
-rw-r--r--src/host/trxcon/trx_if.h2
3 files changed, 47 insertions, 54 deletions
diff --git a/src/host/trxcon/sched_trx.c b/src/host/trxcon/sched_trx.c
index 7ac64978..3e615825 100644
--- a/src/host/trxcon/sched_trx.c
+++ b/src/host/trxcon/sched_trx.c
@@ -55,13 +55,20 @@ static void sched_frame_clck_cb(struct trx_sched *sched)
uint8_t offset, bid;
struct trx_ts *ts;
uint32_t fn;
+ int i;
- /* If we have no active timeslots, nothing to do */
- if (llist_empty(&trx->ts_list))
- return;
+ /* Iterate over timeslot list */
+ for (i = 0; i < TRX_TS_COUNT; i++) {
+ /* Timeslot is not allocated */
+ ts = trx->ts_list[i];
+ if (ts == NULL)
+ continue;
+
+ /* Timeslot is not configured */
+ if (ts->mf_layout == NULL)
+ continue;
- /* For each allocated timeslot */
- llist_for_each_entry(ts, &trx->ts_list, list) {
+ /* There is nothing to send */
if (llist_empty(&ts->tx_prims))
continue;
@@ -107,8 +114,6 @@ int sched_trx_init(struct trx_instance *trx)
sched = &trx->sched;
sched->data = trx;
- INIT_LLIST_HEAD(&trx->ts_list);
-
return 0;
}
@@ -142,8 +147,6 @@ int sched_trx_reset(struct trx_instance *trx, int reset_clock)
for (i = 0; i < TRX_TS_COUNT; i++)
sched_trx_del_ts(trx, i);
- INIT_LLIST_HEAD(&trx->ts_list);
-
/* Stop and reset clock counter if required */
if (reset_clock)
sched_clck_reset(&trx->sched);
@@ -151,89 +154,81 @@ int sched_trx_reset(struct trx_instance *trx, int reset_clock)
return 0;
}
-struct trx_ts *sched_trx_add_ts(struct trx_instance *trx, int ts_num)
+struct trx_ts *sched_trx_add_ts(struct trx_instance *trx, int tn)
{
- struct trx_ts *ts;
+ /* Make sure that ts isn't allocated yet */
+ if (trx->ts_list[tn] != NULL) {
+ LOGP(DSCH, LOGL_ERROR, "Timeslot #%u already allocated\n", tn);
+ return NULL;
+ }
- LOGP(DSCH, LOGL_NOTICE, "Add a new TDMA timeslot #%u\n", ts_num);
+ LOGP(DSCH, LOGL_NOTICE, "Add a new TDMA timeslot #%u\n", tn);
- ts = talloc_zero(trx, struct trx_ts);
- if (!ts)
- return NULL;
+ /* Allocate a new one */
+ trx->ts_list[tn] = talloc_zero(trx, struct trx_ts);
- llist_add_tail(&ts->list, &trx->ts_list);
+ /* Assign TS index */
+ trx->ts_list[tn]->index = tn;
- return ts;
+ return trx->ts_list[tn];
}
-struct trx_ts *sched_trx_find_ts(struct trx_instance *trx, int ts_num)
+/* FIXME: one kept here for compatibility reasons */
+struct trx_ts *sched_trx_find_ts(struct trx_instance *trx, int tn)
{
- struct trx_ts *ts;
-
- if (llist_empty(&trx->ts_list))
- return NULL;
-
- llist_for_each_entry(ts, &trx->ts_list, list) {
- if (ts->index == ts_num)
- return ts;
- }
-
- return NULL;
+ return trx->ts_list[tn];
}
-void sched_trx_del_ts(struct trx_instance *trx, int ts_num)
+void sched_trx_del_ts(struct trx_instance *trx, int tn)
{
struct trx_ts *ts;
/* Find ts in list */
- ts = sched_trx_find_ts(trx, ts_num);
+ ts = trx->ts_list[tn];
if (ts == NULL)
return;
- LOGP(DSCH, LOGL_NOTICE, "Delete TDMA timeslot #%u\n", ts_num);
+ LOGP(DSCH, LOGL_NOTICE, "Delete TDMA timeslot #%u\n", tn);
/* Flush queue primitives for TX */
msgb_queue_flush(&ts->tx_prims);
- /* Remove ts from list */
- llist_del(&ts->list);
+ /* Remove ts from list and free memory */
+ trx->ts_list[tn] = NULL;
talloc_free(ts);
/* Notify transceiver about that */
- trx_if_cmd_setslot(trx, ts_num, 0);
+ trx_if_cmd_setslot(trx, tn, 0);
}
-int sched_trx_configure_ts(struct trx_instance *trx, int ts_num,
+int sched_trx_configure_ts(struct trx_instance *trx, int tn,
enum gsm_phys_chan_config config)
{
int i, type, lchan_cnt = 0;
struct trx_ts *ts;
/* Try to find specified ts */
- ts = sched_trx_find_ts(trx, ts_num);
+ ts = trx->ts_list[tn];
if (ts != NULL) {
/* Reconfiguration of existing one */
- sched_trx_reset_ts(trx, ts_num);
+ sched_trx_reset_ts(trx, tn);
} else {
/* Allocate a new one if doesn't exist */
- ts = sched_trx_add_ts(trx, ts_num);
+ ts = sched_trx_add_ts(trx, tn);
if (ts == NULL)
return -ENOMEM;
-
- /* Assign TS index */
- ts->index = ts_num;
}
/* Init queue primitives for TX */
INIT_LLIST_HEAD(&ts->tx_prims);
/* Choose proper multiframe layout */
- ts->mf_layout = sched_mframe_layout(config, ts_num);
+ ts->mf_layout = sched_mframe_layout(config, tn);
if (ts->mf_layout->chan_config != config)
return -EINVAL;
LOGP(DSCH, LOGL_NOTICE, "(Re)configure TDMA timeslot #%u as %s\n",
- ts_num, ts->mf_layout->name);
+ tn, ts->mf_layout->name);
/* Count channel states */
for (type = 0; type < _TRX_CHAN_MAX; type++)
@@ -262,17 +257,17 @@ int sched_trx_configure_ts(struct trx_instance *trx, int ts_num,
/* Notify transceiver about TS activation */
/* FIXME: set proper channel type */
- trx_if_cmd_setslot(trx, ts_num, 1);
+ trx_if_cmd_setslot(trx, tn, 1);
return 0;
}
-int sched_trx_reset_ts(struct trx_instance *trx, int ts_num)
+int sched_trx_reset_ts(struct trx_instance *trx, int tn)
{
struct trx_ts *ts;
/* Try to find specified ts */
- ts = sched_trx_find_ts(trx, ts_num);
+ ts = trx->ts_list[tn];
if (ts == NULL)
return -EINVAL;
@@ -289,7 +284,7 @@ int sched_trx_reset_ts(struct trx_instance *trx, int ts_num)
talloc_free(ts->lchans);
/* Notify transceiver about that */
- trx_if_cmd_setslot(trx, ts_num, 0);
+ trx_if_cmd_setslot(trx, tn, 0);
return 0;
}
@@ -416,7 +411,7 @@ enum trx_lchan_type sched_trx_chan_nr2lchan_type(uint8_t chan_nr)
return TRXC_IDLE;
}
-int sched_trx_handle_rx_burst(struct trx_instance *trx, uint8_t ts_num,
+int sched_trx_handle_rx_burst(struct trx_instance *trx, uint8_t tn,
uint32_t burst_fn, sbit_t *bits, uint16_t nbits, int8_t rssi, float toa)
{
struct trx_lchan_state *lchan;
@@ -429,10 +424,10 @@ int sched_trx_handle_rx_burst(struct trx_instance *trx, uint8_t ts_num,
uint8_t offset, bid;
/* Check whether required timeslot is enabled / configured */
- ts = sched_trx_find_ts(trx, ts_num);
+ ts = sched_trx_find_ts(trx, tn);
if (ts == NULL) {
LOGP(DSCH, LOGL_DEBUG, "TDMA timeslot #%u isn't configured, "
- "ignoring burst...\n", ts_num);
+ "ignoring burst...\n", tn);
return -EINVAL;
}
diff --git a/src/host/trxcon/sched_trx.h b/src/host/trxcon/sched_trx.h
index ff3d254e..42953b3d 100644
--- a/src/host/trxcon/sched_trx.h
+++ b/src/host/trxcon/sched_trx.h
@@ -228,8 +228,6 @@ struct trx_ts {
struct trx_lchan_state *lchans;
/*! \brief Queue primitives for TX */
struct llist_head tx_prims;
- /*! \brief Link to parent list */
- struct llist_head list;
};
/* Represents one TX primitive in the queue of trx_ts */
diff --git a/src/host/trxcon/trx_if.h b/src/host/trxcon/trx_if.h
index f09a2562..fbfa8b5e 100644
--- a/src/host/trxcon/trx_if.h
+++ b/src/host/trxcon/trx_if.h
@@ -38,7 +38,7 @@ struct trx_instance {
/* Scheduler stuff */
struct trx_sched sched;
- struct llist_head ts_list;
+ struct trx_ts *ts_list[TRX_TS_COUNT];
/* Bind L1CTL link */
struct l1ctl_link *l1l;