mirror of
				https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
				synced 2025-11-03 21:53:18 +00:00 
			
		
		
		
	Compare commits
	
		
			31 Commits
		
	
	
		
			2022q2
			...
			ewild/next
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					c03b7e04ee | ||
| 
						 | 
					bf64d887a8 | ||
| 
						 | 
					056c5d8fab | ||
| 
						 | 
					6ada823b1a | ||
| 
						 | 
					a8d3e91590 | ||
| 
						 | 
					cf9883b131 | ||
| 
						 | 
					2336ff6540 | ||
| 
						 | 
					2016e46064 | ||
| 
						 | 
					443810195a | ||
| 
						 | 
					7434d0ec3b | ||
| 
						 | 
					218d6fccff | ||
| 
						 | 
					d703fe43f3 | ||
| 
						 | 
					fba23b665f | ||
| 
						 | 
					473ea0afd7 | ||
| 
						 | 
					d1cc8b928e | ||
| 
						 | 
					a5ac4b272d | ||
| 
						 | 
					6570962dca | ||
| 
						 | 
					7a8b9cdbf0 | ||
| 
						 | 
					6f20791120 | ||
| 
						 | 
					2845dc741c | ||
| 
						 | 
					1067cb70a4 | ||
| 
						 | 
					eb4a94241b | ||
| 
						 | 
					572eeda79c | ||
| 
						 | 
					39ae5730cd | ||
| 
						 | 
					4e131b2dd4 | ||
| 
						 | 
					37aa2ee85d | ||
| 
						 | 
					eed524b09e | ||
| 
						 | 
					218f968684 | ||
| 
						 | 
					62dfcac2f0 | ||
| 
						 | 
					b49c8ab965 | ||
| 
						 | 
					d5ff10069c | 
							
								
								
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -7,8 +7,6 @@ Transceiver52M/osmo-trx-usrp1
 | 
				
			|||||||
Transceiver52M/osmo-trx-lms
 | 
					Transceiver52M/osmo-trx-lms
 | 
				
			||||||
Transceiver52M/osmo-trx-ipc
 | 
					Transceiver52M/osmo-trx-ipc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.clang-format
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# tests
 | 
					# tests
 | 
				
			||||||
tests/CommonLibs/BitVectorTest
 | 
					tests/CommonLibs/BitVectorTest
 | 
				
			||||||
tests/CommonLibs/F16Test
 | 
					tests/CommonLibs/F16Test
 | 
				
			||||||
@@ -64,9 +62,7 @@ doc/manuals/*.pdf
 | 
				
			|||||||
doc/manuals/*__*.png
 | 
					doc/manuals/*__*.png
 | 
				
			||||||
doc/manuals/*.check
 | 
					doc/manuals/*.check
 | 
				
			||||||
doc/manuals/generated/
 | 
					doc/manuals/generated/
 | 
				
			||||||
doc/manuals/vty/osmotrx-*-vty-reference.xml
 | 
					doc/manuals/osmomsc-usermanual.xml
 | 
				
			||||||
doc/manuals/vty/osmotrx-*-vty-reference.xml.inc.gen
 | 
					 | 
				
			||||||
doc/manuals/vty/osmotrx-*-vty-reference.xml.inc.merged
 | 
					 | 
				
			||||||
doc/manuals/common
 | 
					doc/manuals/common
 | 
				
			||||||
doc/manuals/build
 | 
					doc/manuals/build
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,19 +50,19 @@ extern "C" {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LOG(level) \
 | 
					#define LOG(level) \
 | 
				
			||||||
	Log(DMAIN, LOGL_##level, __BASE_FILE__, __LINE__).get()
 | 
						Log(DMAIN, LOGL_##level, __BASE_FILE__, __LINE__).get() <<  "[tid=" << pthread_self() << "] "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LOGC(category, level) \
 | 
					#define LOGC(category, level) \
 | 
				
			||||||
	Log(category, LOGL_##level, __BASE_FILE__, __LINE__).get()
 | 
						Log(category, LOGL_##level, __BASE_FILE__, __LINE__).get() <<  "[tid=" << pthread_self() << "] "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LOGLV(category, level) \
 | 
					#define LOGLV(category, level) \
 | 
				
			||||||
	Log(category, level, __BASE_FILE__, __LINE__).get()
 | 
						Log(category, level, __BASE_FILE__, __LINE__).get() <<  "[tid=" << pthread_self() << "] "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LOGSRC(category, level, file, line) \
 | 
					#define LOGSRC(category, level, file, line) \
 | 
				
			||||||
	Log(category, level, file, line).get()
 | 
						Log(category, level, file, line).get() <<  "[tid=" << pthread_self() << "] "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LOGCHAN(chan, category, level) \
 | 
					#define LOGCHAN(chan, category, level) \
 | 
				
			||||||
	Log(category, LOGL_##level, __BASE_FILE__, __LINE__).get() <<  "[chan=" << chan << "] "
 | 
						Log(category, LOGL_##level, __BASE_FILE__, __LINE__).get() <<  "[tid=" << pthread_self() << "][chan=" << chan << "] "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
	A C++ stream-based thread-safe logger.
 | 
						A C++ stream-based thread-safe logger.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef PRBS_H
 | 
					#ifndef PRBS_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,9 +32,11 @@
 | 
				
			|||||||
#include "Timeval.h"
 | 
					#include "Timeval.h"
 | 
				
			||||||
#include "Logger.h"
 | 
					#include "Logger.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern "C" {
 | 
					#ifndef gettid
 | 
				
			||||||
#include <osmocom/core/thread.h>
 | 
					#include <sys/syscall.h>
 | 
				
			||||||
}
 | 
					#define gettid() syscall(SYS_gettid)
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
using namespace std;
 | 
					using namespace std;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -49,7 +51,7 @@ void lockCout()
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	gStreamLock.lock();
 | 
						gStreamLock.lock();
 | 
				
			||||||
	Timeval entryTime;
 | 
						Timeval entryTime;
 | 
				
			||||||
	cout << entryTime << " " << osmo_gettid() << ": ";
 | 
						cout << entryTime << " " << pthread_self() << ": ";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -64,7 +66,7 @@ void lockCerr()
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	gStreamLock.lock();
 | 
						gStreamLock.lock();
 | 
				
			||||||
	Timeval entryTime;
 | 
						Timeval entryTime;
 | 
				
			||||||
	cerr << entryTime << " " << osmo_gettid() << ": ";
 | 
						cerr << entryTime << " " << pthread_self() << ": ";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void unlockCerr()
 | 
					void unlockCerr()
 | 
				
			||||||
@@ -112,7 +114,7 @@ void Signal::wait(Mutex& wMutex, unsigned timeout) const
 | 
				
			|||||||
void set_selfthread_name(const char *name)
 | 
					void set_selfthread_name(const char *name)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	pthread_t selfid = pthread_self();
 | 
						pthread_t selfid = pthread_self();
 | 
				
			||||||
	pid_t tid = osmo_gettid();
 | 
						pid_t tid = gettid();
 | 
				
			||||||
	if (pthread_setname_np(selfid, name) == 0) {
 | 
						if (pthread_setname_np(selfid, name) == 0) {
 | 
				
			||||||
		LOG(INFO) << "Thread "<< selfid << " (task " << tid << ") set name: " << name;
 | 
							LOG(INFO) << "Thread "<< selfid << " (task " << tid << ") set name: " << name;
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <vector>
 | 
					#include <vector>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -36,11 +36,6 @@
 | 
				
			|||||||
#include <assert.h>
 | 
					#include <assert.h>
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __OPTIMIZE__
 | 
					 | 
				
			||||||
#define assert_no_opt(x) assert(x)
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
#define assert_no_opt(x)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
// We can't use Logger.h in this file...
 | 
					// We can't use Logger.h in this file...
 | 
				
			||||||
extern int gVectorDebug;
 | 
					extern int gVectorDebug;
 | 
				
			||||||
#define BVDEBUG(msg) if (gVectorDebug) {std::cout << msg;}
 | 
					#define BVDEBUG(msg) if (gVectorDebug) {std::cout << msg;}
 | 
				
			||||||
@@ -86,8 +81,8 @@ template <class T> class Vector {
 | 
				
			|||||||
	/** Return the size of the Vector. */
 | 
						/** Return the size of the Vector. */
 | 
				
			||||||
	size_t size() const
 | 
						size_t size() const
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		assert_no_opt(mStart>=mData);
 | 
							assert(mStart>=mData);
 | 
				
			||||||
		assert_no_opt(mEnd>=mStart);
 | 
							assert(mEnd>=mStart);
 | 
				
			||||||
		return mEnd - mStart;
 | 
							return mEnd - mStart;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -117,7 +112,7 @@ template <class T> class Vector {
 | 
				
			|||||||
	/** Reduce addressable size of the Vector, keeping content. */
 | 
						/** Reduce addressable size of the Vector, keeping content. */
 | 
				
			||||||
	void shrink(size_t newSize)
 | 
						void shrink(size_t newSize)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		assert_no_opt(newSize <= mEnd - mStart);
 | 
							assert(newSize <= mEnd - mStart);
 | 
				
			||||||
		mEnd = mStart + newSize;
 | 
							mEnd = mStart + newSize;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -204,7 +199,7 @@ template <class T> class Vector {
 | 
				
			|||||||
	{
 | 
						{
 | 
				
			||||||
		T* wStart = mStart + start;
 | 
							T* wStart = mStart + start;
 | 
				
			||||||
		T* wEnd = wStart + span;
 | 
							T* wEnd = wStart + span;
 | 
				
			||||||
		assert_no_opt(wEnd<=mEnd);
 | 
							assert(wEnd<=mEnd);
 | 
				
			||||||
		return Vector<T>(NULL,wStart,wEnd);
 | 
							return Vector<T>(NULL,wStart,wEnd);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -213,7 +208,7 @@ template <class T> class Vector {
 | 
				
			|||||||
	{
 | 
						{
 | 
				
			||||||
		T* wStart = mStart + start;
 | 
							T* wStart = mStart + start;
 | 
				
			||||||
		T* wEnd = wStart + span;
 | 
							T* wEnd = wStart + span;
 | 
				
			||||||
		assert_no_opt(wEnd<=mEnd);
 | 
							assert(wEnd<=mEnd);
 | 
				
			||||||
		return Vector<T>(NULL,wStart,wEnd);
 | 
							return Vector<T>(NULL,wStart,wEnd);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -233,8 +228,8 @@ template <class T> class Vector {
 | 
				
			|||||||
		unsigned int i;
 | 
							unsigned int i;
 | 
				
			||||||
		T* dst = other.mStart + start;
 | 
							T* dst = other.mStart + start;
 | 
				
			||||||
		T* src = mStart;
 | 
							T* src = mStart;
 | 
				
			||||||
		assert_no_opt(dst+span<=other.mEnd);
 | 
							assert(dst+span<=other.mEnd);
 | 
				
			||||||
		assert_no_opt(mStart+span<=mEnd);
 | 
							assert(mStart+span<=mEnd);
 | 
				
			||||||
		for (i = 0; i < span; i++, src++, dst++)
 | 
							for (i = 0; i < span; i++, src++, dst++)
 | 
				
			||||||
			*dst = *src;
 | 
								*dst = *src;
 | 
				
			||||||
		/*TODO if not non-trivially copiable type class, optimize:
 | 
							/*TODO if not non-trivially copiable type class, optimize:
 | 
				
			||||||
@@ -255,8 +250,8 @@ template <class T> class Vector {
 | 
				
			|||||||
	void segmentCopyTo(Vector<T>& other, size_t start, size_t span) const
 | 
						void segmentCopyTo(Vector<T>& other, size_t start, size_t span) const
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		const T* base = mStart + start;
 | 
							const T* base = mStart + start;
 | 
				
			||||||
		assert_no_opt(base+span<=mEnd);
 | 
							assert(base+span<=mEnd);
 | 
				
			||||||
		assert_no_opt(other.mStart+span<=other.mEnd);
 | 
							assert(other.mStart+span<=other.mEnd);
 | 
				
			||||||
		memcpy(other.mStart,base,span*sizeof(T));
 | 
							memcpy(other.mStart,base,span*sizeof(T));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -270,8 +265,8 @@ template <class T> class Vector {
 | 
				
			|||||||
	{
 | 
						{
 | 
				
			||||||
		const T* baseFrom = mStart + from;
 | 
							const T* baseFrom = mStart + from;
 | 
				
			||||||
		T* baseTo = mStart + to;
 | 
							T* baseTo = mStart + to;
 | 
				
			||||||
		assert_no_opt(baseFrom+span<=mEnd);
 | 
							assert(baseFrom+span<=mEnd);
 | 
				
			||||||
		assert_no_opt(baseTo+span<=mEnd);
 | 
							assert(baseTo+span<=mEnd);
 | 
				
			||||||
		memmove(baseTo,baseFrom,span*sizeof(T));
 | 
							memmove(baseTo,baseFrom,span*sizeof(T));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -285,7 +280,7 @@ template <class T> class Vector {
 | 
				
			|||||||
	{
 | 
						{
 | 
				
			||||||
		T* dp=mStart+start;
 | 
							T* dp=mStart+start;
 | 
				
			||||||
		T* end=dp+length;
 | 
							T* end=dp+length;
 | 
				
			||||||
		assert_no_opt(end<=mEnd);
 | 
							assert(end<=mEnd);
 | 
				
			||||||
		while (dp<end) *dp++=val;
 | 
							while (dp<end) *dp++=val;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -297,13 +292,13 @@ template <class T> class Vector {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	T& operator[](size_t index)
 | 
						T& operator[](size_t index)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		assert_no_opt(mStart+index<mEnd);
 | 
							assert(mStart+index<mEnd);
 | 
				
			||||||
		return mStart[index];
 | 
							return mStart[index];
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	const T& operator[](size_t index) const
 | 
						const T& operator[](size_t index) const
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		assert_no_opt(mStart+index<mEnd);
 | 
							assert(mStart+index<mEnd);
 | 
				
			||||||
		return mStart[index];
 | 
							return mStart[index];
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,8 +5,6 @@
 | 
				
			|||||||
 * osmo-trx (CXX, dir Transceiver52)
 | 
					 * osmo-trx (CXX, dir Transceiver52)
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdbool.h>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enum FillerType {
 | 
					enum FillerType {
 | 
				
			||||||
  FILLER_DUMMY,
 | 
					  FILLER_DUMMY,
 | 
				
			||||||
  FILLER_ZERO,
 | 
					  FILLER_ZERO,
 | 
				
			||||||
@@ -20,41 +18,3 @@ enum ReferenceType {
 | 
				
			|||||||
  REF_EXTERNAL,
 | 
					  REF_EXTERNAL,
 | 
				
			||||||
  REF_GPS,
 | 
					  REF_GPS,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Maximum number of physical RF channels */
 | 
					 | 
				
			||||||
#define TRX_CHAN_MAX 8
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct trx_ctx;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct trx_chan {
 | 
					 | 
				
			||||||
	struct trx_ctx *trx; /* backpointer */
 | 
					 | 
				
			||||||
	unsigned int idx; /* channel index */
 | 
					 | 
				
			||||||
	char *rx_path;
 | 
					 | 
				
			||||||
	char *tx_path;
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct trx_cfg {
 | 
					 | 
				
			||||||
	char *bind_addr;
 | 
					 | 
				
			||||||
	char *remote_addr;
 | 
					 | 
				
			||||||
	char *dev_args;
 | 
					 | 
				
			||||||
	unsigned int base_port;
 | 
					 | 
				
			||||||
	unsigned int tx_sps;
 | 
					 | 
				
			||||||
	unsigned int rx_sps;
 | 
					 | 
				
			||||||
	unsigned int rtsc;
 | 
					 | 
				
			||||||
	unsigned int rach_delay;
 | 
					 | 
				
			||||||
	enum ReferenceType clock_ref;
 | 
					 | 
				
			||||||
	enum FillerType filler;
 | 
					 | 
				
			||||||
	bool multi_arfcn;
 | 
					 | 
				
			||||||
	double offset;
 | 
					 | 
				
			||||||
	double freq_offset_khz;
 | 
					 | 
				
			||||||
	double rssi_offset;
 | 
					 | 
				
			||||||
	int ul_fn_offset;
 | 
					 | 
				
			||||||
	bool force_rssi_offset; /* Force value set in VTY? */
 | 
					 | 
				
			||||||
	bool swap_channels;
 | 
					 | 
				
			||||||
	bool ext_rach;
 | 
					 | 
				
			||||||
	bool egprs;
 | 
					 | 
				
			||||||
	unsigned int sched_rr;
 | 
					 | 
				
			||||||
	unsigned int stack_size;
 | 
					 | 
				
			||||||
	unsigned int num_chans;
 | 
					 | 
				
			||||||
	struct trx_chan chans[TRX_CHAN_MAX];
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,6 +21,18 @@
 | 
				
			|||||||
 * See the COPYING file in the main directory for details.
 | 
					 * See the COPYING file in the main directory for details.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "config.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* If HAVE_GETTID, then "_GNU_SOURCE" may need to be defined to use gettid() */
 | 
				
			||||||
 | 
					#if HAVE_GETTID
 | 
				
			||||||
 | 
					#define _GNU_SOURCE
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					#include <sys/syscall.h>
 | 
				
			||||||
 | 
					#include "config.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <osmocom/core/logging.h>
 | 
					#include <osmocom/core/logging.h>
 | 
				
			||||||
#include <osmocom/core/utils.h>
 | 
					#include <osmocom/core/utils.h>
 | 
				
			||||||
#include "debug.h"
 | 
					#include "debug.h"
 | 
				
			||||||
@@ -81,3 +93,15 @@ const struct log_info log_info = {
 | 
				
			|||||||
	.cat = default_categories,
 | 
						.cat = default_categories,
 | 
				
			||||||
	.num_cat = ARRAY_SIZE(default_categories),
 | 
						.num_cat = ARRAY_SIZE(default_categories),
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					pid_t my_gettid(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					#if HAVE_GETTID
 | 
				
			||||||
 | 
						return gettid();
 | 
				
			||||||
 | 
					#elif defined(LINUX) && defined(__NR_gettid)
 | 
				
			||||||
 | 
						return (pid_t) syscall(__NR_gettid);
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
						#pragma message ("use pid as tid")
 | 
				
			||||||
 | 
						return getpid();
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdbool.h>
 | 
					#include <stdbool.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <osmocom/core/logging.h>
 | 
					#include <osmocom/core/logging.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -18,6 +19,12 @@ enum {
 | 
				
			|||||||
	DCTR,
 | 
						DCTR,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CLOGCHAN(chan, category, level, fmt, args...) do { \
 | 
					pid_t my_gettid(void);
 | 
				
			||||||
	LOGP(category, level, "[chan=%zu] " fmt, chan, ##args);  \
 | 
					
 | 
				
			||||||
 | 
					#define CLOGC(category, level, fmt, args...) do { \
 | 
				
			||||||
 | 
						LOGP(category, level, "[tid=%ld] " fmt, (long int) my_gettid(), ##args);  \
 | 
				
			||||||
 | 
					} while(0)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CLOGCHAN(chan, category, level, fmt, args...) do { \
 | 
				
			||||||
 | 
						LOGP(category, level, "[tid=%ld][chan=%zu] " fmt, (long int) my_gettid(), chan, ##args);  \
 | 
				
			||||||
} while(0)
 | 
					} while(0)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -147,17 +147,17 @@ static int dev_rate_ctr_timerfd_cb(struct osmo_fd *ofd, unsigned int what) {
 | 
				
			|||||||
		if (dev_ctrs_pending[chan].chan == PENDING_CHAN_NONE)
 | 
							if (dev_ctrs_pending[chan].chan == PENDING_CHAN_NONE)
 | 
				
			||||||
			continue;
 | 
								continue;
 | 
				
			||||||
		LOGCHAN(chan, DCTR, DEBUG) << "rate_ctr update";
 | 
							LOGCHAN(chan, DCTR, DEBUG) << "rate_ctr update";
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_RX_OVERRUNS);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_RX_OVERRUNS];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_overruns - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_overruns - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_TX_UNDERRUNS);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_TX_UNDERRUNS];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_underruns - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_underruns - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_RX_DROP_EV);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_RX_DROP_EV];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_dropped_events - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_dropped_events - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_RX_DROP_SMPL);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_RX_DROP_SMPL];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_dropped_samples - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].rx_dropped_samples - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_TX_DROP_EV);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_TX_DROP_EV];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_dropped_events - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_dropped_events - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_DEV_TX_DROP_SMPL);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_DEV_TX_DROP_SMPL];
 | 
				
			||||||
		rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_dropped_samples - ctr->current);
 | 
							rate_ctr_add(ctr, dev_ctrs_pending[chan].tx_dropped_samples - ctr->current);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* Mark as done */
 | 
							/* Mark as done */
 | 
				
			||||||
@@ -178,21 +178,21 @@ static int trx_rate_ctr_timerfd_cb(struct osmo_fd *ofd, unsigned int what) {
 | 
				
			|||||||
		if (trx_ctrs_pending[chan].chan == PENDING_CHAN_NONE)
 | 
							if (trx_ctrs_pending[chan].chan == PENDING_CHAN_NONE)
 | 
				
			||||||
			continue;
 | 
								continue;
 | 
				
			||||||
		LOGCHAN(chan, DCTR, DEBUG) << "rate_ctr update";
 | 
							LOGCHAN(chan, DCTR, DEBUG) << "rate_ctr update";
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_TX_STALE_BURSTS);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_TX_STALE_BURSTS];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_stale_bursts - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_stale_bursts - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_TX_UNAVAILABLE_BURSTS);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_TX_UNAVAILABLE_BURSTS];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_unavailable_bursts - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_unavailable_bursts - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_TRXD_FN_REPEATED);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_TRXD_FN_REPEATED];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_repeated - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_repeated - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_TRXD_FN_OUTOFORDER);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_TRXD_FN_OUTOFORDER];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_outoforder - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_outoforder - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_TRXD_FN_SKIPPED);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_TRXD_FN_SKIPPED];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_skipped - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].tx_trxd_fn_skipped - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_RX_EMPTY_BURST);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_RX_EMPTY_BURST];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_empty_burst - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_empty_burst - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_RX_CLIPPING);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_RX_CLIPPING];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_clipping - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_clipping - ctr->current);
 | 
				
			||||||
		ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], TRX_CTR_TRX_RX_NO_BURST_DETECTED);
 | 
							ctr = &rate_ctrs[chan]->ctr[TRX_CTR_TRX_RX_NO_BURST_DETECTED];
 | 
				
			||||||
		rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_no_burst_detected - ctr->current);
 | 
							rate_ctr_add(ctr, trx_ctrs_pending[chan].rx_no_burst_detected - ctr->current);
 | 
				
			||||||
		/* Mark as done */
 | 
							/* Mark as done */
 | 
				
			||||||
		trx_ctrs_pending[chan].chan = PENDING_CHAN_NONE;
 | 
							trx_ctrs_pending[chan].chan = PENDING_CHAN_NONE;
 | 
				
			||||||
@@ -214,7 +214,6 @@ static int device_sig_cb(unsigned int subsys, unsigned int signal,
 | 
				
			|||||||
	struct timespec next_sched = {.tv_sec = 0, .tv_nsec = 20*1000*1000};
 | 
						struct timespec next_sched = {.tv_sec = 0, .tv_nsec = 20*1000*1000};
 | 
				
			||||||
	/* no automatic re-trigger */
 | 
						/* no automatic re-trigger */
 | 
				
			||||||
	struct timespec intv_sched = {.tv_sec = 0, .tv_nsec = 0};
 | 
						struct timespec intv_sched = {.tv_sec = 0, .tv_nsec = 0};
 | 
				
			||||||
	char err_buf[256];
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	switch (signal) {
 | 
						switch (signal) {
 | 
				
			||||||
	case S_DEVICE_COUNTER_CHANGE:
 | 
						case S_DEVICE_COUNTER_CHANGE:
 | 
				
			||||||
@@ -223,8 +222,7 @@ static int device_sig_cb(unsigned int subsys, unsigned int signal,
 | 
				
			|||||||
		dev_rate_ctr_mutex.lock();
 | 
							dev_rate_ctr_mutex.lock();
 | 
				
			||||||
		dev_ctrs_pending[dev_ctr->chan] = *dev_ctr;
 | 
							dev_ctrs_pending[dev_ctr->chan] = *dev_ctr;
 | 
				
			||||||
		if (osmo_timerfd_schedule(&dev_rate_ctr_timerfd, &next_sched, &intv_sched) < 0) {
 | 
							if (osmo_timerfd_schedule(&dev_rate_ctr_timerfd, &next_sched, &intv_sched) < 0) {
 | 
				
			||||||
			LOGC(DCTR, ERROR) << "Failed to schedule timerfd: " << errno
 | 
								LOGC(DCTR, ERROR) << "Failed to schedule timerfd: " << errno << " = "<< strerror(errno);
 | 
				
			||||||
					  << " = "<< strerror_r(errno, err_buf, sizeof(err_buf));
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		dev_rate_ctr_mutex.unlock();
 | 
							dev_rate_ctr_mutex.unlock();
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
@@ -234,8 +232,7 @@ static int device_sig_cb(unsigned int subsys, unsigned int signal,
 | 
				
			|||||||
		trx_rate_ctr_mutex.lock();
 | 
							trx_rate_ctr_mutex.lock();
 | 
				
			||||||
		trx_ctrs_pending[trx_ctr->chan] = *trx_ctr;
 | 
							trx_ctrs_pending[trx_ctr->chan] = *trx_ctr;
 | 
				
			||||||
		if (osmo_timerfd_schedule(&trx_rate_ctr_timerfd, &next_sched, &intv_sched) < 0) {
 | 
							if (osmo_timerfd_schedule(&trx_rate_ctr_timerfd, &next_sched, &intv_sched) < 0) {
 | 
				
			||||||
			LOGC(DCTR, ERROR) << "Failed to schedule timerfd: " << errno
 | 
								LOGC(DCTR, ERROR) << "Failed to schedule timerfd: " << errno << " = "<< strerror(errno);
 | 
				
			||||||
					  << " = "<< strerror_r(errno, err_buf, sizeof(err_buf));
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		trx_rate_ctr_mutex.unlock();
 | 
							trx_rate_ctr_mutex.unlock();
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
@@ -266,7 +263,7 @@ static void threshold_timer_cb(void *data)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	llist_for_each_entry(ctr_thr, &threshold_list, list) {
 | 
						llist_for_each_entry(ctr_thr, &threshold_list, list) {
 | 
				
			||||||
		for (chan = 0; chan < chan_len; chan++) {
 | 
							for (chan = 0; chan < chan_len; chan++) {
 | 
				
			||||||
			rate_ctr = rate_ctr_group_get_ctr(rate_ctrs[chan], ctr_thr->ctr_id);
 | 
								rate_ctr = &rate_ctrs[chan]->ctr[ctr_thr->ctr_id];
 | 
				
			||||||
			LOGCHAN(chan, DCTR, INFO) << "checking threshold: " << ctr_threshold_2_vty_str(ctr_thr)
 | 
								LOGCHAN(chan, DCTR, INFO) << "checking threshold: " << ctr_threshold_2_vty_str(ctr_thr)
 | 
				
			||||||
						   << " ("<< rate_ctr->intv[ctr_thr->intv].rate << " vs " << ctr_thr->val << ")";
 | 
											   << " ("<< rate_ctr->intv[ctr_thr->intv].rate << " vs " << ctr_thr->val << ")";
 | 
				
			||||||
			if (rate_ctr->intv[ctr_thr->intv].rate >= ctr_thr->val) {
 | 
								if (rate_ctr->intv[ctr_thr->intv].rate >= ctr_thr->val) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -67,15 +67,6 @@ static const struct value_string filler_types[] = {
 | 
				
			|||||||
	{ 0,			NULL }
 | 
						{ 0,			NULL }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const struct value_string filler_docs[] = {
 | 
					 | 
				
			||||||
	{ FILLER_DUMMY,		"Send a Dummy Burst on C0 (TRX0) and empty burst on other channels" },
 | 
					 | 
				
			||||||
	{ FILLER_ZERO,		"Send an empty burst (default)" },
 | 
					 | 
				
			||||||
	{ FILLER_NORM_RAND,	"Send a GMSK modulated Normal Burst with random bits (spectrum mask testing)" },
 | 
					 | 
				
			||||||
	{ FILLER_EDGE_RAND,	"Send an 8-PSK modulated Normal Burst with random bits (spectrum mask testing)" },
 | 
					 | 
				
			||||||
	{ FILLER_ACCESS_RAND,	"Send an Access Burst with random bits (Rx/Tx alignment testing)" },
 | 
					 | 
				
			||||||
	{ 0,			NULL }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct trx_ctx *trx_from_vty(struct vty *v)
 | 
					struct trx_ctx *trx_from_vty(struct vty *v)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -121,7 +112,7 @@ DEFUN(cfg_trx, cfg_trx_cmd,
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_bind_ip, cfg_bind_ip_cmd,
 | 
					DEFUN(cfg_bind_ip, cfg_bind_ip_cmd,
 | 
				
			||||||
	"bind-ip " VTY_IPV4_CMD,
 | 
						"bind-ip A.B.C.D",
 | 
				
			||||||
	"Set the IP address for the local bind\n"
 | 
						"Set the IP address for the local bind\n"
 | 
				
			||||||
	"IPv4 Address\n")
 | 
						"IPv4 Address\n")
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -133,7 +124,7 @@ DEFUN(cfg_bind_ip, cfg_bind_ip_cmd,
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_remote_ip, cfg_remote_ip_cmd,
 | 
					DEFUN(cfg_remote_ip, cfg_remote_ip_cmd,
 | 
				
			||||||
	"remote-ip " VTY_IPV4_CMD,
 | 
						"remote-ip A.B.C.D",
 | 
				
			||||||
	"Set the IP address for the remote BTS\n"
 | 
						"Set the IP address for the remote BTS\n"
 | 
				
			||||||
	"IPv4 Address\n")
 | 
						"IPv4 Address\n")
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -171,9 +162,7 @@ DEFUN(cfg_dev_args, cfg_dev_args_cmd,
 | 
				
			|||||||
DEFUN(cfg_tx_sps, cfg_tx_sps_cmd,
 | 
					DEFUN(cfg_tx_sps, cfg_tx_sps_cmd,
 | 
				
			||||||
	"tx-sps (1|4)",
 | 
						"tx-sps (1|4)",
 | 
				
			||||||
	"Set the Tx Samples-per-Symbol\n"
 | 
						"Set the Tx Samples-per-Symbol\n"
 | 
				
			||||||
	"Tx Samples-per-Symbol\n"
 | 
						"Tx Samples-per-Symbol\n")
 | 
				
			||||||
	"1 Sample-per-Symbol\n"
 | 
					 | 
				
			||||||
	"4 Samples-per-Symbol\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -185,9 +174,7 @@ DEFUN(cfg_tx_sps, cfg_tx_sps_cmd,
 | 
				
			|||||||
DEFUN(cfg_rx_sps, cfg_rx_sps_cmd,
 | 
					DEFUN(cfg_rx_sps, cfg_rx_sps_cmd,
 | 
				
			||||||
	"rx-sps (1|4)",
 | 
						"rx-sps (1|4)",
 | 
				
			||||||
	"Set the Rx Samples-per-Symbol\n"
 | 
						"Set the Rx Samples-per-Symbol\n"
 | 
				
			||||||
	"Rx Samples-per-Symbol\n"
 | 
						"Rx Samples-per-Symbol\n")
 | 
				
			||||||
	"1 Sample-per-Symbol\n"
 | 
					 | 
				
			||||||
	"4 Samples-per-Symbol\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -212,8 +199,7 @@ DEFUN(cfg_clock_ref, cfg_clock_ref_cmd,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_multi_arfcn, cfg_multi_arfcn_cmd,
 | 
					DEFUN(cfg_multi_arfcn, cfg_multi_arfcn_cmd,
 | 
				
			||||||
	"multi-arfcn (disable|enable)",
 | 
						"multi-arfcn (disable|enable)",
 | 
				
			||||||
	"Multi-ARFCN transceiver mode (default=disable)\n"
 | 
						"Enable multi-ARFCN transceiver (default=disable)\n")
 | 
				
			||||||
	"Enable multi-ARFCN mode\n" "Disable multi-ARFCN mode\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -244,52 +230,21 @@ DEFUN(cfg_offset, cfg_offset_cmd,
 | 
				
			|||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN_ATTR(cfg_freq_offset, cfg_freq_offset_cmd,
 | 
					 | 
				
			||||||
	   "freq-offset FLOAT",
 | 
					 | 
				
			||||||
	   "Apply an artificial offset to Rx/Tx carrier frequency\n"
 | 
					 | 
				
			||||||
	   "Frequency offset in kHz (e.g. -145300)\n",
 | 
					 | 
				
			||||||
	   CMD_ATTR_HIDDEN)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	trx->cfg.freq_offset_khz = atof(argv[0]);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return CMD_SUCCESS;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFUN(cfg_rssi_offset, cfg_rssi_offset_cmd,
 | 
					DEFUN(cfg_rssi_offset, cfg_rssi_offset_cmd,
 | 
				
			||||||
	"rssi-offset FLOAT [relative]",
 | 
						"rssi-offset FLOAT",
 | 
				
			||||||
	"Set the RSSI to dBm offset in dB (default=0)\n"
 | 
						"Set the RSSI to dBm offset in dB (default=0)\n"
 | 
				
			||||||
	"RSSI to dBm offset in dB\n"
 | 
						"RSSI to dBm offset in dB\n")
 | 
				
			||||||
	"Add to the default rssi-offset value instead of completely replacing it\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	trx->cfg.rssi_offset = atof(argv[0]);
 | 
						trx->cfg.rssi_offset = atof(argv[0]);
 | 
				
			||||||
	trx->cfg.force_rssi_offset = (argc == 1);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return CMD_SUCCESS;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFUN_ATTR(cfg_ul_fn_offset, cfg_ul_fn_offset_cmd,
 | 
					 | 
				
			||||||
	"ul-fn-offset <-10-10>",
 | 
					 | 
				
			||||||
	"Adjusts the uplink frame FN by the specified amount\n"
 | 
					 | 
				
			||||||
	"Frame Number offset\n",
 | 
					 | 
				
			||||||
	CMD_ATTR_HIDDEN)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	trx->cfg.ul_fn_offset = atoi(argv[0]);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_swap_channels, cfg_swap_channels_cmd,
 | 
					DEFUN(cfg_swap_channels, cfg_swap_channels_cmd,
 | 
				
			||||||
	"swap-channels (disable|enable)",
 | 
						"swap-channels (disable|enable)",
 | 
				
			||||||
	"Swap primary and secondary channels of the PHY (if any)\n"
 | 
						"Swap channels (default=disable)\n")
 | 
				
			||||||
	"Do not swap primary and secondary channels (default)\n"
 | 
					 | 
				
			||||||
	"Swap primary and secondary channels\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -306,9 +261,7 @@ DEFUN(cfg_swap_channels, cfg_swap_channels_cmd,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_egprs, cfg_egprs_cmd,
 | 
					DEFUN(cfg_egprs, cfg_egprs_cmd,
 | 
				
			||||||
	"egprs (disable|enable)",
 | 
						"egprs (disable|enable)",
 | 
				
			||||||
	"EGPRS (8-PSK demodulation) support (default=disable)\n"
 | 
						"Enable EDGE receiver (default=disable)\n")
 | 
				
			||||||
	"Disable EGPRS (8-PSK demodulation) support\n"
 | 
					 | 
				
			||||||
	"Enable EGPRS (8-PSK demodulation) support\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -325,9 +278,7 @@ DEFUN(cfg_egprs, cfg_egprs_cmd,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_ext_rach, cfg_ext_rach_cmd,
 | 
					DEFUN(cfg_ext_rach, cfg_ext_rach_cmd,
 | 
				
			||||||
	"ext-rach (disable|enable)",
 | 
						"ext-rach (disable|enable)",
 | 
				
			||||||
	"11-bit Access Burst correlation support (default=disable)\n"
 | 
						"Enable extended (11-bit) RACH (default=disable)\n")
 | 
				
			||||||
	"Disable 11-bit Access Burst (TS1 & TS2) correlation\n"
 | 
					 | 
				
			||||||
	"Enable 11-bit Access Burst (TS1 & TS2) correlation\n")
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -366,11 +317,20 @@ DEFUN(cfg_stack_size, cfg_stack_size_cmd,
 | 
				
			|||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CFG_FILLER_DOC_STR \
 | 
					 | 
				
			||||||
	"Filler burst settings\n"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DEFUN(cfg_filler, cfg_filler_type_cmd,
 | 
					DEFUN(cfg_filler, cfg_filler_type_cmd,
 | 
				
			||||||
      "AUTO-GENERATED", "AUTO-GENERATED")
 | 
						"filler type (zero|dummy|random-nb-gmsk|random-nb-8psk|random-ab)",
 | 
				
			||||||
 | 
						"Filler burst settings\n"
 | 
				
			||||||
 | 
						"Filler burst type (default=zero)\n"
 | 
				
			||||||
 | 
						"Send an empty burst when there is nothing to send (default)\n"
 | 
				
			||||||
 | 
						"Send a dummy burst when there is nothing to send on C0 (TRX0) and empty burst on other channels."
 | 
				
			||||||
 | 
						" Use for OpenBTS compatibility only, don't use with OsmoBTS as it breaks encryption.\n"
 | 
				
			||||||
 | 
						"Send a GMSK modulated Normal Burst with random bits when there is nothing to send."
 | 
				
			||||||
 | 
						" Use for spectrum mask testing. Configure 'filler tsc' to set training sequence.\n"
 | 
				
			||||||
 | 
						"Send an 8-PSK modulated Normal Burst with random bits when there is nothing to send."
 | 
				
			||||||
 | 
						" Use for spectrum mask testing. Configure 'filler tsc' to set training sequence.\n"
 | 
				
			||||||
 | 
						"Send an Access Burst with random bits when there is nothing to send. Use for Rx/Tx alignment."
 | 
				
			||||||
 | 
						" Configure 'filler access-burst-delay' to introduce artificial delay.\n"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_ctx *trx = trx_from_vty(vty);
 | 
						struct trx_ctx *trx = trx_from_vty(vty);
 | 
				
			||||||
	// trx->cfg.filler is unsigned, so we need an interim int var to detect errors
 | 
						// trx->cfg.filler is unsigned, so we need an interim int var to detect errors
 | 
				
			||||||
@@ -387,7 +347,7 @@ DEFUN(cfg_filler, cfg_filler_type_cmd,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_test_rtsc, cfg_filler_tsc_cmd,
 | 
					DEFUN(cfg_test_rtsc, cfg_filler_tsc_cmd,
 | 
				
			||||||
	"filler tsc <0-7>",
 | 
						"filler tsc <0-7>",
 | 
				
			||||||
	CFG_FILLER_DOC_STR
 | 
						"Filler burst settings\n"
 | 
				
			||||||
	"Set the TSC for GMSK/8-PSK Normal Burst random fillers. Used only with 'random-nb-gmsk' and"
 | 
						"Set the TSC for GMSK/8-PSK Normal Burst random fillers. Used only with 'random-nb-gmsk' and"
 | 
				
			||||||
	" 'random-nb-8psk' filler types. (default=0)\n"
 | 
						" 'random-nb-8psk' filler types. (default=0)\n"
 | 
				
			||||||
	"TSC\n")
 | 
						"TSC\n")
 | 
				
			||||||
@@ -401,7 +361,7 @@ DEFUN(cfg_test_rtsc, cfg_filler_tsc_cmd,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
DEFUN(cfg_test_rach_delay, cfg_filler_rach_delay_cmd,
 | 
					DEFUN(cfg_test_rach_delay, cfg_filler_rach_delay_cmd,
 | 
				
			||||||
	"filler access-burst-delay <0-68>",
 | 
						"filler access-burst-delay <0-68>",
 | 
				
			||||||
	CFG_FILLER_DOC_STR
 | 
						"Filler burst settings\n"
 | 
				
			||||||
	"Set the delay for Access Burst random fillers. Used only with 'random-ab' filler type. (default=0)\n"
 | 
						"Set the delay for Access Burst random fillers. Used only with 'random-ab' filler type. (default=0)\n"
 | 
				
			||||||
	"RACH delay in symbols\n")
 | 
						"RACH delay in symbols\n")
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -455,13 +415,12 @@ static int vty_intv_name_2_id(const char* str) {
 | 
				
			|||||||
	INTV_STR_VAL(per-hour) \
 | 
						INTV_STR_VAL(per-hour) \
 | 
				
			||||||
	INTV_STR_VAL(per-day)
 | 
						INTV_STR_VAL(per-day)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN_ATTR(cfg_ctr_error_threshold, cfg_ctr_error_threshold_cmd,
 | 
					DEFUN(cfg_ctr_error_threshold, cfg_ctr_error_threshold_cmd,
 | 
				
			||||||
	"ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
 | 
						"ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
 | 
				
			||||||
	"Threshold rate for error counter\n"
 | 
						"Threshold rate for error counter\n"
 | 
				
			||||||
	THRESHOLD_STRS
 | 
						THRESHOLD_STRS
 | 
				
			||||||
	"Value to set for threshold\n"
 | 
						"Value to set for threshold\n"
 | 
				
			||||||
	   INTV_STRS,
 | 
						INTV_STRS)
 | 
				
			||||||
	   CMD_ATTR_IMMEDIATE)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int rc;
 | 
						int rc;
 | 
				
			||||||
	struct ctr_threshold ctr;
 | 
						struct ctr_threshold ctr;
 | 
				
			||||||
@@ -487,13 +446,12 @@ DEFUN_ATTR(cfg_ctr_error_threshold, cfg_ctr_error_threshold_cmd,
 | 
				
			|||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEFUN_ATTR(cfg_no_ctr_error_threshold, cfg_no_ctr_error_threshold_cmd,
 | 
					DEFUN(cfg_no_ctr_error_threshold, cfg_no_ctr_error_threshold_cmd,
 | 
				
			||||||
	"no ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
 | 
						"no ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
 | 
				
			||||||
	NO_STR "Threshold rate for error counter\n"
 | 
						NO_STR "Threshold rate for error counter\n"
 | 
				
			||||||
	THRESHOLD_STRS
 | 
						THRESHOLD_STRS
 | 
				
			||||||
	"Value to set for threshold\n"
 | 
						"Value to set for threshold\n"
 | 
				
			||||||
	   INTV_STRS,
 | 
						INTV_STRS)
 | 
				
			||||||
	   CMD_ATTR_IMMEDIATE)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int rc;
 | 
						int rc;
 | 
				
			||||||
	struct ctr_threshold ctr;
 | 
						struct ctr_threshold ctr;
 | 
				
			||||||
@@ -562,12 +520,6 @@ DEFUN(cfg_chan_rx_path, cfg_chan_rx_path_cmd,
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_chan *chan = vty->index;
 | 
						struct trx_chan *chan = vty->index;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
 | 
					 | 
				
			||||||
		vty_out(vty, "%% Setting 'rx-path' for chan %u in multi-ARFCN mode "
 | 
					 | 
				
			||||||
			     "does not make sense, because only chan 0 is used%s",
 | 
					 | 
				
			||||||
			chan->idx, VTY_NEWLINE);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	osmo_talloc_replace_string(chan->trx, &chan->rx_path, argv[0]);
 | 
						osmo_talloc_replace_string(chan->trx, &chan->rx_path, argv[0]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
@@ -580,12 +532,6 @@ DEFUN(cfg_chan_tx_path, cfg_chan_tx_path_cmd,
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	struct trx_chan *chan = vty->index;
 | 
						struct trx_chan *chan = vty->index;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
 | 
					 | 
				
			||||||
		vty_out(vty, "%% Setting 'tx-path' for chan %u in multi-ARFCN mode "
 | 
					 | 
				
			||||||
			     "does not make sense, because only chan 0 is used%s",
 | 
					 | 
				
			||||||
			chan->idx, VTY_NEWLINE);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	osmo_talloc_replace_string(chan->trx, &chan->tx_path, argv[0]);
 | 
						osmo_talloc_replace_string(chan->trx, &chan->tx_path, argv[0]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return CMD_SUCCESS;
 | 
						return CMD_SUCCESS;
 | 
				
			||||||
@@ -620,11 +566,8 @@ static int config_write_trx(struct vty *vty)
 | 
				
			|||||||
	vty_out(vty, " multi-arfcn %s%s", trx->cfg.multi_arfcn ? "enable" : "disable", VTY_NEWLINE);
 | 
						vty_out(vty, " multi-arfcn %s%s", trx->cfg.multi_arfcn ? "enable" : "disable", VTY_NEWLINE);
 | 
				
			||||||
	if (trx->cfg.offset != 0)
 | 
						if (trx->cfg.offset != 0)
 | 
				
			||||||
		vty_out(vty, " offset %f%s", trx->cfg.offset, VTY_NEWLINE);
 | 
							vty_out(vty, " offset %f%s", trx->cfg.offset, VTY_NEWLINE);
 | 
				
			||||||
	if (trx->cfg.freq_offset_khz != 0)
 | 
						if (trx->cfg.rssi_offset != 0)
 | 
				
			||||||
		vty_out(vty, " freq-offset %f%s", trx->cfg.freq_offset_khz, VTY_NEWLINE);
 | 
							vty_out(vty, " rssi-offset %f%s", trx->cfg.rssi_offset, VTY_NEWLINE);
 | 
				
			||||||
	if (!(trx->cfg.rssi_offset == 0 && !trx->cfg.force_rssi_offset))
 | 
					 | 
				
			||||||
		vty_out(vty, " rssi-offset %f%s%s", trx->cfg.rssi_offset,
 | 
					 | 
				
			||||||
			trx->cfg.force_rssi_offset ? " relative": "", VTY_NEWLINE);
 | 
					 | 
				
			||||||
	vty_out(vty, " swap-channels %s%s", trx->cfg.swap_channels ? "enable" : "disable", VTY_NEWLINE);
 | 
						vty_out(vty, " swap-channels %s%s", trx->cfg.swap_channels ? "enable" : "disable", VTY_NEWLINE);
 | 
				
			||||||
	vty_out(vty, " egprs %s%s", trx->cfg.egprs ? "enable" : "disable", VTY_NEWLINE);
 | 
						vty_out(vty, " egprs %s%s", trx->cfg.egprs ? "enable" : "disable", VTY_NEWLINE);
 | 
				
			||||||
	vty_out(vty, " ext-rach %s%s", trx->cfg.ext_rach ? "enable" : "disable", VTY_NEWLINE);
 | 
						vty_out(vty, " ext-rach %s%s", trx->cfg.ext_rach ? "enable" : "disable", VTY_NEWLINE);
 | 
				
			||||||
@@ -638,8 +581,6 @@ static int config_write_trx(struct vty *vty)
 | 
				
			|||||||
		vty_out(vty, " filler access-burst-delay %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
 | 
							vty_out(vty, " filler access-burst-delay %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
 | 
				
			||||||
	if (trx->cfg.stack_size != 0)
 | 
						if (trx->cfg.stack_size != 0)
 | 
				
			||||||
		vty_out(vty, " stack-size %u%s", trx->cfg.stack_size, VTY_NEWLINE);
 | 
							vty_out(vty, " stack-size %u%s", trx->cfg.stack_size, VTY_NEWLINE);
 | 
				
			||||||
	if (trx->cfg.ul_fn_offset != 0)
 | 
					 | 
				
			||||||
		vty_out(vty, " ul-fn-offset %d%s", trx->cfg.ul_fn_offset, VTY_NEWLINE);
 | 
					 | 
				
			||||||
	trx_rate_ctr_threshold_write_config(vty, " ");
 | 
						trx_rate_ctr_threshold_write_config(vty, " ");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (i = 0; i < trx->cfg.num_chans; i++) {
 | 
						for (i = 0; i < trx->cfg.num_chans; i++) {
 | 
				
			||||||
@@ -761,19 +702,12 @@ struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx)
 | 
				
			|||||||
	trx->cfg.tx_sps = DEFAULT_TX_SPS;
 | 
						trx->cfg.tx_sps = DEFAULT_TX_SPS;
 | 
				
			||||||
	trx->cfg.rx_sps = DEFAULT_RX_SPS;
 | 
						trx->cfg.rx_sps = DEFAULT_RX_SPS;
 | 
				
			||||||
	trx->cfg.filler = FILLER_ZERO;
 | 
						trx->cfg.filler = FILLER_ZERO;
 | 
				
			||||||
	trx->cfg.rssi_offset = 0.0f;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return trx;
 | 
						return trx;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int trx_vty_init(struct trx_ctx* trx)
 | 
					int trx_vty_init(struct trx_ctx* trx)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	cfg_filler_type_cmd.string = vty_cmd_string_from_valstr(trx, filler_types,
 | 
					 | 
				
			||||||
		"filler type (", "|", ")", 0);
 | 
					 | 
				
			||||||
	cfg_filler_type_cmd.doc = vty_cmd_string_from_valstr(trx, filler_docs,
 | 
					 | 
				
			||||||
		CFG_FILLER_DOC_STR "What to do when there is nothing to send "
 | 
					 | 
				
			||||||
		"(filler type, default=zero)\n", "\n", "", 0);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	g_trx_ctx = trx;
 | 
						g_trx_ctx = trx;
 | 
				
			||||||
	install_element_ve(&show_trx_cmd);
 | 
						install_element_ve(&show_trx_cmd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -789,7 +723,6 @@ int trx_vty_init(struct trx_ctx* trx)
 | 
				
			|||||||
	install_element(TRX_NODE, &cfg_clock_ref_cmd);
 | 
						install_element(TRX_NODE, &cfg_clock_ref_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_multi_arfcn_cmd);
 | 
						install_element(TRX_NODE, &cfg_multi_arfcn_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_offset_cmd);
 | 
						install_element(TRX_NODE, &cfg_offset_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_freq_offset_cmd);
 | 
					 | 
				
			||||||
	install_element(TRX_NODE, &cfg_rssi_offset_cmd);
 | 
						install_element(TRX_NODE, &cfg_rssi_offset_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_swap_channels_cmd);
 | 
						install_element(TRX_NODE, &cfg_swap_channels_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_egprs_cmd);
 | 
						install_element(TRX_NODE, &cfg_egprs_cmd);
 | 
				
			||||||
@@ -803,7 +736,6 @@ int trx_vty_init(struct trx_ctx* trx)
 | 
				
			|||||||
	install_element(TRX_NODE, &cfg_stack_size_cmd);
 | 
						install_element(TRX_NODE, &cfg_stack_size_cmd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_chan_cmd);
 | 
						install_element(TRX_NODE, &cfg_chan_cmd);
 | 
				
			||||||
	install_element(TRX_NODE, &cfg_ul_fn_offset_cmd);
 | 
					 | 
				
			||||||
	install_node(&chan_node, dummy_config_write);
 | 
						install_node(&chan_node, dummy_config_write);
 | 
				
			||||||
	install_element(CHAN_NODE, &cfg_chan_rx_path_cmd);
 | 
						install_element(CHAN_NODE, &cfg_chan_rx_path_cmd);
 | 
				
			||||||
	install_element(CHAN_NODE, &cfg_chan_tx_path_cmd);
 | 
						install_element(CHAN_NODE, &cfg_chan_tx_path_cmd);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,6 +8,8 @@ extern struct vty_app_info g_vty_info;
 | 
				
			|||||||
extern const struct value_string clock_ref_names[];
 | 
					extern const struct value_string clock_ref_names[];
 | 
				
			||||||
extern const struct value_string filler_names[];
 | 
					extern const struct value_string filler_names[];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* Maximum number of physical RF channels */
 | 
				
			||||||
 | 
					#define TRX_CHAN_MAX 8
 | 
				
			||||||
/* Maximum number of carriers in multi-ARFCN mode */
 | 
					/* Maximum number of carriers in multi-ARFCN mode */
 | 
				
			||||||
#define TRX_MCHAN_MAX 3
 | 
					#define TRX_MCHAN_MAX 3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -33,8 +35,38 @@ extern const struct value_string filler_names[];
 | 
				
			|||||||
#define DEFAULT_TRX_IP		"127.0.0.1"
 | 
					#define DEFAULT_TRX_IP		"127.0.0.1"
 | 
				
			||||||
#define DEFAULT_CHANS		1
 | 
					#define DEFAULT_CHANS		1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					struct trx_ctx;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					struct trx_chan {
 | 
				
			||||||
 | 
						struct trx_ctx *trx; /* backpointer */
 | 
				
			||||||
 | 
						unsigned int idx; /* channel index */
 | 
				
			||||||
 | 
						char *rx_path;
 | 
				
			||||||
 | 
						char *tx_path;
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct trx_ctx {
 | 
					struct trx_ctx {
 | 
				
			||||||
	struct trx_cfg cfg;
 | 
						struct {
 | 
				
			||||||
 | 
							char *bind_addr;
 | 
				
			||||||
 | 
							char *remote_addr;
 | 
				
			||||||
 | 
							char *dev_args;
 | 
				
			||||||
 | 
							unsigned int base_port;
 | 
				
			||||||
 | 
							unsigned int tx_sps;
 | 
				
			||||||
 | 
							unsigned int rx_sps;
 | 
				
			||||||
 | 
							unsigned int rtsc;
 | 
				
			||||||
 | 
							unsigned int rach_delay;
 | 
				
			||||||
 | 
							enum ReferenceType clock_ref;
 | 
				
			||||||
 | 
							enum FillerType filler;
 | 
				
			||||||
 | 
							bool multi_arfcn;
 | 
				
			||||||
 | 
							double offset;
 | 
				
			||||||
 | 
							double rssi_offset;
 | 
				
			||||||
 | 
							bool swap_channels;
 | 
				
			||||||
 | 
							bool ext_rach;
 | 
				
			||||||
 | 
							bool egprs;
 | 
				
			||||||
 | 
							unsigned int sched_rr;
 | 
				
			||||||
 | 
							unsigned int stack_size;
 | 
				
			||||||
 | 
							unsigned int num_chans;
 | 
				
			||||||
 | 
							struct trx_chan chans[TRX_CHAN_MAX];
 | 
				
			||||||
 | 
						} cfg;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int trx_vty_init(struct trx_ctx* trx);
 | 
					int trx_vty_init(struct trx_ctx* trx);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,14 +28,13 @@ AM_CXXFLAGS = -Wall -pthread
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Order must be preserved
 | 
					# Order must be preserved
 | 
				
			||||||
SUBDIRS = \
 | 
					SUBDIRS = \
 | 
				
			||||||
 | 
						doc \
 | 
				
			||||||
	CommonLibs \
 | 
						CommonLibs \
 | 
				
			||||||
	GSM \
 | 
						GSM \
 | 
				
			||||||
	Transceiver52M \
 | 
						Transceiver52M \
 | 
				
			||||||
	contrib \
 | 
						contrib \
 | 
				
			||||||
	tests \
 | 
						tests \
 | 
				
			||||||
	utils \
 | 
						utils
 | 
				
			||||||
	doc \
 | 
					 | 
				
			||||||
	$(NULL)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXTRA_DIST = \
 | 
					EXTRA_DIST = \
 | 
				
			||||||
	LEGAL \
 | 
						LEGAL \
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										18
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								README.md
									
									
									
									
									
								
							@@ -1,5 +1,5 @@
 | 
				
			|||||||
About OsmoTRX
 | 
					About OsmTRX
 | 
				
			||||||
=============
 | 
					============
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
 | 
					OsmoTRX is a software-defined radio transceiver that implements the Layer 1
 | 
				
			||||||
physical layer of a BTS comprising the following 3GPP specifications:
 | 
					physical layer of a BTS comprising the following 3GPP specifications:
 | 
				
			||||||
@@ -9,12 +9,14 @@ physical layer of a BTS comprising the following 3GPP specifications:
 | 
				
			|||||||
* TS 05.04 "Modulation"
 | 
					* TS 05.04 "Modulation"
 | 
				
			||||||
* TS 05.10 "Radio subsystem synchronization"
 | 
					* TS 05.10 "Radio subsystem synchronization"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OsmoTRX is originally based on the transceiver code from the
 | 
					OsmoTRX is based on the transceiver code from the
 | 
				
			||||||
[OpenBTS](https://osmocom.org/projects/osmobts/wiki/OpenBTS) project, but setup
 | 
					[OpenBTS](https://osmocom.org/projects/osmobts/wiki/OpenBTS) project, but setup
 | 
				
			||||||
to operate independently with the purpose of using with non-OpenBTS software and
 | 
					to operate independently with the purpose of using with non-OpenBTS software and
 | 
				
			||||||
projects, specifically within the Osmocom stack.  Used together with
 | 
					projects, while still maintaining backwards compatibility with OpenBTS when
 | 
				
			||||||
[OsmoBTS](https://osmocom.org/projects/osmobts/wiki) you can get a pretty
 | 
					possible. Currently there are numerous features contained in OsmoTRX that extend
 | 
				
			||||||
standard GSM BTS with Abis interface as per the relevant 3GPP specifications.
 | 
					the functionality of the OpenBTS transceiver. These features include enhanced
 | 
				
			||||||
 | 
					support for various embedded platforms - notably ARM - and dual channel
 | 
				
			||||||
 | 
					diversity support for the Fairwaves umtrx.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Homepage
 | 
					Homepage
 | 
				
			||||||
--------
 | 
					--------
 | 
				
			||||||
@@ -29,7 +31,7 @@ You can clone from the official osmo-trx.git repository using
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        git clone git://git.osmocom.org/osmo-trx.git
 | 
					        git clone git://git.osmocom.org/osmo-trx.git
 | 
				
			||||||
 | 
					
 | 
				
			||||||
There is a cgit interface at <https://git.osmocom.org/osmo-trx/>
 | 
					There is a cgit interface at <http://git.osmocom.org/osmo-trx/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Documentation
 | 
					Documentation
 | 
				
			||||||
-------------
 | 
					-------------
 | 
				
			||||||
@@ -37,7 +39,7 @@ Documentation
 | 
				
			|||||||
Doxygen-generated API documentation is generated during the build process, but
 | 
					Doxygen-generated API documentation is generated during the build process, but
 | 
				
			||||||
also available online for each of the sub-libraries at User Manual for OsmoTRX
 | 
					also available online for each of the sub-libraries at User Manual for OsmoTRX
 | 
				
			||||||
can be generated during the build process, and is also available online at
 | 
					can be generated during the build process, and is also available online at
 | 
				
			||||||
<https://ftp.osmocom.org/docs/latest/osmotrx-usermanual.pdf>.
 | 
					<http://ftp.osmocom.org/docs/latest/osmotrx-usermanual.pdf>.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Mailing List
 | 
					Mailing List
 | 
				
			||||||
------------
 | 
					------------
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					* update libosmocore dependency to > 1.3.x for osmo_sched_vty_init(), osmo_sched_vty_apply_localthread()
 | 
				
			||||||
 | 
					* update osmo-gsm-manuals dependency to > 0.3.0 for vty_cpu_sched.adoc include.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -244,7 +244,6 @@ ChannelizerBase::~ChannelizerBase()
 | 
				
			|||||||
		free(subFilters[i]);
 | 
							free(subFilters[i]);
 | 
				
			||||||
		delete[] hist[i];
 | 
							delete[] hist[i];
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	free(subFilters);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	fft_free(fftInput);
 | 
						fft_free(fftInput);
 | 
				
			||||||
	fft_free(fftOutput);
 | 
						fft_free(fftOutput);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -105,12 +105,9 @@ osmo_trx_lms_LDADD = \
 | 
				
			|||||||
osmo_trx_lms_CPPFLAGS  = $(AM_CPPFLAGS) $(LMS_CFLAGS)
 | 
					osmo_trx_lms_CPPFLAGS  = $(AM_CPPFLAGS) $(LMS_CFLAGS)
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if DEVICE_IPC
 | 
					 | 
				
			||||||
bin_PROGRAMS += osmo-trx-ipc
 | 
					bin_PROGRAMS += osmo-trx-ipc
 | 
				
			||||||
osmo_trx_ipc_SOURCES = osmo-trx.cpp
 | 
					osmo_trx_ipc_SOURCES = osmo-trx.cpp
 | 
				
			||||||
osmo_trx_ipc_LDADD = \
 | 
					osmo_trx_ipc_LDADD = \
 | 
				
			||||||
	$(builddir)/device/ipc/libdevice.la \
 | 
						$(builddir)/device/ipc/libdevice.la \
 | 
				
			||||||
	$(COMMON_LDADD)
 | 
						$(COMMON_LDADD)
 | 
				
			||||||
osmo_trx_ipc_CPPFLAGS  = $(AM_CPPFLAGS)
 | 
					osmo_trx_ipc_CPPFLAGS  = $(AM_CPPFLAGS)
 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
@@ -95,7 +99,6 @@ void Resampler::initFilters(float bw)
 | 
				
			|||||||
		reverse(&part[0], &part[filt_len]);
 | 
							reverse(&part[0], &part[filt_len]);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __OPTIMIZE__
 | 
					 | 
				
			||||||
static bool check_vec_len(int in_len, int out_len, int p, int q)
 | 
					static bool check_vec_len(int in_len, int out_len, int p, int q)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (in_len % q) {
 | 
						if (in_len % q) {
 | 
				
			||||||
@@ -126,15 +129,14 @@ static bool check_vec_len(int in_len, int out_len, int p, int q)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	return true;
 | 
						return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
int Resampler::rotate(const float *in, size_t in_len, float *out, size_t out_len)
 | 
					int Resampler::rotate(const float *in, size_t in_len, float *out, size_t out_len)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int n, path;
 | 
						int n, path;
 | 
				
			||||||
#ifndef __OPTIMIZE__
 | 
					
 | 
				
			||||||
	if (!check_vec_len(in_len, out_len, p, q))
 | 
						if (!check_vec_len(in_len, out_len, p, q))
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
#endif
 | 
					
 | 
				
			||||||
	/* Generate output from precomputed input/output paths */
 | 
						/* Generate output from precomputed input/output paths */
 | 
				
			||||||
	for (size_t i = 0; i < out_len; i++) {
 | 
						for (size_t i = 0; i < out_len; i++) {
 | 
				
			||||||
		n = in_index[i];
 | 
							n = in_index[i];
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _RESAMPLER_H_
 | 
					#ifndef _RESAMPLER_H_
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -62,8 +62,7 @@ static void dispatch_trx_rate_ctr_change(TransceiverState *state, unsigned int c
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TransceiverState::TransceiverState()
 | 
					TransceiverState::TransceiverState()
 | 
				
			||||||
  : mFiller(FILLER_ZERO), mRetrans(false), mNoiseLev(0.0), mNoises(NOISE_CNT),
 | 
					  : mFiller(FILLER_ZERO), mRetrans(false), mNoiseLev(0.0), mNoises(NOISE_CNT), mPower(0.0)
 | 
				
			||||||
    mPower(0.0), mMuted(false), first_dl_fn_rcv()
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  for (int i = 0; i < 8; i++) {
 | 
					  for (int i = 0; i < 8; i++) {
 | 
				
			||||||
    chanType[i] = Transceiver::NONE;
 | 
					    chanType[i] = Transceiver::NONE;
 | 
				
			||||||
@@ -132,21 +131,26 @@ bool TransceiverState::init(FillerType filler, size_t sps, float scale, size_t r
 | 
				
			|||||||
  return false;
 | 
					  return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Transceiver::Transceiver(const struct trx_cfg *cfg,
 | 
					Transceiver::Transceiver(int wBasePort,
 | 
				
			||||||
 | 
					                         const char *TRXAddress,
 | 
				
			||||||
 | 
					                         const char *GSMcoreAddress,
 | 
				
			||||||
 | 
					                         size_t tx_sps, size_t rx_sps, size_t chans,
 | 
				
			||||||
                         GSM::Time wTransmitLatency,
 | 
					                         GSM::Time wTransmitLatency,
 | 
				
			||||||
                         RadioInterface *wRadioInterface)
 | 
					                         RadioInterface *wRadioInterface,
 | 
				
			||||||
  : cfg(cfg), mClockSocket(-1),
 | 
					                         double wRssiOffset, int wStackSize)
 | 
				
			||||||
    mRxLowerLoopThread(nullptr), mTxLowerLoopThread(nullptr),
 | 
					  : mBasePort(wBasePort), mLocalAddr(TRXAddress), mRemoteAddr(GSMcoreAddress),
 | 
				
			||||||
    mTransmitLatency(wTransmitLatency), mRadioInterface(wRadioInterface),
 | 
					    mClockSocket(-1), mTransmitLatency(wTransmitLatency), mRadioInterface(wRadioInterface),
 | 
				
			||||||
    mChans(cfg->num_chans), mOn(false), mForceClockInterface(false),
 | 
					    rssiOffset(wRssiOffset), stackSize(wStackSize),
 | 
				
			||||||
    mTxFreq(0.0), mRxFreq(0.0), mTSC(0), mMaxExpectedDelayAB(0),
 | 
					    mSPSTx(tx_sps), mSPSRx(rx_sps), mChans(chans), mExtRACH(false), mEdge(false),
 | 
				
			||||||
    mMaxExpectedDelayNB(0), mWriteBurstToDiskMask(0)
 | 
					    mOn(false), mForceClockInterface(false),
 | 
				
			||||||
 | 
					    mTxFreq(0.0), mRxFreq(0.0), mTSC(0), mMaxExpectedDelayAB(0), mMaxExpectedDelayNB(0),
 | 
				
			||||||
 | 
					    mWriteBurstToDiskMask(0)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  txFullScale = mRadioInterface->fullScaleInputValue();
 | 
					  txFullScale = mRadioInterface->fullScaleInputValue();
 | 
				
			||||||
  rxFullScale = mRadioInterface->fullScaleOutputValue();
 | 
					  rxFullScale = mRadioInterface->fullScaleOutputValue();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  for (size_t i = 0; i < ARRAY_SIZE(mHandover); i++) {
 | 
					  for (int i = 0; i < 8; i++) {
 | 
				
			||||||
    for (size_t j = 0; j < ARRAY_SIZE(mHandover[i]); j++)
 | 
					    for (int j = 0; j < 8; j++)
 | 
				
			||||||
      mHandover[i][j] = false;
 | 
					      mHandover[i][j] = false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -194,9 +198,11 @@ int Transceiver::ctrl_sock_cb(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
 * are still expected to report clock indications through control channel
 | 
					 * are still expected to report clock indications through control channel
 | 
				
			||||||
 * activity.
 | 
					 * activity.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
bool Transceiver::init()
 | 
					bool Transceiver::init(FillerType filler, size_t rtsc, unsigned rach_delay,
 | 
				
			||||||
 | 
					                       bool edge, bool ext_rach)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  int d_srcport, d_dstport, c_srcport, c_dstport;
 | 
					  int d_srcport, d_dstport, c_srcport, c_dstport;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (!mChans) {
 | 
					  if (!mChans) {
 | 
				
			||||||
    LOG(FATAL) << "No channels assigned";
 | 
					    LOG(FATAL) << "No channels assigned";
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
@@ -207,6 +213,9 @@ bool Transceiver::init()
 | 
				
			|||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  mExtRACH = ext_rach;
 | 
				
			||||||
 | 
					  mEdge = edge;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  mDataSockets.resize(mChans, -1);
 | 
					  mDataSockets.resize(mChans, -1);
 | 
				
			||||||
  mCtrlSockets.resize(mChans);
 | 
					  mCtrlSockets.resize(mChans);
 | 
				
			||||||
  mTxPriorityQueueServiceLoopThreads.resize(mChans);
 | 
					  mTxPriorityQueueServiceLoopThreads.resize(mChans);
 | 
				
			||||||
@@ -218,28 +227,27 @@ bool Transceiver::init()
 | 
				
			|||||||
  mVersionTRXD.resize(mChans);
 | 
					  mVersionTRXD.resize(mChans);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Filler table retransmissions - support only on channel 0 */
 | 
					  /* Filler table retransmissions - support only on channel 0 */
 | 
				
			||||||
  if (cfg->filler == FILLER_DUMMY)
 | 
					  if (filler == FILLER_DUMMY)
 | 
				
			||||||
    mStates[0].mRetrans = true;
 | 
					    mStates[0].mRetrans = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Setup sockets */
 | 
					  /* Setup sockets */
 | 
				
			||||||
  mClockSocket = osmo_sock_init2(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
					  mClockSocket = osmo_sock_init2(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
				
			||||||
				    cfg->bind_addr, cfg->base_port,
 | 
									    mLocalAddr.c_str(), mBasePort,
 | 
				
			||||||
				    cfg->remote_addr, cfg->base_port + 100,
 | 
									    mRemoteAddr.c_str(), mBasePort + 100,
 | 
				
			||||||
				    OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
									    OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
				
			||||||
  if (mClockSocket < 0)
 | 
					  if (mClockSocket < 0)
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  for (size_t i = 0; i < mChans; i++) {
 | 
					  for (size_t i = 0; i < mChans; i++) {
 | 
				
			||||||
    int rv;
 | 
					    int rv;
 | 
				
			||||||
    FillerType filler = cfg->filler;
 | 
					    c_srcport = mBasePort + 2 * i + 1;
 | 
				
			||||||
    c_srcport = cfg->base_port + 2 * i + 1;
 | 
					    c_dstport = mBasePort + 2 * i + 101;
 | 
				
			||||||
    c_dstport = cfg->base_port + 2 * i + 101;
 | 
					    d_srcport = mBasePort + 2 * i + 2;
 | 
				
			||||||
    d_srcport = cfg->base_port + 2 * i + 2;
 | 
					    d_dstport = mBasePort + 2 * i + 102;
 | 
				
			||||||
    d_dstport = cfg->base_port + 2 * i + 102;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    rv = osmo_sock_init2_ofd(&mCtrlSockets[i].conn_bfd, AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
					    rv = osmo_sock_init2_ofd(&mCtrlSockets[i].conn_bfd, AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
				
			||||||
                                      cfg->bind_addr, c_srcport,
 | 
					                                      mLocalAddr.c_str(), c_srcport,
 | 
				
			||||||
                                      cfg->remote_addr, c_dstport,
 | 
					                                      mRemoteAddr.c_str(), c_dstport,
 | 
				
			||||||
				      OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
									      OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
				
			||||||
    if (rv < 0)
 | 
					    if (rv < 0)
 | 
				
			||||||
      return false;
 | 
					      return false;
 | 
				
			||||||
@@ -249,8 +257,8 @@ bool Transceiver::init()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    mDataSockets[i] = osmo_sock_init2(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
					    mDataSockets[i] = osmo_sock_init2(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
 | 
				
			||||||
                                      cfg->bind_addr, d_srcport,
 | 
					                                      mLocalAddr.c_str(), d_srcport,
 | 
				
			||||||
                                      cfg->remote_addr, d_dstport,
 | 
					                                      mRemoteAddr.c_str(), d_dstport,
 | 
				
			||||||
				      OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
									      OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
 | 
				
			||||||
    if (mDataSockets[i] < 0)
 | 
					    if (mDataSockets[i] < 0)
 | 
				
			||||||
      return false;
 | 
					      return false;
 | 
				
			||||||
@@ -258,7 +266,7 @@ bool Transceiver::init()
 | 
				
			|||||||
    if (i && filler == FILLER_DUMMY)
 | 
					    if (i && filler == FILLER_DUMMY)
 | 
				
			||||||
      filler = FILLER_ZERO;
 | 
					      filler = FILLER_ZERO;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    mStates[i].init(filler, cfg->tx_sps, txFullScale, cfg->rtsc, cfg->rach_delay);
 | 
					    mStates[i].init(filler, mSPSTx, txFullScale, rtsc, rach_delay);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Randomize the central clock */
 | 
					  /* Randomize the central clock */
 | 
				
			||||||
@@ -300,8 +308,8 @@ bool Transceiver::start()
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Device is running - launch I/O threads */
 | 
					  /* Device is running - launch I/O threads */
 | 
				
			||||||
  mRxLowerLoopThread = new Thread(cfg->stack_size);
 | 
					  mRxLowerLoopThread = new Thread(stackSize);
 | 
				
			||||||
  mTxLowerLoopThread = new Thread(cfg->stack_size);
 | 
					  mTxLowerLoopThread = new Thread(stackSize);
 | 
				
			||||||
  mTxLowerLoopThread->start((void * (*)(void*))
 | 
					  mTxLowerLoopThread->start((void * (*)(void*))
 | 
				
			||||||
                            TxLowerLoopAdapter,(void*) this);
 | 
					                            TxLowerLoopAdapter,(void*) this);
 | 
				
			||||||
  mRxLowerLoopThread->start((void * (*)(void*))
 | 
					  mRxLowerLoopThread->start((void * (*)(void*))
 | 
				
			||||||
@@ -312,14 +320,14 @@ bool Transceiver::start()
 | 
				
			|||||||
    TrxChanThParams *params = (TrxChanThParams *)malloc(sizeof(struct TrxChanThParams));
 | 
					    TrxChanThParams *params = (TrxChanThParams *)malloc(sizeof(struct TrxChanThParams));
 | 
				
			||||||
    params->trx = this;
 | 
					    params->trx = this;
 | 
				
			||||||
    params->num = i;
 | 
					    params->num = i;
 | 
				
			||||||
    mRxServiceLoopThreads[i] = new Thread(cfg->stack_size);
 | 
					    mRxServiceLoopThreads[i] = new Thread(stackSize);
 | 
				
			||||||
    mRxServiceLoopThreads[i]->start((void * (*)(void*))
 | 
					    mRxServiceLoopThreads[i]->start((void * (*)(void*))
 | 
				
			||||||
                            RxUpperLoopAdapter, (void*) params);
 | 
					                            RxUpperLoopAdapter, (void*) params);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    params = (TrxChanThParams *)malloc(sizeof(struct TrxChanThParams));
 | 
					    params = (TrxChanThParams *)malloc(sizeof(struct TrxChanThParams));
 | 
				
			||||||
    params->trx = this;
 | 
					    params->trx = this;
 | 
				
			||||||
    params->num = i;
 | 
					    params->num = i;
 | 
				
			||||||
    mTxPriorityQueueServiceLoopThreads[i] = new Thread(cfg->stack_size);
 | 
					    mTxPriorityQueueServiceLoopThreads[i] = new Thread(stackSize);
 | 
				
			||||||
    mTxPriorityQueueServiceLoopThreads[i]->start((void * (*)(void*))
 | 
					    mTxPriorityQueueServiceLoopThreads[i]->start((void * (*)(void*))
 | 
				
			||||||
                            TxUpperLoopAdapter, (void*) params);
 | 
					                            TxUpperLoopAdapter, (void*) params);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -392,11 +400,11 @@ void Transceiver::addRadioVector(size_t chan, BitVector &bits,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  /* Use the number of bits as the EDGE burst indicator */
 | 
					  /* Use the number of bits as the EDGE burst indicator */
 | 
				
			||||||
  if (bits.size() == EDGE_BURST_NBITS)
 | 
					  if (bits.size() == EDGE_BURST_NBITS)
 | 
				
			||||||
    burst = modulateEdgeBurst(bits, cfg->tx_sps);
 | 
					    burst = modulateEdgeBurst(bits, mSPSTx);
 | 
				
			||||||
  else
 | 
					  else
 | 
				
			||||||
    burst = modulateBurst(bits, 8 + (wTime.TN() % 4 == 0), cfg->tx_sps);
 | 
					    burst = modulateBurst(bits, 8 + (wTime.TN() % 4 == 0), mSPSTx);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  scaleVector(*burst, txFullScale * pow(10, (double) -RSSI / 20));
 | 
					  scaleVector(*burst, txFullScale * pow(10, -RSSI / 10));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  radio_burst = new radioVector(wTime, burst);
 | 
					  radio_burst = new radioVector(wTime, burst);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -432,7 +440,7 @@ void Transceiver::pushRadioVector(GSM::Time &nowTime)
 | 
				
			|||||||
    state = &mStates[i];
 | 
					    state = &mStates[i];
 | 
				
			||||||
    ratectr_changed = false;
 | 
					    ratectr_changed = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    zeros[i] = state->chanType[TN] == NONE || state->mMuted;
 | 
					    zeros[i] = state->chanType[TN] == NONE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    Mutex *mtx = mTxPriorityQueues[i].getMutex();
 | 
					    Mutex *mtx = mTxPriorityQueues[i].getMutex();
 | 
				
			||||||
    mtx->lock();
 | 
					    mtx->lock();
 | 
				
			||||||
@@ -557,16 +565,16 @@ CorrType Transceiver::expectedCorrType(GSM::Time currTime,
 | 
				
			|||||||
    break;
 | 
					    break;
 | 
				
			||||||
  case IV:
 | 
					  case IV:
 | 
				
			||||||
  case VI:
 | 
					  case VI:
 | 
				
			||||||
    return cfg->ext_rach ? EXT_RACH : RACH;
 | 
					    return mExtRACH ? EXT_RACH : RACH;
 | 
				
			||||||
    break;
 | 
					    break;
 | 
				
			||||||
  case V: {
 | 
					  case V: {
 | 
				
			||||||
    int mod51 = burstFN % 51;
 | 
					    int mod51 = burstFN % 51;
 | 
				
			||||||
    if ((mod51 <= 36) && (mod51 >= 14))
 | 
					    if ((mod51 <= 36) && (mod51 >= 14))
 | 
				
			||||||
      return cfg->ext_rach ? EXT_RACH : RACH;
 | 
					      return mExtRACH ? EXT_RACH : RACH;
 | 
				
			||||||
    else if ((mod51 == 4) || (mod51 == 5))
 | 
					    else if ((mod51 == 4) || (mod51 == 5))
 | 
				
			||||||
      return cfg->ext_rach ? EXT_RACH : RACH;
 | 
					      return mExtRACH ? EXT_RACH : RACH;
 | 
				
			||||||
    else if ((mod51 == 45) || (mod51 == 46))
 | 
					    else if ((mod51 == 45) || (mod51 == 46))
 | 
				
			||||||
      return cfg->ext_rach ? EXT_RACH : RACH;
 | 
					      return mExtRACH ? EXT_RACH : RACH;
 | 
				
			||||||
    else if (mHandover[burstTN][sdcch4_subslot[burstFN % 102]])
 | 
					    else if (mHandover[burstTN][sdcch4_subslot[burstFN % 102]])
 | 
				
			||||||
      return RACH;
 | 
					      return RACH;
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
@@ -584,11 +592,11 @@ CorrType Transceiver::expectedCorrType(GSM::Time currTime,
 | 
				
			|||||||
  case XIII: {
 | 
					  case XIII: {
 | 
				
			||||||
    int mod52 = burstFN % 52;
 | 
					    int mod52 = burstFN % 52;
 | 
				
			||||||
    if ((mod52 == 12) || (mod52 == 38))
 | 
					    if ((mod52 == 12) || (mod52 == 38))
 | 
				
			||||||
      return cfg->ext_rach ? EXT_RACH : RACH;
 | 
					      return mExtRACH ? EXT_RACH : RACH;
 | 
				
			||||||
    else if ((mod52 == 25) || (mod52 == 51))
 | 
					    else if ((mod52 == 25) || (mod52 == 51))
 | 
				
			||||||
      return IDLE;
 | 
					      return IDLE;
 | 
				
			||||||
    else /* Enable 8-PSK burst detection if EDGE is enabled */
 | 
					    else /* Enable 8-PSK burst detection if EDGE is enabled */
 | 
				
			||||||
      return cfg->egprs ? EDGE : TSC;
 | 
					      return mEdge ? EDGE : TSC;
 | 
				
			||||||
    break;
 | 
					    break;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  case LOOPBACK:
 | 
					  case LOOPBACK:
 | 
				
			||||||
@@ -613,13 +621,6 @@ void writeToFile(radioVector *radio_burst, size_t chan)
 | 
				
			|||||||
  outfile.close();
 | 
					  outfile.close();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double Transceiver::rssiOffset(size_t chan)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  if (cfg->force_rssi_offset)
 | 
					 | 
				
			||||||
        return cfg->rssi_offset;
 | 
					 | 
				
			||||||
  return mRadioInterface->rssiOffset(chan) + cfg->rssi_offset;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * Pull bursts from the FIFO and handle according to the slot
 | 
					 * Pull bursts from the FIFO and handle according to the slot
 | 
				
			||||||
 * and burst correlation type. Equalzation is currently disabled.
 | 
					 * and burst correlation type. Equalzation is currently disabled.
 | 
				
			||||||
@@ -639,7 +640,6 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
  SoftVector *rxBurst;
 | 
					  SoftVector *rxBurst;
 | 
				
			||||||
  TransceiverState *state = &mStates[chan];
 | 
					  TransceiverState *state = &mStates[chan];
 | 
				
			||||||
  bool ctr_changed = false;
 | 
					  bool ctr_changed = false;
 | 
				
			||||||
  double rssi_offset;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Blocking FIFO read */
 | 
					  /* Blocking FIFO read */
 | 
				
			||||||
  radioVector *radio_burst = mReceiveFIFO[chan]->read();
 | 
					  radioVector *radio_burst = mReceiveFIFO[chan]->read();
 | 
				
			||||||
@@ -649,7 +649,7 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Set time and determine correlation type */
 | 
					  /* Set time and determine correlation type */
 | 
				
			||||||
  burstTime = radio_burst->getTime() + cfg->ul_fn_offset;
 | 
					  burstTime = radio_burst->getTime();
 | 
				
			||||||
  CorrType type = expectedCorrType(burstTime, chan);
 | 
					  CorrType type = expectedCorrType(burstTime, chan);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Initialize struct bi */
 | 
					  /* Initialize struct bi */
 | 
				
			||||||
@@ -678,13 +678,9 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
    return -ENOENT;
 | 
					    return -ENOENT;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* If TRX RF is locked/muted by BTS, send idle burst indications */
 | 
					 | 
				
			||||||
  if (state->mMuted)
 | 
					 | 
				
			||||||
    goto ret_idle;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /* Select the diversity channel with highest energy */
 | 
					  /* Select the diversity channel with highest energy */
 | 
				
			||||||
  for (size_t i = 0; i < radio_burst->chans(); i++) {
 | 
					  for (size_t i = 0; i < radio_burst->chans(); i++) {
 | 
				
			||||||
    float pow = energyDetect(*radio_burst->getVector(i), 20 * cfg->rx_sps);
 | 
					    float pow = energyDetect(*radio_burst->getVector(i), 20 * mSPSRx);
 | 
				
			||||||
    if (pow > max) {
 | 
					    if (pow > max) {
 | 
				
			||||||
      max = pow;
 | 
					      max = pow;
 | 
				
			||||||
      max_i = i;
 | 
					      max_i = i;
 | 
				
			||||||
@@ -709,9 +705,8 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
    state->mNoiseLev = state->mNoises.avg();
 | 
					    state->mNoiseLev = state->mNoises.avg();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  rssi_offset = rssiOffset(chan);
 | 
					  bi->rssi = 20.0 * log10(rxFullScale / avg) + rssiOffset;
 | 
				
			||||||
  bi->rssi = 20.0 * log10(rxFullScale / avg) + rssi_offset;
 | 
					  bi->noise = 20.0 * log10(rxFullScale / state->mNoiseLev) + rssiOffset;
 | 
				
			||||||
  bi->noise = 20.0 * log10(rxFullScale / state->mNoiseLev) + rssi_offset;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (type == IDLE)
 | 
					  if (type == IDLE)
 | 
				
			||||||
    goto ret_idle;
 | 
					    goto ret_idle;
 | 
				
			||||||
@@ -720,7 +715,7 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
            mMaxExpectedDelayAB : mMaxExpectedDelayNB;
 | 
					            mMaxExpectedDelayAB : mMaxExpectedDelayNB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Detect normal or RACH bursts */
 | 
					  /* Detect normal or RACH bursts */
 | 
				
			||||||
  rc = detectAnyBurst(*burst, mTSC, BURST_THRESH, cfg->rx_sps, type, max_toa, &ebp);
 | 
					  rc = detectAnyBurst(*burst, mTSC, BURST_THRESH, mSPSRx, type, max_toa, &ebp);
 | 
				
			||||||
  if (rc <= 0) {
 | 
					  if (rc <= 0) {
 | 
				
			||||||
    if (rc == -SIGERR_CLIP) {
 | 
					    if (rc == -SIGERR_CLIP) {
 | 
				
			||||||
      LOGCHAN(chan, DTRXDUL, INFO) << "Clipping detected on received RACH or Normal Burst";
 | 
					      LOGCHAN(chan, DTRXDUL, INFO) << "Clipping detected on received RACH or Normal Burst";
 | 
				
			||||||
@@ -734,10 +729,11 @@ int Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
    goto ret_idle;
 | 
					    goto ret_idle;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  rxBurst = demodAnyBurst(*burst, (CorrType) rc, cfg->rx_sps, &ebp);
 | 
					  type = (CorrType) rc;
 | 
				
			||||||
  bi->toa = ebp.toa;
 | 
					  bi->toa = ebp.toa;
 | 
				
			||||||
  bi->tsc = ebp.tsc;
 | 
					  bi->tsc = ebp.tsc;
 | 
				
			||||||
  bi->ci = ebp.ci;
 | 
					  bi->ci = ebp.ci;
 | 
				
			||||||
 | 
					  rxBurst = demodAnyBurst(*burst, mSPSRx, ebp.amp, ebp.toa, type);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* EDGE demodulator returns 444 (gSlotLen * 3) bits */
 | 
					  /* EDGE demodulator returns 444 (gSlotLen * 3) bits */
 | 
				
			||||||
  if (rxBurst->size() == EDGE_BURST_NBITS) {
 | 
					  if (rxBurst->size() == EDGE_BURST_NBITS) {
 | 
				
			||||||
@@ -805,7 +801,7 @@ void Transceiver::ctrl_sock_send(ctrl_msg& m, int chan)
 | 
				
			|||||||
  struct osmo_fd *conn_bfd = &s.conn_bfd;
 | 
					  struct osmo_fd *conn_bfd = &s.conn_bfd;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  s.txmsgqueue.push_back(m);
 | 
					  s.txmsgqueue.push_back(m);
 | 
				
			||||||
  osmo_fd_write_enable(conn_bfd);
 | 
					  conn_bfd->when |= OSMO_FD_WRITE;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int Transceiver::ctrl_sock_write(int chan)
 | 
					int Transceiver::ctrl_sock_write(int chan)
 | 
				
			||||||
@@ -820,7 +816,7 @@ int Transceiver::ctrl_sock_write(int chan)
 | 
				
			|||||||
  while (s.txmsgqueue.size()) {
 | 
					  while (s.txmsgqueue.size()) {
 | 
				
			||||||
    const ctrl_msg m = s.txmsgqueue.front();
 | 
					    const ctrl_msg m = s.txmsgqueue.front();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    osmo_fd_write_disable(&s.conn_bfd);
 | 
					    s.conn_bfd.when &= ~OSMO_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* try to send it over the socket */
 | 
					    /* try to send it over the socket */
 | 
				
			||||||
    rc = write(s.conn_bfd.fd, m.data, strlen(m.data) + 1);
 | 
					    rc = write(s.conn_bfd.fd, m.data, strlen(m.data) + 1);
 | 
				
			||||||
@@ -828,7 +824,7 @@ int Transceiver::ctrl_sock_write(int chan)
 | 
				
			|||||||
      goto close;
 | 
					      goto close;
 | 
				
			||||||
    if (rc < 0) {
 | 
					    if (rc < 0) {
 | 
				
			||||||
      if (errno == EAGAIN) {
 | 
					      if (errno == EAGAIN) {
 | 
				
			||||||
        osmo_fd_write_enable(&s.conn_bfd);
 | 
					        s.conn_bfd.when |= OSMO_FD_WRITE;
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
      goto close;
 | 
					      goto close;
 | 
				
			||||||
@@ -954,7 +950,7 @@ int Transceiver::ctrl_sock_handle_rx(int chan)
 | 
				
			|||||||
    // tune receiver
 | 
					    // tune receiver
 | 
				
			||||||
    int freqKhz;
 | 
					    int freqKhz;
 | 
				
			||||||
    sscanf(params, "%d", &freqKhz);
 | 
					    sscanf(params, "%d", &freqKhz);
 | 
				
			||||||
    mRxFreq = (freqKhz + cfg->freq_offset_khz) * 1e3;
 | 
					    mRxFreq = freqKhz * 1e3;
 | 
				
			||||||
    if (!mRadioInterface->tuneRx(mRxFreq, chan)) {
 | 
					    if (!mRadioInterface->tuneRx(mRxFreq, chan)) {
 | 
				
			||||||
       LOGCHAN(chan, DTRXCTRL, FATAL) << "RX failed to tune";
 | 
					       LOGCHAN(chan, DTRXCTRL, FATAL) << "RX failed to tune";
 | 
				
			||||||
       sprintf(response,"RSP RXTUNE 1 %d",freqKhz);
 | 
					       sprintf(response,"RSP RXTUNE 1 %d",freqKhz);
 | 
				
			||||||
@@ -965,7 +961,7 @@ int Transceiver::ctrl_sock_handle_rx(int chan)
 | 
				
			|||||||
    // tune txmtr
 | 
					    // tune txmtr
 | 
				
			||||||
    int freqKhz;
 | 
					    int freqKhz;
 | 
				
			||||||
    sscanf(params, "%d", &freqKhz);
 | 
					    sscanf(params, "%d", &freqKhz);
 | 
				
			||||||
    mTxFreq = (freqKhz + cfg->freq_offset_khz) * 1e3;
 | 
					    mTxFreq = freqKhz * 1e3;
 | 
				
			||||||
    if (!mRadioInterface->tuneTx(mTxFreq, chan)) {
 | 
					    if (!mRadioInterface->tuneTx(mTxFreq, chan)) {
 | 
				
			||||||
       LOGCHAN(chan, DTRXCTRL, FATAL) << "TX failed to tune";
 | 
					       LOGCHAN(chan, DTRXCTRL, FATAL) << "TX failed to tune";
 | 
				
			||||||
       sprintf(response,"RSP TXTUNE 1 %d",freqKhz);
 | 
					       sprintf(response,"RSP TXTUNE 1 %d",freqKhz);
 | 
				
			||||||
@@ -1010,12 +1006,6 @@ int Transceiver::ctrl_sock_handle_rx(int chan)
 | 
				
			|||||||
      mVersionTRXD[chan] = version_recv;
 | 
					      mVersionTRXD[chan] = version_recv;
 | 
				
			||||||
      sprintf(response, "RSP SETFORMAT %u %u", version_recv, version_recv);
 | 
					      sprintf(response, "RSP SETFORMAT %u %u", version_recv, version_recv);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  } else if (match_cmd(command, "RFMUTE", ¶ms)) {
 | 
					 | 
				
			||||||
    // (Un)mute RF TX and RX
 | 
					 | 
				
			||||||
    unsigned mute;
 | 
					 | 
				
			||||||
    sscanf(params, "%u", &mute);
 | 
					 | 
				
			||||||
    mStates[chan].mMuted = mute ? true : false;
 | 
					 | 
				
			||||||
    sprintf(response, "RSP RFMUTE 0 %u", mute);
 | 
					 | 
				
			||||||
  } else if (match_cmd(command, "_SETBURSTTODISKMASK", ¶ms)) {
 | 
					  } else if (match_cmd(command, "_SETBURSTTODISKMASK", ¶ms)) {
 | 
				
			||||||
    // debug command! may change or disappear without notice
 | 
					    // debug command! may change or disappear without notice
 | 
				
			||||||
    // set a mask which bursts to dump to disk
 | 
					    // set a mask which bursts to dump to disk
 | 
				
			||||||
@@ -1054,8 +1044,8 @@ bool Transceiver::driveTxPriorityQueue(size_t chan)
 | 
				
			|||||||
      burstLen = gSlotLen;
 | 
					      burstLen = gSlotLen;
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    case sizeof(*dl) + EDGE_BURST_NBITS: /* EDGE burst */
 | 
					    case sizeof(*dl) + EDGE_BURST_NBITS: /* EDGE burst */
 | 
				
			||||||
      if (cfg->tx_sps != 4) {
 | 
					      if (mSPSTx != 4) {
 | 
				
			||||||
        LOGCHAN(chan, DTRXDDL, ERROR) << "EDGE burst received but SPS is set to " << cfg->tx_sps;
 | 
					        LOGCHAN(chan, DTRXDDL, ERROR) << "EDGE burst received but SPS is set to " << mSPSTx;
 | 
				
			||||||
        return false;
 | 
					        return false;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
      burstLen = EDGE_BURST_NBITS;
 | 
					      burstLen = EDGE_BURST_NBITS;
 | 
				
			||||||
@@ -1162,13 +1152,11 @@ void Transceiver::logRxBurst(size_t chan, const struct trx_ul_burst_ind *bi)
 | 
				
			|||||||
    else os << "-";
 | 
					    else os << "-";
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  double rssi_offset = rssiOffset(chan);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  LOGCHAN(chan, DTRXDUL, DEBUG) << std::fixed << std::right
 | 
					  LOGCHAN(chan, DTRXDUL, DEBUG) << std::fixed << std::right
 | 
				
			||||||
    << " time: "   << unsigned(bi->tn) << ":" << bi->fn
 | 
					    << " time: "   << unsigned(bi->tn) << ":" << bi->fn
 | 
				
			||||||
    << " RSSI: "   << std::setw(5) << std::setprecision(1) << (bi->rssi - rssi_offset)
 | 
					    << " RSSI: "   << std::setw(5) << std::setprecision(1) << (bi->rssi - rssiOffset)
 | 
				
			||||||
                   << "dBFS/" << std::setw(6) << -bi->rssi << "dBm"
 | 
					                   << "dBFS/" << std::setw(6) << -bi->rssi << "dBm"
 | 
				
			||||||
    << " noise: "  << std::setw(5) << std::setprecision(1) << (bi->noise - rssi_offset)
 | 
					    << " noise: "  << std::setw(5) << std::setprecision(1) << (bi->noise - rssiOffset)
 | 
				
			||||||
                   << "dBFS/" << std::setw(6) << -bi->noise << "dBm"
 | 
					                   << "dBFS/" << std::setw(6) << -bi->noise << "dBm"
 | 
				
			||||||
    << " TOA: "    << std::setw(5) << std::setprecision(2) << bi->toa
 | 
					    << " TOA: "    << std::setw(5) << std::setprecision(2) << bi->toa
 | 
				
			||||||
    << " C/I: "    << std::setw(5) << std::setprecision(2) << bi->ci << "dB"
 | 
					    << " C/I: "    << std::setw(5) << std::setprecision(2) << bi->ci << "dB"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -85,9 +85,6 @@ struct TransceiverState {
 | 
				
			|||||||
  /* Shadowed downlink attenuation */
 | 
					  /* Shadowed downlink attenuation */
 | 
				
			||||||
  int mPower;
 | 
					  int mPower;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* RF emission and reception disabled, as per NM Administrative State Locked */
 | 
					 | 
				
			||||||
  bool mMuted;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /* counters */
 | 
					  /* counters */
 | 
				
			||||||
  struct trx_counters ctrs;
 | 
					  struct trx_counters ctrs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -100,19 +97,27 @@ struct TransceiverState {
 | 
				
			|||||||
class Transceiver {
 | 
					class Transceiver {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
  /** Transceiver constructor
 | 
					  /** Transceiver constructor
 | 
				
			||||||
      @param cfg VTY populated config
 | 
					      @param wBasePort base port number of UDP sockets
 | 
				
			||||||
 | 
					      @param TRXAddress IP address of the TRX, as a string
 | 
				
			||||||
 | 
					      @param GSMcoreAddress IP address of the GSM core, as a string
 | 
				
			||||||
 | 
					      @param wSPS number of samples per GSM symbol
 | 
				
			||||||
      @param wTransmitLatency initial setting of transmit latency
 | 
					      @param wTransmitLatency initial setting of transmit latency
 | 
				
			||||||
      @param radioInterface associated radioInterface object
 | 
					      @param radioInterface associated radioInterface object
 | 
				
			||||||
  */
 | 
					  */
 | 
				
			||||||
  Transceiver(const struct trx_cfg *cfg,
 | 
					  Transceiver(int wBasePort,
 | 
				
			||||||
 | 
					              const char *TRXAddress,
 | 
				
			||||||
 | 
					              const char *GSMcoreAddress,
 | 
				
			||||||
 | 
					              size_t tx_sps, size_t rx_sps, size_t chans,
 | 
				
			||||||
              GSM::Time wTransmitLatency,
 | 
					              GSM::Time wTransmitLatency,
 | 
				
			||||||
              RadioInterface *wRadioInterface);
 | 
					              RadioInterface *wRadioInterface,
 | 
				
			||||||
 | 
					              double wRssiOffset, int stackSize);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** Destructor */
 | 
					  /** Destructor */
 | 
				
			||||||
  ~Transceiver();
 | 
					  ~Transceiver();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** Start the control loop */
 | 
					  /** Start the control loop */
 | 
				
			||||||
  bool init(void);
 | 
					  bool init(FillerType filler, size_t rtsc, unsigned rach_delay,
 | 
				
			||||||
 | 
					            bool edge, bool ext_rach);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** attach the radioInterface receive FIFO */
 | 
					  /** attach the radioInterface receive FIFO */
 | 
				
			||||||
  bool receiveFIFO(VectorFIFO *wFIFO, size_t chan)
 | 
					  bool receiveFIFO(VectorFIFO *wFIFO, size_t chan)
 | 
				
			||||||
@@ -125,7 +130,7 @@ public:
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** accessor for number of channels */
 | 
					  /** accessor for number of channels */
 | 
				
			||||||
  size_t numChans() const { return cfg->num_chans; };
 | 
					  size_t numChans() const { return mChans; };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** Codes for channel combinations */
 | 
					  /** Codes for channel combinations */
 | 
				
			||||||
  typedef enum {
 | 
					  typedef enum {
 | 
				
			||||||
@@ -148,6 +153,7 @@ public:
 | 
				
			|||||||
  } ChannelCombination;
 | 
					  } ChannelCombination;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct ctrl_msg {
 | 
					struct ctrl_msg {
 | 
				
			||||||
  char data[101];
 | 
					  char data[101];
 | 
				
			||||||
  ctrl_msg() {};
 | 
					  ctrl_msg() {};
 | 
				
			||||||
@@ -168,7 +174,10 @@ struct ctrl_sock_state {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const struct trx_cfg *cfg;	///< VTY populated config
 | 
					  int mBasePort;
 | 
				
			||||||
 | 
					  std::string mLocalAddr;
 | 
				
			||||||
 | 
					  std::string mRemoteAddr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  std::vector<int> mDataSockets;  ///< socket for writing to/reading from GSM core
 | 
					  std::vector<int> mDataSockets;  ///< socket for writing to/reading from GSM core
 | 
				
			||||||
  std::vector<ctrl_sock_state> mCtrlSockets;  ///< socket for writing/reading control commands from GSM core
 | 
					  std::vector<ctrl_sock_state> mCtrlSockets;  ///< socket for writing/reading control commands from GSM core
 | 
				
			||||||
  int mClockSocket;               ///< socket for writing clock updates to GSM core
 | 
					  int mClockSocket;               ///< socket for writing clock updates to GSM core
 | 
				
			||||||
@@ -190,6 +199,9 @@ struct ctrl_sock_state {
 | 
				
			|||||||
  double txFullScale;                     ///< full scale input to radio
 | 
					  double txFullScale;                     ///< full scale input to radio
 | 
				
			||||||
  double rxFullScale;                     ///< full scale output to radio
 | 
					  double rxFullScale;                     ///< full scale output to radio
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  double rssiOffset;                      ///< RSSI to dBm conversion offset
 | 
				
			||||||
 | 
					  int stackSize;                      ///< stack size for threads, 0 = OS default
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** modulate and add a burst to the transmit queue */
 | 
					  /** modulate and add a burst to the transmit queue */
 | 
				
			||||||
  void addRadioVector(size_t chan, BitVector &bits,
 | 
					  void addRadioVector(size_t chan, BitVector &bits,
 | 
				
			||||||
                      int RSSI, GSM::Time &wTime);
 | 
					                      int RSSI, GSM::Time &wTime);
 | 
				
			||||||
@@ -218,7 +230,12 @@ struct ctrl_sock_state {
 | 
				
			|||||||
  /** drive handling of control messages from GSM core */
 | 
					  /** drive handling of control messages from GSM core */
 | 
				
			||||||
  int ctrl_sock_handle_rx(int chan);
 | 
					  int ctrl_sock_handle_rx(int chan);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  int mSPSTx;                          ///< number of samples per Tx symbol
 | 
				
			||||||
 | 
					  int mSPSRx;                          ///< number of samples per Rx symbol
 | 
				
			||||||
  size_t mChans;
 | 
					  size_t mChans;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  bool mExtRACH;
 | 
				
			||||||
 | 
					  bool mEdge;
 | 
				
			||||||
  bool mOn;	                           ///< flag to indicate that transceiver is powered on
 | 
					  bool mOn;	                           ///< flag to indicate that transceiver is powered on
 | 
				
			||||||
  bool mForceClockInterface;           ///< flag to indicate whether IND CLOCK shall be sent unconditionally after transceiver is started
 | 
					  bool mForceClockInterface;           ///< flag to indicate whether IND CLOCK shall be sent unconditionally after transceiver is started
 | 
				
			||||||
  bool mHandover[8][8];                ///< expect handover to the timeslot/subslot
 | 
					  bool mHandover[8][8];                ///< expect handover to the timeslot/subslot
 | 
				
			||||||
@@ -260,7 +277,7 @@ protected:
 | 
				
			|||||||
  friend void *RxLowerLoopAdapter(Transceiver *transceiver);
 | 
					  friend void *RxLowerLoopAdapter(Transceiver *transceiver);
 | 
				
			||||||
  friend void *TxLowerLoopAdapter(Transceiver *transceiver);
 | 
					  friend void *TxLowerLoopAdapter(Transceiver *transceiver);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  double rssiOffset(size_t chan);
 | 
					
 | 
				
			||||||
  void reset();
 | 
					  void reset();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void logRxBurst(size_t chan, const struct trx_ul_burst_ind *bi);
 | 
					  void logRxBurst(size_t chan, const struct trx_ul_burst_ind *bi);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	.syntax unified
 | 
						.syntax unified
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef HAVE_CONFIG_H
 | 
					#ifdef HAVE_CONFIG_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	.syntax unified
 | 
						.syntax unified
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	.syntax unified
 | 
						.syntax unified
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "convert.h"
 | 
					#include "convert.h"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,6 +13,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
@@ -95,10 +99,9 @@ int convolve_real(const float *x, int x_len,
 | 
				
			|||||||
		  const float *h, int h_len,
 | 
							  const float *h, int h_len,
 | 
				
			||||||
		  float *y, int y_len, int start, int len)
 | 
							  float *y, int y_len, int start, int len)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifndef __OPTIMIZE__
 | 
					 | 
				
			||||||
	if (bounds_check(x_len, h_len, y_len, start, len) < 0)
 | 
						if (bounds_check(x_len, h_len, y_len, start, len) < 0)
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
#endif
 | 
					
 | 
				
			||||||
	memset(y, 0, len * 2 * sizeof(float));
 | 
						memset(y, 0, len * 2 * sizeof(float));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	switch (h_len) {
 | 
						switch (h_len) {
 | 
				
			||||||
@@ -135,10 +138,9 @@ int convolve_complex(const float *x, int x_len,
 | 
				
			|||||||
		     float *y, int y_len,
 | 
							     float *y, int y_len,
 | 
				
			||||||
		     int start, int len)
 | 
							     int start, int len)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifndef __OPTIMIZE__
 | 
					 | 
				
			||||||
	if (bounds_check(x_len, h_len, y_len, start, len) < 0)
 | 
						if (bounds_check(x_len, h_len, y_len, start, len) < 0)
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
#endif
 | 
					
 | 
				
			||||||
	memset(y, 0, len * 2 * sizeof(float));
 | 
						memset(y, 0, len * 2 * sizeof(float));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!(h_len % 8))
 | 
						if (!(h_len % 8))
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <malloc.h>
 | 
					#include <malloc.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,9 +2,9 @@ include $(top_srcdir)/Makefile.common
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
SUBDIRS = common
 | 
					SUBDIRS = common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if DEVICE_IPC
 | 
					#if DEVICE_IPC
 | 
				
			||||||
SUBDIRS += ipc
 | 
					SUBDIRS += ipc
 | 
				
			||||||
endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if DEVICE_USRP1
 | 
					if DEVICE_USRP1
 | 
				
			||||||
SUBDIRS += usrp1
 | 
					SUBDIRS += usrp1
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
include $(top_srcdir)/Makefile.common
 | 
					include $(top_srcdir)/Makefile.common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES)
 | 
					AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES)
 | 
				
			||||||
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS)
 | 
					AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LMS_CFLAGS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
noinst_HEADERS = radioDevice.h smpl_buf.h
 | 
					noinst_HEADERS = radioDevice.h smpl_buf.h
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -125,9 +125,6 @@ class RadioDevice {
 | 
				
			|||||||
  /** return minimum Rx Gain **/
 | 
					  /** return minimum Rx Gain **/
 | 
				
			||||||
  virtual double minRxGain(void) = 0;
 | 
					  virtual double minRxGain(void) = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** return base RSSI offset to apply for received samples **/
 | 
					 | 
				
			||||||
  virtual double rssiOffset(size_t chan) = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /** returns the Nominal transmit output power of the transceiver in dBm, negative on error **/
 | 
					  /** returns the Nominal transmit output power of the transceiver in dBm, negative on error **/
 | 
				
			||||||
  virtual int getNominalTxPower(size_t chan = 0) = 0;
 | 
					  virtual int getNominalTxPower(size_t chan = 0) = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -189,13 +186,6 @@ class RadioDevice {
 | 
				
			|||||||
	for (i = 0; i < tx_paths.size(); i++) {
 | 
						for (i = 0; i < tx_paths.size(); i++) {
 | 
				
			||||||
		if (tx_paths[i] == "")
 | 
							if (tx_paths[i] == "")
 | 
				
			||||||
			continue;
 | 
								continue;
 | 
				
			||||||
		if (iface == MULTI_ARFCN && i > 0) {
 | 
					 | 
				
			||||||
			LOGCHAN(i, DDEV, NOTICE) << "Not setting Tx antenna "
 | 
					 | 
				
			||||||
						 << tx_paths[i]
 | 
					 | 
				
			||||||
						 << " for a logical channel";
 | 
					 | 
				
			||||||
			continue;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		LOGCHAN(i, DDEV, DEBUG) << "Configuring Tx antenna " << tx_paths[i];
 | 
							LOGCHAN(i, DDEV, DEBUG) << "Configuring Tx antenna " << tx_paths[i];
 | 
				
			||||||
		if (!setTxAntenna(tx_paths[i], i)) {
 | 
							if (!setTxAntenna(tx_paths[i], i)) {
 | 
				
			||||||
			LOGCHAN(i, DDEV, ALERT) << "Failed configuring Tx antenna " << tx_paths[i];
 | 
								LOGCHAN(i, DDEV, ALERT) << "Failed configuring Tx antenna " << tx_paths[i];
 | 
				
			||||||
@@ -206,13 +196,6 @@ class RadioDevice {
 | 
				
			|||||||
	for (i = 0; i < rx_paths.size(); i++) {
 | 
						for (i = 0; i < rx_paths.size(); i++) {
 | 
				
			||||||
		if (rx_paths[i] == "")
 | 
							if (rx_paths[i] == "")
 | 
				
			||||||
			continue;
 | 
								continue;
 | 
				
			||||||
		if (iface == MULTI_ARFCN && i > 0) {
 | 
					 | 
				
			||||||
			LOGCHAN(i, DDEV, NOTICE) << "Not setting Rx antenna "
 | 
					 | 
				
			||||||
						 << rx_paths[i]
 | 
					 | 
				
			||||||
						 << " for a logical channel";
 | 
					 | 
				
			||||||
			continue;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		LOGCHAN(i, DDEV, DEBUG) << "Configuring Rx antenna " << rx_paths[i];
 | 
							LOGCHAN(i, DDEV, DEBUG) << "Configuring Rx antenna " << rx_paths[i];
 | 
				
			||||||
		if (!setRxAntenna(rx_paths[i], i)) {
 | 
							if (!setRxAntenna(rx_paths[i], i)) {
 | 
				
			||||||
			LOGCHAN(i, DDEV, ALERT) << "Failed configuring Rx antenna " << rx_paths[i];
 | 
								LOGCHAN(i, DDEV, ALERT) << "Failed configuring Rx antenna " << rx_paths[i];
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,33 +4,32 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: AGPL-3.0+
 | 
					* SPDX-License-Identifier: AGPL-3.0+
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* This program is free software: you can redistribute it and/or modify
 | 
						This program is free software: you can redistribute it and/or modify
 | 
				
			||||||
* it under the terms of the GNU Affero General Public License as published by
 | 
						it under the terms of the GNU Affero General Public License as published by
 | 
				
			||||||
* the Free Software Foundation, either version 3 of the License, or
 | 
						the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
* (at your option) any later version.
 | 
						(at your option) any later version.
 | 
				
			||||||
*
 | 
					
 | 
				
			||||||
* This program is distributed in the hope that it will be useful,
 | 
						This program is distributed in the hope that it will be useful,
 | 
				
			||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
* GNU Affero General Public License for more details.
 | 
						GNU Affero General Public License for more details.
 | 
				
			||||||
*
 | 
					
 | 
				
			||||||
* You should have received a copy of the GNU Affero General Public License
 | 
						You should have received a copy of the GNU Affero General Public License
 | 
				
			||||||
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
* See the COPYING file in the main directory for details.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <cstdint>
 | 
					#include <cstdint>
 | 
				
			||||||
#include <cstring>
 | 
					#include <cstring>
 | 
				
			||||||
#include <cstdlib>
 | 
					#include <cstdlib>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef HAVE_CONFIG_H
 | 
					 | 
				
			||||||
#include "config.h"
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <map>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "trx_vty.h"
 | 
				
			||||||
#include "Logger.h"
 | 
					#include "Logger.h"
 | 
				
			||||||
#include "Threads.h"
 | 
					#include "Threads.h"
 | 
				
			||||||
 | 
					#include "Utils.h"
 | 
				
			||||||
#include "IPCDevice.h"
 | 
					#include "IPCDevice.h"
 | 
				
			||||||
#include "smpl_buf.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
#include <sys/mman.h>
 | 
					#include <sys/mman.h>
 | 
				
			||||||
@@ -38,6 +37,7 @@ extern "C" {
 | 
				
			|||||||
#include <fcntl.h> /* For O_* constants */
 | 
					#include <fcntl.h> /* For O_* constants */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "osmo_signal.h"
 | 
					#include "osmo_signal.h"
 | 
				
			||||||
 | 
					#include <osmocom/core/application.h>
 | 
				
			||||||
#include <osmocom/core/talloc.h>
 | 
					#include <osmocom/core/talloc.h>
 | 
				
			||||||
#include <osmocom/core/select.h>
 | 
					#include <osmocom/core/select.h>
 | 
				
			||||||
#include <osmocom/core/socket.h>
 | 
					#include <osmocom/core/socket.h>
 | 
				
			||||||
@@ -46,10 +46,12 @@ extern "C" {
 | 
				
			|||||||
#include <osmocom/core/msgb.h>
 | 
					#include <osmocom/core/msgb.h>
 | 
				
			||||||
#include <osmocom/core/select.h>
 | 
					#include <osmocom/core/select.h>
 | 
				
			||||||
#include <osmocom/core/timer.h>
 | 
					#include <osmocom/core/timer.h>
 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "ipc_shm.h"
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef HAVE_CONFIG_H
 | 
				
			||||||
 | 
					#include "config.h"
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define SAMPLE_BUF_SZ (1 << 20)
 | 
					#define SAMPLE_BUF_SZ (1 << 20)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
using namespace std;
 | 
					using namespace std;
 | 
				
			||||||
@@ -58,25 +60,29 @@ static int ipc_chan_sock_cb(struct osmo_fd *bfd, unsigned int flags);
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
IPCDevice::IPCDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
 | 
					IPCDevice::IPCDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
 | 
				
			||||||
		     const std::vector<std::string> &tx_paths, const std::vector<std::string> &rx_paths)
 | 
							     const std::vector<std::string> &tx_paths, const std::vector<std::string> &rx_paths)
 | 
				
			||||||
	: RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths), tx_attenuation(),
 | 
						: RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
 | 
				
			||||||
	  tmp_state(IPC_IF_MSG_GREETING_REQ), shm(NULL), shm_dec(0), started(false)
 | 
						   tx_attenuation(), tmp_state(IPC_IF_MSG_GREETING_REQ), shm(NULL), shm_dec(0), started(false)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	LOGC(DDEV, INFO) << "creating IPC device...";
 | 
						LOGC(DDEV, INFO) << "creating IPC device...";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						//m_IPC_stream_rx.resize(chans);
 | 
				
			||||||
 | 
						//m_IPC_stream_tx.resize(chans);
 | 
				
			||||||
	rx_gains.resize(chans);
 | 
						rx_gains.resize(chans);
 | 
				
			||||||
	tx_gains.resize(chans);
 | 
						tx_gains.resize(chans);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rx_buffers.resize(chans);
 | 
						rx_buffers.resize(chans);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sk_chan_state.resize(chans, ipc_per_trx_sock_state());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Set up per-channel Rx timestamp based Ring buffers */
 | 
						/* Set up per-channel Rx timestamp based Ring buffers */
 | 
				
			||||||
	for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
						for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
				
			||||||
		rx_buffers[i] = new smpl_buf(SAMPLE_BUF_SZ / sizeof(uint32_t));
 | 
							rx_buffers[i] = new smpl_buf(SAMPLE_BUF_SZ / sizeof(uint32_t));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						memset(&sk_chan_state, 0, sizeof(sk_chan_state));
 | 
				
			||||||
 | 
						memset(&trx_is_started, 0, sizeof(trx_is_started));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
IPCDevice::~IPCDevice()
 | 
					IPCDevice::~IPCDevice()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
						//unsigned int i;
 | 
				
			||||||
	LOGC(DDEV, INFO) << "Closing IPC device";
 | 
						LOGC(DDEV, INFO) << "Closing IPC device";
 | 
				
			||||||
	/* disable all channels */
 | 
						/* disable all channels */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -85,7 +91,7 @@ IPCDevice::~IPCDevice()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	ipc_sock_close(&master_sk_state);
 | 
						ipc_sock_close(&master_sk_state);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (unsigned int i = 0; i < sk_chan_state.size(); i++)
 | 
						for (unsigned int i = 0; i < ARRAY_SIZE(sk_chan_state); i++)
 | 
				
			||||||
		ipc_sock_close(&sk_chan_state[i]);
 | 
							ipc_sock_close(&sk_chan_state[i]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (auto i : shm_io_rx_streams)
 | 
						for (auto i : shm_io_rx_streams)
 | 
				
			||||||
@@ -100,14 +106,12 @@ IPCDevice::~IPCDevice()
 | 
				
			|||||||
int IPCDevice::ipc_shm_connect(const char *shm_name)
 | 
					int IPCDevice::ipc_shm_connect(const char *shm_name)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int fd;
 | 
						int fd;
 | 
				
			||||||
	char err_buf[256];
 | 
					 | 
				
			||||||
	size_t shm_len;
 | 
						size_t shm_len;
 | 
				
			||||||
	int rc;
 | 
						int rc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DDEV, LOGL_NOTICE, "Opening shm path %s\n", shm_name);
 | 
						LOGP(DDEV, LOGL_NOTICE, "Opening shm path %s\n", shm_name);
 | 
				
			||||||
	if ((fd = shm_open(shm_name, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR)) < 0) {
 | 
						if ((fd = shm_open(shm_name, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR)) < 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "shm_open %d: %s\n", errno,
 | 
							LOGP(DDEV, LOGL_ERROR, "shm_open %d: %s\n", errno, strerror(errno));
 | 
				
			||||||
		     strerror_r(errno, err_buf, sizeof(err_buf)));
 | 
					 | 
				
			||||||
		rc = -errno;
 | 
							rc = -errno;
 | 
				
			||||||
		goto err_shm_open;
 | 
							goto err_shm_open;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -115,8 +119,7 @@ int IPCDevice::ipc_shm_connect(const char *shm_name)
 | 
				
			|||||||
	// Get size of the allocated memory
 | 
						// Get size of the allocated memory
 | 
				
			||||||
	struct stat shm_stat;
 | 
						struct stat shm_stat;
 | 
				
			||||||
	if (fstat(fd, &shm_stat) < 0) {
 | 
						if (fstat(fd, &shm_stat) < 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "fstat %d: %s\n", errno,
 | 
							LOGP(DDEV, LOGL_ERROR, "fstat %d: %s\n", errno, strerror(errno));
 | 
				
			||||||
		     strerror_r(errno, err_buf, sizeof(err_buf)));
 | 
					 | 
				
			||||||
		rc = -errno;
 | 
							rc = -errno;
 | 
				
			||||||
		goto err_mmap;
 | 
							goto err_mmap;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -125,8 +128,7 @@ int IPCDevice::ipc_shm_connect(const char *shm_name)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	LOGP(DDEV, LOGL_NOTICE, "mmaping shared memory fd %d (size=%zu)\n", fd, shm_len);
 | 
						LOGP(DDEV, LOGL_NOTICE, "mmaping shared memory fd %d (size=%zu)\n", fd, shm_len);
 | 
				
			||||||
	if ((shm = mmap(NULL, shm_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)) == MAP_FAILED) {
 | 
						if ((shm = mmap(NULL, shm_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)) == MAP_FAILED) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "mmap %d: %s\n", errno,
 | 
							LOGP(DDEV, LOGL_ERROR, "mmap %d: %s\n", errno, strerror(errno));
 | 
				
			||||||
		     strerror_r(errno, err_buf, sizeof(err_buf)));
 | 
					 | 
				
			||||||
		rc = -errno;
 | 
							rc = -errno;
 | 
				
			||||||
		goto err_mmap;
 | 
							goto err_mmap;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -142,7 +144,7 @@ err_shm_open:
 | 
				
			|||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ipc_sock_send(struct ipc_per_trx_sock_state *state, struct msgb *msg);
 | 
					static int ipc_sock_send(struct ipc_sock_state *state, struct msgb *msg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct msgb *ipc_msgb_alloc(uint8_t msg_type)
 | 
					static struct msgb *ipc_msgb_alloc(uint8_t msg_type)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -159,7 +161,7 @@ static struct msgb *ipc_msgb_alloc(uint8_t msg_type)
 | 
				
			|||||||
	return msg;
 | 
						return msg;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ipc_tx_greeting_req(struct ipc_per_trx_sock_state *state, uint8_t req_version)
 | 
					static int ipc_tx_greeting_req(struct ipc_sock_state *state, uint8_t req_version)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct msgb *msg;
 | 
						struct msgb *msg;
 | 
				
			||||||
	struct ipc_sk_if *ipc_prim;
 | 
						struct ipc_sk_if *ipc_prim;
 | 
				
			||||||
@@ -177,7 +179,7 @@ static int ipc_tx_greeting_req(struct ipc_per_trx_sock_state *state, uint8_t req
 | 
				
			|||||||
	return ipc_sock_send(state, msg);
 | 
						return ipc_sock_send(state, msg);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ipc_tx_info_req(struct ipc_per_trx_sock_state *state)
 | 
					static int ipc_tx_info_req(struct ipc_sock_state *state)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct msgb *msg;
 | 
						struct msgb *msg;
 | 
				
			||||||
	//struct ipc_sk_if *ipc_prim;
 | 
						//struct ipc_sk_if *ipc_prim;
 | 
				
			||||||
@@ -193,7 +195,7 @@ static int ipc_tx_info_req(struct ipc_per_trx_sock_state *state)
 | 
				
			|||||||
	return ipc_sock_send(state, msg);
 | 
						return ipc_sock_send(state, msg);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int IPCDevice::ipc_tx_open_req(struct ipc_per_trx_sock_state *state, uint32_t num_chans, uint32_t ref)
 | 
					int IPCDevice::ipc_tx_open_req(struct ipc_sock_state *state, uint32_t num_chans, uint32_t ref)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct msgb *msg;
 | 
						struct msgb *msg;
 | 
				
			||||||
	struct ipc_sk_if *ipc_prim;
 | 
						struct ipc_sk_if *ipc_prim;
 | 
				
			||||||
@@ -273,8 +275,7 @@ int IPCDevice::ipc_rx_info_cnf(const struct ipc_sk_if_info_cnf *info_cnf)
 | 
				
			|||||||
	 * cache rx/tx paths per channel, and make sure it matches the one the user wants to set
 | 
						 * cache rx/tx paths per channel, and make sure it matches the one the user wants to set
 | 
				
			||||||
	 */
 | 
						 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGC(DDEV, NOTICE)
 | 
						LOGC(DDEV, NOTICE) << "Rx Info CNF:"
 | 
				
			||||||
		<< "Rx Info CNF:"
 | 
					 | 
				
			||||||
			   << " name=" << info_cnf->dev_desc << std::endl
 | 
								   << " name=" << info_cnf->dev_desc << std::endl
 | 
				
			||||||
			   << " max_num_chans=" << info_cnf->max_num_chans << " feature_mask=" << info_cnf->feature_mask;
 | 
								   << " max_num_chans=" << info_cnf->max_num_chans << " feature_mask=" << info_cnf->feature_mask;
 | 
				
			||||||
	for (i = 0; i < info_cnf->max_num_chans; i++) {
 | 
						for (i = 0; i < info_cnf->max_num_chans; i++) {
 | 
				
			||||||
@@ -283,10 +284,8 @@ int IPCDevice::ipc_rx_info_cnf(const struct ipc_sk_if_info_cnf *info_cnf)
 | 
				
			|||||||
		while (strcmp(info_cnf->chan_info[i].rx_path[j], "") != 0) {
 | 
							while (strcmp(info_cnf->chan_info[i].rx_path[j], "") != 0) {
 | 
				
			||||||
			LOGC(DDEV, NOTICE)
 | 
								LOGC(DDEV, NOTICE)
 | 
				
			||||||
				<< "chan " << i << ": RxPath[" << j << "]: " << info_cnf->chan_info[i].rx_path[j]
 | 
									<< "chan " << i << ": RxPath[" << j << "]: " << info_cnf->chan_info[i].rx_path[j]
 | 
				
			||||||
				<< " min_rx_gain=" << info_cnf->chan_info[i].min_rx_gain
 | 
									<< " min_rx_gain=" << info_cnf->chan_info[i].min_rx_gain << " max_rx_gain=" << info_cnf->chan_info[i].max_rx_gain
 | 
				
			||||||
				<< " max_rx_gain=" << info_cnf->chan_info[i].max_rx_gain
 | 
									<< " min_tx_gain=" << info_cnf->chan_info[i].min_tx_gain << " max_tx_gain=" << info_cnf->chan_info[i].max_tx_gain;
 | 
				
			||||||
				<< " min_tx_gain=" << info_cnf->chan_info[i].min_tx_gain
 | 
					 | 
				
			||||||
				<< " max_tx_gain=" << info_cnf->chan_info[i].max_tx_gain;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if (rx_paths.size() < (i + 1) ||
 | 
								if (rx_paths.size() < (i + 1) ||
 | 
				
			||||||
			    strcmp(rx_paths[i].c_str(), info_cnf->chan_info[i].rx_path[j]) == 0) {
 | 
								    strcmp(rx_paths[i].c_str(), info_cnf->chan_info[i].rx_path[j]) == 0) {
 | 
				
			||||||
@@ -336,7 +335,8 @@ int IPCDevice::ipc_rx_open_cnf(const struct ipc_sk_if_open_cnf *open_cnf)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		/* FIXME: current limit IPC_MAX_NUM_TRX chans, make dynamic */
 | 
							/* FIXME: current limit IPC_MAX_NUM_TRX chans, make dynamic */
 | 
				
			||||||
		if (i < IPC_MAX_NUM_TRX) {
 | 
							if (i < IPC_MAX_NUM_TRX) {
 | 
				
			||||||
			struct ipc_per_trx_sock_state *state = &sk_chan_state[i];
 | 
								struct ipc_sock_state *state = &sk_chan_state[i];
 | 
				
			||||||
 | 
								memset(state, 0x00, sizeof(*state));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			INIT_LLIST_HEAD(&state->upqueue);
 | 
								INIT_LLIST_HEAD(&state->upqueue);
 | 
				
			||||||
			rc = osmo_sock_unix_init_ofd(&state->conn_bfd, SOCK_SEQPACKET, 0,
 | 
								rc = osmo_sock_unix_init_ofd(&state->conn_bfd, SOCK_SEQPACKET, 0,
 | 
				
			||||||
@@ -373,8 +373,7 @@ int IPCDevice::ipc_rx_open_cnf(const struct ipc_sk_if_open_cnf *open_cnf)
 | 
				
			|||||||
			<< "shm: chan" << i << "/ul: buffer_size=" << shm_dec->channels[i]->ul_stream->buffer_size;
 | 
								<< "shm: chan" << i << "/ul: buffer_size=" << shm_dec->channels[i]->ul_stream->buffer_size;
 | 
				
			||||||
		shm_io_rx_streams.push_back(ipc_shm_init_consumer(shm_dec->channels[i]->ul_stream));
 | 
							shm_io_rx_streams.push_back(ipc_shm_init_consumer(shm_dec->channels[i]->ul_stream));
 | 
				
			||||||
		shm_io_tx_streams.push_back(ipc_shm_init_consumer(shm_dec->channels[i]->dl_stream));
 | 
							shm_io_tx_streams.push_back(ipc_shm_init_consumer(shm_dec->channels[i]->dl_stream));
 | 
				
			||||||
		// we should init a producer here, but delegating all producers and therefore lock management
 | 
							//		shm_io_tx_streams.push_back(ipc_shm_init_producer(shm_dec->channels[i]->dl_stream));
 | 
				
			||||||
		// to the other side is the reasonable approach to circumvent shutdown issues
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tmp_state = IPC_IF_MSG_OPEN_CNF;
 | 
						tmp_state = IPC_IF_MSG_OPEN_CNF;
 | 
				
			||||||
@@ -405,23 +404,27 @@ int IPCDevice::ipc_rx(uint8_t msg_type, struct ipc_sk_if *ipc_prim)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_start_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_start_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal start response for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal start response for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						trx_is_started[chan_nr] = true;
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_stop_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_stop_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal stop response for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal stop response for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						trx_is_started[chan_nr] = false;
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_setgain_cnf(ipc_sk_chan_if_gain *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_setgain_cnf(ipc_sk_chan_if_gain *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal setgain response for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal setgain response for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -431,17 +434,17 @@ int IPCDevice::ipc_rx_chan_setgain_cnf(ipc_sk_chan_if_gain *ret, uint8_t chan_nr
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_settxattn_cnf(ipc_sk_chan_if_tx_attenuation *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_settxattn_cnf(ipc_sk_chan_if_tx_attenuation *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal tx attn response for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal tx attn response for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tx_attenuation[chan_nr] = ret->attenuation;
 | 
					//	trx_is_started[chan_nr] = false;
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_setfreq_cnf(ipc_sk_chan_if_freq_cnf *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_setfreq_cnf(ipc_sk_chan_if_freq_cnf *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal setfreq response for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal setfreq response for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -450,7 +453,7 @@ int IPCDevice::ipc_rx_chan_setfreq_cnf(ipc_sk_chan_if_freq_cnf *ret, uint8_t cha
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_notify_underflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_notify_underflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal underfloww notification for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal underfloww notification for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -462,7 +465,7 @@ int IPCDevice::ipc_rx_chan_notify_underflow(ipc_sk_chan_if_notfiy *ret, uint8_t
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
int IPCDevice::ipc_rx_chan_notify_overflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr)
 | 
					int IPCDevice::ipc_rx_chan_notify_overflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (chan_nr >= chans) {
 | 
						if(chan_nr >= ARRAY_SIZE(trx_is_started)) {
 | 
				
			||||||
		LOGC(DDEV, NOTICE) << "shm: illegal overflow notification for chan #" << chan_nr << " ?!?";
 | 
							LOGC(DDEV, NOTICE) << "shm: illegal overflow notification for chan #" << chan_nr << " ?!?";
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -506,9 +509,10 @@ int IPCDevice::ipc_chan_rx(uint8_t msg_type, struct ipc_sk_chan_if *ipc_prim, ui
 | 
				
			|||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ipc_sock_send(struct ipc_per_trx_sock_state *state, struct msgb *msg)
 | 
					static int ipc_sock_send(struct ipc_sock_state *state, struct msgb *msg)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct osmo_fd *conn_bfd;
 | 
						struct osmo_fd *conn_bfd;
 | 
				
			||||||
 | 
						//struct ipc_sk_if *ipc_prim = (struct ipc_sk_if *) msg->data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!state) {
 | 
						if (!state) {
 | 
				
			||||||
		LOGP(DMAIN, LOGL_INFO,
 | 
							LOGP(DMAIN, LOGL_INFO,
 | 
				
			||||||
@@ -526,12 +530,12 @@ static int ipc_sock_send(struct ipc_per_trx_sock_state *state, struct msgb *msg)
 | 
				
			|||||||
		return -EIO;
 | 
							return -EIO;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	msgb_enqueue(&state->upqueue, msg);
 | 
						msgb_enqueue(&state->upqueue, msg);
 | 
				
			||||||
	osmo_fd_write_enable(conn_bfd);
 | 
						conn_bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void IPCDevice::ipc_sock_close(struct ipc_per_trx_sock_state *state)
 | 
					void IPCDevice::ipc_sock_close(struct ipc_sock_state *state)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (state == 0)
 | 
						if (state == 0)
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
@@ -634,9 +638,6 @@ int IPCDevice::ipc_chan_sock_read(struct osmo_fd *bfd)
 | 
				
			|||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* store mask of last received messages so we can check later */
 | 
					 | 
				
			||||||
	sk_chan_state[bfd->priv_nr].messages_processed_mask |= (1 << (ipc_prim->msg_type - IPC_IF_CHAN_MSG_OFFSET));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	rc = ipc_chan_rx(ipc_prim->msg_type, ipc_prim, bfd->priv_nr);
 | 
						rc = ipc_chan_rx(ipc_prim->msg_type, ipc_prim, bfd->priv_nr);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* as we always synchronously process the message in IPC_rx() and
 | 
						/* as we always synchronously process the message in IPC_rx() and
 | 
				
			||||||
@@ -663,7 +664,7 @@ int IPCDevice::ipc_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
		msg = llist_entry(master_sk_state.upqueue.next, struct msgb, list);
 | 
							msg = llist_entry(master_sk_state.upqueue.next, struct msgb, list);
 | 
				
			||||||
		ipc_prim = (struct ipc_sk_if *)msg->data;
 | 
							ipc_prim = (struct ipc_sk_if *)msg->data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		osmo_fd_write_disable(bfd);
 | 
							bfd->when &= ~BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
							/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
				
			||||||
		if (!msgb_length(msg)) {
 | 
							if (!msgb_length(msg)) {
 | 
				
			||||||
@@ -680,7 +681,7 @@ int IPCDevice::ipc_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		if (rc < 0) {
 | 
							if (rc < 0) {
 | 
				
			||||||
			if (errno == EAGAIN) {
 | 
								if (errno == EAGAIN) {
 | 
				
			||||||
				osmo_fd_write_enable(bfd);
 | 
									bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
				break;
 | 
									break;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
@@ -710,7 +711,7 @@ int IPCDevice::ipc_chan_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
		/* peek at the beginning of the queue */
 | 
							/* peek at the beginning of the queue */
 | 
				
			||||||
		msg = llist_entry(sk_chan_state[bfd->priv_nr].upqueue.next, struct msgb, list);
 | 
							msg = llist_entry(sk_chan_state[bfd->priv_nr].upqueue.next, struct msgb, list);
 | 
				
			||||||
		ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
							ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
				
			||||||
		osmo_fd_write_disable(bfd);
 | 
							bfd->when &= ~BSC_FD_WRITE;
 | 
				
			||||||
		/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
							/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
				
			||||||
		if (!msgb_length(msg)) {
 | 
							if (!msgb_length(msg)) {
 | 
				
			||||||
			LOGP(DDEV, LOGL_ERROR,
 | 
								LOGP(DDEV, LOGL_ERROR,
 | 
				
			||||||
@@ -726,14 +727,14 @@ int IPCDevice::ipc_chan_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		if (rc < 0) {
 | 
							if (rc < 0) {
 | 
				
			||||||
			if (errno == EAGAIN) {
 | 
								if (errno == EAGAIN) {
 | 
				
			||||||
				osmo_fd_write_enable(bfd);
 | 
									bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
				break;
 | 
									break;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	dontsend:
 | 
						dontsend:
 | 
				
			||||||
		/* _after_ we send it, we can dequeue */
 | 
							/* _after_ we send it, we can deueue */
 | 
				
			||||||
		msg2 = msgb_dequeue(&sk_chan_state[bfd->priv_nr].upqueue);
 | 
							msg2 = msgb_dequeue(&sk_chan_state[bfd->priv_nr].upqueue);
 | 
				
			||||||
		assert(msg == msg2);
 | 
							assert(msg == msg2);
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
@@ -750,12 +751,12 @@ static int ipc_sock_cb(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
	IPCDevice *device = static_cast<IPCDevice *>(bfd->data);
 | 
						IPCDevice *device = static_cast<IPCDevice *>(bfd->data);
 | 
				
			||||||
	int rc = 0;
 | 
						int rc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_READ)
 | 
						if (flags & BSC_FD_READ)
 | 
				
			||||||
		rc = device->ipc_sock_read(bfd);
 | 
							rc = device->ipc_sock_read(bfd);
 | 
				
			||||||
	if (rc < 0)
 | 
						if (rc < 0)
 | 
				
			||||||
		return rc;
 | 
							return rc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_WRITE)
 | 
						if (flags & BSC_FD_WRITE)
 | 
				
			||||||
		rc = device->ipc_sock_write(bfd);
 | 
							rc = device->ipc_sock_write(bfd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
@@ -766,12 +767,12 @@ static int ipc_chan_sock_cb(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
	IPCDevice *device = static_cast<IPCDevice *>(bfd->data);
 | 
						IPCDevice *device = static_cast<IPCDevice *>(bfd->data);
 | 
				
			||||||
	int rc = 0;
 | 
						int rc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_READ)
 | 
						if (flags & BSC_FD_READ)
 | 
				
			||||||
		rc = device->ipc_chan_sock_read(bfd);
 | 
							rc = device->ipc_chan_sock_read(bfd);
 | 
				
			||||||
	if (rc < 0)
 | 
						if (rc < 0)
 | 
				
			||||||
		return rc;
 | 
							return rc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_WRITE)
 | 
						if (flags & BSC_FD_WRITE)
 | 
				
			||||||
		rc = device->ipc_chan_sock_write(bfd);
 | 
							rc = device->ipc_chan_sock_write(bfd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
@@ -794,10 +795,11 @@ int IPCDevice::open(const std::string &args, int ref, bool swap_channels)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	LOGC(DDEV, INFO) << "Opening IPC device" << v << "..";
 | 
						LOGC(DDEV, INFO) << "Opening IPC device" << v << "..";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						memset(&master_sk_state, 0x00, sizeof(master_sk_state));
 | 
				
			||||||
	INIT_LLIST_HEAD(&master_sk_state.upqueue);
 | 
						INIT_LLIST_HEAD(&master_sk_state.upqueue);
 | 
				
			||||||
	rc = osmo_sock_unix_init_ofd(&master_sk_state.conn_bfd, SOCK_SEQPACKET, 0, v.c_str(), OSMO_SOCK_F_CONNECT);
 | 
						rc = osmo_sock_unix_init_ofd(&master_sk_state.conn_bfd, SOCK_SEQPACKET, 0, v.c_str(), OSMO_SOCK_F_CONNECT);
 | 
				
			||||||
	if (rc < 0) {
 | 
						if (rc < 0) {
 | 
				
			||||||
		LOGC(DDEV, ERROR) << "Failed to connect to the IPC device (" << v << "). "
 | 
							LOGC(DDEV, ERROR) << "Failed to connect to the BTS (" << v << "). "
 | 
				
			||||||
				  << "Retrying...\n";
 | 
									  << "Retrying...\n";
 | 
				
			||||||
		osmo_timer_setup(&master_sk_state.timer, ipc_sock_timeout, NULL);
 | 
							osmo_timer_setup(&master_sk_state.timer, ipc_sock_timeout, NULL);
 | 
				
			||||||
		osmo_timer_schedule(&master_sk_state.timer, 5, 0);
 | 
							osmo_timer_schedule(&master_sk_state.timer, 5, 0);
 | 
				
			||||||
@@ -835,16 +837,14 @@ out_close:
 | 
				
			|||||||
	return -1;
 | 
						return -1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void IPCDevice::manually_poll_sock_fds()
 | 
					void IPCDevice::manually_poll_sock_fds() {
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct timeval wait = {0, 100000};
 | 
						struct timeval wait = {0, 100000};
 | 
				
			||||||
	fd_set crfds, cwfds;
 | 
						fd_set crfds, cwfds;
 | 
				
			||||||
	char err_buf[256];
 | 
					 | 
				
			||||||
	int max_fd = 0;
 | 
						int max_fd = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	FD_ZERO(&crfds);
 | 
						FD_ZERO(&crfds);
 | 
				
			||||||
	FD_ZERO(&cwfds);
 | 
						FD_ZERO(&cwfds);
 | 
				
			||||||
	for (unsigned int i = 0; i < chans; i++) {
 | 
						for(int i = 0; i < chans; i++) {
 | 
				
			||||||
		struct osmo_fd* curr_fd = &sk_chan_state[i].conn_bfd;
 | 
							struct osmo_fd* curr_fd = &sk_chan_state[i].conn_bfd;
 | 
				
			||||||
		max_fd = curr_fd->fd > max_fd ? curr_fd->fd : max_fd;
 | 
							max_fd = curr_fd->fd > max_fd ? curr_fd->fd : max_fd;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -854,13 +854,9 @@ void IPCDevice::manually_poll_sock_fds()
 | 
				
			|||||||
		FD_SET(curr_fd->fd, &cwfds);
 | 
							FD_SET(curr_fd->fd, &cwfds);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (select(max_fd + 1, &crfds, &cwfds, 0, &wait) < 0) {
 | 
						select(max_fd+1, &crfds, &cwfds, 0, &wait);
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "select() failed: %s\n",
 | 
					 | 
				
			||||||
		     strerror_r(errno, err_buf, sizeof(err_buf)));
 | 
					 | 
				
			||||||
		return;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (unsigned int i = 0; i < chans; i++) {
 | 
						for(int i = 0; i < chans; i++) {
 | 
				
			||||||
		int flags = 0;
 | 
							int flags = 0;
 | 
				
			||||||
		struct osmo_fd* ofd = &sk_chan_state[i].conn_bfd;
 | 
							struct osmo_fd* ofd = &sk_chan_state[i].conn_bfd;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -877,70 +873,6 @@ void IPCDevice::manually_poll_sock_fds()
 | 
				
			|||||||
		ipc_chan_sock_cb(ofd, flags);
 | 
							ipc_chan_sock_cb(ofd, flags);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					 | 
				
			||||||
bool IPCDevice::send_chan_wait_rsp(uint32_t chan, struct msgb *msg_to_send, uint32_t expected_rsp_msg_id)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct timeval timer_now, timeout;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	sk_chan_state[chan].messages_processed_mask = 0;
 | 
					 | 
				
			||||||
	ipc_sock_send(&sk_chan_state[chan], msg_to_send);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	gettimeofday(&timeout, 0);
 | 
					 | 
				
			||||||
	timeout.tv_sec += 2;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	while (!(sk_chan_state[chan].messages_processed_mask & (1 << (expected_rsp_msg_id - IPC_IF_CHAN_MSG_OFFSET)))) {
 | 
					 | 
				
			||||||
		/* just poll here, we're already in select, so there is no other way to drive
 | 
					 | 
				
			||||||
	 * the fds and "wait" for a response or retry */
 | 
					 | 
				
			||||||
		manually_poll_sock_fds();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		gettimeofday(&timer_now, 0);
 | 
					 | 
				
			||||||
		if (timercmp(&timer_now, &timeout, >))
 | 
					 | 
				
			||||||
			return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool IPCDevice::send_all_chan_wait_rsp(uint32_t msgid_to_send, uint32_t msgid_to_expect)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct msgb *msg;
 | 
					 | 
				
			||||||
	struct ipc_sk_chan_if *ipc_prim;
 | 
					 | 
				
			||||||
	struct timeval timer_now, timeout;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	for (unsigned int i = 0; i < chans; i++) {
 | 
					 | 
				
			||||||
		msg = ipc_msgb_alloc(msgid_to_send);
 | 
					 | 
				
			||||||
		if (!msg)
 | 
					 | 
				
			||||||
			return -ENOMEM;
 | 
					 | 
				
			||||||
		ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
					 | 
				
			||||||
		ipc_prim->u.start_req.dummy = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		sk_chan_state[i].messages_processed_mask = 0;
 | 
					 | 
				
			||||||
		ipc_sock_send(&sk_chan_state[i], msg);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	gettimeofday(&timeout, 0);
 | 
					 | 
				
			||||||
	timeout.tv_sec += 2;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	unsigned int msg_received_count = 0;
 | 
					 | 
				
			||||||
	while (msg_received_count != chans) {
 | 
					 | 
				
			||||||
		msg_received_count = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* just poll here, we're already in select, so there is no other way to drive
 | 
					 | 
				
			||||||
		 * the fds and "wait" for a response or retry */
 | 
					 | 
				
			||||||
		manually_poll_sock_fds();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		for (unsigned int i = 0; i < sk_chan_state.size(); i++)
 | 
					 | 
				
			||||||
			if (sk_chan_state[i].messages_processed_mask &
 | 
					 | 
				
			||||||
			    (1 << (msgid_to_expect - IPC_IF_CHAN_MSG_OFFSET)))
 | 
					 | 
				
			||||||
				msg_received_count++;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		gettimeofday(&timer_now, 0);
 | 
					 | 
				
			||||||
		if (timercmp(&timer_now, &timeout, >))
 | 
					 | 
				
			||||||
			return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* the call stack is rather difficult here, we're already in select:
 | 
					/* the call stack is rather difficult here, we're already in select:
 | 
				
			||||||
>~"#0  IPCDevice::start (this=<optimized out>) at IPCDevice.cpp:789\n"
 | 
					>~"#0  IPCDevice::start (this=<optimized out>) at IPCDevice.cpp:789\n"
 | 
				
			||||||
>~"#1  in RadioInterface::start (this=0x614000001640) at radioInterface.cpp:187\n"
 | 
					>~"#1  in RadioInterface::start (this=0x614000001640) at radioInterface.cpp:187\n"
 | 
				
			||||||
@@ -961,11 +893,41 @@ bool IPCDevice::start()
 | 
				
			|||||||
		return true;
 | 
							return true;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!(send_all_chan_wait_rsp(IPC_IF_MSG_START_REQ, IPC_IF_MSG_START_CNF))) {
 | 
						struct msgb *msg;
 | 
				
			||||||
		LOGC(DDEV, ERR) << "start timeout!";
 | 
						struct ipc_sk_chan_if *ipc_prim;
 | 
				
			||||||
 | 
						struct timeval timer_now, timeout;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						for(int i = 0; i < chans; i++) {
 | 
				
			||||||
 | 
							msg = ipc_msgb_alloc(IPC_IF_MSG_START_REQ);
 | 
				
			||||||
 | 
							if (!msg)
 | 
				
			||||||
 | 
								return -ENOMEM;
 | 
				
			||||||
 | 
							ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
				
			||||||
 | 
							ipc_prim->u.start_req.dummy = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							ipc_sock_send(&sk_chan_state[i], msg);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						gettimeofday(&timeout, 0);
 | 
				
			||||||
 | 
						timeout.tv_sec += 2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						int chan_started_count = 0;
 | 
				
			||||||
 | 
						while (chan_started_count != chans) {
 | 
				
			||||||
 | 
							chan_started_count = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/* just poll here, we're already in select, so there is no other way to drive
 | 
				
			||||||
 | 
							 * the fds and "wait" for a response or retry */
 | 
				
			||||||
 | 
							manually_poll_sock_fds();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							for(unsigned int i = 0; i < ARRAY_SIZE(trx_is_started); i++)
 | 
				
			||||||
 | 
								if(trx_is_started[i] == true)
 | 
				
			||||||
 | 
									chan_started_count++;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							gettimeofday(&timer_now, 0);
 | 
				
			||||||
 | 
							if(timercmp(&timer_now, &timeout, >))
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	int max_bufs_to_flush = 0;
 | 
						int max_bufs_to_flush = 0;
 | 
				
			||||||
	for(unsigned int i = 0; i < shm_dec->num_chans; i++) {
 | 
						for(unsigned int i = 0; i < shm_dec->num_chans; i++) {
 | 
				
			||||||
		int buf_per_chan = shm_dec->channels[i]->ul_stream->num_buffers;
 | 
							int buf_per_chan = shm_dec->channels[i]->ul_stream->num_buffers;
 | 
				
			||||||
@@ -979,15 +941,48 @@ bool IPCDevice::start()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
bool IPCDevice::stop()
 | 
					bool IPCDevice::stop()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
						struct msgb *msg;
 | 
				
			||||||
 | 
						struct ipc_sk_chan_if *ipc_prim;
 | 
				
			||||||
 | 
						struct timeval timer_now, timeout;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!started)
 | 
						if (!started)
 | 
				
			||||||
		return true;
 | 
							return true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!(send_all_chan_wait_rsp(IPC_IF_MSG_STOP_REQ, IPC_IF_MSG_STOP_CNF))) {
 | 
						for(int i = 0; i < chans; i++) {
 | 
				
			||||||
		LOGC(DDEV, ERR) << "stop timeout!";
 | 
							if(trx_is_started[i] == true) {
 | 
				
			||||||
		return false;
 | 
								msg = ipc_msgb_alloc(IPC_IF_MSG_STOP_REQ);
 | 
				
			||||||
 | 
								if (!msg)
 | 
				
			||||||
 | 
									return -ENOMEM;
 | 
				
			||||||
 | 
								ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
				
			||||||
 | 
								ipc_prim->u.start_req.dummy = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								ipc_sock_send(&sk_chan_state[i], msg);
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGC(DDEV, NOTICE) << "All channels stopped, terminating...";
 | 
						gettimeofday(&timeout, 0);
 | 
				
			||||||
 | 
						timeout.tv_sec += 2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						int chan_started_count = 0;
 | 
				
			||||||
 | 
						do {
 | 
				
			||||||
 | 
							chan_started_count = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/* just poll here, we're already in select, so there is no other way to drive
 | 
				
			||||||
 | 
							 * the fds and "wait" for a response or retry */
 | 
				
			||||||
 | 
							manually_poll_sock_fds();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							for(unsigned int i = 0; i < ARRAY_SIZE(trx_is_started); i++)
 | 
				
			||||||
 | 
								if(trx_is_started[i] == true)
 | 
				
			||||||
 | 
									chan_started_count++;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							gettimeofday(&timer_now, 0);
 | 
				
			||||||
 | 
							if(timercmp(&timer_now, &timeout, >)) {
 | 
				
			||||||
 | 
								LOGC(DDEV, ERR) << "No response to stop  msg received, terminating anyway...";
 | 
				
			||||||
 | 
								break;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						} while (chan_started_count > 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						LOGC(DDEV, NOTICE) << "All chanels stopped, terminating...";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* reset internal buffer timestamps */
 | 
						/* reset internal buffer timestamps */
 | 
				
			||||||
	for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
						for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
				
			||||||
@@ -1007,21 +1002,20 @@ double IPCDevice::minRxGain()
 | 
				
			|||||||
	return current_info_cnf.chan_info[0].min_rx_gain;
 | 
						return current_info_cnf.chan_info[0].min_rx_gain;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int IPCDevice::getNominalTxPower(size_t chan)
 | 
					int IPCDevice::getNominalTxPower(size_t chan)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	return current_info_cnf.chan_info[chan].nominal_tx_power;
 | 
						return current_info_cnf.chan_info[chan].nominal_tx_power;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double IPCDevice::setPowerAttenuation(int atten, size_t chan)
 | 
					double IPCDevice::setPowerAttenuation(int atten, size_t chan) {
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct msgb *msg;
 | 
						struct msgb *msg;
 | 
				
			||||||
	struct ipc_sk_chan_if *ipc_prim;
 | 
						struct ipc_sk_chan_if *ipc_prim;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if(chan >= chans)
 | 
						if(chan >= chans)
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGCHAN(chan, DDEV, NOTICE) << "Setting TX attenuation to " << atten << " dB"
 | 
						LOGCHAN(chan, DDEV, NOTICE) << "Setting TX attenuation to " << atten << " dB" << " chan " << chan;
 | 
				
			||||||
				    << " chan " << chan;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	msg = ipc_msgb_alloc(IPC_IF_MSG_SETTXATTN_REQ);
 | 
						msg = ipc_msgb_alloc(IPC_IF_MSG_SETTXATTN_REQ);
 | 
				
			||||||
	if (!msg)
 | 
						if (!msg)
 | 
				
			||||||
@@ -1029,14 +1023,14 @@ double IPCDevice::setPowerAttenuation(int atten, size_t chan)
 | 
				
			|||||||
	ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
						ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
				
			||||||
	ipc_prim->u.txatten_req.attenuation = atten;
 | 
						ipc_prim->u.txatten_req.attenuation = atten;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!send_chan_wait_rsp(chan, msg, IPC_IF_MSG_SETTXATTN_CNF))
 | 
						ipc_sock_send(&sk_chan_state[chan], msg);
 | 
				
			||||||
		LOGCHAN(chan, DDEV, ERROR) << "Setting TX attenuation timeout! ";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						tx_attenuation[chan] = atten;
 | 
				
			||||||
	return atten;
 | 
						return atten;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double IPCDevice::getPowerAttenuation(size_t chan)
 | 
					double IPCDevice::getPowerAttenuation(size_t chan) {
 | 
				
			||||||
{
 | 
					
 | 
				
			||||||
	if(chan >= chans)
 | 
						if(chan >= chans)
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1062,9 +1056,9 @@ double IPCDevice::setRxGain(double dB, size_t chan)
 | 
				
			|||||||
	ipc_prim->u.set_gain_req.is_tx = 0;
 | 
						ipc_prim->u.set_gain_req.is_tx = 0;
 | 
				
			||||||
	ipc_prim->u.set_gain_req.gain = dB;
 | 
						ipc_prim->u.set_gain_req.gain = dB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!send_chan_wait_rsp(chan, msg, IPC_IF_MSG_SETGAIN_CNF))
 | 
						ipc_sock_send(&sk_chan_state[chan], msg);
 | 
				
			||||||
		LOGCHAN(chan, DDEV, ERROR) << "Setting RX gain timeout! ";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						rx_gains[chan] = dB;
 | 
				
			||||||
	return rx_gains[chan];
 | 
						return rx_gains[chan];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1072,7 +1066,7 @@ bool IPCDevice::flush_recv(size_t num_pkts)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	std::vector<uint16_t> tmp(4096);
 | 
						std::vector<uint16_t> tmp(4096);
 | 
				
			||||||
	uint64_t tmps;
 | 
						uint64_t tmps;
 | 
				
			||||||
	uint32_t read = 0;
 | 
						uint32_t read;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (uint32_t j = 0; j < num_pkts; j++) {
 | 
						for (uint32_t j = 0; j < num_pkts; j++) {
 | 
				
			||||||
		for (unsigned int i = 0; i < chans; i++)
 | 
							for (unsigned int i = 0; i < chans; i++)
 | 
				
			||||||
@@ -1130,7 +1124,7 @@ TIMESTAMP IPCDevice::initialReadTimestamp(void)
 | 
				
			|||||||
// NOTE: Assumes sequential reads
 | 
					// NOTE: Assumes sequential reads
 | 
				
			||||||
int IPCDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun, TIMESTAMP timestamp, bool *underrun)
 | 
					int IPCDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun, TIMESTAMP timestamp, bool *underrun)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int rc, num_smpls; //, expect_smpls;
 | 
						int rc, num_smpls, expect_smpls;
 | 
				
			||||||
	ssize_t avail_smpls;
 | 
						ssize_t avail_smpls;
 | 
				
			||||||
	TIMESTAMP expect_timestamp;
 | 
						TIMESTAMP expect_timestamp;
 | 
				
			||||||
	unsigned int i;
 | 
						unsigned int i;
 | 
				
			||||||
@@ -1159,6 +1153,7 @@ int IPCDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun, T
 | 
				
			|||||||
			uint64_t recv_timestamp = 0;
 | 
								uint64_t recv_timestamp = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			thread_enable_cancel(false);
 | 
								thread_enable_cancel(false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			num_smpls = ipc_shm_read(shm_io_rx_streams[i], (uint16_t *)bufs[i], len - avail_smpls,
 | 
								num_smpls = ipc_shm_read(shm_io_rx_streams[i], (uint16_t *)bufs[i], len - avail_smpls,
 | 
				
			||||||
						 &recv_timestamp, 1);
 | 
											 &recv_timestamp, 1);
 | 
				
			||||||
			expect_timestamp = timestamp + avail_smpls;
 | 
								expect_timestamp = timestamp + avail_smpls;
 | 
				
			||||||
@@ -1170,6 +1165,13 @@ int IPCDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun, T
 | 
				
			|||||||
			LOGCHAN(i, DDEV, DEBUG)
 | 
								LOGCHAN(i, DDEV, DEBUG)
 | 
				
			||||||
			"Received timestamp = " << (TIMESTAMP)recv_timestamp << " (" << num_smpls << ")";
 | 
								"Received timestamp = " << (TIMESTAMP)recv_timestamp << " (" << num_smpls << ")";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								expect_smpls = len - avail_smpls;
 | 
				
			||||||
 | 
								//			if (expect_smpls != num_smpls)
 | 
				
			||||||
 | 
								//				LOGCHAN(i, DDEV, NOTICE)
 | 
				
			||||||
 | 
								//					<< "Unexpected recv buffer len: expect " << expect_smpls << " got " << num_smpls
 | 
				
			||||||
 | 
								//					<< ", diff=" << expect_smpls - num_smpls;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								//expect_timestamp = timestamp + avail_smpls;
 | 
				
			||||||
			if (expect_timestamp != (TIMESTAMP)recv_timestamp)
 | 
								if (expect_timestamp != (TIMESTAMP)recv_timestamp)
 | 
				
			||||||
				LOGCHAN(i, DDEV, ERROR) << "Unexpected recv buffer timestamp: expect "
 | 
									LOGCHAN(i, DDEV, ERROR) << "Unexpected recv buffer timestamp: expect "
 | 
				
			||||||
							<< expect_timestamp << " got " << recv_timestamp << ", diff="
 | 
												<< expect_timestamp << " got " << recv_timestamp << ", diff="
 | 
				
			||||||
@@ -1179,8 +1181,7 @@ int IPCDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun, T
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
			rc = rx_buffers[i]->write(bufs[i], num_smpls, (TIMESTAMP)recv_timestamp);
 | 
								rc = rx_buffers[i]->write(bufs[i], num_smpls, (TIMESTAMP)recv_timestamp);
 | 
				
			||||||
			if (rc < 0) {
 | 
								if (rc < 0) {
 | 
				
			||||||
				LOGCHAN(i, DDEV, ERROR)
 | 
									LOGCHAN(i, DDEV, ERROR) << rx_buffers[i]->str_code(rc) << " num smpls: " << num_smpls << " chan: " << i;
 | 
				
			||||||
					<< rx_buffers[i]->str_code(rc) << " num smpls: " << num_smpls << " chan: " << i;
 | 
					 | 
				
			||||||
				LOGCHAN(i, DDEV, ERROR) << rx_buffers[i]->str_status(timestamp);
 | 
									LOGCHAN(i, DDEV, ERROR) << rx_buffers[i]->str_status(timestamp);
 | 
				
			||||||
				if (rc != smpl_buf::ERROR_OVERFLOW)
 | 
									if (rc != smpl_buf::ERROR_OVERFLOW)
 | 
				
			||||||
					return 0;
 | 
										return 0;
 | 
				
			||||||
@@ -1215,10 +1216,12 @@ int IPCDevice::writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	for (i = 0; i < chans; i++) {
 | 
						for (i = 0; i < chans; i++) {
 | 
				
			||||||
		LOGCHAN(i, DDEV, DEBUG) << "send buffer of len " << len << " timestamp " << std::hex << timestamp;
 | 
							LOGCHAN(i, DDEV, DEBUG) << "send buffer of len " << len << " timestamp " << std::hex << timestamp;
 | 
				
			||||||
		thread_enable_cancel(false);
 | 
							//		thread_enable_cancel(false);
 | 
				
			||||||
		rc = ipc_shm_enqueue(shm_io_tx_streams[i], timestamp, len, (uint16_t *)bufs[i]);
 | 
							rc = ipc_shm_enqueue(shm_io_tx_streams[i], timestamp, len, (uint16_t *)bufs[i]);
 | 
				
			||||||
		thread_enable_cancel(true);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							//		rc = LMS_SendStream(&m_lms_stream_tx[i], bufs[i], len, &tx_metadata, 100);
 | 
				
			||||||
 | 
							//		update_stream_stats_tx(i, underrun);
 | 
				
			||||||
 | 
							//		thread_enable_cancel(true);
 | 
				
			||||||
		if (rc != len) {
 | 
							if (rc != len) {
 | 
				
			||||||
			LOGCHAN(i, DDEV, ERROR) << "LMS: Device Tx timed out (" << rc << " vs exp " << len << ").";
 | 
								LOGCHAN(i, DDEV, ERROR) << "LMS: Device Tx timed out (" << rc << " vs exp " << len << ").";
 | 
				
			||||||
			return -1;
 | 
								return -1;
 | 
				
			||||||
@@ -1246,7 +1249,7 @@ bool IPCDevice::setTxFreq(double wFreq, size_t chan)
 | 
				
			|||||||
	ipc_prim->u.set_freq_req.is_tx = 1;
 | 
						ipc_prim->u.set_freq_req.is_tx = 1;
 | 
				
			||||||
	ipc_prim->u.set_freq_req.freq = wFreq;
 | 
						ipc_prim->u.set_freq_req.freq = wFreq;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return send_chan_wait_rsp(chan, msg, IPC_IF_MSG_SETFREQ_CNF);
 | 
						return ipc_sock_send(&sk_chan_state[chan], msg) < 0 ? false : true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool IPCDevice::setRxFreq(double wFreq, size_t chan)
 | 
					bool IPCDevice::setRxFreq(double wFreq, size_t chan)
 | 
				
			||||||
@@ -1262,7 +1265,7 @@ bool IPCDevice::setRxFreq(double wFreq, size_t chan)
 | 
				
			|||||||
	ipc_prim->u.set_freq_req.is_tx = 0;
 | 
						ipc_prim->u.set_freq_req.is_tx = 0;
 | 
				
			||||||
	ipc_prim->u.set_freq_req.freq = wFreq;
 | 
						ipc_prim->u.set_freq_req.freq = wFreq;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return send_chan_wait_rsp(chan, msg, IPC_IF_MSG_SETFREQ_CNF);
 | 
						return ipc_sock_send(&sk_chan_state[chan], msg) < 0 ? false : true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RadioDevice *RadioDevice::make(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chans, double lo_offset,
 | 
					RadioDevice *RadioDevice::make(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chans, double lo_offset,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,29 +4,21 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: AGPL-3.0+
 | 
					* SPDX-License-Identifier: AGPL-3.0+
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* This program is free software: you can redistribute it and/or modify
 | 
					* This software is distributed under multiple licenses; see the COPYING file in
 | 
				
			||||||
* it under the terms of the GNU Affero General Public License as published by
 | 
					* the main directory for licensing information for this specific distribution.
 | 
				
			||||||
* the Free Software Foundation, either version 3 of the License, or
 | 
					 | 
				
			||||||
* (at your option) any later version.
 | 
					 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* This program is distributed in the hope that it will be useful,
 | 
					* This use of this software may be subject to additional restrictions.
 | 
				
			||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					* See the LEGAL file in the main directory for details.
 | 
				
			||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
 | 
				
			||||||
* GNU Affero General Public License for more details.
 | 
					    This program is distributed in the hope that it will be useful,
 | 
				
			||||||
*
 | 
					    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
* You should have received a copy of the GNU Affero General Public License
 | 
					    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
				
			||||||
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
 | 
				
			||||||
* See the COPYING file in the main directory for details.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _IPC_DEVICE_H_
 | 
					#ifndef _IPC_DEVICE_H_
 | 
				
			||||||
#define _IPC_DEVICE_H_
 | 
					#define _IPC_DEVICE_H_
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <cstdint>
 | 
					 | 
				
			||||||
#include <cstddef>
 | 
					 | 
				
			||||||
#include <climits>
 | 
					 | 
				
			||||||
#include <string>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef HAVE_CONFIG_H
 | 
					#ifdef HAVE_CONFIG_H
 | 
				
			||||||
#include "config.h"
 | 
					#include "config.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
@@ -34,32 +26,36 @@
 | 
				
			|||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
#include <osmocom/core/select.h>
 | 
					#include <osmocom/core/select.h>
 | 
				
			||||||
#include <osmocom/core/timer.h>
 | 
					#include <osmocom/core/timer.h>
 | 
				
			||||||
 | 
					#include <osmocom/core/utils.h>
 | 
				
			||||||
#include "shm.h"
 | 
					#include "shm.h"
 | 
				
			||||||
 | 
					#include "ipc_shm.h"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "radioDevice.h"
 | 
					#include "radioDevice.h"
 | 
				
			||||||
 | 
					#include "smpl_buf.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class smpl_buf;
 | 
					#include <sys/time.h>
 | 
				
			||||||
 | 
					#include <math.h>
 | 
				
			||||||
 | 
					#include <limits.h>
 | 
				
			||||||
 | 
					#include <string>
 | 
				
			||||||
 | 
					#include <iostream>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define IPC_MAX_NUM_TRX 8
 | 
					struct ipc_sock_state {
 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ipc_per_trx_sock_state {
 | 
					 | 
				
			||||||
	struct osmo_fd conn_bfd; /* fd for connection to the BTS */
 | 
						struct osmo_fd conn_bfd; /* fd for connection to the BTS */
 | 
				
			||||||
	struct osmo_timer_list timer; /* socket connect retry timer */
 | 
						struct osmo_timer_list timer; /* socket connect retry timer */
 | 
				
			||||||
	struct llist_head upqueue; /* queue for sending messages */
 | 
						struct llist_head upqueue; /* queue for sending messages */
 | 
				
			||||||
	uint32_t messages_processed_mask; // (=| IPC_IF_MSG_xxx-IPC_IF_CHAN_MSG_OFFSET) bitmask
 | 
					 | 
				
			||||||
	ipc_per_trx_sock_state() : conn_bfd(), timer(), upqueue(), messages_processed_mask()
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		conn_bfd.fd = -1;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					#define IPC_MAX_NUM_TRX 8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/** A class to handle a LimeSuite supported device */
 | 
				
			||||||
class IPCDevice : public RadioDevice {
 | 
					class IPCDevice : public RadioDevice {
 | 
				
			||||||
    protected:
 | 
					    protected:
 | 
				
			||||||
	struct ipc_per_trx_sock_state master_sk_state;
 | 
						struct ipc_sock_state master_sk_state;
 | 
				
			||||||
 | 
						/* FIXME: current limit IPC_MAX_NUM_TRX chans, make dynamic */
 | 
				
			||||||
	std::vector<struct ipc_per_trx_sock_state> sk_chan_state;
 | 
						struct ipc_sock_state sk_chan_state[IPC_MAX_NUM_TRX];
 | 
				
			||||||
 | 
						bool trx_is_started[IPC_MAX_NUM_TRX];
 | 
				
			||||||
	uint32_t tx_attenuation[IPC_MAX_NUM_TRX];
 | 
						uint32_t tx_attenuation[IPC_MAX_NUM_TRX];
 | 
				
			||||||
	uint8_t tmp_state;
 | 
						uint8_t tmp_state;
 | 
				
			||||||
	char shm_name[SHM_NAME_MAX];
 | 
						char shm_name[SHM_NAME_MAX];
 | 
				
			||||||
@@ -68,9 +64,9 @@ class IPCDevice : public RadioDevice {
 | 
				
			|||||||
	struct ipc_shm_region *shm_dec;
 | 
						struct ipc_shm_region *shm_dec;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	std::vector<smpl_buf *> rx_buffers;
 | 
						std::vector<smpl_buf *> rx_buffers;
 | 
				
			||||||
	double actualSampleRate;
 | 
						double actualSampleRate; ///< the actual USRP sampling rate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	bool started;
 | 
						bool started; ///< flag indicates LMS has started
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	TIMESTAMP ts_initial, ts_offset;
 | 
						TIMESTAMP ts_initial, ts_offset;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -83,49 +79,33 @@ class IPCDevice : public RadioDevice {
 | 
				
			|||||||
	std::vector<struct ipc_shm_io *> shm_io_rx_streams;
 | 
						std::vector<struct ipc_shm_io *> shm_io_rx_streams;
 | 
				
			||||||
	std::vector<struct ipc_shm_io *> shm_io_tx_streams;
 | 
						std::vector<struct ipc_shm_io *> shm_io_tx_streams;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	bool flush_recv(size_t num_pkts);
 | 
						virtual bool flush_recv(size_t num_pkts);
 | 
				
			||||||
	void update_stream_stats_rx(size_t chan, bool *overrun);
 | 
						void update_stream_stats_rx(size_t chan, bool *overrun);
 | 
				
			||||||
	void update_stream_stats_tx(size_t chan, bool *underrun);
 | 
						void update_stream_stats_tx(size_t chan, bool *underrun);
 | 
				
			||||||
	void manually_poll_sock_fds();
 | 
						void manually_poll_sock_fds();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	void ipc_sock_close(ipc_per_trx_sock_state *state);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	int ipc_rx(uint8_t msg_type, struct ipc_sk_if *ipc_prim);
 | 
					 | 
				
			||||||
	int ipc_rx_greeting_cnf(const struct ipc_sk_if_greeting *greeting_cnf);
 | 
					 | 
				
			||||||
	int ipc_rx_info_cnf(const struct ipc_sk_if_info_cnf *info_cnf);
 | 
					 | 
				
			||||||
	int ipc_rx_open_cnf(const struct ipc_sk_if_open_cnf *open_cnf);
 | 
					 | 
				
			||||||
	int ipc_tx_open_req(struct ipc_per_trx_sock_state *state, uint32_t num_chans, uint32_t ref);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	int ipc_chan_rx(uint8_t msg_type, ipc_sk_chan_if *ipc_prim, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_start_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_stop_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_setgain_cnf(ipc_sk_chan_if_gain *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_setfreq_cnf(ipc_sk_chan_if_freq_cnf *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_notify_underflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_notify_overflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
	int ipc_rx_chan_settxattn_cnf(ipc_sk_chan_if_tx_attenuation *ret, uint8_t chan_nr);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	bool send_chan_wait_rsp(uint32_t chan, struct msgb *msg_to_send, uint32_t expected_rsp_msg_id);
 | 
					 | 
				
			||||||
	bool send_all_chan_wait_rsp(uint32_t msgid_to_send, uint32_t msgid_to_expect);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
	int ipc_sock_read(struct osmo_fd *bfd);
 | 
						virtual void ipc_sock_close(ipc_sock_state *state);
 | 
				
			||||||
	int ipc_sock_write(struct osmo_fd *bfd);
 | 
						virtual int ipc_sock_read(struct osmo_fd *bfd);
 | 
				
			||||||
	int ipc_chan_sock_read(osmo_fd *bfd);
 | 
						virtual int ipc_sock_write(struct osmo_fd *bfd);
 | 
				
			||||||
	int ipc_chan_sock_write(osmo_fd *bfd);
 | 
						virtual int ipc_rx(uint8_t msg_type, struct ipc_sk_if *ipc_prim);
 | 
				
			||||||
 | 
						virtual int ipc_rx_greeting_cnf(const struct ipc_sk_if_greeting *greeting_cnf);
 | 
				
			||||||
 | 
						virtual int ipc_rx_info_cnf(const struct ipc_sk_if_info_cnf *info_cnf);
 | 
				
			||||||
 | 
						virtual int ipc_rx_open_cnf(const struct ipc_sk_if_open_cnf *open_cnf);
 | 
				
			||||||
 | 
						virtual int ipc_tx_open_req(struct ipc_sock_state *state, uint32_t num_chans, uint32_t ref);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/** Object constructor */
 | 
						/** Object constructor */
 | 
				
			||||||
	IPCDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
 | 
						IPCDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
 | 
				
			||||||
		  const std::vector<std::string> &tx_paths, const std::vector<std::string> &rx_paths);
 | 
							  const std::vector<std::string> &tx_paths, const std::vector<std::string> &rx_paths);
 | 
				
			||||||
	virtual ~IPCDevice() override;
 | 
						virtual ~IPCDevice() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/** Instantiate the IPC */
 | 
						/** Instantiate the LMS */
 | 
				
			||||||
	virtual int open(const std::string &args, int ref, bool swap_channels) override;
 | 
						virtual int open(const std::string &args, int ref, bool swap_channels) override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/** Start the IPC */
 | 
						/** Start the LMS */
 | 
				
			||||||
	virtual bool start() override;
 | 
						virtual bool start() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/** Stop the IPC */
 | 
						/** Stop the LMS */
 | 
				
			||||||
	virtual bool stop() override;
 | 
						virtual bool stop() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* FIXME: any != USRP1 will do for now... */
 | 
						/* FIXME: any != USRP1 will do for now... */
 | 
				
			||||||
@@ -135,21 +115,21 @@ class IPCDevice : public RadioDevice {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	Read samples from the IPC.
 | 
						Read samples from the LMS.
 | 
				
			||||||
	@param buf preallocated buf to contain read result
 | 
						@param buf preallocated buf to contain read result
 | 
				
			||||||
	@param len number of samples desired
 | 
						@param len number of samples desired
 | 
				
			||||||
	@param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
 | 
						@param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
 | 
				
			||||||
	@param timestamp The timestamp of the first samples to be read
 | 
						@param timestamp The timestamp of the first samples to be read
 | 
				
			||||||
	@param underrun Set if IPC does not have data to transmit, e.g. data not being sent fast enough
 | 
						@param underrun Set if LMS does not have data to transmit, e.g. data not being sent fast enough
 | 
				
			||||||
	@return The number of samples actually read
 | 
						@return The number of samples actually read
 | 
				
			||||||
	*/
 | 
						*/
 | 
				
			||||||
	virtual int readSamples(std::vector<short *> &buf, int len, bool *overrun, TIMESTAMP timestamp = 0xffffffff,
 | 
						virtual int readSamples(std::vector<short *> &buf, int len, bool *overrun, TIMESTAMP timestamp = 0xffffffff,
 | 
				
			||||||
				bool *underrun = NULL) override;
 | 
									bool *underrun = NULL) override;
 | 
				
			||||||
	/**
 | 
						/**
 | 
				
			||||||
	Write samples to the IPC.
 | 
						Write samples to the LMS.
 | 
				
			||||||
	@param buf Contains the data to be written.
 | 
						@param buf Contains the data to be written.
 | 
				
			||||||
	@param len number of samples to write.
 | 
						@param len number of samples to write.
 | 
				
			||||||
	@param underrun Set if IPC does not have data to transmit, e.g. data not being sent fast enough
 | 
						@param underrun Set if LMS does not have data to transmit, e.g. data not being sent fast enough
 | 
				
			||||||
	@param timestamp The timestamp of the first sample of the data buffer.
 | 
						@param timestamp The timestamp of the first sample of the data buffer.
 | 
				
			||||||
	@return The number of samples actually written
 | 
						@return The number of samples actually written
 | 
				
			||||||
	*/
 | 
						*/
 | 
				
			||||||
@@ -198,9 +178,6 @@ class IPCDevice : public RadioDevice {
 | 
				
			|||||||
	/** return minimum Rx Gain **/
 | 
						/** return minimum Rx Gain **/
 | 
				
			||||||
	virtual double minRxGain(void) override;
 | 
						virtual double minRxGain(void) override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* FIXME: return rx_gains[chan] ? receive factor from IPC Driver? */
 | 
					 | 
				
			||||||
	double rssiOffset(size_t chan) { return 0.0f; };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	double setPowerAttenuation(int atten, size_t chan) override;
 | 
						double setPowerAttenuation(int atten, size_t chan) override;
 | 
				
			||||||
	double getPowerAttenuation(size_t chan = 0) override;
 | 
						double getPowerAttenuation(size_t chan = 0) override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -237,6 +214,16 @@ class IPCDevice : public RadioDevice {
 | 
				
			|||||||
	{
 | 
						{
 | 
				
			||||||
		return actualSampleRate;
 | 
							return actualSampleRate;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						int ipc_chan_sock_read(osmo_fd *bfd);
 | 
				
			||||||
 | 
						int ipc_chan_sock_write(osmo_fd *bfd);
 | 
				
			||||||
 | 
						int ipc_chan_rx(uint8_t msg_type, ipc_sk_chan_if *ipc_prim, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_start_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_stop_cnf(ipc_sk_chan_if_op_rc *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_setgain_cnf(ipc_sk_chan_if_gain *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_setfreq_cnf(ipc_sk_chan_if_freq_cnf *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_notify_underflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_notify_overflow(ipc_sk_chan_if_notfiy *ret, uint8_t chan_nr);
 | 
				
			||||||
 | 
						int ipc_rx_chan_settxattn_cnf(ipc_sk_chan_if_tx_attenuation *ret, uint8_t chan_nr);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // _IPC_DEVICE_H_
 | 
					#endif // _IPC_DEVICE_H_
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,15 +1,11 @@
 | 
				
			|||||||
include $(top_srcdir)/Makefile.common
 | 
					include $(top_srcdir)/Makefile.common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
					AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
				
			||||||
AM_CFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS)
 | 
					AM_CFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS)
 | 
				
			||||||
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS)
 | 
					AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS)
 | 
				
			||||||
AM_LDFLAGS = -lpthread -lrt
 | 
					AM_LDFLAGS = -lpthread -lrt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
noinst_HEADERS = IPCDevice.h shm.h ipc_shm.h ipc_chan.h ipc_sock.h
 | 
					noinst_HEADERS = IPCDevice.h shm.h ../uhd/UHDDevice.h uhdwrap.h
 | 
				
			||||||
 | 
					 | 
				
			||||||
if DEVICE_UHD
 | 
					 | 
				
			||||||
noinst_HEADERS += ../uhd/UHDDevice.h uhdwrap.h ipc-driver-test.h
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
noinst_LTLIBRARIES = libdevice.la
 | 
					noinst_LTLIBRARIES = libdevice.la
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -17,27 +13,17 @@ libdevice_la_SOURCES = IPCDevice.cpp shm.c ipc_shm.c ipc_chan.c ipc_sock.c
 | 
				
			|||||||
libdevice_la_LIBADD = $(top_builddir)/Transceiver52M/device/common/libdevice_common.la
 | 
					libdevice_la_LIBADD = $(top_builddir)/Transceiver52M/device/common/libdevice_common.la
 | 
				
			||||||
libdevice_la_CXXFLAGS = $(AM_CXXFLAGS) -DIPCMAGIC
 | 
					libdevice_la_CXXFLAGS = $(AM_CXXFLAGS) -DIPCMAGIC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#work around distclean issue on older autotools vers:
 | 
					 | 
				
			||||||
#a direct build of ../uhd/UHDDevice.cpp tries to clean
 | 
					 | 
				
			||||||
#../uhd/.dep/UHDDevice.Plo twice and fails
 | 
					 | 
				
			||||||
uhddev_ipc.cpp:
 | 
					 | 
				
			||||||
	echo "#include \"../uhd/UHDDevice.cpp\"" >$@
 | 
					 | 
				
			||||||
CLEANFILES= uhddev_ipc.cpp
 | 
					 | 
				
			||||||
BUILT_SOURCES = uhddev_ipc.cpp
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if DEVICE_UHD
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bin_PROGRAMS = ipc-driver-test
 | 
					bin_PROGRAMS = ipc-driver-test
 | 
				
			||||||
#ipc_driver_test_SHORTNAME = drvt
 | 
					#ipc_driver_test_SHORTNAME = drvt
 | 
				
			||||||
ipc_driver_test_SOURCES = ipc-driver-test.c uhdwrap.cpp ipc_shm.c ipc_chan.c ipc_sock.c uhddev_ipc.cpp
 | 
					ipc_driver_test_SOURCES = ipc-driver-test.c uhdwrap.cpp ipc_shm.c ipc_chan.c ipc_sock.c ../uhd/UHDDevice.cpp
 | 
				
			||||||
ipc_driver_test_LDADD = \
 | 
					ipc_driver_test_LDADD = \
 | 
				
			||||||
        shm.lo \
 | 
					        shm.lo \
 | 
				
			||||||
	$(top_builddir)/Transceiver52M/device/common/libdevice_common.la \
 | 
					 | 
				
			||||||
	$(COMMON_LA)
 | 
					 | 
				
			||||||
	$(LIBOSMOCORE_LIBS) \
 | 
						$(LIBOSMOCORE_LIBS) \
 | 
				
			||||||
	$(NULL)
 | 
						$(LIBOSMOCTRL_LIBS) \
 | 
				
			||||||
 | 
						$(LIBOSMOVTY_LIBS)
 | 
				
			||||||
ipc_driver_test_CXXFLAGS = $(AM_CXXFLAGS) $(UHD_CFLAGS)
 | 
					ipc_driver_test_CXXFLAGS = $(AM_CXXFLAGS) $(UHD_CFLAGS)
 | 
				
			||||||
ipc_driver_test_CPPFLAGS  = $(AM_CPPFLAGS) $(UHD_CFLAGS)
 | 
					ipc_driver_test_CPPFLAGS  = $(AM_CPPFLAGS) $(UHD_CFLAGS)
 | 
				
			||||||
ipc_driver_test_CFLAGS  = $(AM_CFLAGS) $(UHD_CFLAGS)
 | 
					ipc_driver_test_CFLAGS  = $(AM_CFLAGS) $(UHD_CFLAGS)
 | 
				
			||||||
ipc_driver_test_LDFLAGS  = $(AM_LDFLAGS) $(UHD_LIBS)
 | 
					ipc_driver_test_LDFLAGS  = $(AM_LDFLAGS) $(UHD_LIBS)
 | 
				
			||||||
endif
 | 
					ipc_driver_test_LDADD += $(top_builddir)/Transceiver52M/device/common/libdevice_common.la $(top_builddir)/CommonLibs/libcommon.la
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,19 +4,21 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					#ifdef __cplusplus
 | 
				
			||||||
 | 
					extern "C" {
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define _GNU_SOURCE
 | 
					#define _GNU_SOURCE
 | 
				
			||||||
#include <pthread.h>
 | 
					#include <pthread.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <debug.h>
 | 
					#include <debug.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
@@ -49,7 +51,6 @@
 | 
				
			|||||||
#include "ipc_sock.h"
 | 
					#include "ipc_sock.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define DEFAULT_SHM_NAME "/osmo-trx-ipc-driver-shm2"
 | 
					#define DEFAULT_SHM_NAME "/osmo-trx-ipc-driver-shm2"
 | 
				
			||||||
#define IPC_SOCK_PATH_PREFIX "/tmp"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void *tall_ctx;
 | 
					static void *tall_ctx;
 | 
				
			||||||
struct ipc_sock_state *global_ipc_sock_state;
 | 
					struct ipc_sock_state *global_ipc_sock_state;
 | 
				
			||||||
@@ -64,11 +65,9 @@ void *global_dev;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
static struct ipc_shm_region *decoded_region;
 | 
					static struct ipc_shm_region *decoded_region;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct {
 | 
					/* Debug Areas of the code */
 | 
				
			||||||
	int msocknum;
 | 
					//enum { DMAIN,
 | 
				
			||||||
	char *ud_prefix_dir;
 | 
					//};
 | 
				
			||||||
} cmdline_cfg;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static const struct log_info_cat default_categories[] = {
 | 
					static const struct log_info_cat default_categories[] = {
 | 
				
			||||||
	[DMAIN] = {
 | 
						[DMAIN] = {
 | 
				
			||||||
		.name = "DMAIN",
 | 
							.name = "DMAIN",
 | 
				
			||||||
@@ -88,6 +87,9 @@ const struct log_info log_infox = {
 | 
				
			|||||||
	.cat = default_categories,
 | 
						.cat = default_categories,
 | 
				
			||||||
	.num_cat = ARRAY_SIZE(default_categories),
 | 
						.num_cat = ARRAY_SIZE(default_categories),
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					#ifdef __cplusplus
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "uhdwrap.h"
 | 
					#include "uhdwrap.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -191,8 +193,7 @@ static int ipc_tx_open_cnf(int rc, uint32_t num_chans, int32_t timingoffset)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	chan_info = ipc_prim->u.open_cnf.chan_info;
 | 
						chan_info = ipc_prim->u.open_cnf.chan_info;
 | 
				
			||||||
	for (i = 0; i < num_chans; i++) {
 | 
						for (i = 0; i < num_chans; i++) {
 | 
				
			||||||
		snprintf(chan_info->chan_ipc_sk_path, sizeof(chan_info->chan_ipc_sk_path),"%s/ipc_sock%d_%d",
 | 
							snprintf(chan_info->chan_ipc_sk_path, sizeof(chan_info->chan_ipc_sk_path), "%s_%d", IPC_SOCK_PATH_PREFIX, i);
 | 
				
			||||||
			 cmdline_cfg.ud_prefix_dir, cmdline_cfg.msocknum, i);
 | 
					 | 
				
			||||||
		/* FIXME: dynamc chan limit, currently 8 */
 | 
							/* FIXME: dynamc chan limit, currently 8 */
 | 
				
			||||||
		if (i < 8)
 | 
							if (i < 8)
 | 
				
			||||||
			ipc_sock_init(chan_info->chan_ipc_sk_path, &global_ctrl_socks[i], ipc_chan_sock_accept, i);
 | 
								ipc_sock_init(chan_info->chan_ipc_sk_path, &global_ctrl_socks[i], ipc_chan_sock_accept, i);
 | 
				
			||||||
@@ -221,7 +222,6 @@ int ipc_rx_open_req(struct ipc_sk_if_open_req *open_req)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	/* calculate size needed */
 | 
						/* calculate size needed */
 | 
				
			||||||
	unsigned int len;
 | 
						unsigned int len;
 | 
				
			||||||
	unsigned int i;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	global_dev = uhdwrap_open(open_req);
 | 
						global_dev = uhdwrap_open(open_req);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -239,7 +239,7 @@ int ipc_rx_open_req(struct ipc_sk_if_open_req *open_req)
 | 
				
			|||||||
	* additionally go for the producer init for both, so only we are responsible for the init, instead
 | 
						* additionally go for the producer init for both, so only we are responsible for the init, instead
 | 
				
			||||||
     * of splitting it with the client and causing potential races if one side uses it too early */
 | 
					     * of splitting it with the client and causing potential races if one side uses it too early */
 | 
				
			||||||
	decoded_region = ipc_shm_decode_region(0, (struct ipc_shm_raw_region *)shm);
 | 
						decoded_region = ipc_shm_decode_region(0, (struct ipc_shm_raw_region *)shm);
 | 
				
			||||||
	for (i = 0; i < open_req->num_chans; i++) {
 | 
						for (unsigned int i = 0; i < open_req->num_chans; i++) {
 | 
				
			||||||
		//		ios_tx_to_device[i] = ipc_shm_init_consumer(decoded_region->channels[i]->dl_stream);
 | 
							//		ios_tx_to_device[i] = ipc_shm_init_consumer(decoded_region->channels[i]->dl_stream);
 | 
				
			||||||
		ios_tx_to_device[i] = ipc_shm_init_producer(decoded_region->channels[i]->dl_stream);
 | 
							ios_tx_to_device[i] = ipc_shm_init_producer(decoded_region->channels[i]->dl_stream);
 | 
				
			||||||
		ios_rx_from_device[i] = ipc_shm_init_producer(decoded_region->channels[i]->ul_stream);
 | 
							ios_rx_from_device[i] = ipc_shm_init_producer(decoded_region->channels[i]->ul_stream);
 | 
				
			||||||
@@ -249,14 +249,14 @@ int ipc_rx_open_req(struct ipc_sk_if_open_req *open_req)
 | 
				
			|||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
volatile bool ul_running = false;
 | 
					volatile int ul_running = 0;
 | 
				
			||||||
volatile bool dl_running = false;
 | 
					volatile int dl_running = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void *uplink_thread(void *x_void_ptr)
 | 
					void *uplink_thread(void *x_void_ptr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	uint32_t chann = decoded_region->num_chans;
 | 
						uint32_t chann = decoded_region->num_chans;
 | 
				
			||||||
	ul_running = true;
 | 
						ul_running = 1;
 | 
				
			||||||
	pthread_setname_np(pthread_self(), "uplink_rx");
 | 
						pthread_setname_np(pthread_self(), "uplink rx");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	while (!ipc_exit_requested) {
 | 
						while (!ipc_exit_requested) {
 | 
				
			||||||
		int32_t read = uhdwrap_read(global_dev, chann);
 | 
							int32_t read = uhdwrap_read(global_dev, chann);
 | 
				
			||||||
@@ -269,8 +269,8 @@ void *uplink_thread(void *x_void_ptr)
 | 
				
			|||||||
void *downlink_thread(void *x_void_ptr)
 | 
					void *downlink_thread(void *x_void_ptr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int chann = decoded_region->num_chans;
 | 
						int chann = decoded_region->num_chans;
 | 
				
			||||||
	dl_running = true;
 | 
						dl_running = 1;
 | 
				
			||||||
	pthread_setname_np(pthread_self(), "downlink_tx");
 | 
						pthread_setname_np(pthread_self(), "downlink tx");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	while (!ipc_exit_requested) {
 | 
						while (!ipc_exit_requested) {
 | 
				
			||||||
		bool underrun;
 | 
							bool underrun;
 | 
				
			||||||
@@ -289,6 +289,7 @@ int ipc_rx_chan_start_req(struct ipc_sk_chan_if_op_void *req, uint8_t chan_nr)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	/* no per-chan start/stop */
 | 
						/* no per-chan start/stop */
 | 
				
			||||||
	if(!dl_running || !ul_running) {
 | 
						if(!dl_running || !ul_running) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* chan != first chan start will "fail", which is fine, usrp can't start/stop chans independently */
 | 
							/* chan != first chan start will "fail", which is fine, usrp can't start/stop chans independently */
 | 
				
			||||||
		if(rc) {
 | 
							if(rc) {
 | 
				
			||||||
			LOGP(DMAIN, LOGL_INFO, "starting rx/tx threads.. req for chan:%d\n", chan_nr);
 | 
								LOGP(DMAIN, LOGL_INFO, "starting rx/tx threads.. req for chan:%d\n", chan_nr);
 | 
				
			||||||
@@ -400,7 +401,10 @@ int ipc_sock_init(const char *path, struct ipc_sock_state **global_state_var,
 | 
				
			|||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	osmo_fd_setup(bfd, bfd->fd, OSMO_FD_READ, sock_callback_fn, state, n);
 | 
						bfd->when = BSC_FD_READ;
 | 
				
			||||||
 | 
						bfd->cb = sock_callback_fn;
 | 
				
			||||||
 | 
						bfd->data = state;
 | 
				
			||||||
 | 
						bfd->priv_nr = n;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rc = osmo_fd_register(bfd);
 | 
						rc = osmo_fd_register(bfd);
 | 
				
			||||||
	if (rc < 0) {
 | 
						if (rc < 0) {
 | 
				
			||||||
@@ -410,6 +414,8 @@ int ipc_sock_init(const char *path, struct ipc_sock_state **global_state_var,
 | 
				
			|||||||
		return rc;
 | 
							return rc;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						//osmo_signal_register_handler(SS_GLOBAL, IPC_if_signal_cb, NULL);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DMAIN, LOGL_INFO, "Started listening on IPC socket: %s\n", path);
 | 
						LOGP(DMAIN, LOGL_INFO, "Started listening on IPC socket: %s\n", path);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
@@ -419,20 +425,24 @@ static void print_help(void)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	printf(	"ipc-driver-test Usage:\n"
 | 
						printf(	"ipc-driver-test Usage:\n"
 | 
				
			||||||
		" -h  --help		This message\n"
 | 
							" -h  --help		This message\n"
 | 
				
			||||||
	       " -u  --unix-sk-dir DIR	Existing directory where to create the Master socket\n"
 | 
							" -n  --sock-num NR	Master socket suffix number NR\n"
 | 
				
			||||||
	       " -n  --sock-num NR	Master socket suffix number NR\n");
 | 
						      );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static int msocknum = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void handle_options(int argc, char **argv)
 | 
					static void handle_options(int argc, char **argv)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	while (1) {
 | 
						while (1) {
 | 
				
			||||||
		int option_index = 0, c;
 | 
							int option_index = 0, c;
 | 
				
			||||||
		const struct option long_options[] = { { "help", 0, 0, 'h' },
 | 
							const struct option long_options[] = {
 | 
				
			||||||
						       { "unix-sk-dir", 1, 0, 'u' },
 | 
								{ "help", 0, 0, 'h' },
 | 
				
			||||||
			{ "sock-num", 1, 0, 'n' },
 | 
								{ "sock-num", 1, 0, 'n' },
 | 
				
			||||||
						       { 0, 0, 0, 0 } };
 | 
								{0,0,0,0}
 | 
				
			||||||
 | 
							};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		c = getopt_long(argc, argv, "hu:n:", long_options, &option_index);
 | 
							c = getopt_long(argc, argv, "hn:",
 | 
				
			||||||
 | 
									long_options, &option_index);
 | 
				
			||||||
		if (c == -1)
 | 
							if (c == -1)
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -441,13 +451,9 @@ static void handle_options(int argc, char **argv)
 | 
				
			|||||||
			print_help();
 | 
								print_help();
 | 
				
			||||||
			exit(0);
 | 
								exit(0);
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		case 'u':
 | 
					 | 
				
			||||||
			cmdline_cfg.ud_prefix_dir = talloc_strdup(tall_ctx, optarg);
 | 
					 | 
				
			||||||
			break;
 | 
					 | 
				
			||||||
		case 'n':
 | 
							case 'n':
 | 
				
			||||||
			cmdline_cfg.msocknum = atoi(optarg);
 | 
								msocknum = atoi(optarg);
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
 | 
					 | 
				
			||||||
		default:
 | 
							default:
 | 
				
			||||||
			exit(2);
 | 
								exit(2);
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
@@ -460,33 +466,36 @@ static void handle_options(int argc, char **argv)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if defined(IPCMAGIC) && defined(__cplusplus)
 | 
				
			||||||
 | 
					extern "C" int osmo_ctx_init(const char *id);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern "C" int magicmain(int argc, char **argv)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						osmo_ctx_init("main");
 | 
				
			||||||
 | 
						osmo_select_init();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
int main(int argc, char **argv)
 | 
					int main(int argc, char **argv)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	char ipc_msock_path[128];
 | 
					#endif
 | 
				
			||||||
 | 
						char ipc_msock_path[sizeof(IPC_SOCK_PATH_PREFIX)+3];
 | 
				
			||||||
	tall_ctx = talloc_named_const(NULL, 0, "OsmoTRX");
 | 
						tall_ctx = talloc_named_const(NULL, 0, "OsmoTRX");
 | 
				
			||||||
	msgb_talloc_ctx_init(tall_ctx, 0);
 | 
						msgb_talloc_ctx_init(tall_ctx, 0);
 | 
				
			||||||
	osmo_init_logging2(tall_ctx, &log_infox);
 | 
						osmo_init_logging2(tall_ctx, &log_infox);
 | 
				
			||||||
	log_enable_multithread();
 | 
						log_enable_multithread();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	handle_options(argc, argv);
 | 
						handle_options(argc, argv);
 | 
				
			||||||
 | 
						snprintf(ipc_msock_path,sizeof(ipc_msock_path), "%s%d", IPC_SOCK_PATH_PREFIX, msocknum);
 | 
				
			||||||
	if (!cmdline_cfg.ud_prefix_dir)
 | 
					 | 
				
			||||||
		cmdline_cfg.ud_prefix_dir = talloc_strdup(tall_ctx, IPC_SOCK_PATH_PREFIX);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	snprintf(ipc_msock_path, sizeof(ipc_msock_path), "%s/ipc_sock%d", cmdline_cfg.ud_prefix_dir, cmdline_cfg.msocknum);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DMAIN, LOGL_INFO, "Starting %s\n", argv[0]);
 | 
						LOGP(DMAIN, LOGL_INFO, "Starting %s\n", argv[0]);
 | 
				
			||||||
	ipc_sock_init(ipc_msock_path, &global_ipc_sock_state, ipc_sock_accept, 0);
 | 
						ipc_sock_init(ipc_msock_path, &global_ipc_sock_state, ipc_sock_accept, 0);
 | 
				
			||||||
	while (!ipc_exit_requested)
 | 
						while (!ipc_exit_requested)
 | 
				
			||||||
		osmo_select_main(0);
 | 
							osmo_select_main(0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (global_dev) {
 | 
						if (global_dev)
 | 
				
			||||||
		unsigned int i;
 | 
							for (unsigned int i = 0; i < decoded_region->num_chans; i++)
 | 
				
			||||||
		for (i = 0; i < decoded_region->num_chans; i++)
 | 
					 | 
				
			||||||
			uhdwrap_stop(global_dev, i);
 | 
								uhdwrap_stop(global_dev, i);
 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ipc_sock_close(global_ipc_sock_state);
 | 
						//ipc_sock_close()
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -27,7 +25,7 @@ extern struct ipc_shm_io *ios_rx_from_device[8];
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
struct ipc_sock_state {
 | 
					struct ipc_sock_state {
 | 
				
			||||||
	struct osmo_fd listen_bfd; /* fd for listen socket */
 | 
						struct osmo_fd listen_bfd; /* fd for listen socket */
 | 
				
			||||||
	struct osmo_fd conn_bfd; /* fd for connection */
 | 
						struct osmo_fd conn_bfd; /* fd for connection to lcr */
 | 
				
			||||||
	struct llist_head upqueue; /* queue for sending messages */
 | 
						struct llist_head upqueue; /* queue for sending messages */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -43,3 +41,4 @@ int ipc_rx_chan_stop_req(struct ipc_sk_chan_if_op_void *req, uint8_t chan_nr);
 | 
				
			|||||||
int ipc_rx_chan_setgain_req(struct ipc_sk_chan_if_gain *req, uint8_t chan_nr);
 | 
					int ipc_rx_chan_setgain_req(struct ipc_sk_chan_if_gain *req, uint8_t chan_nr);
 | 
				
			||||||
int ipc_rx_chan_setfreq_req(struct ipc_sk_chan_if_freq_req *req, uint8_t chan_nr);
 | 
					int ipc_rx_chan_setfreq_req(struct ipc_sk_chan_if_freq_req *req, uint8_t chan_nr);
 | 
				
			||||||
int ipc_rx_chan_settxatten_req(struct ipc_sk_chan_if_tx_attenuation *req, uint8_t chan_nr);
 | 
					int ipc_rx_chan_settxatten_req(struct ipc_sk_chan_if_tx_attenuation *req, uint8_t chan_nr);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
@@ -49,23 +47,29 @@ static int ipc_chan_rx(uint8_t msg_type, struct ipc_sk_chan_if *ipc_prim, uint8_
 | 
				
			|||||||
	switch (msg_type) {
 | 
						switch (msg_type) {
 | 
				
			||||||
	case IPC_IF_MSG_START_REQ:
 | 
						case IPC_IF_MSG_START_REQ:
 | 
				
			||||||
		rc = ipc_rx_chan_start_req(&ipc_prim->u.start_req, chan_nr);
 | 
							rc = ipc_rx_chan_start_req(&ipc_prim->u.start_req, chan_nr);
 | 
				
			||||||
 | 
							fprintf(stderr, "%s:%d: IPC_IF_MSG_START_REQ chan priv no %d\n", __FILE__, __LINE__, chan_nr);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case IPC_IF_MSG_STOP_REQ:
 | 
						case IPC_IF_MSG_STOP_REQ:
 | 
				
			||||||
		rc = ipc_rx_chan_stop_req(&ipc_prim->u.stop_req, chan_nr);
 | 
							rc = ipc_rx_chan_stop_req(&ipc_prim->u.stop_req, chan_nr);
 | 
				
			||||||
 | 
							fprintf(stderr, "%s:%d: IPC_IF_MSG_STOP_REQ chan priv no %d\n", __FILE__, __LINE__, chan_nr);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case IPC_IF_MSG_SETGAIN_REQ:
 | 
						case IPC_IF_MSG_SETGAIN_REQ:
 | 
				
			||||||
		rc = ipc_rx_chan_setgain_req(&ipc_prim->u.set_gain_req, chan_nr);
 | 
							rc = ipc_rx_chan_setgain_req(&ipc_prim->u.set_gain_req, chan_nr);
 | 
				
			||||||
 | 
							fprintf(stderr, "%s:%d: IPC_IF_MSG_SETGAIN_REQ chan priv no %d\n", __FILE__, __LINE__, chan_nr);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case IPC_IF_MSG_SETFREQ_REQ:
 | 
						case IPC_IF_MSG_SETFREQ_REQ:
 | 
				
			||||||
		rc = ipc_rx_chan_setfreq_req(&ipc_prim->u.set_freq_req, chan_nr);
 | 
							rc = ipc_rx_chan_setfreq_req(&ipc_prim->u.set_freq_req, chan_nr);
 | 
				
			||||||
 | 
							fprintf(stderr, "%s:%d: IPC_IF_MSG_SETFREQ_REQ chan priv no %d\n", __FILE__, __LINE__, chan_nr);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case IPC_IF_MSG_SETTXATTN_REQ:
 | 
						case IPC_IF_MSG_SETTXATTN_REQ:
 | 
				
			||||||
		rc = ipc_rx_chan_settxatten_req(&ipc_prim->u.txatten_req, chan_nr);
 | 
							rc = ipc_rx_chan_settxatten_req(&ipc_prim->u.txatten_req, chan_nr);
 | 
				
			||||||
 | 
							fprintf(stderr, "%s:%d: IPC_IF_MSG_SETTXATTN_REQ chan priv no %d\n", __FILE__, __LINE__, chan_nr);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "Received unknown IPC msg type 0x%02x on chan %d\n", msg_type, chan_nr);
 | 
							fprintf(stderr, "Received unknown IPC msg type %d\n", msg_type);
 | 
				
			||||||
		rc = -EINVAL;
 | 
							rc = -EINVAL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						fflush(stderr);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -96,7 +100,7 @@ static int ipc_chan_sock_read(struct osmo_fd *bfd)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (rc < (int)sizeof(*ipc_prim)) {
 | 
						if (rc < (int)sizeof(*ipc_prim)) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR,
 | 
							LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
		     "Received %d bytes on Unix Socket, but primitive size "
 | 
							     "Received %d bytes on Unix Socket, but primitive size "
 | 
				
			||||||
		     "is %zu, discarding\n",
 | 
							     "is %zu, discarding\n",
 | 
				
			||||||
		     rc, sizeof(*ipc_prim));
 | 
							     rc, sizeof(*ipc_prim));
 | 
				
			||||||
@@ -127,7 +131,7 @@ int ipc_chan_sock_send(struct msgb *msg, uint8_t chan_nr)
 | 
				
			|||||||
		return -EINVAL;
 | 
							return -EINVAL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!state) {
 | 
						if (!state) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_INFO,
 | 
							LOGP(DMAIN, LOGL_INFO,
 | 
				
			||||||
		     "IPC socket not created, "
 | 
							     "IPC socket not created, "
 | 
				
			||||||
		     "dropping message\n");
 | 
							     "dropping message\n");
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
@@ -135,14 +139,14 @@ int ipc_chan_sock_send(struct msgb *msg, uint8_t chan_nr)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	conn_bfd = &state->conn_bfd;
 | 
						conn_bfd = &state->conn_bfd;
 | 
				
			||||||
	if (conn_bfd->fd <= 0) {
 | 
						if (conn_bfd->fd <= 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_NOTICE,
 | 
							LOGP(DMAIN, LOGL_NOTICE,
 | 
				
			||||||
		     "IPC socket not connected, "
 | 
							     "IPC socket not connected, "
 | 
				
			||||||
		     "dropping message\n");
 | 
							     "dropping message\n");
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
		return -EIO;
 | 
							return -EIO;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	msgb_enqueue(&state->upqueue, msg);
 | 
						msgb_enqueue(&state->upqueue, msg);
 | 
				
			||||||
	osmo_fd_write_enable(conn_bfd);
 | 
						conn_bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -160,11 +164,11 @@ static int ipc_chan_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
		msg = llist_entry(state->upqueue.next, struct msgb, list);
 | 
							msg = llist_entry(state->upqueue.next, struct msgb, list);
 | 
				
			||||||
		ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
							ipc_prim = (struct ipc_sk_chan_if *)msg->data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		osmo_fd_write_disable(bfd);
 | 
							bfd->when &= ~BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
							/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
				
			||||||
		if (!msgb_length(msg)) {
 | 
							if (!msgb_length(msg)) {
 | 
				
			||||||
			LOGP(DDEV, LOGL_ERROR,
 | 
								LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
			     "message type (%d) with ZERO "
 | 
								     "message type (%d) with ZERO "
 | 
				
			||||||
			     "bytes!\n",
 | 
								     "bytes!\n",
 | 
				
			||||||
			     ipc_prim->msg_type);
 | 
								     ipc_prim->msg_type);
 | 
				
			||||||
@@ -177,14 +181,14 @@ static int ipc_chan_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		if (rc < 0) {
 | 
							if (rc < 0) {
 | 
				
			||||||
			if (errno == EAGAIN) {
 | 
								if (errno == EAGAIN) {
 | 
				
			||||||
				osmo_fd_write_enable(bfd);
 | 
									bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
				break;
 | 
									break;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	dontsend:
 | 
						dontsend:
 | 
				
			||||||
		/* _after_ we send it, we can dequeue */
 | 
							/* _after_ we send it, we can deueue */
 | 
				
			||||||
		msg2 = msgb_dequeue(&state->upqueue);
 | 
							msg2 = msgb_dequeue(&state->upqueue);
 | 
				
			||||||
		assert(msg == msg2);
 | 
							assert(msg == msg2);
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
@@ -200,12 +204,12 @@ static int ipc_chan_sock_cb(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	int rc = 0;
 | 
						int rc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_READ)
 | 
						if (flags & BSC_FD_READ)
 | 
				
			||||||
		rc = ipc_chan_sock_read(bfd);
 | 
							rc = ipc_chan_sock_read(bfd);
 | 
				
			||||||
	if (rc < 0)
 | 
						if (rc < 0)
 | 
				
			||||||
		return rc;
 | 
							return rc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_WRITE)
 | 
						if (flags & BSC_FD_WRITE)
 | 
				
			||||||
		rc = ipc_chan_sock_write(bfd);
 | 
							rc = ipc_chan_sock_write(bfd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
@@ -222,25 +226,30 @@ int ipc_chan_sock_accept(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
	len = sizeof(un_addr);
 | 
						len = sizeof(un_addr);
 | 
				
			||||||
	rc = accept(bfd->fd, (struct sockaddr *)&un_addr, &len);
 | 
						rc = accept(bfd->fd, (struct sockaddr *)&un_addr, &len);
 | 
				
			||||||
	if (rc < 0) {
 | 
						if (rc < 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "Failed to accept a new connection\n");
 | 
							LOGP(DMAIN, LOGL_ERROR, "Failed to accept a new connection\n");
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (conn_bfd->fd >= 0) {
 | 
						if (conn_bfd->fd >= 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_NOTICE,
 | 
							LOGP(DMAIN, LOGL_NOTICE,
 | 
				
			||||||
		     "osmo-trx connects but we already have "
 | 
							     "osmo-trx connects but we already have "
 | 
				
			||||||
		     "another active connection ?!?\n");
 | 
							     "another active connection ?!?\n");
 | 
				
			||||||
		/* We already have one IPC connected, this is all we support */
 | 
							/* We already have one IPC connected, this is all we support */
 | 
				
			||||||
		osmo_fd_read_disable(&state->listen_bfd);
 | 
							state->listen_bfd.when &= ~BSC_FD_READ;
 | 
				
			||||||
		close(rc);
 | 
							close(rc);
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						conn_bfd->fd = rc;
 | 
				
			||||||
 | 
						conn_bfd->when = BSC_FD_READ;
 | 
				
			||||||
 | 
						conn_bfd->cb = ipc_chan_sock_cb;
 | 
				
			||||||
 | 
						conn_bfd->data = state;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* copy chan nr, required for proper bfd<->chan # mapping */
 | 
						/* copy chan nr, required for proper bfd<->chan # mapping */
 | 
				
			||||||
	osmo_fd_setup(conn_bfd, rc, OSMO_FD_READ, ipc_chan_sock_cb, state, bfd->priv_nr);
 | 
						conn_bfd->priv_nr = bfd->priv_nr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (osmo_fd_register(conn_bfd) != 0) {
 | 
						if (osmo_fd_register(conn_bfd) != 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR,
 | 
							LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
		     "Failed to register new connection "
 | 
							     "Failed to register new connection "
 | 
				
			||||||
		     "fd\n");
 | 
							     "fd\n");
 | 
				
			||||||
		close(conn_bfd->fd);
 | 
							close(conn_bfd->fd);
 | 
				
			||||||
@@ -248,7 +257,10 @@ int ipc_chan_sock_accept(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DDEV, LOGL_NOTICE, "Unix socket connected to external osmo-trx\n");
 | 
						LOGP(DMAIN, LOGL_NOTICE, "Unix socket connected to external osmo-trx\n");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* send current info */
 | 
				
			||||||
 | 
						//IPC_tx_info_ind();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#ifndef IPC_CHAN_H
 | 
					#ifndef IPC_CHAN_H
 | 
				
			||||||
#define IPC_CHAN_H
 | 
					#define IPC_CHAN_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#ifdef __cplusplus
 | 
					#ifdef __cplusplus
 | 
				
			||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
@@ -26,15 +24,12 @@ extern "C" {
 | 
				
			|||||||
#include <string.h>
 | 
					#include <string.h>
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
#include <errno.h>
 | 
					#include <errno.h>
 | 
				
			||||||
#include <osmocom/core/panic.h>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <debug.h>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef __cplusplus
 | 
					#ifdef __cplusplus
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define SAMPLE_SIZE_BYTE (sizeof(uint16_t) * 2)
 | 
					#define SAMPLE_SIZE_BYTE sizeof(uint16_t) * 2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct ipc_shm_io *ipc_shm_init_consumer(struct ipc_shm_stream *s)
 | 
					struct ipc_shm_io *ipc_shm_init_consumer(struct ipc_shm_stream *s)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -61,44 +56,52 @@ struct ipc_shm_io *ipc_shm_init_producer(struct ipc_shm_stream *s)
 | 
				
			|||||||
	struct ipc_shm_io *r = ipc_shm_init_consumer(s);
 | 
						struct ipc_shm_io *r = ipc_shm_init_consumer(s);
 | 
				
			||||||
	rv = pthread_mutexattr_init(&att);
 | 
						rv = pthread_mutexattr_init(&att);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_mutexattr_setrobust(&att, PTHREAD_MUTEX_ROBUST);
 | 
						rv = pthread_mutexattr_setrobust(&att, PTHREAD_MUTEX_ROBUST);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_mutexattr_setpshared(&att, PTHREAD_PROCESS_SHARED);
 | 
						rv = pthread_mutexattr_setpshared(&att, PTHREAD_PROCESS_SHARED);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_mutex_init((pthread_mutex_t *)&r->this_stream->lock, &att);
 | 
						rv = pthread_mutex_init((pthread_mutex_t *)&r->this_stream->lock, &att);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	pthread_mutexattr_destroy(&att);
 | 
						pthread_mutexattr_destroy(&att);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_condattr_setpshared(&t1, PTHREAD_PROCESS_SHARED);
 | 
						rv = pthread_condattr_setpshared(&t1, PTHREAD_PROCESS_SHARED);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_condattr_setpshared(&t2, PTHREAD_PROCESS_SHARED);
 | 
						rv = pthread_condattr_setpshared(&t2, PTHREAD_PROCESS_SHARED);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_cond_init((pthread_cond_t *)&r->this_stream->cf, &t1);
 | 
						rv = pthread_cond_init((pthread_cond_t *)&r->this_stream->cf, &t1);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rv = pthread_cond_init((pthread_cond_t *)&r->this_stream->ce, &t2);
 | 
						rv = pthread_cond_init((pthread_cond_t *)&r->this_stream->ce, &t2);
 | 
				
			||||||
	if (rv != 0) {
 | 
						if (rv != 0) {
 | 
				
			||||||
		osmo_panic("%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
							fprintf(stderr, "%s:%d rv:%d", __FILE__, __LINE__, rv);
 | 
				
			||||||
 | 
							exit(EXIT_FAILURE);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	pthread_condattr_destroy(&t1);
 | 
						pthread_condattr_destroy(&t1);
 | 
				
			||||||
@@ -112,6 +115,7 @@ struct ipc_shm_io *ipc_shm_init_producer(struct ipc_shm_stream *s)
 | 
				
			|||||||
void ipc_shm_close(struct ipc_shm_io *r)
 | 
					void ipc_shm_close(struct ipc_shm_io *r)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (r) {
 | 
						if (r) {
 | 
				
			||||||
 | 
							if (r->buf_ptrs)
 | 
				
			||||||
			free(r->buf_ptrs);
 | 
								free(r->buf_ptrs);
 | 
				
			||||||
		free(r);
 | 
							free(r);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#ifndef IPC_SHM_H
 | 
					#ifndef IPC_SHM_H
 | 
				
			||||||
#define IPC_SHM_H
 | 
					#define IPC_SHM_H
 | 
				
			||||||
@@ -28,7 +26,7 @@ extern "C" {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct ipc_shm_io {
 | 
					struct ipc_shm_io {
 | 
				
			||||||
	volatile struct ipc_shm_raw_stream *this_stream;
 | 
						volatile struct ipc_shm_raw_stream *this_stream; // plus num_buffers at end
 | 
				
			||||||
	volatile struct ipc_shm_raw_smpl_buf **volatile buf_ptrs;
 | 
						volatile struct ipc_shm_raw_smpl_buf **volatile buf_ptrs;
 | 
				
			||||||
	uint32_t partial_read_begin_ptr;
 | 
						uint32_t partial_read_begin_ptr;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
@@ -56,7 +54,7 @@ static int ipc_rx(uint8_t msg_type, struct ipc_sk_if *ipc_prim)
 | 
				
			|||||||
		rc = ipc_rx_open_req(&ipc_prim->u.open_req);
 | 
							rc = ipc_rx_open_req(&ipc_prim->u.open_req);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "Received unknown IPC msg type 0x%02x\n", msg_type);
 | 
							LOGP(DMAIN, LOGL_ERROR, "Received unknown IPC msg type %d\n", msg_type);
 | 
				
			||||||
		rc = -EINVAL;
 | 
							rc = -EINVAL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -67,9 +65,10 @@ int ipc_sock_send(struct msgb *msg)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	struct ipc_sock_state *state = global_ipc_sock_state;
 | 
						struct ipc_sock_state *state = global_ipc_sock_state;
 | 
				
			||||||
	struct osmo_fd *conn_bfd;
 | 
						struct osmo_fd *conn_bfd;
 | 
				
			||||||
 | 
						//struct ipc_sk_if *ipc_prim = (struct ipc_sk_if *) msg->data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!state) {
 | 
						if (!state) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_INFO,
 | 
							LOGP(DMAIN, LOGL_INFO,
 | 
				
			||||||
		     "IPC socket not created, "
 | 
							     "IPC socket not created, "
 | 
				
			||||||
		     "dropping message\n");
 | 
							     "dropping message\n");
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
@@ -77,14 +76,14 @@ int ipc_sock_send(struct msgb *msg)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	conn_bfd = &state->conn_bfd;
 | 
						conn_bfd = &state->conn_bfd;
 | 
				
			||||||
	if (conn_bfd->fd <= 0) {
 | 
						if (conn_bfd->fd <= 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_NOTICE,
 | 
							LOGP(DMAIN, LOGL_NOTICE,
 | 
				
			||||||
		     "IPC socket not connected, "
 | 
							     "IPC socket not connected, "
 | 
				
			||||||
		     "dropping message\n");
 | 
							     "dropping message\n");
 | 
				
			||||||
		msgb_free(msg);
 | 
							msgb_free(msg);
 | 
				
			||||||
		return -EIO;
 | 
							return -EIO;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	msgb_enqueue(&state->upqueue, msg);
 | 
						msgb_enqueue(&state->upqueue, msg);
 | 
				
			||||||
	osmo_fd_write_enable(conn_bfd);
 | 
						conn_bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -93,7 +92,7 @@ void ipc_sock_close(struct ipc_sock_state *state)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	struct osmo_fd *bfd = &state->conn_bfd;
 | 
						struct osmo_fd *bfd = &state->conn_bfd;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DDEV, LOGL_NOTICE, "IPC socket has LOST connection\n");
 | 
						LOGP(DMAIN, LOGL_NOTICE, "IPC socket has LOST connection\n");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ipc_exit_requested = 1;
 | 
						ipc_exit_requested = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -102,7 +101,7 @@ void ipc_sock_close(struct ipc_sock_state *state)
 | 
				
			|||||||
	osmo_fd_unregister(bfd);
 | 
						osmo_fd_unregister(bfd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* re-enable the generation of ACCEPT for new connections */
 | 
						/* re-enable the generation of ACCEPT for new connections */
 | 
				
			||||||
	osmo_fd_read_enable(&state->listen_bfd);
 | 
						state->listen_bfd.when |= BSC_FD_READ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* flush the queue */
 | 
						/* flush the queue */
 | 
				
			||||||
	while (!llist_empty(&state->upqueue)) {
 | 
						while (!llist_empty(&state->upqueue)) {
 | 
				
			||||||
@@ -137,7 +136,7 @@ int ipc_sock_read(struct osmo_fd *bfd)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (rc < (int)sizeof(*ipc_prim)) {
 | 
						if (rc < (int)sizeof(*ipc_prim)) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR,
 | 
							LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
		     "Received %d bytes on Unix Socket, but primitive size "
 | 
							     "Received %d bytes on Unix Socket, but primitive size "
 | 
				
			||||||
		     "is %zu, discarding\n",
 | 
							     "is %zu, discarding\n",
 | 
				
			||||||
		     rc, sizeof(*ipc_prim));
 | 
							     rc, sizeof(*ipc_prim));
 | 
				
			||||||
@@ -172,11 +171,11 @@ static int ipc_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
		msg = llist_entry(state->upqueue.next, struct msgb, list);
 | 
							msg = llist_entry(state->upqueue.next, struct msgb, list);
 | 
				
			||||||
		ipc_prim = (struct ipc_sk_if *)msg->data;
 | 
							ipc_prim = (struct ipc_sk_if *)msg->data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		osmo_fd_write_disable(bfd);
 | 
							bfd->when &= ~BSC_FD_WRITE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
							/* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
 | 
				
			||||||
		if (!msgb_length(msg)) {
 | 
							if (!msgb_length(msg)) {
 | 
				
			||||||
			LOGP(DDEV, LOGL_ERROR,
 | 
								LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
			     "message type (%d) with ZERO "
 | 
								     "message type (%d) with ZERO "
 | 
				
			||||||
			     "bytes!\n",
 | 
								     "bytes!\n",
 | 
				
			||||||
			     ipc_prim->msg_type);
 | 
								     ipc_prim->msg_type);
 | 
				
			||||||
@@ -189,7 +188,7 @@ static int ipc_sock_write(struct osmo_fd *bfd)
 | 
				
			|||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
		if (rc < 0) {
 | 
							if (rc < 0) {
 | 
				
			||||||
			if (errno == EAGAIN) {
 | 
								if (errno == EAGAIN) {
 | 
				
			||||||
				osmo_fd_write_enable(bfd);
 | 
									bfd->when |= BSC_FD_WRITE;
 | 
				
			||||||
				break;
 | 
									break;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			goto close;
 | 
								goto close;
 | 
				
			||||||
@@ -212,12 +211,12 @@ static int ipc_sock_cb(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	int rc = 0;
 | 
						int rc = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_READ)
 | 
						if (flags & BSC_FD_READ)
 | 
				
			||||||
		rc = ipc_sock_read(bfd);
 | 
							rc = ipc_sock_read(bfd);
 | 
				
			||||||
	if (rc < 0)
 | 
						if (rc < 0)
 | 
				
			||||||
		return rc;
 | 
							return rc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (flags & OSMO_FD_WRITE)
 | 
						if (flags & BSC_FD_WRITE)
 | 
				
			||||||
		rc = ipc_sock_write(bfd);
 | 
							rc = ipc_sock_write(bfd);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return rc;
 | 
						return rc;
 | 
				
			||||||
@@ -235,24 +234,27 @@ int ipc_sock_accept(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
	len = sizeof(un_addr);
 | 
						len = sizeof(un_addr);
 | 
				
			||||||
	rc = accept(bfd->fd, (struct sockaddr *)&un_addr, &len);
 | 
						rc = accept(bfd->fd, (struct sockaddr *)&un_addr, &len);
 | 
				
			||||||
	if (rc < 0) {
 | 
						if (rc < 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR, "Failed to accept a new connection\n");
 | 
							LOGP(DMAIN, LOGL_ERROR, "Failed to accept a new connection\n");
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (conn_bfd->fd >= 0) {
 | 
						if (conn_bfd->fd >= 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_NOTICE,
 | 
							LOGP(DMAIN, LOGL_NOTICE,
 | 
				
			||||||
		     "ip clent connects but we already have "
 | 
							     "ip clent connects but we already have "
 | 
				
			||||||
		     "another active connection ?!?\n");
 | 
							     "another active connection ?!?\n");
 | 
				
			||||||
		/* We already have one IPC connected, this is all we support */
 | 
							/* We already have one IPC connected, this is all we support */
 | 
				
			||||||
		osmo_fd_read_disable(&state->listen_bfd);
 | 
							state->listen_bfd.when &= ~BSC_FD_READ;
 | 
				
			||||||
		close(rc);
 | 
							close(rc);
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	osmo_fd_setup(conn_bfd, rc, OSMO_FD_READ, ipc_sock_cb, state, 0);
 | 
						conn_bfd->fd = rc;
 | 
				
			||||||
 | 
						conn_bfd->when = BSC_FD_READ;
 | 
				
			||||||
 | 
						conn_bfd->cb = ipc_sock_cb;
 | 
				
			||||||
 | 
						conn_bfd->data = state;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (osmo_fd_register(conn_bfd) != 0) {
 | 
						if (osmo_fd_register(conn_bfd) != 0) {
 | 
				
			||||||
		LOGP(DDEV, LOGL_ERROR,
 | 
							LOGP(DMAIN, LOGL_ERROR,
 | 
				
			||||||
		     "Failed to register new connection "
 | 
							     "Failed to register new connection "
 | 
				
			||||||
		     "fd\n");
 | 
							     "fd\n");
 | 
				
			||||||
		close(conn_bfd->fd);
 | 
							close(conn_bfd->fd);
 | 
				
			||||||
@@ -260,7 +262,10 @@ int ipc_sock_accept(struct osmo_fd *bfd, unsigned int flags)
 | 
				
			|||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	LOGP(DDEV, LOGL_NOTICE, "Unix socket connected to external osmo-trx\n");
 | 
						LOGP(DMAIN, LOGL_NOTICE, "Unix socket connected to external osmo-trx\n");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* send current info */
 | 
				
			||||||
 | 
						//IPC_tx_info_ind();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#ifndef IPC_SOCK_H
 | 
					#ifndef IPC_SOCK_H
 | 
				
			||||||
#define IPC_SOCK_H
 | 
					#define IPC_SOCK_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,23 +4,23 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <string.h>
 | 
				
			||||||
 | 
					#include <stdlib.h>
 | 
				
			||||||
#include <stddef.h>
 | 
					#include <stddef.h>
 | 
				
			||||||
#include <osmocom/core/talloc.h>
 | 
					#include <osmocom/core/talloc.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "shm.h"
 | 
					#include "shm.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ENCDECDEBUG(...) //fprintf(stderr, __VA_ARGS__)
 | 
					//#define ENCDECDEBUG
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Convert offsets to pointers */
 | 
					/* Convert offsets to pointers */
 | 
				
			||||||
struct ipc_shm_stream *ipc_shm_decode_stream(void *tall_ctx, struct ipc_shm_raw_region *root_raw,
 | 
					struct ipc_shm_stream *ipc_shm_decode_stream(void *tall_ctx, struct ipc_shm_raw_region *root_raw,
 | 
				
			||||||
@@ -37,7 +37,9 @@ struct ipc_shm_stream *ipc_shm_decode_stream(void *tall_ctx, struct ipc_shm_raw_
 | 
				
			|||||||
	stream->buffer_size = stream_raw->buffer_size;
 | 
						stream->buffer_size = stream_raw->buffer_size;
 | 
				
			||||||
	stream->raw = stream_raw;
 | 
						stream->raw = stream_raw;
 | 
				
			||||||
	for (i = 0; i < stream->num_buffers; i++) {
 | 
						for (i = 0; i < stream->num_buffers; i++) {
 | 
				
			||||||
		ENCDECDEBUG("decode: smpl_buf %d at offset %u\n", i, stream_raw->buffer_offset[i]);
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
							fprintf(stderr, "decode: smpl_buf %d at offset %u\n", i, stream_raw->buffer_offset[i]);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
		stream->buffers[i] =
 | 
							stream->buffers[i] =
 | 
				
			||||||
			(struct ipc_shm_raw_smpl_buf *)(((uint8_t *)root_raw) + stream_raw->buffer_offset[i]);
 | 
								(struct ipc_shm_raw_smpl_buf *)(((uint8_t *)root_raw) + stream_raw->buffer_offset[i]);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -51,7 +53,9 @@ struct ipc_shm_channel *ipc_shm_decode_channel(void *tall_ctx, struct ipc_shm_ra
 | 
				
			|||||||
	chan = talloc_zero(tall_ctx, struct ipc_shm_channel);
 | 
						chan = talloc_zero(tall_ctx, struct ipc_shm_channel);
 | 
				
			||||||
	if (!chan)
 | 
						if (!chan)
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
	ENCDECDEBUG("decode: streams at offset %u and %u\n", chan_raw->dl_buf_offset, chan_raw->ul_buf_offset);
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
						fprintf(stderr, "decode: streams at offset %u and %u\n", chan_raw->dl_buf_offset, chan_raw->ul_buf_offset);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
	chan->dl_stream = ipc_shm_decode_stream(
 | 
						chan->dl_stream = ipc_shm_decode_stream(
 | 
				
			||||||
		chan, root_raw, (struct ipc_shm_raw_stream *)(((uint8_t *)root_raw) + chan_raw->dl_buf_offset));
 | 
							chan, root_raw, (struct ipc_shm_raw_stream *)(((uint8_t *)root_raw) + chan_raw->dl_buf_offset));
 | 
				
			||||||
	chan->ul_stream = ipc_shm_decode_stream(
 | 
						chan->ul_stream = ipc_shm_decode_stream(
 | 
				
			||||||
@@ -69,7 +73,9 @@ struct ipc_shm_region *ipc_shm_decode_region(void *tall_ctx, struct ipc_shm_raw_
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	root->num_chans = root_raw->num_chans;
 | 
						root->num_chans = root_raw->num_chans;
 | 
				
			||||||
	for (i = 0; i < root->num_chans; i++) {
 | 
						for (i = 0; i < root->num_chans; i++) {
 | 
				
			||||||
		ENCDECDEBUG("decode: channel %d at offset %u\n", i, root_raw->chan_offset[i]);
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
							fprintf(stderr, "decode: channel %d at offset %u\n", i, root_raw->chan_offset[i]);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
		root->channels[i] = ipc_shm_decode_channel(
 | 
							root->channels[i] = ipc_shm_decode_channel(
 | 
				
			||||||
			root, root_raw,
 | 
								root, root_raw,
 | 
				
			||||||
			(struct ipc_shm_raw_channel *)(((uint8_t *)root_raw) + root_raw->chan_offset[i]));
 | 
								(struct ipc_shm_raw_channel *)(((uint8_t *)root_raw) + root_raw->chan_offset[i]));
 | 
				
			||||||
@@ -82,7 +88,9 @@ unsigned int ipc_shm_encode_smpl_buf(struct ipc_shm_raw_region *root_raw, struct
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	unsigned int offset = sizeof(struct ipc_shm_raw_smpl_buf);
 | 
						unsigned int offset = sizeof(struct ipc_shm_raw_smpl_buf);
 | 
				
			||||||
	offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
						offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
				
			||||||
	ENCDECDEBUG("encode: smpl_buf at offset %u\n", offset);
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
						fprintf(stderr, "encode: smpl_buf at offset %lu\n", (start - (uint8_t *)root_raw));
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
	offset += buffer_size * sizeof(uint16_t) * 2; /* samples */
 | 
						offset += buffer_size * sizeof(uint16_t) * 2; /* samples */
 | 
				
			||||||
	return offset;
 | 
						return offset;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -94,7 +102,9 @@ unsigned int ipc_shm_encode_stream(struct ipc_shm_raw_region *root_raw, struct i
 | 
				
			|||||||
	ptrdiff_t start = (ptrdiff_t)stream_raw;
 | 
						ptrdiff_t start = (ptrdiff_t)stream_raw;
 | 
				
			||||||
	unsigned int offset = sizeof(struct ipc_shm_raw_stream) + sizeof(uint32_t) * num_buffers;
 | 
						unsigned int offset = sizeof(struct ipc_shm_raw_stream) + sizeof(uint32_t) * num_buffers;
 | 
				
			||||||
	offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
						offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
				
			||||||
	ENCDECDEBUG("encode: stream at offset %lu\n", (start - (ptrdiff_t)root_raw));
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
						fprintf(stderr, "encode: stream at offset %lu\n", (start - (ptrdiff_t)root_raw));
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
	if (root_raw) {
 | 
						if (root_raw) {
 | 
				
			||||||
		stream_raw->num_buffers = num_buffers;
 | 
							stream_raw->num_buffers = num_buffers;
 | 
				
			||||||
		stream_raw->buffer_size = buffer_size;
 | 
							stream_raw->buffer_size = buffer_size;
 | 
				
			||||||
@@ -115,7 +125,9 @@ unsigned int ipc_shm_encode_channel(struct ipc_shm_raw_region *root_raw, struct
 | 
				
			|||||||
	uint8_t *start = (uint8_t *)chan_raw;
 | 
						uint8_t *start = (uint8_t *)chan_raw;
 | 
				
			||||||
	unsigned int offset = sizeof(struct ipc_shm_raw_channel);
 | 
						unsigned int offset = sizeof(struct ipc_shm_raw_channel);
 | 
				
			||||||
	offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
						offset = (((uintptr_t)offset + 7) & ~0x07ULL);
 | 
				
			||||||
	ENCDECDEBUG("encode: channel at offset %lu\n", (start - (uint8_t *)root_raw));
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
						fprintf(stderr, "encode: channel at offset %lu\n", (start - (uint8_t *)root_raw));
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
	if (root_raw)
 | 
						if (root_raw)
 | 
				
			||||||
		chan_raw->dl_buf_offset = (start + offset - (uint8_t *)root_raw);
 | 
							chan_raw->dl_buf_offset = (start + offset - (uint8_t *)root_raw);
 | 
				
			||||||
	offset += ipc_shm_encode_stream(root_raw, (struct ipc_shm_raw_stream *)(start + offset), num_buffers,
 | 
						offset += ipc_shm_encode_stream(root_raw, (struct ipc_shm_raw_stream *)(start + offset), num_buffers,
 | 
				
			||||||
@@ -140,7 +152,9 @@ unsigned int ipc_shm_encode_region(struct ipc_shm_raw_region *root_raw, uint32_t
 | 
				
			|||||||
	for (i = 0; i < num_chans; i++) {
 | 
						for (i = 0; i < num_chans; i++) {
 | 
				
			||||||
		if (root_raw)
 | 
							if (root_raw)
 | 
				
			||||||
			root_raw->chan_offset[i] = (start + offset - (uintptr_t)root_raw);
 | 
								root_raw->chan_offset[i] = (start + offset - (uintptr_t)root_raw);
 | 
				
			||||||
		ENCDECDEBUG("encode: channel %d chan_offset[i]=%lu\n", i, start + offset - (uintptr_t)root_raw);
 | 
					#ifdef ENCDECDEBUG
 | 
				
			||||||
 | 
							fprintf(stderr, "encode: channel %d chan_offset[i]=%u\n", i, ofs);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
		offset += ipc_shm_encode_channel(root_raw, (struct ipc_shm_raw_channel *)(start + offset), num_buffers,
 | 
							offset += ipc_shm_encode_channel(root_raw, (struct ipc_shm_raw_channel *)(start + offset), num_buffers,
 | 
				
			||||||
						 buffer_size);
 | 
											 buffer_size);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,21 +4,19 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
#include <limits.h>
 | 
					#include <limits.h>
 | 
				
			||||||
#include <pthread.h>
 | 
					//#include <pthread.h>
 | 
				
			||||||
#include <semaphore.h>
 | 
					#include <semaphore.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* RAW structures */
 | 
					/* RAW structures */
 | 
				
			||||||
@@ -29,9 +27,9 @@ struct ipc_shm_raw_smpl_buf {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct ipc_shm_raw_stream {
 | 
					struct ipc_shm_raw_stream {
 | 
				
			||||||
	pthread_mutex_t lock; /* protects this struct */
 | 
						pthread_mutex_t lock;
 | 
				
			||||||
	pthread_cond_t cf; /* signals fill to reader */
 | 
						pthread_cond_t cf;
 | 
				
			||||||
	pthread_cond_t ce; /* signals empty nbuf to writer */
 | 
						pthread_cond_t ce;
 | 
				
			||||||
	uint32_t num_buffers;
 | 
						uint32_t num_buffers;
 | 
				
			||||||
	uint32_t buffer_size; /* In samples */
 | 
						uint32_t buffer_size; /* In samples */
 | 
				
			||||||
	uint32_t read_next;
 | 
						uint32_t read_next;
 | 
				
			||||||
@@ -79,6 +77,8 @@ struct ipc_shm_region *ipc_shm_decode_region(void *tall_ctx, struct ipc_shm_raw_
 | 
				
			|||||||
//////////////////
 | 
					//////////////////
 | 
				
			||||||
// Master socket
 | 
					// Master socket
 | 
				
			||||||
//////////////////
 | 
					//////////////////
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define IPC_SOCK_PATH_PREFIX "/tmp/ipc_sock"
 | 
				
			||||||
#define IPC_SOCK_API_VERSION 1
 | 
					#define IPC_SOCK_API_VERSION 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* msg_type */
 | 
					/* msg_type */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
#include <osmocom/core/application.h>
 | 
					#include <osmocom/core/application.h>
 | 
				
			||||||
@@ -31,6 +29,7 @@ extern "C" {
 | 
				
			|||||||
#include "../uhd/UHDDevice.h"
 | 
					#include "../uhd/UHDDevice.h"
 | 
				
			||||||
#include "uhdwrap.h"
 | 
					#include "uhdwrap.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "trx_vty.h"
 | 
				
			||||||
#include "Logger.h"
 | 
					#include "Logger.h"
 | 
				
			||||||
#include "Threads.h"
 | 
					#include "Threads.h"
 | 
				
			||||||
#include "Utils.h"
 | 
					#include "Utils.h"
 | 
				
			||||||
@@ -155,7 +154,7 @@ extern "C" int32_t uhdwrap_write(void *dev, uint32_t num_chans, bool *underrun)
 | 
				
			|||||||
	uhd_wrap *d = (uhd_wrap *)dev;
 | 
						uhd_wrap *d = (uhd_wrap *)dev;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	uint64_t timestamp;
 | 
						uint64_t timestamp;
 | 
				
			||||||
	int32_t len = -1;
 | 
						int32_t len;
 | 
				
			||||||
	for (uint32_t i = 0; i < num_chans; i++) {
 | 
						for (uint32_t i = 0; i < num_chans; i++) {
 | 
				
			||||||
		len = ipc_shm_read(ios_tx_to_device[i], (uint16_t *)&d->wrap_tx_buffs[i].front(), 5000, ×tamp, 1);
 | 
							len = ipc_shm_read(ios_tx_to_device[i], (uint16_t *)&d->wrap_tx_buffs[i].front(), 5000, ×tamp, 1);
 | 
				
			||||||
		if (len < 0)
 | 
							if (len < 0)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,14 +4,12 @@
 | 
				
			|||||||
*
 | 
					*
 | 
				
			||||||
* SPDX-License-Identifier: 0BSD
 | 
					* SPDX-License-Identifier: 0BSD
 | 
				
			||||||
*
 | 
					*
 | 
				
			||||||
* Permission to use, copy, modify, and/or distribute this software for any purpose
 | 
					    Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
 | 
				
			||||||
* with or without fee is hereby granted.THE SOFTWARE IS PROVIDED "AS IS" AND THE
 | 
					    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
				
			||||||
* AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
 | 
					    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 | 
				
			||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
 | 
					    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 | 
				
			||||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
					    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 | 
				
			||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 | 
					    PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
 | 
					 | 
				
			||||||
* USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
					 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#ifndef IPC_UHDWRAP_H
 | 
					#ifndef IPC_UHDWRAP_H
 | 
				
			||||||
#define IPC_UHDWRAP_H
 | 
					#define IPC_UHDWRAP_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,6 +23,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <map>
 | 
					#include <map>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "trx_vty.h"
 | 
				
			||||||
#include "Logger.h"
 | 
					#include "Logger.h"
 | 
				
			||||||
#include "Threads.h"
 | 
					#include "Threads.h"
 | 
				
			||||||
#include "LMSDevice.h"
 | 
					#include "LMSDevice.h"
 | 
				
			||||||
@@ -31,7 +32,6 @@
 | 
				
			|||||||
#include <lime/LimeSuite.h>
 | 
					#include <lime/LimeSuite.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
#include "trx_vty.h"
 | 
					 | 
				
			||||||
#include "osmo_signal.h"
 | 
					#include "osmo_signal.h"
 | 
				
			||||||
#include <osmocom/core/utils.h>
 | 
					#include <osmocom/core/utils.h>
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -40,6 +40,8 @@ extern "C" {
 | 
				
			|||||||
#include "config.h"
 | 
					#include "config.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					using namespace std;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MAX_ANTENNA_LIST_SIZE 10
 | 
					#define MAX_ANTENNA_LIST_SIZE 10
 | 
				
			||||||
#define GSM_CARRIER_BW 270000.0 /* 270kHz */
 | 
					#define GSM_CARRIER_BW 270000.0 /* 270kHz */
 | 
				
			||||||
#define LMS_MIN_BW_SUPPORTED 2.5e6 /* 2.5mHz, minimum supported by LMS */
 | 
					#define LMS_MIN_BW_SUPPORTED 2.5e6 /* 2.5mHz, minimum supported by LMS */
 | 
				
			||||||
@@ -83,20 +85,27 @@ static const std::map<enum lms_dev_type, struct dev_desc> dev_param_map {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef std::tuple<lms_dev_type, enum gsm_band> dev_band_key;
 | 
					typedef std::tuple<lms_dev_type, enum gsm_band> dev_band_key;
 | 
				
			||||||
 | 
					/* Maximum LimeSuite Tx Gain which can be set/used without distorting the output
 | 
				
			||||||
 | 
					 * signal, and the resulting real output power measured when that gain is used.
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					struct dev_band_desc {
 | 
				
			||||||
 | 
						double nom_lms_tx_gain;  /* dB */
 | 
				
			||||||
 | 
						double nom_out_tx_power; /* dBm */
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
typedef std::map<dev_band_key, dev_band_desc>::const_iterator dev_band_map_it;
 | 
					typedef std::map<dev_band_key, dev_band_desc>::const_iterator dev_band_map_it;
 | 
				
			||||||
static const std::map<dev_band_key, dev_band_desc> dev_band_nom_power_param_map {
 | 
					static const std::map<dev_band_key, dev_band_desc> dev_band_nom_power_param_map {
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_850),	{ 73.0, 11.2,  -6.0  } },
 | 
						{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_850),	{ 73.0, 11.2 } },
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_900),	{ 73.0, 10.8,  -6.0  } },
 | 
						{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_900),	{ 73.0, 10.8 } },
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_1800),	{ 65.0, -3.5,  -17.0 } }, /* FIXME: OS#4583: 1800Mhz is failing above TxGain=65, which is around -3.5dBm (already < 0 dBm) */
 | 
						{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_1800),	{ 65.0, -3.5 } }, /* FIXME: OS#4583: 1800Mhz is failing above TxGain=65, which is around -3.5dBm (already < 0 dBm) */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_1900),	{ 73.0, 1.7,   -17.0 } }, /* FIXME: OS#4583: 1900MHz is failing in all TxGain values */
 | 
						{ std::make_tuple(LMS_DEV_SDR_USB, GSM_BAND_1900),	{ 73.0, 1.7 } }, /* FIXME: OS#4583: 1900MHz is failing in all TxGain values */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_850),	{ 66.0, 3.1,   -6.0  } }, /* FIXME: OS#4583: Ensure BAND2 is used at startup */
 | 
						{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_850),	{ 66.0, 3.1 } }, /* FIXME: OS#4583: Ensure BAND2 is used at startup */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_900),	{ 66.0, 2.8,   -6.0  } }, /* FIXME: OS#4583: Ensure BAND2 is used at startup */
 | 
						{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_900),	{ 66.0, 2.8 } }, /* FIXME: OS#4583: Ensure BAND2 is used at startup */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_1800),	{ 66.0, -11.6, -17.0 } }, /* OS#4583: Any of BAND1 or BAND2 is fine */
 | 
						{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_1800),	{ 66.0, -11.6 } }, /* OS#4583: Any of BAND1 or BAND2 is fine */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_1900),	{ 66.0, -9.2,  -17.0 } }, /* FIXME: OS#4583: Ensure BAND1 is used at startup */
 | 
						{ std::make_tuple(LMS_DEV_SDR_MINI, GSM_BAND_1900),	{ 66.0, -9.2 } }, /* FIXME: OS#4583: Ensure BAND1 is used at startup */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_850),	{ 71.0, 6.8,   -6.0  } },
 | 
						{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_850),	{ 71.0, 6.8 } },
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_900),	{ 71.0, 6.8,   -6.0  } },
 | 
						{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_900),	{ 71.0, 6.8 } },
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_1800),	{ 65.0, -10.5, -17.0 } }, /* OS#4583: TxGain=71 (-4.4dBm) FAIL rms phase errors ~10° */
 | 
						{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_1800),	{ 65.0, -10.5 } }, /* OS#4583: TxGain=71 (-4.4dBm) FAIL rms phase errors ~10° */
 | 
				
			||||||
	{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_1900),	{ 71.0, -6.3,  -17.0 } }, /* FIXME: OS#4583: all FAIL, BAND1/BAND2 rms phase errors >23° */
 | 
						{ std::make_tuple(LMS_DEV_NET_MICRO, GSM_BAND_1900),	{ 71.0, -6.3 } }, /* FIXME: OS#4583: all FAIL, BAND1/BAND2 rms phase errors >23° */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* So far measurements done for B210 show really close to linear relationship
 | 
					/* So far measurements done for B210 show really close to linear relationship
 | 
				
			||||||
@@ -135,8 +144,7 @@ LMSDevice::LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t c
 | 
				
			|||||||
		     const std::vector<std::string>& tx_paths,
 | 
							     const std::vector<std::string>& tx_paths,
 | 
				
			||||||
		     const std::vector<std::string>& rx_paths):
 | 
							     const std::vector<std::string>& rx_paths):
 | 
				
			||||||
	RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
 | 
						RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
 | 
				
			||||||
		     m_lms_dev(NULL), started(false), band_ass_curr_sess(false), band((enum gsm_band)0),
 | 
						m_lms_dev(NULL), started(false), band((enum gsm_band)0), m_dev_type(LMS_DEV_UNKNOWN)
 | 
				
			||||||
		     m_dev_type(LMS_DEV_UNKNOWN)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	LOGC(DDEV, INFO) << "creating LMS device...";
 | 
						LOGC(DDEV, INFO) << "creating LMS device...";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -202,7 +210,7 @@ static void print_range(const char* name, lms_range_t *range)
 | 
				
			|||||||
int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::string &args)
 | 
					int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::string &args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	unsigned int i, j;
 | 
						unsigned int i, j;
 | 
				
			||||||
	std::vector<std::string> filters;
 | 
						std::vector<string> filters;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	filters = comma_delimited_to_vector(args.c_str());
 | 
						filters = comma_delimited_to_vector(args.c_str());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -223,10 +231,15 @@ int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::str
 | 
				
			|||||||
	return -1;
 | 
						return -1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void LMSDevice::assign_band_desc(enum gsm_band req_band)
 | 
					void LMSDevice::get_dev_band_desc(dev_band_desc& desc)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	dev_band_map_it it;
 | 
						dev_band_map_it it;
 | 
				
			||||||
 | 
						enum gsm_band req_band = band;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (req_band == 0) {
 | 
				
			||||||
 | 
							LOGC(DDEV, ERROR) << "Nominal Tx Power requested before Tx Frequency was set! Providing band 900 by default... ";
 | 
				
			||||||
 | 
							req_band = GSM_BAND_900;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	it = dev_band_nom_power_param_map.find(dev_band_key(m_dev_type, req_band));
 | 
						it = dev_band_nom_power_param_map.find(dev_band_key(m_dev_type, req_band));
 | 
				
			||||||
	if (it == dev_band_nom_power_param_map.end()) {
 | 
						if (it == dev_band_nom_power_param_map.end()) {
 | 
				
			||||||
		dev_desc desc = dev_param_map.at(m_dev_type);
 | 
							dev_desc desc = dev_param_map.at(m_dev_type);
 | 
				
			||||||
@@ -235,33 +248,8 @@ void LMSDevice::assign_band_desc(enum gsm_band req_band)
 | 
				
			|||||||
				    << ", using LimeSDR-USB ones as fallback";
 | 
									    << ", using LimeSDR-USB ones as fallback";
 | 
				
			||||||
		it = dev_band_nom_power_param_map.find(dev_band_key(LMS_DEV_SDR_USB, req_band));
 | 
							it = dev_band_nom_power_param_map.find(dev_band_key(LMS_DEV_SDR_USB, req_band));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	OSMO_ASSERT(it != dev_band_nom_power_param_map.end());
 | 
						OSMO_ASSERT(it != dev_band_nom_power_param_map.end())
 | 
				
			||||||
	band_desc = it->second;
 | 
						desc = it->second;
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool LMSDevice::set_band(enum gsm_band req_band)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	if (band_ass_curr_sess && req_band != band) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ALERT) << "Requesting band " << gsm_band_name(req_band)
 | 
					 | 
				
			||||||
				  << " different from previous band " << gsm_band_name(band);
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (req_band != band) {
 | 
					 | 
				
			||||||
		band = req_band;
 | 
					 | 
				
			||||||
		assign_band_desc(band);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	band_ass_curr_sess = true;
 | 
					 | 
				
			||||||
	return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void LMSDevice::get_dev_band_desc(dev_band_desc& desc)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	if (band == 0) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ERROR) << "Power parameters requested before Tx Frequency was set! Providing band 900 by default...";
 | 
					 | 
				
			||||||
		assign_band_desc(GSM_BAND_900);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	desc = band_desc;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
 | 
					int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
 | 
				
			||||||
@@ -277,12 +265,11 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	LMS_RegisterLogHandler(&lms_log_callback);
 | 
						LMS_RegisterLogHandler(&lms_log_callback);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if ((rc = LMS_GetDeviceList(NULL)) < 0)
 | 
						if ((n = LMS_GetDeviceList(NULL)) < 0)
 | 
				
			||||||
		LOGC(DDEV, ERROR) << "LMS_GetDeviceList(NULL) failed";
 | 
							LOGC(DDEV, ERROR) << "LMS_GetDeviceList(NULL) failed";
 | 
				
			||||||
	LOGC(DDEV, INFO) << "Devices found: " << rc;
 | 
						LOGC(DDEV, INFO) << "Devices found: " << n;
 | 
				
			||||||
	if (rc < 1)
 | 
						if (n < 1)
 | 
				
			||||||
	    return -1;
 | 
						    return -1;
 | 
				
			||||||
	n = rc;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	info_list = new lms_info_str_t[n];
 | 
						info_list = new lms_info_str_t[n];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -469,8 +456,6 @@ bool LMSDevice::stop()
 | 
				
			|||||||
		LMS_DestroyStream(m_lms_dev, &m_lms_stream_rx[i]);
 | 
							LMS_DestroyStream(m_lms_dev, &m_lms_stream_rx[i]);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	band_ass_curr_sess = false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	started = false;
 | 
						started = false;
 | 
				
			||||||
	return true;
 | 
						return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -576,21 +561,6 @@ double LMSDevice::setRxGain(double dB, size_t chan)
 | 
				
			|||||||
	return rx_gains[chan];
 | 
						return rx_gains[chan];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double LMSDevice::rssiOffset(size_t chan)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	double rssiOffset;
 | 
					 | 
				
			||||||
	dev_band_desc desc;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (chan >= rx_gains.size()) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
 | 
					 | 
				
			||||||
		return 0.0f;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	get_dev_band_desc(desc);
 | 
					 | 
				
			||||||
	rssiOffset = rx_gains[chan] + desc.rxgain2rssioffset_rel;
 | 
					 | 
				
			||||||
	return rssiOffset;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
double LMSDevice::setPowerAttenuation(int atten, size_t chan)
 | 
					double LMSDevice::setPowerAttenuation(int atten, size_t chan)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	double tx_power, dB;
 | 
						double tx_power, dB;
 | 
				
			||||||
@@ -1020,38 +990,25 @@ bool LMSDevice::setTxFreq(double wFreq, size_t chan)
 | 
				
			|||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!set_band(req_band))
 | 
						if (band != 0 && req_band != band) {
 | 
				
			||||||
 | 
							LOGCHAN(chan, DDEV, ALERT) << "Requesting Tx Frequency " << wFreq
 | 
				
			||||||
 | 
										   << " Hz different from previous band " << gsm_band_name(band);
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (LMS_SetLOFrequency(m_lms_dev, LMS_CH_TX, chan, wFreq) < 0) {
 | 
						if (LMS_SetLOFrequency(m_lms_dev, LMS_CH_TX, chan, wFreq) < 0) {
 | 
				
			||||||
		LOGCHAN(chan, DDEV, ERROR) << "Error setting Tx Freq to " << wFreq << " Hz";
 | 
							LOGCHAN(chan, DDEV, ERROR) << "Error setting Tx Freq to " << wFreq << " Hz";
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						band = req_band;
 | 
				
			||||||
	return true;
 | 
						return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool LMSDevice::setRxFreq(double wFreq, size_t chan)
 | 
					bool LMSDevice::setRxFreq(double wFreq, size_t chan)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	uint16_t req_arfcn;
 | 
					 | 
				
			||||||
	enum gsm_band req_band;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	LOGCHAN(chan, DDEV, NOTICE) << "Setting Rx Freq to " << wFreq << " Hz";
 | 
						LOGCHAN(chan, DDEV, NOTICE) << "Setting Rx Freq to " << wFreq << " Hz";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	req_arfcn = gsm_freq102arfcn(wFreq / 1000 / 100, 1);
 | 
					 | 
				
			||||||
	if (req_arfcn == 0xffff) {
 | 
					 | 
				
			||||||
		LOGCHAN(chan, DDEV, ALERT) << "Unknown ARFCN for Rx Frequency " << wFreq / 1000 << " kHz";
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	if (gsm_arfcn2band_rc(req_arfcn, &req_band) < 0) {
 | 
					 | 
				
			||||||
		LOGCHAN(chan, DDEV, ALERT) << "Unknown GSM band for Rx Frequency " << wFreq
 | 
					 | 
				
			||||||
					   << " Hz (ARFCN " << req_arfcn << " )";
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (!set_band(req_band))
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (LMS_SetLOFrequency(m_lms_dev, LMS_CH_RX, chan, wFreq) < 0) {
 | 
						if (LMS_SetLOFrequency(m_lms_dev, LMS_CH_RX, chan, wFreq) < 0) {
 | 
				
			||||||
		LOGCHAN(chan, DDEV, ERROR) << "Error setting Rx Freq to " << wFreq << " Hz";
 | 
							LOGCHAN(chan, DDEV, ERROR) << "Error setting Rx Freq to " << wFreq << " Hz";
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,22 +52,7 @@ enum lms_dev_type {
 | 
				
			|||||||
	LMS_DEV_UNKNOWN,
 | 
						LMS_DEV_UNKNOWN,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct dev_band_desc {
 | 
					struct dev_band_desc;
 | 
				
			||||||
	/* Maximum LimeSuite Tx Gain which can be set/used without distorting
 | 
					 | 
				
			||||||
	   the output * signal, and the resulting real output power measured
 | 
					 | 
				
			||||||
	   when that gain is used.
 | 
					 | 
				
			||||||
	 */
 | 
					 | 
				
			||||||
	double nom_lms_tx_gain;  /* dB */
 | 
					 | 
				
			||||||
	double nom_out_tx_power; /* dBm */
 | 
					 | 
				
			||||||
	/* Factor used to infer base real RSSI offset on the Rx path based on current
 | 
					 | 
				
			||||||
	   configured RxGain. The resulting rssiOffset is added to the per burst
 | 
					 | 
				
			||||||
	   calculated energy in upper layers. These values were empirically
 | 
					 | 
				
			||||||
	   found and may change based on multiple factors, see OS#4468.
 | 
					 | 
				
			||||||
	   Correct measured values only provided for LimeSDR-USB so far.
 | 
					 | 
				
			||||||
	   rssiOffset = rxGain + rxgain2rssioffset_rel;
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	double rxgain2rssioffset_rel; /* dB */
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** A class to handle a LimeSuite supported device */
 | 
					/** A class to handle a LimeSuite supported device */
 | 
				
			||||||
class LMSDevice:public RadioDevice {
 | 
					class LMSDevice:public RadioDevice {
 | 
				
			||||||
@@ -87,9 +72,7 @@ private:
 | 
				
			|||||||
	TIMESTAMP ts_initial, ts_offset;
 | 
						TIMESTAMP ts_initial, ts_offset;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	std::vector<double> tx_gains, rx_gains;
 | 
						std::vector<double> tx_gains, rx_gains;
 | 
				
			||||||
	bool band_ass_curr_sess; /* true if  "band" was set after last POWEROFF */
 | 
					 | 
				
			||||||
	enum gsm_band band;
 | 
						enum gsm_band band;
 | 
				
			||||||
	struct dev_band_desc band_desc;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	enum lms_dev_type m_dev_type;
 | 
						enum lms_dev_type m_dev_type;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -102,8 +85,7 @@ private:
 | 
				
			|||||||
	void update_stream_stats_tx(size_t chan, bool *underrun);
 | 
						void update_stream_stats_tx(size_t chan, bool *underrun);
 | 
				
			||||||
	bool do_clock_src_freq(enum ReferenceType ref, double freq);
 | 
						bool do_clock_src_freq(enum ReferenceType ref, double freq);
 | 
				
			||||||
	void get_dev_band_desc(dev_band_desc& desc);
 | 
						void get_dev_band_desc(dev_band_desc& desc);
 | 
				
			||||||
	bool set_band(enum gsm_band req_band);
 | 
					
 | 
				
			||||||
	void assign_band_desc(enum gsm_band req_band);
 | 
					 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/** Object constructor */
 | 
						/** Object constructor */
 | 
				
			||||||
@@ -191,7 +173,6 @@ public:
 | 
				
			|||||||
	/** return minimum Rx Gain **/
 | 
						/** return minimum Rx Gain **/
 | 
				
			||||||
	double minRxGain(void);
 | 
						double minRxGain(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	double rssiOffset(size_t chan);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	double setPowerAttenuation(int atten, size_t chan);
 | 
						double setPowerAttenuation(int atten, size_t chan);
 | 
				
			||||||
	double getPowerAttenuation(size_t chan = 0);
 | 
						double getPowerAttenuation(size_t chan = 0);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
include $(top_srcdir)/Makefile.common
 | 
					include $(top_srcdir)/Makefile.common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
					AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
				
			||||||
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LMS_CFLAGS)
 | 
					AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LMS_CFLAGS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
noinst_HEADERS = LMSDevice.h
 | 
					noinst_HEADERS = LMSDevice.h
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
include $(top_srcdir)/Makefile.common
 | 
					include $(top_srcdir)/Makefile.common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
					AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
				
			||||||
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(UHD_CFLAGS)
 | 
					AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(UHD_CFLAGS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
noinst_HEADERS = UHDDevice.h
 | 
					noinst_HEADERS = UHDDevice.h
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -130,22 +130,29 @@ static const std::map<dev_key, dev_desc> dev_param_map {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef std::tuple<uhd_dev_type, enum gsm_band> dev_band_key;
 | 
					typedef std::tuple<uhd_dev_type, enum gsm_band> dev_band_key;
 | 
				
			||||||
 | 
					/* Maximum UHD Tx Gain which can be set/used without distorting the
 | 
				
			||||||
 | 
					   output signal, and the resulting real output power measured when that
 | 
				
			||||||
 | 
					   gain is used. Correct measured values only provided for B210 so far. */
 | 
				
			||||||
 | 
					struct dev_band_desc {
 | 
				
			||||||
 | 
						double nom_uhd_tx_gain;  /* dB */
 | 
				
			||||||
 | 
						double nom_out_tx_power; /* dBm */
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
typedef std::map<dev_band_key, dev_band_desc>::const_iterator dev_band_map_it;
 | 
					typedef std::map<dev_band_key, dev_band_desc>::const_iterator dev_band_map_it;
 | 
				
			||||||
static const std::map<dev_band_key, dev_band_desc> dev_band_nom_power_param_map {
 | 
					static const std::map<dev_band_key, dev_band_desc> dev_band_nom_power_param_map {
 | 
				
			||||||
	{ std::make_tuple(B200, GSM_BAND_850),	{ 89.75, 13.3, -7.5  } },
 | 
						{ std::make_tuple(B200, GSM_BAND_850),	{ 89.75, 13.3 } },
 | 
				
			||||||
	{ std::make_tuple(B200, GSM_BAND_900),	{ 89.75, 13.3, -7.5  } },
 | 
						{ std::make_tuple(B200, GSM_BAND_900),	{ 89.75, 13.3 } },
 | 
				
			||||||
	{ std::make_tuple(B200, GSM_BAND_1800),	{ 89.75, 7.5,  -11.0 } },
 | 
						{ std::make_tuple(B200, GSM_BAND_1800),	{ 89.75, 7.5 } },
 | 
				
			||||||
	{ std::make_tuple(B200, GSM_BAND_1900),	{ 89.75, 7.7,  -11.0 } },
 | 
						{ std::make_tuple(B200, GSM_BAND_1900),	{ 89.75, 7.7 } },
 | 
				
			||||||
	{ std::make_tuple(B210, GSM_BAND_850),	{ 89.75, 13.3, -7.5  } },
 | 
						{ std::make_tuple(B210, GSM_BAND_850),	{ 89.75, 13.3 } },
 | 
				
			||||||
	{ std::make_tuple(B210, GSM_BAND_900),	{ 89.75, 13.3, -7.5  } },
 | 
						{ std::make_tuple(B210, GSM_BAND_900),	{ 89.75, 13.3 } },
 | 
				
			||||||
	{ std::make_tuple(B210, GSM_BAND_1800),	{ 89.75, 7.5,  -11.0 } },
 | 
						{ std::make_tuple(B210, GSM_BAND_1800),	{ 89.75, 7.5 } },
 | 
				
			||||||
	{ std::make_tuple(B210, GSM_BAND_1900),	{ 89.75, 7.7,  -11.0 } },
 | 
						{ std::make_tuple(B210, GSM_BAND_1900),	{ 89.75, 7.7 } },
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void *async_event_loop(uhd_device *dev)
 | 
					void *async_event_loop(uhd_device *dev)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	set_selfthread_name("UHDAsyncEvent");
 | 
						set_selfthread_name("UHDAsyncEvent");
 | 
				
			||||||
	osmo_cpu_sched_vty_apply_localthread();
 | 
						OSMO_ASSERT(osmo_cpu_sched_vty_apply_localthread() == 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	while (1) {
 | 
						while (1) {
 | 
				
			||||||
		dev->recv_async_msg();
 | 
							dev->recv_async_msg();
 | 
				
			||||||
@@ -225,7 +232,7 @@ uhd_device::uhd_device(size_t tx_sps, size_t rx_sps,
 | 
				
			|||||||
		       const std::vector<std::string>& tx_paths,
 | 
							       const std::vector<std::string>& tx_paths,
 | 
				
			||||||
		       const std::vector<std::string>& rx_paths)
 | 
							       const std::vector<std::string>& rx_paths)
 | 
				
			||||||
	: RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
 | 
						: RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
 | 
				
			||||||
	  rx_gain_min(0.0), rx_gain_max(0.0), band_ass_curr_sess(false),
 | 
						  rx_gain_min(0.0), rx_gain_max(0.0),
 | 
				
			||||||
	  band((enum gsm_band)0), tx_spp(0), rx_spp(0),
 | 
						  band((enum gsm_band)0), tx_spp(0), rx_spp(0),
 | 
				
			||||||
	  started(false), aligned(false), drop_cnt(0),
 | 
						  started(false), aligned(false), drop_cnt(0),
 | 
				
			||||||
	  prev_ts(0,0), ts_initial(0), ts_offset(0), async_event_thrd(NULL)
 | 
						  prev_ts(0,0), ts_initial(0), ts_offset(0), async_event_thrd(NULL)
 | 
				
			||||||
@@ -240,45 +247,25 @@ uhd_device::~uhd_device()
 | 
				
			|||||||
		delete rx_buffers[i];
 | 
							delete rx_buffers[i];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void uhd_device::assign_band_desc(enum gsm_band req_band)
 | 
					void uhd_device::get_dev_band_desc(dev_band_desc& desc)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	dev_band_map_it it;
 | 
						dev_band_map_it it;
 | 
				
			||||||
 | 
						enum gsm_band req_band = band;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (req_band == 0) {
 | 
				
			||||||
 | 
							LOGC(DDEV, ERROR) << "Nominal Tx Power requested before Tx Frequency was set! Providing band 900 by default... ";
 | 
				
			||||||
 | 
							req_band = GSM_BAND_900;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	it = dev_band_nom_power_param_map.find(dev_band_key(dev_type, req_band));
 | 
						it = dev_band_nom_power_param_map.find(dev_band_key(dev_type, req_band));
 | 
				
			||||||
	if (it == dev_band_nom_power_param_map.end()) {
 | 
						if (it == dev_band_nom_power_param_map.end()) {
 | 
				
			||||||
		dev_desc desc = dev_param_map.at(dev_key(dev_type, tx_sps, rx_sps));
 | 
							dev_desc desc = dev_param_map.at(dev_key(dev_type, tx_sps, rx_sps));
 | 
				
			||||||
		LOGC(DDEV, ERROR) << "No Power parameters exist for device "
 | 
							LOGC(DDEV, ERROR) << "No Tx Power measurements exist for device "
 | 
				
			||||||
				    << desc.str << " on band " << gsm_band_name(req_band)
 | 
									    << desc.str << " on band " << gsm_band_name(req_band)
 | 
				
			||||||
				    << ", using B210 ones as fallback";
 | 
									    << ", using B210 ones as fallback";
 | 
				
			||||||
		it = dev_band_nom_power_param_map.find(dev_band_key(B210, req_band));
 | 
							it = dev_band_nom_power_param_map.find(dev_band_key(B210, req_band));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	OSMO_ASSERT(it != dev_band_nom_power_param_map.end())
 | 
						OSMO_ASSERT(it != dev_band_nom_power_param_map.end())
 | 
				
			||||||
	band_desc = it->second;
 | 
						desc = it->second;
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool uhd_device::set_band(enum gsm_band req_band)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	if (band_ass_curr_sess && req_band != band) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ALERT) << "Requesting band " << gsm_band_name(req_band)
 | 
					 | 
				
			||||||
				  << " different from previous band " << gsm_band_name(band);
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (req_band != band) {
 | 
					 | 
				
			||||||
		band = req_band;
 | 
					 | 
				
			||||||
		assign_band_desc(band);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	band_ass_curr_sess = true;
 | 
					 | 
				
			||||||
	return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void uhd_device::get_dev_band_desc(dev_band_desc& desc)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	if (band == 0) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ERROR) << "Power parameters requested before Tx Frequency was set! Providing band 900 by default...";
 | 
					 | 
				
			||||||
		assign_band_desc(GSM_BAND_900);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	desc = band_desc;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void uhd_device::init_gains()
 | 
					void uhd_device::init_gains()
 | 
				
			||||||
@@ -373,21 +360,6 @@ double uhd_device::getRxGain(size_t chan)
 | 
				
			|||||||
	return rx_gains[chan];
 | 
						return rx_gains[chan];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double uhd_device::rssiOffset(size_t chan)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	double rssiOffset;
 | 
					 | 
				
			||||||
	dev_band_desc desc;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (chan >= rx_gains.size()) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
 | 
					 | 
				
			||||||
		return 0.0f;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	get_dev_band_desc(desc);
 | 
					 | 
				
			||||||
	rssiOffset = rx_gains[chan] + desc.rxgain2rssioffset_rel;
 | 
					 | 
				
			||||||
	return rssiOffset;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
double uhd_device::setPowerAttenuation(int atten, size_t chan) {
 | 
					double uhd_device::setPowerAttenuation(int atten, size_t chan) {
 | 
				
			||||||
	double tx_power, db;
 | 
						double tx_power, db;
 | 
				
			||||||
	dev_band_desc desc;
 | 
						dev_band_desc desc;
 | 
				
			||||||
@@ -551,7 +523,6 @@ void uhd_device::set_channels(bool swap)
 | 
				
			|||||||
int uhd_device::open(const std::string &args, int ref, bool swap_channels)
 | 
					int uhd_device::open(const std::string &args, int ref, bool swap_channels)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	const char *refstr;
 | 
						const char *refstr;
 | 
				
			||||||
	int clock_lock_attempts = 15;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Register msg handler. Different APIs depending on UHD version */
 | 
						/* Register msg handler. Different APIs depending on UHD version */
 | 
				
			||||||
#ifdef USE_UHD_3_11
 | 
					#ifdef USE_UHD_3_11
 | 
				
			||||||
@@ -624,19 +595,6 @@ int uhd_device::open(const std::string &args, int ref, bool swap_channels)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	usrp_dev->set_clock_source(refstr);
 | 
						usrp_dev->set_clock_source(refstr);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	std::vector<std::string> sensor_names = usrp_dev->get_mboard_sensor_names();
 | 
					 | 
				
			||||||
	if (std::find(sensor_names.begin(), sensor_names.end(), "ref_locked") != sensor_names.end()) {
 | 
					 | 
				
			||||||
		LOGC(DDEV, INFO) << "Waiting for clock reference lock (max " << clock_lock_attempts << "s)..." << std::flush;
 | 
					 | 
				
			||||||
		while (!usrp_dev->get_mboard_sensor("ref_locked", 0).to_bool() && clock_lock_attempts--)
 | 
					 | 
				
			||||||
			sleep(1);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		if (!clock_lock_attempts) {
 | 
					 | 
				
			||||||
			LOGC(DDEV, ALERT) << "Locking to external 10Mhz failed!";
 | 
					 | 
				
			||||||
			return -1;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	LOGC(DDEV, INFO) << "Selected clock source is " << usrp_dev->get_clock_source(0);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	try {
 | 
						try {
 | 
				
			||||||
		set_rates();
 | 
							set_rates();
 | 
				
			||||||
        } catch (const std::exception &e) {
 | 
					        } catch (const std::exception &e) {
 | 
				
			||||||
@@ -796,8 +754,6 @@ bool uhd_device::stop()
 | 
				
			|||||||
	for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
						for (size_t i = 0; i < rx_buffers.size(); i++)
 | 
				
			||||||
		rx_buffers[i]->reset();
 | 
							rx_buffers[i]->reset();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	band_ass_curr_sess = false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	started = false;
 | 
						started = false;
 | 
				
			||||||
	return true;
 | 
						return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -1096,40 +1052,27 @@ bool uhd_device::setTxFreq(double wFreq, size_t chan)
 | 
				
			|||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!set_band(req_band))
 | 
						if (band != 0 && req_band != band) {
 | 
				
			||||||
 | 
							LOGCHAN(chan, DDEV, ALERT) << "Requesting Tx Frequency " << wFreq
 | 
				
			||||||
 | 
										   << " Hz different from previous band " << gsm_band_name(band);
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!set_freq(wFreq, chan, true))
 | 
						if (!set_freq(wFreq, chan, true))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						band = req_band;
 | 
				
			||||||
	return true;
 | 
						return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool uhd_device::setRxFreq(double wFreq, size_t chan)
 | 
					bool uhd_device::setRxFreq(double wFreq, size_t chan)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	uint16_t req_arfcn;
 | 
					 | 
				
			||||||
	enum gsm_band req_band;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (chan >= rx_freqs.size()) {
 | 
						if (chan >= rx_freqs.size()) {
 | 
				
			||||||
		LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
 | 
							LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	ScopedLock lock(tune_lock);
 | 
						ScopedLock lock(tune_lock);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	req_arfcn = gsm_freq102arfcn(wFreq / 1000 / 100, 1);
 | 
					 | 
				
			||||||
	if (req_arfcn == 0xffff) {
 | 
					 | 
				
			||||||
		LOGCHAN(chan, DDEV, ALERT) << "Unknown ARFCN for Rx Frequency " << wFreq / 1000 << " kHz";
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	if (gsm_arfcn2band_rc(req_arfcn, &req_band) < 0) {
 | 
					 | 
				
			||||||
		LOGCHAN(chan, DDEV, ALERT) << "Unknown GSM band for Rx Frequency " << wFreq
 | 
					 | 
				
			||||||
					   << " Hz (ARFCN " << req_arfcn << " )";
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (!set_band(req_band))
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return set_freq(wFreq, chan, false);
 | 
						return set_freq(wFreq, chan, false);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -56,20 +56,7 @@ enum uhd_dev_type {
 | 
				
			|||||||
	LIMESDR,
 | 
						LIMESDR,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct dev_band_desc {
 | 
					struct dev_band_desc;
 | 
				
			||||||
	/* Maximum UHD Tx Gain which can be set/used without distorting the
 | 
					 | 
				
			||||||
	   output signal, and the resulting real output power measured when that
 | 
					 | 
				
			||||||
	   gain is used. Correct measured values only provided for B210 so far. */
 | 
					 | 
				
			||||||
	double nom_uhd_tx_gain;  /* dB */
 | 
					 | 
				
			||||||
	double nom_out_tx_power; /* dBm */
 | 
					 | 
				
			||||||
	/* Factor used to infer base real RSSI offset on the Rx path based on current
 | 
					 | 
				
			||||||
	   configured RxGain. The resulting rssiOffset is added to the per burst
 | 
					 | 
				
			||||||
	   calculated energy in upper layers. These values were empirically
 | 
					 | 
				
			||||||
	   found and may change based on multiple factors, see OS#4468.
 | 
					 | 
				
			||||||
	   rssiOffset = rxGain + rxgain2rssioffset_rel;
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	double rxgain2rssioffset_rel; /* dB */
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
    uhd_device - UHD implementation of the Device interface. Timestamped samples
 | 
					    uhd_device - UHD implementation of the Device interface. Timestamped samples
 | 
				
			||||||
@@ -113,7 +100,6 @@ public:
 | 
				
			|||||||
	double getRxGain(size_t chan);
 | 
						double getRxGain(size_t chan);
 | 
				
			||||||
	double maxRxGain(void) { return rx_gain_max; }
 | 
						double maxRxGain(void) { return rx_gain_max; }
 | 
				
			||||||
	double minRxGain(void) { return rx_gain_min; }
 | 
						double minRxGain(void) { return rx_gain_min; }
 | 
				
			||||||
	double rssiOffset(size_t chan);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	double setPowerAttenuation(int atten, size_t chan);
 | 
						double setPowerAttenuation(int atten, size_t chan);
 | 
				
			||||||
	double getPowerAttenuation(size_t chan = 0);
 | 
						double getPowerAttenuation(size_t chan = 0);
 | 
				
			||||||
@@ -160,9 +146,7 @@ protected:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	std::vector<double> tx_gains, rx_gains;
 | 
						std::vector<double> tx_gains, rx_gains;
 | 
				
			||||||
	std::vector<double> tx_freqs, rx_freqs;
 | 
						std::vector<double> tx_freqs, rx_freqs;
 | 
				
			||||||
	bool band_ass_curr_sess; /* true if  "band" was set after last POWEROFF */
 | 
					 | 
				
			||||||
	enum gsm_band band;
 | 
						enum gsm_band band;
 | 
				
			||||||
	struct dev_band_desc band_desc;
 | 
					 | 
				
			||||||
	size_t tx_spp, rx_spp;
 | 
						size_t tx_spp, rx_spp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	bool started;
 | 
						bool started;
 | 
				
			||||||
@@ -192,8 +176,6 @@ protected:
 | 
				
			|||||||
	uhd::tune_request_t select_freq(double wFreq, size_t chan, bool tx);
 | 
						uhd::tune_request_t select_freq(double wFreq, size_t chan, bool tx);
 | 
				
			||||||
	bool set_freq(double freq, size_t chan, bool tx);
 | 
						bool set_freq(double freq, size_t chan, bool tx);
 | 
				
			||||||
	void get_dev_band_desc(dev_band_desc& desc);
 | 
						void get_dev_band_desc(dev_band_desc& desc);
 | 
				
			||||||
	bool set_band(enum gsm_band req_band);
 | 
					 | 
				
			||||||
	void assign_band_desc(enum gsm_band req_band);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	Thread *async_event_thrd;
 | 
						Thread *async_event_thrd;
 | 
				
			||||||
	Mutex tune_lock;
 | 
						Mutex tune_lock;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
include $(top_srcdir)/Makefile.common
 | 
					include $(top_srcdir)/Makefile.common
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
					AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/../common
 | 
				
			||||||
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(USRP_CFLAGS)
 | 
					AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(USRP_CFLAGS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
rev2dir = $(datadir)/usrp/rev2
 | 
					rev2dir = $(datadir)/usrp/rev2
 | 
				
			||||||
rev4dir = $(datadir)/usrp/rev4
 | 
					rev4dir = $(datadir)/usrp/rev4
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -174,8 +174,6 @@ private:
 | 
				
			|||||||
  /** return minimum Rx Gain **/
 | 
					  /** return minimum Rx Gain **/
 | 
				
			||||||
  double minRxGain(void);
 | 
					  double minRxGain(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  double rssiOffset(size_t chan) { return 0.0f;  } /* FIXME: not implemented */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  double setPowerAttenuation(int atten, size_t chan);
 | 
					  double setPowerAttenuation(int atten, size_t chan);
 | 
				
			||||||
  double getPowerAttenuation(size_t chan=0);
 | 
					  double getPowerAttenuation(size_t chan=0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef HAVE_CONFIG_H
 | 
					#ifdef HAVE_CONFIG_H
 | 
				
			||||||
@@ -140,8 +144,12 @@ int makeTransceiver(struct trx_ctx *trx, RadioInterface *radio)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	VectorFIFO *fifo;
 | 
						VectorFIFO *fifo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	transceiver = new Transceiver(&trx->cfg, GSM::Time(3,0), radio);
 | 
						transceiver = new Transceiver(trx->cfg.base_port, trx->cfg.bind_addr,
 | 
				
			||||||
	if (!transceiver->init()) {
 | 
								      trx->cfg.remote_addr, trx->cfg.tx_sps,
 | 
				
			||||||
 | 
								      trx->cfg.rx_sps, trx->cfg.num_chans, GSM::Time(3,0),
 | 
				
			||||||
 | 
								      radio, trx->cfg.rssi_offset, trx->cfg.stack_size);
 | 
				
			||||||
 | 
						if (!transceiver->init(trx->cfg.filler, trx->cfg.rtsc,
 | 
				
			||||||
 | 
							       trx->cfg.rach_delay, trx->cfg.egprs, trx->cfg.ext_rach)) {
 | 
				
			||||||
		LOG(ALERT) << "Failed to initialize transceiver";
 | 
							LOG(ALERT) << "Failed to initialize transceiver";
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -173,17 +181,6 @@ static void sig_handler(int signo)
 | 
				
			|||||||
		gshutdown = true;
 | 
							gshutdown = true;
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case SIGABRT:
 | 
						case SIGABRT:
 | 
				
			||||||
		/* in case of abort, we want to obtain a talloc report and
 | 
					 | 
				
			||||||
		 * then run default SIGABRT handler, who will generate coredump
 | 
					 | 
				
			||||||
		 * and abort the process. abort() should do this for us after we
 | 
					 | 
				
			||||||
		 * return, but program wouldn't exit if an external SIGABRT is
 | 
					 | 
				
			||||||
		 * received.
 | 
					 | 
				
			||||||
		 */
 | 
					 | 
				
			||||||
		talloc_report(tall_trx_ctx, stderr);
 | 
					 | 
				
			||||||
		talloc_report_full(tall_trx_ctx, stderr);
 | 
					 | 
				
			||||||
		signal(SIGABRT, SIG_DFL);
 | 
					 | 
				
			||||||
		raise(SIGABRT);
 | 
					 | 
				
			||||||
		break;
 | 
					 | 
				
			||||||
	case SIGUSR1:
 | 
						case SIGUSR1:
 | 
				
			||||||
		talloc_report(tall_trx_ctx, stderr);
 | 
							talloc_report(tall_trx_ctx, stderr);
 | 
				
			||||||
		talloc_report_full(tall_trx_ctx, stderr);
 | 
							talloc_report_full(tall_trx_ctx, stderr);
 | 
				
			||||||
@@ -249,13 +246,10 @@ static void setup_signal_handlers()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
static void print_help()
 | 
					static void print_help()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	printf( "Some useful options:\n"
 | 
						fprintf(stdout, "Options:\n"
 | 
				
			||||||
		"  -h, --help      This text\n"
 | 
							"  -h, --help      This text\n"
 | 
				
			||||||
		"  -C, --config    Filename The config file to use\n"
 | 
							"  -C, --config    Filename The config file to use\n"
 | 
				
			||||||
		"  -V, --version   Print the version of OsmoTRX\n"
 | 
							"  -V, --version   Print the version of OsmoTRX\n"
 | 
				
			||||||
		"\nVTY reference generation:\n"
 | 
					 | 
				
			||||||
		"      --vty-ref-mode MODE	VTY reference generation mode (e.g. 'expert').\n"
 | 
					 | 
				
			||||||
		"      --vty-ref-xml		Generate the VTY reference XML output and exit.\n"
 | 
					 | 
				
			||||||
		);
 | 
							);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -266,44 +260,16 @@ static void print_deprecated(char opt)
 | 
				
			|||||||
		<< " All cmd line options are already being overridden by VTY options if set.";
 | 
							<< " All cmd line options are already being overridden by VTY options if set.";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void handle_long_options(const char *prog_name, const int long_option)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	static int vty_ref_mode = VTY_REF_GEN_MODE_DEFAULT;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	switch (long_option) {
 | 
					 | 
				
			||||||
	case 1:
 | 
					 | 
				
			||||||
		vty_ref_mode = get_string_value(vty_ref_gen_mode_names, optarg);
 | 
					 | 
				
			||||||
		if (vty_ref_mode < 0) {
 | 
					 | 
				
			||||||
			fprintf(stderr, "%s: Unknown VTY reference generation "
 | 
					 | 
				
			||||||
				"mode '%s'\n", prog_name, optarg);
 | 
					 | 
				
			||||||
			exit(2);
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		break;
 | 
					 | 
				
			||||||
	case 2:
 | 
					 | 
				
			||||||
		fprintf(stderr, "Generating the VTY reference in mode '%s' (%s)\n",
 | 
					 | 
				
			||||||
			get_value_string(vty_ref_gen_mode_names, vty_ref_mode),
 | 
					 | 
				
			||||||
			get_value_string(vty_ref_gen_mode_desc, vty_ref_mode));
 | 
					 | 
				
			||||||
		vty_dump_xml_ref_mode(stdout, (enum vty_ref_gen_mode) vty_ref_mode);
 | 
					 | 
				
			||||||
		exit(0);
 | 
					 | 
				
			||||||
	default:
 | 
					 | 
				
			||||||
		fprintf(stderr, "%s: error parsing cmdline options\n", prog_name);
 | 
					 | 
				
			||||||
		exit(2);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static void handle_options(int argc, char **argv, struct trx_ctx* trx)
 | 
					static void handle_options(int argc, char **argv, struct trx_ctx* trx)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int option;
 | 
						int option;
 | 
				
			||||||
	unsigned int i;
 | 
						unsigned int i;
 | 
				
			||||||
	std::vector<std::string> rx_paths, tx_paths;
 | 
						std::vector<std::string> rx_paths, tx_paths;
 | 
				
			||||||
	bool rx_paths_set = false, tx_paths_set = false;
 | 
						bool rx_paths_set = false, tx_paths_set = false;
 | 
				
			||||||
	static int long_option = 0;
 | 
					 | 
				
			||||||
	static struct option long_options[] = {
 | 
						static struct option long_options[] = {
 | 
				
			||||||
		{"help", 0, 0, 'h'},
 | 
							{"help", 0, 0, 'h'},
 | 
				
			||||||
		{"config", 1, 0, 'C'},
 | 
							{"config", 1, 0, 'C'},
 | 
				
			||||||
		{"version", 0, 0, 'V'},
 | 
							{"version", 0, 0, 'V'},
 | 
				
			||||||
		{"vty-ref-mode", 1, &long_option, 1},
 | 
					 | 
				
			||||||
		{"vty-ref-xml", 0, &long_option, 2},
 | 
					 | 
				
			||||||
		{NULL, 0, 0, 0}
 | 
							{NULL, 0, 0, 0}
 | 
				
			||||||
	};
 | 
						};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -314,9 +280,6 @@ static void handle_options(int argc, char **argv, struct trx_ctx* trx)
 | 
				
			|||||||
			print_help();
 | 
								print_help();
 | 
				
			||||||
			exit(0);
 | 
								exit(0);
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		case 0:
 | 
					 | 
				
			||||||
			handle_long_options(argv[0], long_option);
 | 
					 | 
				
			||||||
			break;
 | 
					 | 
				
			||||||
		case 'a':
 | 
							case 'a':
 | 
				
			||||||
			print_deprecated(option);
 | 
								print_deprecated(option);
 | 
				
			||||||
			osmo_talloc_replace_string(trx, &trx->cfg.dev_args, optarg);
 | 
								osmo_talloc_replace_string(trx, &trx->cfg.dev_args, optarg);
 | 
				
			||||||
@@ -383,7 +346,6 @@ static void handle_options(int argc, char **argv, struct trx_ctx* trx)
 | 
				
			|||||||
		case 'R':
 | 
							case 'R':
 | 
				
			||||||
			print_deprecated(option);
 | 
								print_deprecated(option);
 | 
				
			||||||
			trx->cfg.rssi_offset = atof(optarg);
 | 
								trx->cfg.rssi_offset = atof(optarg);
 | 
				
			||||||
			trx->cfg.force_rssi_offset = true;
 | 
					 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		case 'S':
 | 
							case 'S':
 | 
				
			||||||
			print_deprecated(option);
 | 
								print_deprecated(option);
 | 
				
			||||||
@@ -485,38 +447,6 @@ static int set_sched_rr(unsigned int prio)
 | 
				
			|||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void print_simd_info(void)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
#ifdef HAVE_SSE3
 | 
					 | 
				
			||||||
	LOGP(DMAIN, LOGL_INFO, "SSE3 support compiled in");
 | 
					 | 
				
			||||||
#ifdef HAVE___BUILTIN_CPU_SUPPORTS
 | 
					 | 
				
			||||||
	if (__builtin_cpu_supports("sse3"))
 | 
					 | 
				
			||||||
		LOGPC(DMAIN, LOGL_INFO, " and supported by CPU\n");
 | 
					 | 
				
			||||||
	else
 | 
					 | 
				
			||||||
		LOGPC(DMAIN, LOGL_INFO, ", but not supported by CPU\n");
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
	LOGPC(DMAIN, LOGL_INFO, ", but runtime SIMD detection disabled\n");
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef HAVE_SSE4_1
 | 
					 | 
				
			||||||
	LOGP(DMAIN, LOGL_INFO, "SSE4.1 support compiled in");
 | 
					 | 
				
			||||||
#ifdef HAVE___BUILTIN_CPU_SUPPORTS
 | 
					 | 
				
			||||||
	if (__builtin_cpu_supports("sse4.1"))
 | 
					 | 
				
			||||||
		LOGPC(DMAIN, LOGL_INFO, " and supported by CPU\n");
 | 
					 | 
				
			||||||
	else
 | 
					 | 
				
			||||||
		LOGPC(DMAIN, LOGL_INFO, ", but not supported by CPU\n");
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
	LOGPC(DMAIN, LOGL_INFO, ", but runtime SIMD detection disabled\n");
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifndef HAVE_ATOMIC_OPS
 | 
					 | 
				
			||||||
#pragma message ("Built without atomic operation support. Using Mutex, it may affect performance!")
 | 
					 | 
				
			||||||
	LOG(NOTICE) << "Built without atomic operation support. Using Mutex, it may affect performance!";
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static void print_config(struct trx_ctx *trx)
 | 
					static void print_config(struct trx_ctx *trx)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	unsigned int i;
 | 
						unsigned int i;
 | 
				
			||||||
@@ -538,10 +468,8 @@ static void print_config(struct trx_ctx *trx)
 | 
				
			|||||||
	ost << "   Filler Burst TSC........ " << trx->cfg.rtsc << std::endl;
 | 
						ost << "   Filler Burst TSC........ " << trx->cfg.rtsc << std::endl;
 | 
				
			||||||
	ost << "   Filler Burst RACH Delay. " << trx->cfg.rach_delay << std::endl;
 | 
						ost << "   Filler Burst RACH Delay. " << trx->cfg.rach_delay << std::endl;
 | 
				
			||||||
	ost << "   Multi-Carrier........... " << trx->cfg.multi_arfcn << std::endl;
 | 
						ost << "   Multi-Carrier........... " << trx->cfg.multi_arfcn << std::endl;
 | 
				
			||||||
	ost << "   LO freq. offset......... " << trx->cfg.offset << std::endl;
 | 
						ost << "   Tuning offset........... " << trx->cfg.offset << std::endl;
 | 
				
			||||||
	if (trx->cfg.freq_offset_khz != 0)
 | 
						ost << "   RSSI to dBm offset...... " << trx->cfg.rssi_offset << std::endl;
 | 
				
			||||||
		ost << "   Tune freq. offset....... " << trx->cfg.freq_offset_khz << std::endl;
 | 
					 | 
				
			||||||
	ost << "   RSSI to dBm offset...... " << trx->cfg.rssi_offset << (trx->cfg.force_rssi_offset ? "" : " (relative)") << std::endl;
 | 
					 | 
				
			||||||
	ost << "   Swap channels........... " << trx->cfg.swap_channels << std::endl;
 | 
						ost << "   Swap channels........... " << trx->cfg.swap_channels << std::endl;
 | 
				
			||||||
	ost << "   Tx Antennas.............";
 | 
						ost << "   Tx Antennas.............";
 | 
				
			||||||
	for (i = 0; i < trx->cfg.num_chans; i++) {
 | 
						for (i = 0; i < trx->cfg.num_chans; i++) {
 | 
				
			||||||
@@ -626,6 +554,35 @@ int main(int argc, char *argv[])
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	g_trx_ctx = vty_trx_ctx_alloc(tall_trx_ctx);
 | 
						g_trx_ctx = vty_trx_ctx_alloc(tall_trx_ctx);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef HAVE_SSE3
 | 
				
			||||||
 | 
						printf("Info: SSE3 support compiled in");
 | 
				
			||||||
 | 
					#ifdef HAVE___BUILTIN_CPU_SUPPORTS
 | 
				
			||||||
 | 
						if (__builtin_cpu_supports("sse3"))
 | 
				
			||||||
 | 
							printf(" and supported by CPU\n");
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							printf(", but not supported by CPU\n");
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
						printf(", but runtime SIMD detection disabled\n");
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef HAVE_SSE4_1
 | 
				
			||||||
 | 
						printf("Info: SSE4.1 support compiled in");
 | 
				
			||||||
 | 
					#ifdef HAVE___BUILTIN_CPU_SUPPORTS
 | 
				
			||||||
 | 
						if (__builtin_cpu_supports("sse4.1"))
 | 
				
			||||||
 | 
							printf(" and supported by CPU\n");
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							printf(", but not supported by CPU\n");
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
						printf(", but runtime SIMD detection disabled\n");
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef HAVE_ATOMIC_OPS
 | 
				
			||||||
 | 
					#pragma message ("Built without atomic operation support. Using Mutex, it may affect performance!")
 | 
				
			||||||
 | 
						printf("Built without atomic operation support. Using Mutex, it may affect performance!\n");
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	convolve_init();
 | 
						convolve_init();
 | 
				
			||||||
	convert_init();
 | 
						convert_init();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -672,7 +629,6 @@ int main(int argc, char *argv[])
 | 
				
			|||||||
			" but expect your config to break in the future.";
 | 
								" but expect your config to break in the future.";
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	print_simd_info();
 | 
					 | 
				
			||||||
	print_config(g_trx_ctx);
 | 
						print_config(g_trx_ctx);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (trx_validate_config(g_trx_ctx) < 0) {
 | 
						if (trx_validate_config(g_trx_ctx) < 0) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -322,11 +322,6 @@ double RadioInterface::setRxGain(double dB, size_t chan)
 | 
				
			|||||||
  return mDevice->setRxGain(dB, chan);
 | 
					  return mDevice->setRxGain(dB, chan);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double RadioInterface::rssiOffset(size_t chan)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	return mDevice->rssiOffset(chan);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Receive a timestamped chunk from the device */
 | 
					/* Receive a timestamped chunk from the device */
 | 
				
			||||||
int RadioInterface::pullBuffer()
 | 
					int RadioInterface::pullBuffer()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -109,9 +109,6 @@ public:
 | 
				
			|||||||
  /** set receive gain */
 | 
					  /** set receive gain */
 | 
				
			||||||
  virtual double setRxGain(double dB, size_t chan = 0);
 | 
					  virtual double setRxGain(double dB, size_t chan = 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** return base RSSI offset to apply for received samples **/
 | 
					 | 
				
			||||||
  virtual double rssiOffset(size_t chan = 0);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /** drive transmission of GSM bursts */
 | 
					  /** drive transmission of GSM bursts */
 | 
				
			||||||
  void driveTransmitRadio(std::vector<signalVector *> &bursts,
 | 
					  void driveTransmitRadio(std::vector<signalVector *> &bursts,
 | 
				
			||||||
                          std::vector<bool> &zeros);
 | 
					                          std::vector<bool> &zeros);
 | 
				
			||||||
@@ -193,5 +190,4 @@ public:
 | 
				
			|||||||
  bool tuneTx(double freq, size_t chan);
 | 
					  bool tuneTx(double freq, size_t chan);
 | 
				
			||||||
  bool tuneRx(double freq, size_t chan);
 | 
					  bool tuneRx(double freq, size_t chan);
 | 
				
			||||||
  virtual double setRxGain(double dB, size_t chan);
 | 
					  virtual double setRxGain(double dB, size_t chan);
 | 
				
			||||||
  virtual double rssiOffset(size_t chan = 0);
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -38,7 +38,6 @@ extern "C" {
 | 
				
			|||||||
/* Universal resampling parameters */
 | 
					/* Universal resampling parameters */
 | 
				
			||||||
#define NUMCHUNKS				24
 | 
					#define NUMCHUNKS				24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* number of narrow-band virtual ARFCNs in this wide-band multi-ARFCN device */
 | 
					 | 
				
			||||||
#define MCHANS					4
 | 
					#define MCHANS					4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RadioInterfaceMulti::RadioInterfaceMulti(RadioDevice *radio, size_t tx_sps,
 | 
					RadioInterfaceMulti::RadioInterfaceMulti(RadioDevice *radio, size_t tx_sps,
 | 
				
			||||||
@@ -70,10 +69,6 @@ void RadioInterfaceMulti::close()
 | 
				
			|||||||
	channelizer = NULL;
 | 
						channelizer = NULL;
 | 
				
			||||||
	synthesis = NULL;
 | 
						synthesis = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
	for (std::vector<signalVector*>::iterator it = history.begin(); it != history.end(); ++it)
 | 
					 | 
				
			||||||
		delete *it;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	mReceiveFIFO.resize(0);
 | 
						mReceiveFIFO.resize(0);
 | 
				
			||||||
	powerScaling.resize(0);
 | 
						powerScaling.resize(0);
 | 
				
			||||||
	history.resize(0);
 | 
						history.resize(0);
 | 
				
			||||||
@@ -84,10 +79,6 @@ void RadioInterfaceMulti::close()
 | 
				
			|||||||
	RadioInterface::close();
 | 
						RadioInterface::close();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*! we re-map the physical channels from the filter bank to logical per-TRX channels
 | 
					 | 
				
			||||||
 *  \param[in] pchan physical channel number within the channelizer
 | 
					 | 
				
			||||||
 *  \param[in] chans total number of narrow-band ARFCN channels
 | 
					 | 
				
			||||||
 *  \returns logical (TRX) channel number, or -1 in case there is none */
 | 
					 | 
				
			||||||
static int getLogicalChan(size_t pchan, size_t chans)
 | 
					static int getLogicalChan(size_t pchan, size_t chans)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	switch (chans) {
 | 
						switch (chans) {
 | 
				
			||||||
@@ -122,9 +113,6 @@ static int getLogicalChan(size_t pchan, size_t chans)
 | 
				
			|||||||
	return -1;
 | 
						return -1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*! do we need to frequency shift our spectrum or not?
 | 
					 | 
				
			||||||
 *  \param chans total number of channels
 | 
					 | 
				
			||||||
 *  \returns 1 if we need to shift; 0 if not; -1 on error */
 | 
					 | 
				
			||||||
static int getFreqShift(size_t chans)
 | 
					static int getFreqShift(size_t chans)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	switch (chans) {
 | 
						switch (chans) {
 | 
				
			||||||
@@ -166,7 +154,6 @@ bool RadioInterfaceMulti::init(int type)
 | 
				
			|||||||
	tx_freq_state.resize(mChans);
 | 
						tx_freq_state.resize(mChans);
 | 
				
			||||||
	active.resize(MCHANS, false);
 | 
						active.resize(MCHANS, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* 4 == sps */
 | 
					 | 
				
			||||||
	inchunk = RESAMP_INRATE * 4;
 | 
						inchunk = RESAMP_INRATE * 4;
 | 
				
			||||||
	outchunk = RESAMP_OUTRATE * 4;
 | 
						outchunk = RESAMP_OUTRATE * 4;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -450,12 +437,8 @@ double RadioInterfaceMulti::setRxGain(double db, size_t chan)
 | 
				
			|||||||
    return mDevice->getRxGain();
 | 
					    return mDevice->getRxGain();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
double RadioInterfaceMulti::rssiOffset(size_t chan)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	return mDevice->rssiOffset(0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
int RadioInterfaceMulti::setPowerAttenuation(int atten, size_t chan)
 | 
					int RadioInterfaceMulti::setPowerAttenuation(int atten, size_t chan)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
		return RadioInterface::setPowerAttenuation(atten, 0);
 | 
							return RadioInterface::setPowerAttenuation(atten, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,7 +34,6 @@
 | 
				
			|||||||
#include "Resampler.h"
 | 
					#include "Resampler.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern "C" {
 | 
					extern "C" {
 | 
				
			||||||
#include <osmocom/core/panic.h>
 | 
					 | 
				
			||||||
#include "convolve.h"
 | 
					#include "convolve.h"
 | 
				
			||||||
#include "scale.h"
 | 
					#include "scale.h"
 | 
				
			||||||
#include "mult.h"
 | 
					#include "mult.h"
 | 
				
			||||||
@@ -1461,30 +1460,25 @@ static signalVector *downsampleBurst(const signalVector &burst)
 | 
				
			|||||||
 * It is computed from the training sequence of each received burst,
 | 
					 * It is computed from the training sequence of each received burst,
 | 
				
			||||||
 * by comparing the "ideal" training sequence with the actual one.
 | 
					 * by comparing the "ideal" training sequence with the actual one.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static float computeCI(const signalVector *burst, const CorrelationSequence *sync,
 | 
					static float computeCI(const signalVector *burst, CorrelationSequence *sync,
 | 
				
			||||||
                       float toa, int start, const complex &xcorr)
 | 
					                       float toa, int start, complex xcorr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  const int N = sync->sequence->size();
 | 
					 | 
				
			||||||
  float S, C;
 | 
					  float S, C;
 | 
				
			||||||
 | 
					  int ps;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Integer position where the sequence starts */
 | 
					  /* Integer position where the sequence starts */
 | 
				
			||||||
  const int ps = start + 1 - N + (int)roundf(toa);
 | 
					  ps = start + 1 - sync->sequence->size() + (int)roundf(toa);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Estimate Signal power */
 | 
					  /* Estimate Signal power */
 | 
				
			||||||
  S = 0.0f;
 | 
					  S = 0.0f;
 | 
				
			||||||
  for (int i=0, j=ps; i<(int)N; i++,j++)
 | 
					  for (int i=0, j=ps; i<(int)sync->sequence->size(); i++,j++)
 | 
				
			||||||
    S += (*burst)[j].norm2();
 | 
					    S += (*burst)[j].norm2();
 | 
				
			||||||
  S /= N;
 | 
					  S /= sync->sequence->size();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Esimate Carrier power */
 | 
					  /* Esimate Carrier power */
 | 
				
			||||||
  C = xcorr.norm2() / ((N - 1) * sync->gain.abs());
 | 
					  C = xcorr.norm2() / ((sync->sequence->size() - 1) * sync->gain.abs());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Interference = Signal - Carrier, so C/I = C / (S - C).
 | 
					  /* Interference = Signal - Carrier, so C/I = C / (S - C) */
 | 
				
			||||||
   * Calculated in dB:
 | 
					 | 
				
			||||||
   * C/I_dB = 10 * log10(C/I)
 | 
					 | 
				
			||||||
   * C/I_dB = 10 * (1/log2(10)) * log2(C/I)
 | 
					 | 
				
			||||||
   * C/I_dB = 10 * 0.30103 * log2(C/I)
 | 
					 | 
				
			||||||
   * C/I_dB = 3.0103 * log2(C/I)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  return 3.0103f * log2f(C / (S - C));
 | 
					  return 3.0103f * log2f(C / (S - C));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1497,7 +1491,7 @@ static float computeCI(const signalVector *burst, const CorrelationSequence *syn
 | 
				
			|||||||
 * and we run full interpolating peak detection.
 | 
					 * and we run full interpolating peak detection.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static int detectBurst(const signalVector &burst,
 | 
					static int detectBurst(const signalVector &burst,
 | 
				
			||||||
                       signalVector &corr, const CorrelationSequence *sync,
 | 
					                       signalVector &corr, CorrelationSequence *sync,
 | 
				
			||||||
                       float thresh, int sps, int start, int len,
 | 
					                       float thresh, int sps, int start, int len,
 | 
				
			||||||
                       struct estim_burst_params *ebp)
 | 
					                       struct estim_burst_params *ebp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -1506,18 +1500,12 @@ static int detectBurst(const signalVector &burst,
 | 
				
			|||||||
  complex xcorr;
 | 
					  complex xcorr;
 | 
				
			||||||
  int rc = 1;
 | 
					  int rc = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  switch (sps) {
 | 
					  if (sps == 4) {
 | 
				
			||||||
  case 1:
 | 
					 | 
				
			||||||
    corr_in = &burst;
 | 
					 | 
				
			||||||
    break;
 | 
					 | 
				
			||||||
  case 4:
 | 
					 | 
				
			||||||
    dec = downsampleBurst(burst);
 | 
					    dec = downsampleBurst(burst);
 | 
				
			||||||
     /* Running at the downsampled rate at this point: */
 | 
					 | 
				
			||||||
    corr_in = dec;
 | 
					    corr_in = dec;
 | 
				
			||||||
    sps = 1;
 | 
					    sps = 1;
 | 
				
			||||||
     break;
 | 
					  } else {
 | 
				
			||||||
  default:
 | 
					    corr_in = &burst;
 | 
				
			||||||
     osmo_panic("%s:%d SPS %d not supported! Only 1 or 4 supported", __FILE__, __LINE__, sps);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Correlate */
 | 
					  /* Correlate */
 | 
				
			||||||
@@ -1527,6 +1515,9 @@ static int detectBurst(const signalVector &burst,
 | 
				
			|||||||
    goto del_ret;
 | 
					    goto del_ret;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /* Running at the downsampled rate at this point */
 | 
				
			||||||
 | 
					  sps = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Peak detection - place restrictions at correlation edges */
 | 
					  /* Peak detection - place restrictions at correlation edges */
 | 
				
			||||||
  ebp->amp = fastPeakDetect(corr, &ebp->toa);
 | 
					  ebp->amp = fastPeakDetect(corr, &ebp->toa);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1595,7 +1586,7 @@ static int detectGeneralBurst(const signalVector &rxBurst, float thresh, int sps
 | 
				
			|||||||
  // and only report clipping if we can't demod.
 | 
					  // and only report clipping if we can't demod.
 | 
				
			||||||
  float maxAmpl = maxAmplitude(rxBurst);
 | 
					  float maxAmpl = maxAmplitude(rxBurst);
 | 
				
			||||||
  if (maxAmpl > CLIP_THRESH) {
 | 
					  if (maxAmpl > CLIP_THRESH) {
 | 
				
			||||||
    LOG(INFO) << "max burst amplitude: " << maxAmpl << " is above the clipping threshold: " << CLIP_THRESH << std::endl;
 | 
					    LOG(DEBUG) << "max burst amplitude: " << maxAmpl << " is above the clipping threshold: " << CLIP_THRESH << std::endl;
 | 
				
			||||||
    clipping = true;
 | 
					    clipping = true;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1801,15 +1792,15 @@ static SoftVector *signalToSoftVector(signalVector *dec)
 | 
				
			|||||||
 * stages.
 | 
					 * stages.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static signalVector *demodCommon(const signalVector &burst, int sps,
 | 
					static signalVector *demodCommon(const signalVector &burst, int sps,
 | 
				
			||||||
                                 const struct estim_burst_params *ebp)
 | 
					                                 complex chan, float toa)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  signalVector *delay, *dec;
 | 
					  signalVector *delay, *dec;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if ((sps != 1) && (sps != 4))
 | 
					  if ((sps != 1) && (sps != 4))
 | 
				
			||||||
    return NULL;
 | 
					    return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  delay = delayVector(&burst, NULL, -ebp->toa * (float) sps);
 | 
					  delay = delayVector(&burst, NULL, -toa * (float) sps);
 | 
				
			||||||
  scaleVector(*delay, (complex) 1.0 / ebp->amp);
 | 
					  scaleVector(*delay, (complex) 1.0 / chan);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (sps == 1)
 | 
					  if (sps == 1)
 | 
				
			||||||
    return delay;
 | 
					    return delay;
 | 
				
			||||||
@@ -1825,13 +1816,13 @@ static signalVector *demodCommon(const signalVector &burst, int sps,
 | 
				
			|||||||
 * 4 SPS (if activated) to minimize distortion through the fractional
 | 
					 * 4 SPS (if activated) to minimize distortion through the fractional
 | 
				
			||||||
 * delay filters. Symbol rotation and after always operates at 1 SPS.
 | 
					 * delay filters. Symbol rotation and after always operates at 1 SPS.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static SoftVector *demodGmskBurst(const signalVector &rxBurst, int sps,
 | 
					static SoftVector *demodGmskBurst(const signalVector &rxBurst,
 | 
				
			||||||
				  const struct estim_burst_params *ebp)
 | 
					                                  int sps, complex channel, float TOA)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  SoftVector *bits;
 | 
					  SoftVector *bits;
 | 
				
			||||||
  signalVector *dec;
 | 
					  signalVector *dec;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  dec = demodCommon(rxBurst, sps, ebp);
 | 
					  dec = demodCommon(rxBurst, sps, channel, TOA);
 | 
				
			||||||
  if (!dec)
 | 
					  if (!dec)
 | 
				
			||||||
    return NULL;
 | 
					    return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1844,51 +1835,29 @@ static SoftVector *demodGmskBurst(const signalVector &rxBurst, int sps,
 | 
				
			|||||||
  return bits;
 | 
					  return bits;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static float computeEdgeCI(const signalVector *rot)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  float err_pwr = 0.0f;
 | 
					 | 
				
			||||||
  float step = 2.0f * M_PI_F / 8.0f;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  for (size_t i = 8; i < rot->size() - 8; i++) {
 | 
					 | 
				
			||||||
    /* Compute the ideal symbol */
 | 
					 | 
				
			||||||
    complex sym = (*rot)[i];
 | 
					 | 
				
			||||||
    float phase = step * roundf(sym.arg() / step);
 | 
					 | 
				
			||||||
    complex ideal = complex(cos(phase), sin(phase));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Compute the error vector */
 | 
					 | 
				
			||||||
    complex err = ideal - sym;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Accumulate power */
 | 
					 | 
				
			||||||
    err_pwr += err.norm2();
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  return 3.0103f * log2f(1.0f * (rot->size() - 16) / err_pwr);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * Demodulate an 8-PSK burst. Prior to symbol rotation, operate at
 | 
					 * Demodulate an 8-PSK burst. Prior to symbol rotation, operate at
 | 
				
			||||||
 * 4 SPS (if activated) to minimize distortion through the fractional
 | 
					 * 4 SPS (if activated) to minimize distortion through the fractional
 | 
				
			||||||
 * delay filters. Symbol rotation and after always operates at 1 SPS.
 | 
					 * delay filters. Symbol rotation and after always operates at 1 SPS.
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * Allow 1 SPS demodulation here, but note that other parts of the
 | 
					 * Allow 1 SPS demodulation here, but note that other parts of the
 | 
				
			||||||
 * transceiver restrict EDGE operation to 4 SPS - 8-PSK distortion
 | 
					 * transceiver restrict EDGE operatoin to 4 SPS - 8-PSK distortion
 | 
				
			||||||
 * through the fractional delay filters at 1 SPS renders signal
 | 
					 * through the fractional delay filters at 1 SPS renders signal
 | 
				
			||||||
 * nearly unrecoverable.
 | 
					 * nearly unrecoverable.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static SoftVector *demodEdgeBurst(const signalVector &burst, int sps,
 | 
					static SoftVector *demodEdgeBurst(const signalVector &burst,
 | 
				
			||||||
                                  struct estim_burst_params *ebp)
 | 
					                                  int sps, complex chan, float toa)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  SoftVector *bits;
 | 
					  SoftVector *bits;
 | 
				
			||||||
  signalVector *dec, *rot, *eq;
 | 
					  signalVector *dec, *rot, *eq;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  dec = demodCommon(burst, sps, ebp);
 | 
					  dec = demodCommon(burst, sps, chan, toa);
 | 
				
			||||||
  if (!dec)
 | 
					  if (!dec)
 | 
				
			||||||
    return NULL;
 | 
					    return NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Equalize and derotate */
 | 
					  /* Equalize and derotate */
 | 
				
			||||||
  eq = convolve(dec, GSMPulse4->c0_inv, NULL, NO_DELAY);
 | 
					  eq = convolve(dec, GSMPulse4->c0_inv, NULL, NO_DELAY);
 | 
				
			||||||
  rot = derotateEdgeBurst(*eq, 1);
 | 
					  rot = derotateEdgeBurst(*eq, 1);
 | 
				
			||||||
  ebp->ci = computeEdgeCI(rot);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /* Soft slice and normalize */
 | 
					  /* Soft slice and normalize */
 | 
				
			||||||
  bits = softSliceEdgeBurst(*rot);
 | 
					  bits = softSliceEdgeBurst(*rot);
 | 
				
			||||||
@@ -1900,13 +1869,13 @@ static SoftVector *demodEdgeBurst(const signalVector &burst, int sps,
 | 
				
			|||||||
  return bits;
 | 
					  return bits;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SoftVector *demodAnyBurst(const signalVector &burst, CorrType type,
 | 
					SoftVector *demodAnyBurst(const signalVector &burst, int sps, complex amp,
 | 
				
			||||||
                          int sps, struct estim_burst_params *ebp)
 | 
					                          float toa, CorrType type)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  if (type == EDGE)
 | 
					  if (type == EDGE)
 | 
				
			||||||
    return demodEdgeBurst(burst, sps, ebp);
 | 
					    return demodEdgeBurst(burst, sps, amp, toa);
 | 
				
			||||||
  else
 | 
					  else
 | 
				
			||||||
    return demodGmskBurst(burst, sps, ebp);
 | 
					    return demodGmskBurst(burst, sps, amp, toa);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool sigProcLibSetup()
 | 
					bool sigProcLibSetup()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ int detectAnyBurst(const signalVector &burst,
 | 
				
			|||||||
                   struct estim_burst_params *ebp);
 | 
					                   struct estim_burst_params *ebp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** Demodulate burst basde on type and output soft bits */
 | 
					/** Demodulate burst basde on type and output soft bits */
 | 
				
			||||||
SoftVector *demodAnyBurst(const signalVector &burst, CorrType type,
 | 
					SoftVector *demodAnyBurst(const signalVector &burst, int sps,
 | 
				
			||||||
                          int sps, struct estim_burst_params *ebp);
 | 
					                          complex amp, float toa, CorrType type);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* SIGPROCLIB_H */
 | 
					#endif /* SIGPROCLIB_H */
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										23
									
								
								configure.ac
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								configure.ac
									
									
									
									
									
								
							@@ -34,8 +34,6 @@ AC_CANONICAL_TARGET
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
AM_INIT_AUTOMAKE([foreign subdir-objects])
 | 
					AM_INIT_AUTOMAKE([foreign subdir-objects])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CFLAGS="$CFLAGS -std=gnu11"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
dnl Linux kernel KBuild style compile messages
 | 
					dnl Linux kernel KBuild style compile messages
 | 
				
			||||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 | 
					m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -82,10 +80,19 @@ AC_TYPE_SIZE_T
 | 
				
			|||||||
AC_HEADER_TIME
 | 
					AC_HEADER_TIME
 | 
				
			||||||
AC_C_BIGENDIAN
 | 
					AC_C_BIGENDIAN
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.6.0)
 | 
					# Check if gettid is available (despite not being documented in glibc doc, it requires __USE_GNU on some systems)
 | 
				
			||||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.6.0)
 | 
					# C compiler is used since __USE_GNU seems to be always defined for g++.
 | 
				
			||||||
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.6.0)
 | 
					save_CPPFLAGS=$CPPFLAGS
 | 
				
			||||||
PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.6.0)
 | 
					AC_LANG_PUSH(C)
 | 
				
			||||||
 | 
					CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
 | 
				
			||||||
 | 
					AC_CHECK_FUNCS([gettid])
 | 
				
			||||||
 | 
					AC_LANG_POP(C)
 | 
				
			||||||
 | 
					CPPFLAGS=$save_CPPFLAGS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.3.0)
 | 
				
			||||||
 | 
					PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.3.0)
 | 
				
			||||||
 | 
					PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.3.0)
 | 
				
			||||||
 | 
					PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.3.0)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AC_ARG_ENABLE(sanitize,
 | 
					AC_ARG_ENABLE(sanitize,
 | 
				
			||||||
	[AS_HELP_STRING(
 | 
						[AS_HELP_STRING(
 | 
				
			||||||
@@ -177,7 +184,7 @@ AS_IF([test "x$with_lms" = "xyes"], [
 | 
				
			|||||||
    PKG_CHECK_MODULES(LMS, LimeSuite)
 | 
					    PKG_CHECK_MODULES(LMS, LimeSuite)
 | 
				
			||||||
])
 | 
					])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AS_IF([test "x$with_uhd" = "xyes"],[
 | 
					AS_IF([test "x$with_uhd" != "xno"],[
 | 
				
			||||||
    PKG_CHECK_MODULES(UHD, uhd >= 003.011,
 | 
					    PKG_CHECK_MODULES(UHD, uhd >= 003.011,
 | 
				
			||||||
        [AC_DEFINE(USE_UHD_3_11, 1, UHD version 3.11.0 or higher)],
 | 
					        [AC_DEFINE(USE_UHD_3_11, 1, UHD version 3.11.0 or higher)],
 | 
				
			||||||
        [PKG_CHECK_MODULES(UHD, uhd >= 003.009,
 | 
					        [PKG_CHECK_MODULES(UHD, uhd >= 003.009,
 | 
				
			||||||
@@ -236,7 +243,7 @@ AS_IF([test "x$osmo_cv_cc_has___sync_fetch_and_and" = "xyes" && test "x$osmo_cv_
 | 
				
			|||||||
    AC_DEFINE(HAVE_ATOMIC_OPS, 1, [Support all required atomic operations], [AC_MSG_WARN("At least one aotmic operation missing, will use mutex")])
 | 
					    AC_DEFINE(HAVE_ATOMIC_OPS, 1, [Support all required atomic operations], [AC_MSG_WARN("At least one aotmic operation missing, will use mutex")])
 | 
				
			||||||
])
 | 
					])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AM_CONDITIONAL(DEVICE_UHD, [test "x$with_uhd" = "xyes"])
 | 
					AM_CONDITIONAL(DEVICE_UHD, [test "x$with_uhd" != "xno"])
 | 
				
			||||||
AM_CONDITIONAL(DEVICE_USRP1, [test "x$with_usrp1" = "xyes"])
 | 
					AM_CONDITIONAL(DEVICE_USRP1, [test "x$with_usrp1" = "xyes"])
 | 
				
			||||||
AM_CONDITIONAL(DEVICE_LMS, [test "x$with_lms" = "xyes"])
 | 
					AM_CONDITIONAL(DEVICE_LMS, [test "x$with_lms" = "xyes"])
 | 
				
			||||||
AM_CONDITIONAL(DEVICE_IPC, [test "x$with_ipc" = "xyes"])
 | 
					AM_CONDITIONAL(DEVICE_IPC, [test "x$with_ipc" = "xyes"])
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -85,10 +85,11 @@ export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
 | 
				
			|||||||
export LD_LIBRARY_PATH="$inst/lib"
 | 
					export LD_LIBRARY_PATH="$inst/lib"
 | 
				
			||||||
export PATH="$inst/bin:$PATH"
 | 
					export PATH="$inst/bin:$PATH"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CONFIG="--enable-sanitize --enable-werror --with-uhd --with-usrp1 --with-lms --with-ipc $INSTR"
 | 
					CONFIG="--enable-sanitize --enable-werror --with-uhd --with-usrp1 --with-lms $INSTR"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Additional configure options and depends
 | 
					# Additional configure options and depends
 | 
				
			||||||
if [ "$WITH_MANUALS" = "1" ]; then
 | 
					if [ "$WITH_MANUALS" = "1" ]; then
 | 
				
			||||||
 | 
						osmo-build-dep.sh osmo-gsm-manuals
 | 
				
			||||||
	CONFIG="$CONFIG --enable-manuals"
 | 
						CONFIG="$CONFIG --enable-manuals"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -106,13 +107,12 @@ autoreconf --install --force
 | 
				
			|||||||
$MAKE $PARALLEL_MAKE
 | 
					$MAKE $PARALLEL_MAKE
 | 
				
			||||||
$MAKE check \
 | 
					$MAKE check \
 | 
				
			||||||
  || cat-testlogs.sh
 | 
					  || cat-testlogs.sh
 | 
				
			||||||
DISTCHECK_CONFIGURE_FLAGS="$CONFIG" $MAKE $PARALLEL_MAKE distcheck \
 | 
					DISTCHECK_CONFIGURE_FLAGS="$CONFIG" $MAKE distcheck \
 | 
				
			||||||
  || cat-testlogs.sh
 | 
					  || cat-testlogs.sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ "$WITH_MANUALS" = "1" ] && [ "$PUBLISH" = "1" ]; then
 | 
					if [ "$WITH_MANUALS" = "1" ] && [ "$PUBLISH" = "1" ]; then
 | 
				
			||||||
	make -C "$base/doc/manuals" publish
 | 
						make -C "$base/doc/manuals" publish
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$MAKE $PARALLEL_MAKE maintainer-clean
 | 
					$MAKE maintainer-clean
 | 
				
			||||||
 | 
					 | 
				
			||||||
osmo-clean-workspace.sh
 | 
					osmo-clean-workspace.sh
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,10 +34,10 @@ BuildRequires:  pkgconfig(LimeSuite)
 | 
				
			|||||||
BuildRequires:  pkgconfig(usrp) >= 3.3
 | 
					BuildRequires:  pkgconfig(usrp) >= 3.3
 | 
				
			||||||
%endif
 | 
					%endif
 | 
				
			||||||
BuildRequires:  pkgconfig(fftw3f)
 | 
					BuildRequires:  pkgconfig(fftw3f)
 | 
				
			||||||
BuildRequires:  pkgconfig(libosmocoding) >= 1.6.0
 | 
					BuildRequires:  pkgconfig(libosmocoding) >= 1.3.0
 | 
				
			||||||
BuildRequires:  pkgconfig(libosmocore) >= 1.6.0
 | 
					BuildRequires:  pkgconfig(libosmocore) >= 0.12.0
 | 
				
			||||||
BuildRequires:  pkgconfig(libosmoctrl) >= 1.6.0
 | 
					BuildRequires:  pkgconfig(libosmoctrl) >= 0.12.0
 | 
				
			||||||
BuildRequires:  pkgconfig(libosmovty) >= 1.6.0
 | 
					BuildRequires:  pkgconfig(libosmovty) >= 0.12.0
 | 
				
			||||||
BuildRequires:  pkgconfig(libusb-1.0)
 | 
					BuildRequires:  pkgconfig(libusb-1.0)
 | 
				
			||||||
BuildRequires:  pkgconfig(uhd)
 | 
					BuildRequires:  pkgconfig(uhd)
 | 
				
			||||||
%{?systemd_requires}
 | 
					%{?systemd_requires}
 | 
				
			||||||
@@ -149,16 +149,6 @@ connect mobile phones to the mobile network.
 | 
				
			|||||||
between different telecommunication associations for developing new
 | 
					between different telecommunication associations for developing new
 | 
				
			||||||
generations of mobile phone networks. (post-2G/GSM)
 | 
					generations of mobile phone networks. (post-2G/GSM)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%package ipc-test
 | 
					 | 
				
			||||||
Summary:        SDR transceiver that implements Layer 1 of a GSM BTS (IPC) driver test utility
 | 
					 | 
				
			||||||
Group:          Productivity/Telephony/Servers
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
%description ipc-test
 | 
					 | 
				
			||||||
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
 | 
					 | 
				
			||||||
physical layer of a BTS comprising the following 3GPP specifications:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
This package include the test tools for osmo-trx-ipc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
%prep
 | 
					%prep
 | 
				
			||||||
%setup -q
 | 
					%setup -q
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -244,11 +234,9 @@ make %{?_smp_mflags} check || (find . -name testsuite.log -exec cat {} +)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
%files ipc
 | 
					%files ipc
 | 
				
			||||||
%{_bindir}/osmo-trx-ipc
 | 
					%{_bindir}/osmo-trx-ipc
 | 
				
			||||||
 | 
					%{_bindir}/ipc-driver-test
 | 
				
			||||||
%dir %{_sysconfdir}/osmocom
 | 
					%dir %{_sysconfdir}/osmocom
 | 
				
			||||||
%config(noreplace) %{_sysconfdir}/osmocom/osmo-trx-ipc.cfg
 | 
					# FIXME: missing: osmo-trx-ipc.cfg
 | 
				
			||||||
%{_unitdir}/osmo-trx-ipc.service
 | 
					%{_unitdir}/osmo-trx-ipc.service
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%files ipc-test
 | 
					 | 
				
			||||||
%{_bindir}/ipc-driver-test
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
%changelog
 | 
					%changelog
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										200
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										200
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@@ -1,203 +1,3 @@
 | 
				
			|||||||
osmo-trx (1.4.0) unstable; urgency=medium
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Pau Espin Pedrol ]
 | 
					 | 
				
			||||||
  * Threads.cpp: Fix missing extern C around libosmocore include
 | 
					 | 
				
			||||||
  * Drop logging pthread ID
 | 
					 | 
				
			||||||
  * Threads: Avoid printing pthread_self()
 | 
					 | 
				
			||||||
  * ipc: Makefile.am: Clean LDADD variable
 | 
					 | 
				
			||||||
  * Use new stat item/ctr getter APIs
 | 
					 | 
				
			||||||
  * detectBurst(): Clear downsampling code path
 | 
					 | 
				
			||||||
  * detectBurst(): constify parameter
 | 
					 | 
				
			||||||
  * computeCI(): Constify param and pass it as reference
 | 
					 | 
				
			||||||
  * computeCI(): Rename verbose repeated getter to constant
 | 
					 | 
				
			||||||
  * computeCI(): Constify read-only variable
 | 
					 | 
				
			||||||
  * detectGeneralBurst(): Increase log level about clipping to INFO
 | 
					 | 
				
			||||||
  * cosmetic: Fix typo in comment
 | 
					 | 
				
			||||||
  * computeCI: Document hardcoded multiplier
 | 
					 | 
				
			||||||
  * lms: Drop duplicated check
 | 
					 | 
				
			||||||
  * lms,uhd: Validate band of RxFreq too
 | 
					 | 
				
			||||||
  * lms,uhd: Skip re-assigning same band
 | 
					 | 
				
			||||||
  * lms,uhd: Allow changing band between poweroff & poweron
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Vadim Yanitskiy ]
 | 
					 | 
				
			||||||
  * gitignore: remove non-existing 'doc/manuals/osmomsc-usermanual.xml'
 | 
					 | 
				
			||||||
  * ctrl_sock_handle_rx(): fix missing space in LOGCHAN() statement
 | 
					 | 
				
			||||||
  * trx_rate_ctr: use thread safe strerror() in device_sig_cb()
 | 
					 | 
				
			||||||
  * IPCDevice: use thread safe strerror_r() instead of strerror()
 | 
					 | 
				
			||||||
  * IPCDevice: check value returned from select()
 | 
					 | 
				
			||||||
  * LMSDevice: LMS_GetDeviceList() may return a negative number
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Eric ]
 | 
					 | 
				
			||||||
  * add hidden fn adjustment command
 | 
					 | 
				
			||||||
  * uhd: ensure configured clock source is actually used
 | 
					 | 
				
			||||||
  * vty: printing fn offset should be signed
 | 
					 | 
				
			||||||
  * lms: init band
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Oliver Smith ]
 | 
					 | 
				
			||||||
  * d/patches/build-for-debian8.patch: remove
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 -- Pau Espin Pedrol <pespin@sysmocom.de>  Tue, 16 Nov 2021 16:27:26 +0100
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
osmo-trx (1.3.1) unstable; urgency=medium
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  * mark uhddev_ipc.cpp as BUILT_SOURCES
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 -- Harald Welte <laforge@osmocom.org>  Sun, 28 Feb 2021 11:32:11 +0100
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
osmo-trx (1.3.0) unstable; urgency=medium
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Pau Espin Pedrol ]
 | 
					 | 
				
			||||||
  * Make logging category DLMS generic and reusable for other backends
 | 
					 | 
				
			||||||
  * uhd: Use DEVDRV log category and support UHD >=3.11 logging framework
 | 
					 | 
				
			||||||
  * uhd: Improve some logging lines printing UHD pretty-print output
 | 
					 | 
				
			||||||
  * doc: clarify number of channels on B210 with multi-arfcn enabled
 | 
					 | 
				
			||||||
  * radioInterfaceMulti: Fail to tune on freq not following multi-arfcn restrictions
 | 
					 | 
				
			||||||
  * doc: Update vty reference xml file
 | 
					 | 
				
			||||||
  * lms: Move initialization of field started to constructor
 | 
					 | 
				
			||||||
  * lms: Drop unused define
 | 
					 | 
				
			||||||
  * smpl_buf: Fix str_code() param and print unknown error val
 | 
					 | 
				
			||||||
  * lms: Improve smpl_buf error logging
 | 
					 | 
				
			||||||
  * lms: Change radioDevice constructor arg name to avoid masking instance attr
 | 
					 | 
				
			||||||
  * lms: Make reference to std::vector unambiguous
 | 
					 | 
				
			||||||
  * lms: Move rx_buffers allocation to constructor
 | 
					 | 
				
			||||||
  * lms: Store device type specific parameters in one place
 | 
					 | 
				
			||||||
  * lms: Make ts_offset and smpl rate coefs device-specific
 | 
					 | 
				
			||||||
  * lms: Initial multi-arfcn support
 | 
					 | 
				
			||||||
  * contrib/jenkins.sh: Reorder sanity checks
 | 
					 | 
				
			||||||
  * debug.h: Avoid printing pthread_t type
 | 
					 | 
				
			||||||
  * debug.h: Fix print format of chan in CLOGCHAN
 | 
					 | 
				
			||||||
  * cosmetic: fix several typos found by codespell
 | 
					 | 
				
			||||||
  * radioDevice: Drop unused RSSI param from readSamples API
 | 
					 | 
				
			||||||
  * radioDevice: Drop unused isControl param from WriteSamples API
 | 
					 | 
				
			||||||
  * Use OSMO_FD_READ instead of deprecated BSC_FD_READ
 | 
					 | 
				
			||||||
  * Transceiver: Fix extra space in RSP NOISELEV error
 | 
					 | 
				
			||||||
  * Transceiver: Implement TRXC cmd NOMTXPOWER
 | 
					 | 
				
			||||||
  * UHDDevice: Implement getNominalTxPower() based on TxFrequency
 | 
					 | 
				
			||||||
  * radioInterface: Operate on real Tx power attenuation rather than on device specific gains
 | 
					 | 
				
			||||||
  * UHDDevice: Compute TxGain on UHD API based on expected Tx output power
 | 
					 | 
				
			||||||
  * proto_trxd: Fix UndefinedBehaviorSanitizer from ubsan
 | 
					 | 
				
			||||||
  * Transceiver: Allow sending negative nominal tx power in RSP NOMTXPOWER
 | 
					 | 
				
			||||||
  * LMSDevice: Compute TxGain on LimeSuite API based on expected Tx output power
 | 
					 | 
				
			||||||
  * Drop old TxGain APIs from parent radioDevice abstract class
 | 
					 | 
				
			||||||
  * {UHD,LMS}Dervice: Log expected resulting TxPower when setting device specific TxGain
 | 
					 | 
				
			||||||
  * cosmetic: trx_rate_ctr: Fix whitespace
 | 
					 | 
				
			||||||
  * trx_rate_ctr: Fix immediate rescheduling on per-sec thresholds
 | 
					 | 
				
			||||||
  * Rename device specific rate counter multi-thread helpers
 | 
					 | 
				
			||||||
  * Introduce rate counter tx_stale_bursts
 | 
					 | 
				
			||||||
  * TransceiverState: Initialize ctrs field in constructor
 | 
					 | 
				
			||||||
  * doc/manuals: Update thread documentation after dropping CTRL sock threads
 | 
					 | 
				
			||||||
  * trx_rate_ctr: Fix locking wrong mutex
 | 
					 | 
				
			||||||
  * Introduce rate counters to detect issues in received Dl bursts from TRXD
 | 
					 | 
				
			||||||
  * Transceiver: Fix race condition obtaining Dl burst from Upper layer
 | 
					 | 
				
			||||||
  * Add rate counter for missing Txbursts when scheduled towards the radioInterface
 | 
					 | 
				
			||||||
  * Transceiver: Provide initial value for TransceiverState::mFiller in constructor
 | 
					 | 
				
			||||||
  * Transceiver: Use already obtained value from Rx msg structure
 | 
					 | 
				
			||||||
  * Transceiver: Restrict conditions where FN gaps are detected
 | 
					 | 
				
			||||||
  * trx_rate_ctr: Lower some log levels
 | 
					 | 
				
			||||||
  * Introduce CTR log category
 | 
					 | 
				
			||||||
  * Transceiver: Lower some log levels which have an associated counter
 | 
					 | 
				
			||||||
  * Transceiver: Check log level before generating burst str representation
 | 
					 | 
				
			||||||
  * Transceiver: Add several rate_ctr for rx error conditions
 | 
					 | 
				
			||||||
  * Use new libosmovty cpu sched config features
 | 
					 | 
				
			||||||
  * debian: Update debian8 osmo-trx specific patch
 | 
					 | 
				
			||||||
  * jenkins.sh: Verify distro-specific patches apply
 | 
					 | 
				
			||||||
  * ipc: fix var declaration in for loop
 | 
					 | 
				
			||||||
  * Add support for TRXC MUTE command
 | 
					 | 
				
			||||||
  * arch: x86: Fix convolve optimizations breaking signal
 | 
					 | 
				
			||||||
  * contrib/jenkins: Enable parallel make in make distcheck
 | 
					 | 
				
			||||||
  * Transceiver: Pass config struct instead of large list of params
 | 
					 | 
				
			||||||
  * Calculate RSSI offset based on RxGain configuration
 | 
					 | 
				
			||||||
  * main: generate coredump and exit upon SIGABRT received
 | 
					 | 
				
			||||||
  * ipc: Fix wrong reference to BTS in log line
 | 
					 | 
				
			||||||
  * ipc-driver-test: Allow setting dir prefix for UD socket
 | 
					 | 
				
			||||||
  * radioInterfaceMulti: Fix memory leak upon close()
 | 
					 | 
				
			||||||
  * ChannelizerBase: Fix memory leak
 | 
					 | 
				
			||||||
  * Threads.cpp: Use already existing gettid wrapper function
 | 
					 | 
				
			||||||
  * Replace my_gettid with libosmocore osmo_gettid API
 | 
					 | 
				
			||||||
  * tests: Explicitly drop category from log
 | 
					 | 
				
			||||||
  * tests: Replace deprecated API log_set_print_filename
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Philipp Maier ]
 | 
					 | 
				
			||||||
  * debug: use LOGL_NOTICE for log category DDEV
 | 
					 | 
				
			||||||
  * doc: do not set the base-port of the trx
 | 
					 | 
				
			||||||
  * doc: apply an rssi-offset of 28 by default.
 | 
					 | 
				
			||||||
  * doc: switch log levels to notice
 | 
					 | 
				
			||||||
  * Transceiver: Log when sending of CLK indications begins
 | 
					 | 
				
			||||||
  * vty: add attributes to VTY commands indicating when they apply
 | 
					 | 
				
			||||||
  * osmo-trx: add commandline option --vty-ref-xml
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Eric ]
 | 
					 | 
				
			||||||
  * configure.ac: fix libtool issue  with clang and sanitizer
 | 
					 | 
				
			||||||
  * transceiver: check the right vector
 | 
					 | 
				
			||||||
  * transceiver: get rid of the ctrl threads
 | 
					 | 
				
			||||||
  * add kernel style .clang-format with 120 chars per line limit
 | 
					 | 
				
			||||||
  * devices: reset internal smart sample buffers upon stop
 | 
					 | 
				
			||||||
  * transceiver: optimize code if optimizations are enabled
 | 
					 | 
				
			||||||
  * transceiver: initialize reorder flag so we don't miscount
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Harald Welte ]
 | 
					 | 
				
			||||||
  * PRBS tool sending PRBS sequence to TRX
 | 
					 | 
				
			||||||
  * prbs-tool: Add error simulation capabilities
 | 
					 | 
				
			||||||
  * utils: Ensure content of this directory is included in 'make dist'
 | 
					 | 
				
			||||||
  * prbs-tool: Don't require C99
 | 
					 | 
				
			||||||
  * RPM spec file: Require uhd-firmware for osmo-trx-uhd
 | 
					 | 
				
			||||||
  * osmo-trx.spec.in: Use %config(noreplace) to retain current config file
 | 
					 | 
				
			||||||
  * Fix build on Debian8
 | 
					 | 
				
			||||||
  * [cosmetic] radioInterfaceMulti: More comments
 | 
					 | 
				
			||||||
  * [cosmetic] radioIntefaceMulti: Fix whitespace / indent
 | 
					 | 
				
			||||||
  * ipc: Use OSMO_FD_* instead of deprecated BSC_FD_*
 | 
					 | 
				
			||||||
  * Use osmo_fd_setup() wherever applicable
 | 
					 | 
				
			||||||
  * Use osmo_fd_*_{disable,enable}
 | 
					 | 
				
			||||||
  * README update
 | 
					 | 
				
			||||||
  * manual: Fix typo OsmTRX -> OsmoTRX
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Oliver Smith ]
 | 
					 | 
				
			||||||
  * contrib: import RPM spec
 | 
					 | 
				
			||||||
  * contrib: integrate RPM spec
 | 
					 | 
				
			||||||
  * Makefile.am: EXTRA_DIST: debian, contrib/*.spec.in
 | 
					 | 
				
			||||||
  * contrib/jenkins: don't build osmo-gsm-manuals
 | 
					 | 
				
			||||||
  * configure.ac: set -std=gnu11
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Vadim Yanitskiy ]
 | 
					 | 
				
			||||||
  * UHDDevice: catch LookupError/IndexError in set{Rx,Tx}Antenna()
 | 
					 | 
				
			||||||
  * debian/control: change maintainer to the Osmocom team / mailing list
 | 
					 | 
				
			||||||
  * proto_trxd: cosmetic: 'if' is not a function, add space
 | 
					 | 
				
			||||||
  * vty: add multi-ARFCN specific warning for chan N > 0
 | 
					 | 
				
			||||||
  * radioDevice: fix set_antennas(): consider MULTI_ARFCN mode
 | 
					 | 
				
			||||||
  * device/lms: fix: 'trx_vty.h' header requires C linkage
 | 
					 | 
				
			||||||
  * device/lms: fix missing semicolon in LMSDevice::assign_band_desc()
 | 
					 | 
				
			||||||
  * device/lms: get rid of 'using namespace std'
 | 
					 | 
				
			||||||
  * device/common/Makefile.am: remove $(LMS_CFLAGS) from AM_CXXFLAGS
 | 
					 | 
				
			||||||
  * main: add --vty-ref-mode, use vty_dump_xml_ref_mode()
 | 
					 | 
				
			||||||
  * device: drop unreasonable LIBOSMO{CTRL,VTY}_{CFLAGS,LIBS}
 | 
					 | 
				
			||||||
  * Transceiver: use size_t and ARRAY_SIZE() in constructor
 | 
					 | 
				
			||||||
  * Transceiver: explicitly init m{Rx,Tx}LowerLoopThread
 | 
					 | 
				
			||||||
  * vty: fix documentation for 'swap-channels (disable|enable)'
 | 
					 | 
				
			||||||
  * vty: fix documentation for 'egprs (disable|enable)'
 | 
					 | 
				
			||||||
  * vty: fix documentation for 'rx-sps (1|4)' and 'tx-sps (1|4)'
 | 
					 | 
				
			||||||
  * vty: cosmetic: use VTY_IPV4_CMD in 'bind-ip' / 'remote-ip'
 | 
					 | 
				
			||||||
  * vty: fix documentation for 'multi-arfcn (disable|enable)'
 | 
					 | 
				
			||||||
  * vty: remove groundless statement about filler type 'dummy'
 | 
					 | 
				
			||||||
  * vty: auto-generate cmd and doc strings for cfg_filler_type_cmd
 | 
					 | 
				
			||||||
  * vty: fix documentation for 'ext-rach (disable|enable)'
 | 
					 | 
				
			||||||
  * main: use logging API to print SIMD info instead of printf()
 | 
					 | 
				
			||||||
  * doc/manuals: generate XML VTY reference at build-time
 | 
					 | 
				
			||||||
  * vty: fix swapped documentation for 'filler type' command
 | 
					 | 
				
			||||||
  * Transceiver: fix integer division in addRadioVector()
 | 
					 | 
				
			||||||
  * Transceiver: use proper factor for amplitude scaling
 | 
					 | 
				
			||||||
  * Add a (hidden) VTY parameter for Rx/Tx freq. shifting
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Eric Wild ]
 | 
					 | 
				
			||||||
  * osmo-trx-ipc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Alexander Couzens ]
 | 
					 | 
				
			||||||
  * osmo-trx.spec: move ipc-driver-test into package ipc-test
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  [ Sylvain Munaut ]
 | 
					 | 
				
			||||||
  * sigProcLib: fix C/I computation for 8-PSK modulated bursts
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 -- Pau Espin Pedrol <pespin@espeweb.net>  Tue, 23 Feb 2021 14:27:15 +0100
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
osmo-trx (1.2.0) unstable; urgency=medium
 | 
					osmo-trx (1.2.0) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  [ Pau Espin Pedrol ]
 | 
					  [ Pau Espin Pedrol ]
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										23
									
								
								debian/control
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										23
									
								
								debian/control
									
									
									
									
										vendored
									
									
								
							@@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 9),
 | 
				
			|||||||
               libtalloc-dev,
 | 
					               libtalloc-dev,
 | 
				
			||||||
               libusrp-dev,
 | 
					               libusrp-dev,
 | 
				
			||||||
               liblimesuite-dev,
 | 
					               liblimesuite-dev,
 | 
				
			||||||
               libosmocore-dev (>= 1.6.0),
 | 
					               libosmocore-dev (>= 1.3.0),
 | 
				
			||||||
               osmo-gsm-manuals-dev
 | 
					               osmo-gsm-manuals-dev
 | 
				
			||||||
Standards-Version: 3.9.6
 | 
					Standards-Version: 3.9.6
 | 
				
			||||||
Vcs-Browser: http://cgit.osmocom.org/osmo-trx
 | 
					Vcs-Browser: http://cgit.osmocom.org/osmo-trx
 | 
				
			||||||
@@ -30,7 +30,7 @@ Package: osmo-trx-dbg
 | 
				
			|||||||
Architecture: any
 | 
					Architecture: any
 | 
				
			||||||
Section: debug
 | 
					Section: debug
 | 
				
			||||||
Priority: extra
 | 
					Priority: extra
 | 
				
			||||||
Depends: osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), osmo-trx-lms (= ${binary:Version}), osmo-trx-ipc (= ${binary:Version}), ${misc:Depends}
 | 
					Depends: osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), osmo-trx-lms (= ${binary:Version}), ${misc:Depends}
 | 
				
			||||||
Description: Debug symbols for the osmo-trx-*
 | 
					Description: Debug symbols for the osmo-trx-*
 | 
				
			||||||
 Make debugging possible
 | 
					 Make debugging possible
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -91,25 +91,6 @@ Description: SDR transceiver that implements Layer 1 of a GSM BTS (LimeSuite)
 | 
				
			|||||||
 between different telecommunication associations for developing new
 | 
					 between different telecommunication associations for developing new
 | 
				
			||||||
 generations of mobile phone networks. (post-2G/GSM)
 | 
					 generations of mobile phone networks. (post-2G/GSM)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Package: osmo-trx-ipc
 | 
					 | 
				
			||||||
Architecture: any
 | 
					 | 
				
			||||||
Depends: ${shlibs:Depends}, ${misc:Depends}
 | 
					 | 
				
			||||||
Description: SDR transceiver that implements Layer 1 of a GSM BTS (generic IPC)
 | 
					 | 
				
			||||||
 OsmoTRX is a software-defined radio transceiver that implements the Layer 1
 | 
					 | 
				
			||||||
 physical layer of a BTS comprising the following 3GPP specifications:
 | 
					 | 
				
			||||||
 .
 | 
					 | 
				
			||||||
 TS 05.01 "Physical layer on the radio path"
 | 
					 | 
				
			||||||
 TS 05.02 "Multiplexing and Multiple Access on the Radio Path"
 | 
					 | 
				
			||||||
 TS 05.04 "Modulation"
 | 
					 | 
				
			||||||
 TS 05.10 "Radio subsystem synchronization"
 | 
					 | 
				
			||||||
 .
 | 
					 | 
				
			||||||
 In this context, BTS is "Base transceiver station". It's the stations that
 | 
					 | 
				
			||||||
 connect mobile phones to the mobile network.
 | 
					 | 
				
			||||||
 .
 | 
					 | 
				
			||||||
 3GPP is the "3rd Generation Partnership Project" which is the collaboration
 | 
					 | 
				
			||||||
 between different telecommunication associations for developing new
 | 
					 | 
				
			||||||
 generations of mobile phone networks. (post-2G/GSM)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Package: osmo-trx-doc
 | 
					Package: osmo-trx-doc
 | 
				
			||||||
Architecture: all
 | 
					Architecture: all
 | 
				
			||||||
Section: doc
 | 
					Section: doc
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								debian/osmo-trx-ipc.install
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								debian/osmo-trx-ipc.install
									
									
									
									
										vendored
									
									
								
							@@ -1,4 +0,0 @@
 | 
				
			|||||||
etc/osmocom/osmo-trx-ipc.cfg
 | 
					 | 
				
			||||||
lib/systemd/system/osmo-trx-ipc.service
 | 
					 | 
				
			||||||
/usr/bin/osmo-trx-ipc
 | 
					 | 
				
			||||||
/usr/share/doc/osmo-trx/examples/osmo-trx-ipc/osmo-trx-ipc.cfg /usr/share/doc/osmo-trx/examples/osmo-trx-ipc/
 | 
					 | 
				
			||||||
							
								
								
									
										60
									
								
								debian/patches/build-for-debian8.patch
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										60
									
								
								debian/patches/build-for-debian8.patch
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,60 @@
 | 
				
			|||||||
 | 
					diff --git a/debian/control b/debian/control
 | 
				
			||||||
 | 
					index 8ff59f0..126c16a 100644
 | 
				
			||||||
 | 
					--- a/debian/control
 | 
				
			||||||
 | 
					+++ b/debian/control
 | 
				
			||||||
 | 
					@@ -13,7 +13,6 @@ Build-Depends: debhelper (>= 9),
 | 
				
			||||||
 | 
					                libfftw3-dev,
 | 
				
			||||||
 | 
					                libtalloc-dev,
 | 
				
			||||||
 | 
					                libusrp-dev,
 | 
				
			||||||
 | 
					-               liblimesuite-dev,
 | 
				
			||||||
 | 
					                libosmocore-dev (>= 1.3.0),
 | 
				
			||||||
 | 
					                osmo-gsm-manuals-dev
 | 
				
			||||||
 | 
					 Standards-Version: 3.9.6
 | 
				
			||||||
 | 
					@@ -30,7 +29,7 @@ Package: osmo-trx-dbg
 | 
				
			||||||
 | 
					 Architecture: any
 | 
				
			||||||
 | 
					 Section: debug
 | 
				
			||||||
 | 
					 Priority: extra
 | 
				
			||||||
 | 
					-Depends: osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), osmo-trx-lms (= ${binary:Version}), ${misc:Depends}
 | 
				
			||||||
 | 
					+Depends: osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), ${misc:Depends}
 | 
				
			||||||
 | 
					 Description: Debug symbols for the osmo-trx-*
 | 
				
			||||||
 | 
					  Make debugging possible
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					@@ -72,25 +71,6 @@ Description: SDR transceiver that implements Layer 1 of a GSM BTS (USRP1)
 | 
				
			||||||
 | 
					  between different telecommunication associations for developing new
 | 
				
			||||||
 | 
					  generations of mobile phone networks. (post-2G/GSM)
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					-Package: osmo-trx-lms
 | 
				
			||||||
 | 
					-Architecture: any
 | 
				
			||||||
 | 
					-Depends: ${shlibs:Depends}, ${misc:Depends}
 | 
				
			||||||
 | 
					-Description: SDR transceiver that implements Layer 1 of a GSM BTS (LimeSuite)
 | 
				
			||||||
 | 
					- OsmoTRX is a software-defined radio transceiver that implements the Layer 1
 | 
				
			||||||
 | 
					- physical layer of a BTS comprising the following 3GPP specifications:
 | 
				
			||||||
 | 
					- .
 | 
				
			||||||
 | 
					- TS 05.01 "Physical layer on the radio path"
 | 
				
			||||||
 | 
					- TS 05.02 "Multiplexing and Multiple Access on the Radio Path"
 | 
				
			||||||
 | 
					- TS 05.04 "Modulation"
 | 
				
			||||||
 | 
					- TS 05.10 "Radio subsystem synchronization"
 | 
				
			||||||
 | 
					- .
 | 
				
			||||||
 | 
					- In this context, BTS is "Base transceiver station". It's the stations that
 | 
				
			||||||
 | 
					- connect mobile phones to the mobile network.
 | 
				
			||||||
 | 
					- .
 | 
				
			||||||
 | 
					- 3GPP is the "3rd Generation Partnership Project" which is the collaboration
 | 
				
			||||||
 | 
					- between different telecommunication associations for developing new
 | 
				
			||||||
 | 
					- generations of mobile phone networks. (post-2G/GSM)
 | 
				
			||||||
 | 
					-
 | 
				
			||||||
 | 
					 Package: osmo-trx-doc
 | 
				
			||||||
 | 
					 Architecture: all
 | 
				
			||||||
 | 
					 Section: doc
 | 
				
			||||||
 | 
					diff --git a/debian/rules b/debian/rules
 | 
				
			||||||
 | 
					index 627c0c8..d9285e2 100755
 | 
				
			||||||
 | 
					--- a/debian/rules
 | 
				
			||||||
 | 
					+++ b/debian/rules
 | 
				
			||||||
 | 
					@@ -9,7 +9,7 @@ override_dh_shlibdeps:
 | 
				
			||||||
 | 
					 	dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 override_dh_auto_configure:
 | 
				
			||||||
 | 
					-	dh_auto_configure -- --with-uhd --with-usrp1 --with-lms --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals
 | 
				
			||||||
 | 
					+	dh_auto_configure -- --with-uhd --with-usrp1 --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					 override_dh_strip:
 | 
				
			||||||
 | 
					 	dh_strip --dbg-package=osmo-trx-dbg
 | 
				
			||||||
							
								
								
									
										1
									
								
								debian/patches/series
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								debian/patches/series
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					# build-for-debian8.patch
 | 
				
			||||||
							
								
								
									
										2
									
								
								debian/rules
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								debian/rules
									
									
									
									
										vendored
									
									
								
							@@ -9,7 +9,7 @@ override_dh_shlibdeps:
 | 
				
			|||||||
	dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
 | 
						dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
 | 
				
			||||||
 | 
					
 | 
				
			||||||
override_dh_auto_configure:
 | 
					override_dh_auto_configure:
 | 
				
			||||||
	dh_auto_configure -- --with-uhd --with-usrp1 --with-lms --with-ipc --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals
 | 
						dh_auto_configure -- --with-uhd --with-usrp1 --with-lms --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
override_dh_strip:
 | 
					override_dh_strip:
 | 
				
			||||||
	dh_strip --dbg-package=osmo-trx-dbg
 | 
						dh_strip --dbg-package=osmo-trx-dbg
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,10 +14,6 @@ if DEVICE_LMS
 | 
				
			|||||||
OSMOCONF_FILES += osmo-trx-lms/osmo-trx-lms.cfg
 | 
					OSMOCONF_FILES += osmo-trx-lms/osmo-trx-lms.cfg
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if DEVICE_IPC
 | 
					 | 
				
			||||||
OSMOCONF_FILES += osmo-trx-ipc/osmo-trx-ipc.cfg
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
osmoconf_DATA = $(OSMOCONF_FILES)
 | 
					osmoconf_DATA = $(OSMOCONF_FILES)
 | 
				
			||||||
EXTRA_DIST = $(OSMOCONF_FILES)
 | 
					EXTRA_DIST = $(OSMOCONF_FILES)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,32 +0,0 @@
 | 
				
			|||||||
log stderr
 | 
					 | 
				
			||||||
 logging filter all 1
 | 
					 | 
				
			||||||
 logging color 1
 | 
					 | 
				
			||||||
 logging print category 1
 | 
					 | 
				
			||||||
 logging timestamp 1
 | 
					 | 
				
			||||||
 logging print file basename
 | 
					 | 
				
			||||||
 logging level set-all notice
 | 
					 | 
				
			||||||
!
 | 
					 | 
				
			||||||
line vty
 | 
					 | 
				
			||||||
 no login
 | 
					 | 
				
			||||||
!
 | 
					 | 
				
			||||||
cpu-sched
 | 
					 | 
				
			||||||
 policy rr 18
 | 
					 | 
				
			||||||
trx
 | 
					 | 
				
			||||||
 bind-ip 127.0.0.1
 | 
					 | 
				
			||||||
 remote-ip 127.0.0.1
 | 
					 | 
				
			||||||
 ! 28 dB offset below is valid only for the B2xx in 1800 MHz band, see
 | 
					 | 
				
			||||||
 ! https://osmocom.org/issues/4468 for more details
 | 
					 | 
				
			||||||
 rssi-offset 28.000000
 | 
					 | 
				
			||||||
 tx-sps 4
 | 
					 | 
				
			||||||
 rx-sps 4
 | 
					 | 
				
			||||||
 clock-ref external
 | 
					 | 
				
			||||||
 egprs disable
 | 
					 | 
				
			||||||
 ext-rach disable
 | 
					 | 
				
			||||||
 dev-args ipc_msock=/tmp/ipc_sock0
 | 
					 | 
				
			||||||
 multi-arfcn disable
 | 
					 | 
				
			||||||
 chan 0
 | 
					 | 
				
			||||||
  tx-path TX/RX
 | 
					 | 
				
			||||||
  rx-path RX2
 | 
					 | 
				
			||||||
 chan 1
 | 
					 | 
				
			||||||
  tx-path TX/RX
 | 
					 | 
				
			||||||
  rx-path RX2
 | 
					 | 
				
			||||||
@@ -15,6 +15,9 @@ trx
 | 
				
			|||||||
 bind-ip 127.0.0.1
 | 
					 bind-ip 127.0.0.1
 | 
				
			||||||
 remote-ip 127.0.0.1
 | 
					 remote-ip 127.0.0.1
 | 
				
			||||||
 egprs disable
 | 
					 egprs disable
 | 
				
			||||||
 | 
					 ! 28 dB offset below is valid only for the B2xx in 1800 MHz band, see
 | 
				
			||||||
 | 
					 ! https://osmocom.org/issues/4468 for more details
 | 
				
			||||||
 | 
					 rssi-offset 28.000000
 | 
				
			||||||
 tx-sps 4
 | 
					 tx-sps 4
 | 
				
			||||||
 rx-sps 4
 | 
					 rx-sps 4
 | 
				
			||||||
 clock-ref external
 | 
					 clock-ref external
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,6 @@
 | 
				
			|||||||
EXTRA_DIST = osmotrx-usermanual.adoc \
 | 
					EXTRA_DIST = osmotrx-usermanual.adoc \
 | 
				
			||||||
    osmotrx-usermanual-docinfo.xml \
 | 
					    osmotrx-usermanual-docinfo.xml \
 | 
				
			||||||
 | 
					    osmotrx-vty-reference.xml \
 | 
				
			||||||
    chapters \
 | 
					    chapters \
 | 
				
			||||||
    vty
 | 
					    vty
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -8,24 +9,8 @@ if BUILD_MANUALS
 | 
				
			|||||||
  ASCIIDOC_DEPS = $(srcdir)/chapters/*.adoc
 | 
					  ASCIIDOC_DEPS = $(srcdir)/chapters/*.adoc
 | 
				
			||||||
  include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.asciidoc.inc
 | 
					  include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.asciidoc.inc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  VARIANTS = $(NULL)
 | 
					  VTY_REFERENCE = osmotrx-vty-reference.xml
 | 
				
			||||||
 | 
					  include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.vty-reference.inc
 | 
				
			||||||
if DEVICE_UHD
 | 
					 | 
				
			||||||
  VARIANTS += uhd
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
if DEVICE_USRP1
 | 
					 | 
				
			||||||
  VARIANTS += usrp1
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
if DEVICE_LMS
 | 
					 | 
				
			||||||
  VARIANTS += lms
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
if DEVICE_IPC
 | 
					 | 
				
			||||||
  VARIANTS += ipc
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # This is a significantly modified, multi-target adopted copy of
 | 
					 | 
				
			||||||
  # $(OSMO_GSM_MANUALS_DIR)/build/Makefile.vty-reference.inc
 | 
					 | 
				
			||||||
  include $(srcdir)/vty/Makefile.vty-reference.inc
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  OSMO_REPOSITORY = osmo-trx
 | 
					  OSMO_REPOSITORY = osmo-trx
 | 
				
			||||||
  include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.common.inc
 | 
					  include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.common.inc
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
== Configuring OsmoTRX
 | 
					== Configuring OsmTRX
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OsmoTRX will read the configuration at startup time and configure the
 | 
					OsmoTRX will read the configuration at startup time and configure the
 | 
				
			||||||
transceiver accordingly after validating the configuration.
 | 
					transceiver accordingly after validating the configuration.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML 5.0//EN"
 | 
					<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML 5.0//EN"
 | 
				
			||||||
"http://docbook.org/xml/5.0/dtd/docbook.dtd" [
 | 
					"http://docbook.org/xml/5.0/dtd/docbook.dtd" [
 | 
				
			||||||
<!ENTITY chapter-vty      SYSTEM      "./common/chapters/vty.xml" >
 | 
					<!ENTITY chapter-vty      SYSTEM      "./common/chapters/vty.xml" >
 | 
				
			||||||
<!ENTITY sections-vty     SYSTEM      "@@GENERATED@@" >
 | 
					<!ENTITY sections-vty     SYSTEM      "generated/docbook_vty.xml"  >
 | 
				
			||||||
]>
 | 
					]>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<book>
 | 
					<book>
 | 
				
			||||||
@@ -18,19 +18,12 @@
 | 
				
			|||||||
            <authorinitials>pe</authorinitials>
 | 
					            <authorinitials>pe</authorinitials>
 | 
				
			||||||
            <revremark>Initial</revremark>
 | 
					            <revremark>Initial</revremark>
 | 
				
			||||||
        </revision>
 | 
					        </revision>
 | 
				
			||||||
        <revision>
 | 
					 | 
				
			||||||
            <revnumber>v2</revnumber>
 | 
					 | 
				
			||||||
            <date>@@REV_DATE@@</date>
 | 
					 | 
				
			||||||
            <authorinitials>s.f.m.c.</authorinitials>
 | 
					 | 
				
			||||||
            <revremark>Automatic build (@@REV_NUMBER@@)</revremark>
 | 
					 | 
				
			||||||
        </revision>
 | 
					 | 
				
			||||||
    </revhistory>
 | 
					    </revhistory>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <title>OsmoTRX VTY Reference</title>
 | 
					    <title>OsmoTRX VTY Reference</title>
 | 
				
			||||||
    <subtitle>@@VARIANT@@</subtitle>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <copyright>
 | 
					    <copyright>
 | 
				
			||||||
      <year>@@CR_YEAR@@</year>
 | 
					      <year>2018</year>
 | 
				
			||||||
    </copyright>
 | 
					    </copyright>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <legalnotice>
 | 
					    <legalnotice>
 | 
				
			||||||
@@ -1,37 +0,0 @@
 | 
				
			|||||||
DOCBOOKS = $(foreach v,$(VARIANTS),vty/osmotrx-$(v)-vty-reference.xml)
 | 
					 | 
				
			||||||
DOCBOOKS_DEPS = $(DOCBOOKS) $(addsuffix .inc,$(DOCBOOKS))
 | 
					 | 
				
			||||||
INC_DIR = $(abspath $(builddir)/vty)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.docbook.inc
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CLEAN_FILES += $(DOCBOOKS_DEPS)
 | 
					 | 
				
			||||||
CLEAN_FILES += $(addsuffix .inc.gen,$(DOCBOOKS))
 | 
					 | 
				
			||||||
CLEAN_FILES += $(addsuffix .inc.merged,$(DOCBOOKS))
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
$(INC_DIR):
 | 
					 | 
				
			||||||
	mkdir -p $@
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
vty/osmotrx-%-vty-reference.xml: $(top_builddir)/Transceiver52M/osmo-trx-% $(INC_DIR)
 | 
					 | 
				
			||||||
	sed -e "s|@@GENERATED@@|$@.inc|" \
 | 
					 | 
				
			||||||
	    -e "s|@@VARIANT@@|$(notdir $<)|" \
 | 
					 | 
				
			||||||
	    -e "s|@@REV_NUMBER@@|$(VERSION)|" \
 | 
					 | 
				
			||||||
	    -e "s|@@REV_DATE@@|$(shell date +"%dth %B %Y")|" \
 | 
					 | 
				
			||||||
	    -e "s|@@CR_YEAR@@|$(shell date +"%Y")|" \
 | 
					 | 
				
			||||||
		$(srcdir)/vty/osmotrx-vty-reference.xml > $@
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
vty/osmotrx-%-vty-reference.xml.inc: $(top_builddir)/Transceiver52M/osmo-trx-% \
 | 
					 | 
				
			||||||
				     $(OSMO_GSM_MANUALS_DIR)/common/vty_additions.xml \
 | 
					 | 
				
			||||||
				     $(OSMO_GSM_MANUALS_DIR)/common/chapters/vty.xml \
 | 
					 | 
				
			||||||
				     $(OSMO_GSM_MANUALS_DIR)/vty_reference.xsl \
 | 
					 | 
				
			||||||
				     $(srcdir)/vty/*.xml $(INC_DIR)
 | 
					 | 
				
			||||||
	# a) Invoke osmo-trx-% to generate the list of commands first
 | 
					 | 
				
			||||||
	$< --vty-ref-mode default --vty-ref-xml > "$@.gen"
 | 
					 | 
				
			||||||
	# ... filter garbage potentially printed by libraries to stdout
 | 
					 | 
				
			||||||
	sed -i '/^<vtydoc/,$$!d' "$@.gen"
 | 
					 | 
				
			||||||
	# b) Merge the result of a) with global and local additions
 | 
					 | 
				
			||||||
	$(OSMO_GSM_MANUALS_DIR)/build/vty_reference_combine.sh \
 | 
					 | 
				
			||||||
		$(realpath $(OSMO_GSM_MANUALS_DIR)/merge_doc.xsl) "$@.gen" \
 | 
					 | 
				
			||||||
		$(OSMO_GSM_MANUALS_DIR)/common/vty_additions.xml \
 | 
					 | 
				
			||||||
		$(srcdir)/vty/*additions*.xml > "$@.merged"
 | 
					 | 
				
			||||||
	# c) Convert the result of b) into a valid docbook
 | 
					 | 
				
			||||||
	xsltproc $(OSMO_GSM_MANUALS_DIR)/vty_reference.xsl "$@.merged" > $@
 | 
					 | 
				
			||||||
							
								
								
									
										1406
									
								
								doc/manuals/vty/trx_vty_reference.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1406
									
								
								doc/manuals/vty/trx_vty_reference.xml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -59,10 +59,8 @@ int main(int argc, char *argv[])
 | 
				
			|||||||
	osmo_init_logging2(tall_ctx, &linfo);
 | 
						osmo_init_logging2(tall_ctx, &linfo);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	log_set_use_color(osmo_stderr_target, 0);
 | 
						log_set_use_color(osmo_stderr_target, 0);
 | 
				
			||||||
	log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
 | 
						log_set_print_filename(osmo_stderr_target, 0);
 | 
				
			||||||
	log_set_print_level(osmo_stderr_target, 1);
 | 
						log_set_print_level(osmo_stderr_target, 1);
 | 
				
			||||||
	log_set_print_category(osmo_stderr_target, 0);
 | 
					 | 
				
			||||||
	log_set_print_category_hex(osmo_stderr_target, 0);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	Log(MYCAT, LOGL_FATAL, __BASE_FILE__, __LINE__).get() << "testing the logger.";
 | 
						Log(MYCAT, LOGL_FATAL, __BASE_FILE__, __LINE__).get() << "testing the logger.";
 | 
				
			||||||
	Log(MYCAT, LOGL_ERROR, __BASE_FILE__, __LINE__).get() << "testing the logger.";
 | 
						Log(MYCAT, LOGL_ERROR, __BASE_FILE__, __LINE__).get() << "testing the logger.";
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,7 +11,7 @@ EXTRA_DIST = BitVectorTest.ok \
 | 
				
			|||||||
             LogTest.ok \
 | 
					             LogTest.ok \
 | 
				
			||||||
             LogTest.err
 | 
					             LogTest.err
 | 
				
			||||||
 | 
					
 | 
				
			||||||
check_PROGRAMS = \
 | 
					noinst_PROGRAMS = \
 | 
				
			||||||
	BitVectorTest \
 | 
						BitVectorTest \
 | 
				
			||||||
	PRBSTest \
 | 
						PRBSTest \
 | 
				
			||||||
	InterthreadTest \
 | 
						InterthreadTest \
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,10 @@
 | 
				
			|||||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
					 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
				
			||||||
 * Lesser General Public License for more details.
 | 
					 * Lesser General Public License for more details.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * You should have received a copy of the GNU Lesser General Public
 | 
				
			||||||
 | 
					 * License along with this library; if not, write to the Free Software
 | 
				
			||||||
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "PRBS.h"
 | 
					#include "PRBS.h"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,7 @@ AM_CFLAGS = -Wall -I$(top_srcdir)/Transceiver52M -I$(top_srcdir)/Transceiver52M/
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
EXTRA_DIST = convolve_test.ok convolve_test_golden.h
 | 
					EXTRA_DIST = convolve_test.ok convolve_test_golden.h
 | 
				
			||||||
 | 
					
 | 
				
			||||||
check_PROGRAMS = \
 | 
					noinst_PROGRAMS = \
 | 
				
			||||||
	convolve_test
 | 
						convolve_test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
convolve_test_SOURCES = convolve_test.c
 | 
					convolve_test_SOURCES = convolve_test.c
 | 
				
			||||||
@@ -18,7 +18,7 @@ convolve_test_CFLAGS += $(SIMD_FLAGS)
 | 
				
			|||||||
endif
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if DEVICE_LMS
 | 
					if DEVICE_LMS
 | 
				
			||||||
check_PROGRAMS += LMSDeviceTest
 | 
					noinst_PROGRAMS += LMSDeviceTest
 | 
				
			||||||
LMSDeviceTest_SOURCES = LMSDeviceTest.cpp
 | 
					LMSDeviceTest_SOURCES = LMSDeviceTest.cpp
 | 
				
			||||||
LMSDeviceTest_LDFLAGS = $(LIBOSMOCORE_LIBS) $(LMS_LIBS)
 | 
					LMSDeviceTest_LDFLAGS = $(LIBOSMOCORE_LIBS) $(LMS_LIBS)
 | 
				
			||||||
LMSDeviceTest_LDADD = \
 | 
					LMSDeviceTest_LDADD = \
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user