OM2000: Route outgoing NM message depending on MO

Depending on the MO we adress, select the proper OML link
This commit is contained in:
Harald Welte 2011-02-14 15:26:13 +01:00
parent 9c0958bf4c
commit d88a3878cc
6 changed files with 49 additions and 22 deletions

View File

@ -182,4 +182,6 @@ extern struct llist_head e1inp_line_list;
int e1inp_vty_init(void);
void e1inp_init(void);
int _abis_nm_sendmsg(struct msgb *msg, int to_trx_oml);
#endif /* _E1_INPUT_H */

View File

@ -22,7 +22,6 @@
#include "e1_input.h"
int mi_setup(int cardnr, struct e1inp_line *line, int release_l2);
int _abis_nm_sendmsg(struct msgb *msg);
int mi_e1_line_update(struct e1inp_line *line);
#endif

View File

@ -416,7 +416,7 @@ static int abis_nm_queue_msg(struct gsm_bts *bts, struct msgb *msg)
/* queue OML messages */
if (llist_empty(&bts->abis_queue) && !bts->abis_nm_pend) {
bts->abis_nm_pend = OBSC_NM_W_ACK_CB(msg);
return _abis_nm_sendmsg(msg);
return _abis_nm_sendmsg(msg, 0);
} else {
msgb_enqueue(&bts->abis_queue, msg);
return 0;
@ -985,7 +985,7 @@ static void abis_nm_queue_send_next(struct gsm_bts *bts)
while (!llist_empty(&bts->abis_queue)) {
msg = msgb_dequeue(&bts->abis_queue);
wait = OBSC_NM_W_ACK_CB(msg);
_abis_nm_sendmsg(msg);
_abis_nm_sendmsg(msg, 0);
if (wait)
break;

View File

@ -40,6 +40,7 @@
#include <openbsc/abis_nm.h>
#include <openbsc/abis_om2000.h>
#include <openbsc/signal.h>
#include <openbsc/e1_input.h>
#define OM_ALLOC_SIZE 1024
#define OM_HEADROOM_SIZE 128
@ -483,11 +484,47 @@ static struct msgb *om2k_msgb_alloc(void)
"OM2000");
}
static char *om2k_mo_name(const struct abis_om2k_mo *mo)
{
static char mo_buf[64];
memset(mo_buf, 0, sizeof(mo_buf));
snprintf(mo_buf, sizeof(mo_buf), "%s/%02x/%02x/%02x",
get_value_string(om2k_mo_class_short_vals, mo->class),
mo->bts, mo->assoc_so, mo->inst);
return mo_buf;
}
static int abis_om2k_sendmsg(struct gsm_bts *bts, struct msgb *msg)
{
msg->trx = bts->c0;
struct abis_om2k_hdr *o2h;
int to_trx_oml;
return _abis_nm_sendmsg(msg);
msg->l2h = msg->data;
o2h = (struct abis_om2k_hdr *) msg->l2h;
switch (o2h->mo.class) {
case OM2K_MO_CLS_TRXC:
case OM2K_MO_CLS_TX:
case OM2K_MO_CLS_RX:
case OM2K_MO_CLS_TS:
/* Route through per-TRX OML Link to the appropriate TRX */
to_trx_oml = 1;
msg->trx = gsm_bts_trx_by_nr(bts, o2h->mo.inst);
if (!msg->trx) {
LOGP(DNM, LOGL_ERROR, "MO=%s Tx Dropping msg to "
"non-existing TRX\n", om2k_mo_name(&o2h->mo));
return -ENODEV;
}
break;
default:
/* Route through the IXU/DXU OML Link */
msg->trx = bts->c0;
to_trx_oml = 0;
break;
}
return _abis_nm_sendmsg(msg, to_trx_oml);
}
static void fill_om2k_hdr(struct abis_om2k_hdr *o2h, const struct abis_om2k_mo *mo,
@ -501,17 +538,6 @@ static void fill_om2k_hdr(struct abis_om2k_hdr *o2h, const struct abis_om2k_mo *
memcpy(&o2h->mo, mo, sizeof(o2h->mo));
}
static char *om2k_mo_name(const struct abis_om2k_mo *mo)
{
static char mo_buf[64];
memset(mo_buf, 0, sizeof(mo_buf));
snprintf(mo_buf, sizeof(mo_buf), "%s/%02x/%02x/%02x",
get_value_string(om2k_mo_class_short_vals, mo->class),
mo->bts, mo->assoc_so, mo->inst);
return mo_buf;
}
const struct abis_om2k_mo om2k_mo_cf = { OM2K_MO_CLS_CF, 0, 0xFF, 0 };
const struct abis_om2k_mo om2k_mo_is = { OM2K_MO_CLS_IS, 0, 0xFF, 0 };

View File

@ -255,7 +255,7 @@ int abis_rsl_sendmsg(struct msgb *msg)
return 0;
}
int _abis_nm_sendmsg(struct msgb *msg)
int _abis_nm_sendmsg(struct msgb *msg, int to_trx_oml)
{
struct e1inp_sign_link *sign_link;
struct e1inp_driver *e1inp_driver;
@ -268,12 +268,12 @@ int _abis_nm_sendmsg(struct msgb *msg)
return -EINVAL;
}
#if 0
/* Check for TRX-specific OML link first */
if (msg->trx->oml_link)
if (to_trx_oml) {
if (!msg->trx->oml_link)
return -ENODEV;
sign_link = msg->trx->oml_link;
else
#endif
} else
sign_link = msg->trx->bts->oml_link;
e1i_ts = sign_link->ts;

View File

@ -54,7 +54,7 @@ static struct serial_handle _ser_handle, *ser_handle = &_ser_handle;
static int handle_ser_write(struct bsc_fd *bfd);
/* callback from abis_nm */
int _abis_nm_sendmsg(struct msgb *msg)
int _abis_nm_sendmsg(struct msgb *msg, int to_trx_oml)
{
struct serial_handle *sh = ser_handle;
u_int8_t *lapd;