Change in osmo-bts[master]: Add OC-2G to build

2018-10-26 Thread Omar Ramadan
Omar Ramadan has abandoned this change. ( https://gerrit.osmocom.org/11449 )

Change subject: Add OC-2G to build
..


Abandoned

Squashing into 11447
--
To view, visit https://gerrit.osmocom.org/11449
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-MessageType: abandon
Gerrit-Change-Id: I4a8dcf759a2818c8e457bcb82775c4e60c94d771
Gerrit-Change-Number: 11449
Gerrit-PatchSet: 1
Gerrit-Owner: Omar Ramadan 
Gerrit-Reviewer: Jenkins Builder (102)
Gerrit-CC: Harald Welte 


Change in osmo-bts[master]: Add OC-2G to build

2018-10-26 Thread Harald Welte
Harald Welte has posted comments on this change. ( 
https://gerrit.osmocom.org/11449 )

Change subject: Add OC-2G to build
..


Patch Set 1:

(2 comments)

I think the three patches in this series should be merged into one patch.  The 
retionale is: Only if the build infrastructure is added together with the 
soruce code, we can do build verification as part of patch verification (V+1) 
and a subsequent merge.

https://gerrit.osmocom.org/#/c/11449/1/include/osmo-bts/gsm_data_shared.h
File include/osmo-bts/gsm_data_shared.h:

https://gerrit.osmocom.org/#/c/11449/1/include/osmo-bts/gsm_data_shared.h@414
PS1, Line 414: uint8_t max_power_backoff_8psk; /* in actual dB */
 : uint8_t c0_idle_power_red;  /* in actual dB */
would be good to mark those as "OC2G only for now" in the comment


https://gerrit.osmocom.org/#/c/11449/1/include/osmo-bts/l1sap.h
File include/osmo-bts/l1sap.h:

https://gerrit.osmocom.org/#/c/11449/1/include/osmo-bts/l1sap.h@53
PS1, Line 53:   return L1SAP_CHAN2SS_BCCH(chan_nr);
unrelated cosmetic change, lets' try to avoid that.



--
To view, visit https://gerrit.osmocom.org/11449
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I4a8dcf759a2818c8e457bcb82775c4e60c94d771
Gerrit-Change-Number: 11449
Gerrit-PatchSet: 1
Gerrit-Owner: Omar Ramadan 
Gerrit-Reviewer: Jenkins Builder (102)
Gerrit-CC: Harald Welte 
Gerrit-Comment-Date: Fri, 26 Oct 2018 10:45:57 +
Gerrit-HasComments: Yes
Gerrit-HasLabels: No


Change in osmo-bts[master]: Add OC-2G to build

2018-10-23 Thread Omar Ramadan
Omar Ramadan has uploaded this change for review. ( 
https://gerrit.osmocom.org/11449


Change subject: Add OC-2G to build
..

Add OC-2G to build

Change-Id: I4a8dcf759a2818c8e457bcb82775c4e60c94d771
---
M configure.ac
M include/osmo-bts/gsm_data_shared.h
M include/osmo-bts/l1sap.h
M include/osmo-bts/phy_link.h
M src/Makefile.am
M src/common/gsm_data_shared.c
6 files changed, 55 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/49/11449/1

diff --git a/configure.ac b/configure.ac
index f2d4f84..9a8d58f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -279,6 +279,27 @@
CPPFLAGS=$oldCPPFLAGS
 fi

+AC_MSG_CHECKING([whether to enable NuRAN Wireless OC-2G hardware support])
+AC_ARG_ENABLE(oc2g,
+   AC_HELP_STRING([--enable-oc2g],
+   [enable code for NuRAN Wireless OC-2G bts 
[default=no]]),
+   [enable_oc2g="yes"],[enable_oc2g="no"])
+AC_ARG_WITH([oc2g], [AS_HELP_STRING([--with-oc2g=INCLUDE_DIR], [Location of 
the OC-2G API header files])],
+[oc2g_incdir="$withval"],[oc2g_incdir="$incdir"])
+AC_SUBST([OC2G_INCDIR], -I$oc2g_incdir)
+AC_MSG_RESULT([$enable_oc2g])
+AM_CONDITIONAL(ENABLE_OC2GBTS, test "x$enable_oc2g" = "xyes")
+if test "$enable_oc2g" = "yes"; then
+   oldCPPFLAGS=$CPPFLAGS
+   CPPFLAGS="$CPPFLAGS $OC2G_INCDIR -I$srcdir/include"
+   AC_CHECK_HEADER([nrw/oc2g/oc2g.h],[],
+   [AC_MSG_ERROR([nrw/oc2g/oc2g.h can not be found in 
$oc2g_incdir])],
+   [#include ])
+   PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd)
+PKG_CHECK_MODULES(LIBGPS, libgps)
+   CPPFLAGS=$oldCPPFLAGS
+fi
+
 # https://www.freedesktop.org/software/systemd/man/daemon.html
 AC_ARG_WITH([systemdsystemunitdir],
  [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd 
service files])],,
@@ -307,6 +328,7 @@
 src/osmo-bts-omldummy/Makefile
 src/osmo-bts-sysmo/Makefile
 src/osmo-bts-litecell15/Makefile
+src/osmo-bts-oc2g/Makefile
 src/osmo-bts-trx/Makefile
 src/osmo-bts-octphy/Makefile
 include/Makefile
diff --git a/include/osmo-bts/gsm_data_shared.h 
b/include/osmo-bts/gsm_data_shared.h
index 794eaea..80784af 100644
--- a/include/osmo-bts/gsm_data_shared.h
+++ b/include/osmo-bts/gsm_data_shared.h
@@ -411,6 +411,9 @@
uint16_t arfcn;
int nominal_power;  /* in dBm */
unsigned int max_power_red; /* in actual dB */
+uint8_t max_power_backoff_8psk; /* in actual dB */
+uint8_t c0_idle_power_red;  /* in actual dB */
+

struct trx_power_params power_params;
int ms_power_control;
@@ -437,6 +440,7 @@
 enum gsm_bts_type_variant {
BTS_UNKNOWN,
BTS_OSMO_LITECELL15,
+BTS_OSMO_OC2G,
BTS_OSMO_OCTPHY,
BTS_OSMO_SYSMO,
BTS_OSMO_TRX,
@@ -746,7 +750,14 @@
struct timeval tv_clock;
struct osmo_timer_list fn_timer;
} vbts;
-
+#ifdef ENABLE_OC2GBTS
+/* specific to Open Cellular 2G BTS */
+struct {
+uint8_t led_ctrl_mode;  /* 0: 
control by BTS, 1: not control by BTS */
+struct llist_head ceased_alarm_list;/* ceased alarm list*/
+unsigned int rtp_drift_thres_ms;/* RTP 
timestamp drift detection threshold */
+} oc2g;
+#endif
 };


diff --git a/include/osmo-bts/l1sap.h b/include/osmo-bts/l1sap.h
index 3cf0ea5..4c30589 100644
--- a/include/osmo-bts/l1sap.h
+++ b/include/osmo-bts/l1sap.h
@@ -50,7 +50,7 @@
 static inline uint8_t l1sap_chan2ss(uint8_t chan_nr)
 {
if (L1SAP_IS_CHAN_BCCH(chan_nr))
-return L1SAP_CHAN2SS_BCCH(chan_nr);
+   return L1SAP_CHAN2SS_BCCH(chan_nr);
if (L1SAP_IS_CHAN_SDCCH8(chan_nr))
return L1SAP_CHAN2SS_SDCCH8(chan_nr);
if (L1SAP_IS_CHAN_SDCCH4(chan_nr))
diff --git a/include/osmo-bts/phy_link.h b/include/osmo-bts/phy_link.h
index 36e34e1..2472c05 100644
--- a/include/osmo-bts/phy_link.h
+++ b/include/osmo-bts/phy_link.h
@@ -135,6 +135,20 @@
uint8_t tx_pwr_adj_mode;/* 0: no auto adjust 
power, 1: auto adjust power using RMS detector */
uint8_t tx_pwr_red_8psk;/* 8-PSK maximum Tx 
power reduction level in dB */
} lc15;
+struct {
+/* configuration */
+uint32_t dsp_trace_f;
+char *calib_path;
+int minTxPower;
+int maxTxPower;
+struct oc2gl1_hdl *hdl;
+uint8_t max_cell_size;  /* 0:166 qbits*/
+uint8_t pedestal_mode;  /* 0: unused TS is 
OFF, 1: unused TS is in minimum Tx power */
+