Project

General

Profile

OsmoTRX » History » Version 83

laforge, 07/27/2023 08:33 PM

1 1 ttsou
h1. [[OsmoTRX]]
2 41 ttsou
3 79 fixeria
{{>toc}}
4 1 ttsou
5 41 ttsou
[[OsmoTRX]] is a software-defined radio transceiver that implements the Layer 1 physical layer of a BTS comprising the following 3GPP specifications:
6
* TS 05.01 "Physical layer on the radio path"
7
* TS 05.02 "Multiplexing and Multiple Access on the Radio Path"
8
* TS 05.04 "Modulation"
9
* TS 05.10 "Radio subsystem synchronization"
10 1 ttsou
11 49 neels
[[OsmoTRX]] is based on the transceiver code from the [[OsmoBTS:OpenBTS]] project, but setup to operate independently with the purpose of using with non-OpenBTS software and projects, while still maintaining backwards compatibility with [[OsmoBTS:OpenBTS]]. Currently there are numerous features contained in [[OsmoTRX:]] that extend the functionality of the [[OsmoBTS:OpenBTS]] transceiver. These features include enhanced support for various embedded platforms - notably ARM - and dual channel diversity support for the Fairwaves [[umtrx:]].
12 41 ttsou
13 73 pespin
h2. OsmoTRX user manuals and documentation
14
15 81 laforge
User Manual can be found "here":https://ftp.osmocom.org/docs/latest/osmotrx-usermanual.pdf.
16
VTY Reference can be found here for "osmo-trx-ipc":https://ftp.osmocom.org/docs/latest/osmotrx-ipc-vty-reference.pdf, "osmo-trx-lms":https://ftp.osmocom.org/docs/latest/osmotrx-lms-vty-reference.pdf, "osmo-trx-uhd":https://ftp.osmocom.org/docs/latest/osmotrx-uhd-vty-reference.pdf and "osmo-trx-usrp1":https://ftp.osmocom.org/docs/latest/osmotrx-usrp1-vty-reference.pdf
17
18
:http://ftp.osmocom.org/docs/latest/osmotrx-vty-reference.pdf.
19 73 pespin
20 65 laforge
h2. OsmoTRX in the Osmocom GSM architecture (old OsmoNITB case)
21 46 laforge
22
{{graphviz_link()
23
digraph G {
24
    rankdir = LR;
25
    SDR -> OsmoTRX [label="Raw Samples"];
26
    OsmoTRX -> OsmoBTS [label="bursts over UDP"];
27 1 ttsou
    OsmoBTS -> OsmoNITB [label="Abis/IP"];
28 65 laforge
    OsmoBTS -> OsmoPCU [label="pcu_sock"];
29
    OsmoPCU -> OsmoSGSN [label="Gb/IP"];
30
    OsmoTRX [color=red];
31
}
32
}}
33
34
h2. OsmoTRX in the Osmocom GSM architecture (new OsmoBSC+OsmoMSC case)
35
36
{{graphviz_link()
37
digraph G {
38
    rankdir = LR;
39
    SDR -> OsmoTRX [label="Raw Samples"];
40
    OsmoTRX -> OsmoBTS [label="bursts over UDP"];
41
    OsmoBTS -> OsmoBSC [label="Abis/IP"];
42
    OsmoBSC -> OsmoMSC [label="AoIP"];
43 46 laforge
    OsmoBTS -> OsmoPCU [label="pcu_sock"];
44
    OsmoPCU -> OsmoSGSN [label="Gb/IP"];
45
    OsmoTRX [color=red];
46
}
47
}}
48 41 ttsou
49 62 laforge
h2. RF Hardware support
50 41 ttsou
51 1 ttsou
52 74 pespin
Multiple RF devices are currently supported. These include USRP family products from Ettus Research, and the [[UmTRX:]] from Fairwaves, as well as LimeSDR devices from "Lime Microsystems":https://limemicro.com/ using "LimeSuite":https://github.com/myriadrf/LimeSuite.
53 62 laforge
54
more details (e.g. signal levels) are provided in the hardware specific pages:
55
{{child_pages(HardwareSupport)}}
56
57
h2. Embedded Platform Support
58
59
[[OsmoTRX]] has been tested on the multiple embedded platforms representing a wide range of device types. Low cost ARM devices are generally limited by memory and I/O as much CPU utilization.
60
61
Running a full or near full ARFCN configuration (7 simultaneous TCH channels with Combination V) may require running the GSM stack remotely, which can be configured at runtime on the command line. This limitation appears to be scheduling related more so than lack of CPU resources, and may be resolved at a later time.
62
63
|_.Platform|_.SoC*|_.Processor|_.SIMD/FPU|_.Testing Notes|
64
|ArndaleBoard|Samsung Exynos 5250|ARM Cortex-A15|NEON-VFPv4|7 TCH|
65
|BeagleBoard-xM|Texas Instruments OMAP3|ARM Cortex-A8|NEON|7 TCH, remote [[osmobts:]] stack|
66
|Ettus E100|Texas Instruments OMAP3|ARM Cortex-A8|NEON|7 TCH, remote [[osmobts:]] stack|
67
|Raspberry Pi|Broadcom BCM2835|ARM11|VFP|2 TCH, remote [[osmobts:]] stack|
68
|Shuttle PC|NA|Intel Atom D2550|SSE3|Dual channel, 15 TCH|
69
70
All embedded plaforms were tested with low-phase error modulator disabled. Use of the more accurate modulator on embedded platforms has not been extensively tested.
71
72
73
h2. Features
74
75 41 ttsou
*Intel SSE Support*
76 6 ttsou
* SSE3
77
* SSE4.1
78 20 ttsou
79 41 ttsou
On Intel processors, [[OsmoTRX]] makes heavy use of the Streaming SIMD Extensions (SSE) instruction set. Accelerated operations include pulse shape filtering, resampling, sequence correlation, and many other signal processing operations. SSE3 is the minimum requirement for accelerated use.
80 1 ttsou
81 20 ttsou
SSE3 is present in the majority of Intel processors since later versions of the Pentium 4 architecture and is also present on low power Atom processors. Support is automatically detected at build time. For additional performance information, please see the performance and benchmarks section.
82 29 ttsou
83 41 ttsou
*ARM Support*
84 1 ttsou
* NEON
85
* NEON-VFPv4
86 20 ttsou
87 41 ttsou
[[OsmoTRX]] runs on a variety of ARM processors with and without NEON coprocessors. Like SSE on Intel processors, NEON provides acceleration with SIMD vectorized instructions.
88 20 ttsou
89 1 ttsou
Tested popular architectures include ARM11 (Raspberry Pi), Cortex-A8 (!BeagleBoard), and Cortex-A15 (!ArndaleBoard). Loosely speaking, these platforms are representative of low cost embedded devices, mid-level handsets, and high-end smartphones respectively. Similarly, in order, these platforms include no NEON coprocessor, standard NEON, and NEON-VFPv4. The latter NEON variation, VFPv4, provides additional fused-multiply-accumulate (FMA) instructions useful for many DSP operations.
90
91 26 ttsou
NEON support must be enabled by the user at build time. For additional information, please see the configuration and performance and benchmarks sections.
92 37 ttsou
93 41 ttsou
*Dual Channel (UmTRX and B210)*
94 7 ttsou
95 1 ttsou
Two dual channel modes are available: standard dual channel mode and diversity. In standard dual channel mode, each RF
96 28 ttsou
path of the dual channel device supports a different ARFCN. Each path operates independently a
97 1 ttsou
nd operates similarly to two separate devices. GSM channel capacity in this mode is doubled. This option can be configured at run time from the command line.
98
99 41 ttsou
*Dual Channel Diversity (UmTRX, experimental)*
100 1 ttsou
101 28 ttsou
Diversity mode is similar to the standard dual channel mode except each antenna supports both ARFCN channels. In this case, the receiver sample bandwidth is widened to handle both ARFCN's and subsequently converted and demultiplexed into separate sample streams. Each GSM receive path is fed dual signals, where antenna selection diversity is performed by taking the stronger signal on a burst-by-burst basis. This diversity setup improves uplink reception performance in multipath fading environments.
102 16 ttsou
103 28 ttsou
Limitations are increased CPU utilization and that ARFCN spacing is restricted (currently at 400 kHz) by the receiver sampling bandwidth. Setting the ARFCN spacing beyond the sampling limit will disable the diversity path and operate in standard dual channel mode. This options can be configured at run time from the command line.
104 58 ipse
105 1 ttsou
*Uplink Burst Detection*
106 41 ttsou
107 1 ttsou
[[OsmoTRX]] utilizes an updated receive burst detection algorithm that provides greater sensitivity and reliability than the original [[OsmoBTS:OpenBTS]] approach, which relied on energy detection for the initial stage of burst acquisition.
108
109 50 neels
The limitation of the previous approach was that it was slow to adapt to highly transient power levels and false burst detection in challenging situations such as receiver saturation, which may occur in close range lab testing. The other issue was that a high degree of level tuning was often necessary to operate reliably.
110 41 ttsou
111 1 ttsou
The current receiver code addressed those limitations for improved performance in a wider variety of environments.
112 60 laforge
113 59 roh
*Low Phase Error Modulator*
114 41 ttsou
115 1 ttsou
The default GSM downlink signal is configured for low distortion using a linearized GMSK modulator. The implementation is based on a two pulse Laurent approximation of continuous phase modulated (CPM) signals. The baseband output signal measures with very low phase error and is capable of passing industry spectrum mask requirements. Please note that actual performance will depend strongly on the particular device in use.
116 41 ttsou
117
Theoretical details can be found in the report on "GMSK":http://tsou.cc/gsm/report_gmsk.pdf. Octave / Matlab code for "pulse generation":http://tsou.cc/gsm/laurent.m is also available.
118
119 1 ttsou
This option can be enabled or disabled at run time from the command line.
120
121 43 laforge
Very Low Phase Error (Ettus Research N200)
122
123
!osmo-trx-phase.gif!
124
125
Spectrum Mask (Ettus Research N200)
126
127 1 ttsou
!osmo-trx-spectrum.gif!
128
129 83 laforge
h2. Mailing List / Forum
130 1 ttsou
131 66 laforge
For development purposes, [[OsmoTRX:]] is discussed on the [[OpenBSC:]] mailing list at openbsc@lists.osmocom.org.
132 1 ttsou
133
Subscription information is available at http://lists.osmocom.org/mailman/listinfo/openbsc/.  Please make sure to read our [[cellular-infrastructure:MailingListRules]] before posting.
134 83 laforge
135
We now also have a "2G RAN category on our discourse forum":https://discourse.osmocom.org/c/cni/geran
136 1 ttsou
137 41 ttsou
h2. GPRS support
138 1 ttsou
139 64 laforge
* [[OsmoTRX]] supports the GPRS (and EGPRS/EDGE) features of [[osmoPCU:]] and [[osmoBTS:]] as well as the remaining Osmocom stack, such as [[OsmoSGSN:]] and [[OpenGGSN:OsmoGGSN]]
140 61 laforge
* [[OsmoTRX]] does not support GPRS in combination with [[OsmoBTS:OpenBTS]].  For that, please use the transceiver supplied with [[OsmoBTS:OpenBTS]].
141 41 ttsou
142
h2. Source code
143
144
145 82 laforge
The source code is available from gitea.osmocom.org (module osmo-trx).
146 18 ttsou
147
Public read-only access is available via
148 41 ttsou
<pre>
149 82 laforge
$ git clone https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
150 41 ttsou
</pre>
151 82 laforge
You can browse it via gitea: https://gitea.osmocom.org/cellular-infrastructure/osmo-trx
152 1 ttsou
153 48 neels
h2. Dependencies
154 1 ttsou
155 48 neels
Install libusb-1.0 and libbost dev packages. On debian 8.4:
156 1 ttsou
157 48 neels
<pre>
158
sudo apt-get install --no-install-recommends libusb-1.0-0-dev libboost-dev
159
</pre>
160 41 ttsou
161 53 neels
h3. UHD
162 1 ttsou
163 48 neels
Unless using USRP1, you will need the Universal Hardware Driver (UHD),
164
which is available from Ettus Research or Fairwaves; the UHD implementation
165
must match your hardware:
166
167
* Ettus Research UHD for USRP devices
168 51 neels
* Fairwaves UHD with [[UmTRX:]]
169 48 neels
* USRP1 does not use the UHD driver, it is supported through the legacy libusrp driver provided in GNU Radio 3.4.2.
170
171 55 wirelesss
h3. UHD for Debian
172 48 neels
173 52 neels
When you are reading this, Debian packages for UHD may be sufficient for running osmo-trx and osmo-bts-trx.
174 48 neels
here are some of the packages that need to be installed:
175
176
<pre>
177 54 neels
sudo apt-get install libuhd-dev uhd-host
178 48 neels
</pre>
179 1 ttsou
180 55 wirelesss
*Troubleshooting:*
181
 
182 52 neels
At the time of writing this (2016-12), for Debian 8 aka jessie you need to use the jessie-backports packages:
183
184
<pre>
185
sudo -s
186
echo "deb http://ftp.de.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/uhd.list
187
apt-get update
188
apt-get -t jessie-backports install libuhd-dev uhd-host
189
</pre>
190
191
It may also be possible to use the pothos PPA instead:
192 48 neels
193
<pre>
194
sudo add-apt-repository ppa:guruofquality/pothos
195
sudo apt-get update
196
sudo apt install libboost-dev uhd
197
</pre>
198
199 53 neels
h3. Firmware
200 48 neels
201
You also need to download the firmware using a script provided by the UHD package.
202
Instructions suggest running the script as root, but this way is less dangerous:
203
204
<pre>
205
sudo mkdir /usr/share/uhd
206
sudo chown $USER: /usr/share/uhd
207
/usr/lib/uhd/utils/uhd_images_downloader.py
208
</pre>
209
210 63 pespin
You can flash the FPGA data you just downloaded with the following command, setting type and other parameters accordingly to your hw. For instance for an Ettus B200:
211
<pre>
212
uhd_image_loader --args="type=b200"
213
</pre>
214
215
The uhd_image_loader claims it can update the firmware too, but at least on some versions it does nothing when asked to update firmware. If you see no output of firwmare being flashed, you can use this other command line to flash the firmware, adapting it to the firmware file of your HW:
216
<pre>
217
/usr/lib/uhd/utils/b2xx_fx3_utils --load-fw /usr/share/uhd/images/usrp_b200_fw.hex
218
</pre>
219
220 53 neels
h3. Group
221 48 neels
222
You may need to add yourself to the usrp group:
223
224
<pre>
225
sudo gpasswd -a $USER usrp
226
# and re-login to acquire the group
227
</pre>
228
229 53 neels
h3. Verify
230 48 neels
231
run uhd_find_devices to make sure b200 is available:
232
233
<pre>
234
$ uhd_find_devices 
235
linux; GNU C++ version 4.9.1; Boost_105500; UHD_003.007.003-0-unknown
236
237
--------------------------------------------------
238
-- UHD Device 0
239
--------------------------------------------------
240
Device Address:
241
    type: b200
242
    name: MyB210
243
    serial: 1C0FFEE
244
    product: B210
245
</pre>
246
247
h2. Configuration and Build
248
249 41 ttsou
First, run autoreconf to remake the build system files.
250 1 ttsou
<pre>
251 18 ttsou
$ autoreconf -i
252 41 ttsou
...
253 18 ttsou
</pre>
254 41 ttsou
255 18 ttsou
*Intel Platforms (All)*
256 1 ttsou
257 41 ttsou
Intel SSE support is automatically detected on Intel x86 platforms. No user intervention is necessary. The general configuration defaults to the low phase error modulator. Atom users may wish to use the low-CPU utilization modulator, which can be later enabled from the command line at runtime.
258 18 ttsou
<pre>
259 1 ttsou
$ ./configure
260
...
261 19 ttsou
checking whether mmx is supported... yes
262 18 ttsou
checking whether sse is supported... yes
263
checking whether sse2 is supported... yes
264
checking whether sse3 is supported... yes
265
checking whether ssse3 is supported... yes
266
checking whether sse4.1 is supported... yes
267
checking whether sse4.2 is supported... yes
268 41 ttsou
...
269 18 ttsou
</pre>
270 41 ttsou
271 18 ttsou
*ARM Platforms with NEON*
272 41 ttsou
273
Many popular ARM development boards fall under this category including BeagleBoard, PandaBoard, and Ettus E100 USRP. This option will disable the low phase error modulator, which can be re-enabled at runtime. NEON support must be manually enabled.
274 24 ttsou
<pre>
275 41 ttsou
$ ./configure --with-neon
276 1 ttsou
</pre>
277 41 ttsou
278 1 ttsou
*ARM Platforms with NEON-VFPv4*
279 41 ttsou
280
Currently very few development platforms support this instruction set, which is seen mainly in high end smartphones and tablets. Available development boards are ArndaleBoard and ODROID-XU. This option will disable the low phase error modulator, which can be re-enabled at runtime. NEON-VFPv4 support must be manually enabled.
281 1 ttsou
<pre>
282 41 ttsou
$ ./configure --with-neon-vfpv4
283 1 ttsou
</pre>
284 41 ttsou
285 1 ttsou
*ARM Platforms without NEON*
286 41 ttsou
287 1 ttsou
This configuration mainly targets the Raspberry Pi. ARM platforms without NEON vector units are almost always very slow processors, and generally not very suitable for running [[OsmoTRX]]. Running [[OsmoTRX]] on a Raspberry Pi, however, is possible along with limited TCH (voice) channel support. Currently this configuration requires minor code changes.
288
289
Coming soon...
290 41 ttsou
291 75 pespin
*Choosing your target device*
292
293
Different SDR boards are managed using different software or libraries, usually provided by the vendor. As a result, different @osmo-trx@ binaries can be built based on which device one targets. For instance, if support for LimeSDR is required, one must use the @osmo-trx-lms@ binary, whereas if a UHD device is targeted, @osmo-trx-uhd must be used, and so on. Build of different @osmo-trx@ binaries is controlled at configure time:
294
<pre>
295
      --with-uhd              enable UHD based transceiver
296
      --with-usrp1            enable USRP1 gnuradio based transceiver
297
      --with-lms              enable LimeSuite based transceiver
298
</pre>
299
300 1 ttsou
*Build and Install*
301 16 ttsou
302
After configuration, installation is simple.
303 41 ttsou
304 16 ttsou
<pre>
305
$ make
306 41 ttsou
$ sudo make install
307 16 ttsou
</pre>
308
309 41 ttsou
h2. Running
310 16 ttsou
311 76 pespin
Normally simply start @osmo-trx-uhd@ or similar, based on your target device. You only need to remember to pass a suitable config file.
312
[[OsmoTRX]] can be configured with a variety of options. You can find examples for several different devices under @doc/examples@ of @osmo-trx.git@ directory.
313
See section [[OsmoTRX#OsmoTRX-user-manuals-and-documentation|"OsmoTRX user manuals and documentation"]] where you can find links to the VTY reference.
314 41 ttsou
315 56 wirelesss
<pre>
316 71 duo_kali
$ osmo-trx-uhd -C default.cfg
317 56 wirelesss
linux; GNU C++ version 5.3.1 20151219; Boost_105800; UHD_003.009.002-0-unknown
318
319
opening configuration table from path :memory:
320
Config Settings
321
   Log Level............... NOTICE
322
   Device args............. 
323
   TRX Base Port........... 5700
324
   TRX Address............. 127.0.0.1
325
   Channels................ 1
326
   Tx Samples-per-Symbol... 4
327
   Rx Samples-per-Symbol... 1
328
   EDGE support............ Disabled
329
   Reference............... Internal
330
   C0 Filler Table......... Disabled
331
   Multi-Carrier........... Disabled
332
   Diversity............... Disabled
333
   Tuning offset........... 0
334
   RSSI to dBm offset...... 0
335
   Swap channels........... 0
336
337
-- Detected Device: B200
338
-- Loading FPGA image: /usr/share/uhd/images/usrp_b200_fpga.bin... done
339
-- Operating over USB 2.
340
-- Detecting internal GPSDO.... No GPSDO found
341
-- Initialize CODEC control...
342
-- Initialize Radio control...
343
-- Performing register loopback test... pass
344
-- Performing CODEC loopback test... pass
345
-- Asking for clock rate 16.000000 MHz... 
346
-- Actually got clock rate 16.000000 MHz.
347
-- Performing timer loopback test... pass
348
-- Setting master clock rate selection to 'automatic'.
349
-- Asking for clock rate 26.000000 MHz... 
350
-- Actually got clock rate 26.000000 MHz.
351
-- Performing timer loopback test... pass
352 16 ttsou
-- Setting B200 4/1 Tx/Rx SPS
353
-- Transceiver active with 1 channel(s)
354 41 ttsou
</pre>
355 38 ttsou
356 77 pespin
Remember OsmoTRX binaries provide a VTY interface like other osmocom programs, where you can for instance set up logging as desired. VTY is available by default under @localhost@ port @4237@.
357
358 1 ttsou
h2. [[OsmoTRX]] with [[OsmoBTS:OpenBTS]]
359 49 neels
360 38 ttsou
361
[[OsmoTRX]] is fully compatible with [[OsmoBTS:OpenBTS]] for voice and SMS services. Due to differences in handing of GPRS, [[OsmoTRX]] does not support GPRS when used with [[OsmoBTS:OpenBTS]], however, GPRS with the Osmocom stack is supported.
362 41 ttsou
363 49 neels
For use with [[OsmoBTS:OpenBTS]], enable the filler table option "Enable C0 filler table", which enables [[OsmoBTS:OpenBTS]] style idle bursts and retransmissions.
364 41 ttsou
365
<pre>
366 71 duo_kali
$ osmo-trx-uhd -C default.cfg -f
367 41 ttsou
</pre>
368 17 ttsou
369 49 neels
The [[OsmoTRX]] transceiver should be started before running [[OsmoBTS:OpenBTS]]. No symbolic link to './transceiver' should exist in the [[OsmoBTS:OpenBTS]] directory. This prevents [[OsmoBTS:OpenBTS]] from starting its own transceiver instance.
370 35 ttsou
371 1 ttsou
h2. Authors
372 41 ttsou
373 80 laforge
The code is derived from the [[OsmoBTS:OpenBTS]] project, which was originally developed by David Burgess and Harvind Samra at Range Networks.
374
It was subsequently maintained by Tom Tsou and Alexander Chemeris, while more recently sysmocom has taken over the role of maintainer.
375 1 ttsou
376 80 laforge
377
{{include(cellular-infrastructure:MacroCommercialSupport)}}
Add picture from clipboard (Maximum size: 48.8 MB)