blob: f1a5333df3d34cada610a078882623e65e55b3f8 [file] [log] [blame]
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +01001#####################################################################
2# srsUE configuration file
3#####################################################################
4
5#####################################################################
6# RF configuration
7#
8# dl_earfcn: Downlink EARFCN code.
9# freq_offset: Uplink and Downlink optional frequency offset (in Hz)
10# tx_gain: Transmit gain (dB).
11# rx_gain: Optional receive gain (dB). If disabled, AGC if enabled
12#
13# Optional parameters:
14# dl_freq: Override DL frequency corresponding to dl_earfcn
15# ul_freq: Override UL frequency corresponding to dl_earfcn
16# nof_radios: Number of available RF devices
17# nof_rf_channels: Number of RF channels per radio
18# nof_rx_ant: Number of RX antennas per channel
19# device_name: Device driver family. Supported options: "auto" (uses first found), "UHD" or "bladeRF"
20# device_args: Arguments for the device driver. Options are "auto" or any string.
21# Default for UHD: "recv_frame_size=9232,send_frame_size=9232"
22# Default for bladeRF: ""
23# device_args_2: Arguments for the RF device driver 2.
24# device_args_3: Arguments for the RF device driver 3.
25# time_adv_nsamples: Transmission time advance (in number of samples) to compensate for RF delay
26# from antenna to timestamp insertion.
27# Default "auto". B210 USRP: 100 samples, bladeRF: 27.
28# burst_preamble_us: Preamble length to transmit before start of burst.
29# Default "auto". B210 USRP: 400 us, bladeRF: 0 us.
30# continuous_tx: Transmit samples continuously to the radio or on bursts (auto/yes/no).
31# Default is auto (yes for UHD, no for rest)
32#####################################################################
33[rf]
Andre Puschmann9df7cd02020-06-23 15:58:38 +020034% if int(ue.num_carriers) == 4:
35dl_earfcn = 2850,3050,3250,3350
36% elif int(ue.num_carriers) == 2:
Andre Puschmannd61613a2020-03-24 12:05:05 +010037dl_earfcn = 2850,3050
38% else:
39dl_earfcn = 2850
40% endif
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010041freq_offset = 0
Pau Espin Pedrola6d63042020-04-20 15:14:51 +020042tx_gain = ${ue.tx_gain}
43rx_gain = ${ue.rx_gain}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010044
45#nof_radios = 1
Pau Espin Pedrolf796ad02020-03-09 15:50:57 +010046nof_antennas = ${ue.num_antennas}
Andre Puschmannd61613a2020-03-24 12:05:05 +010047nof_carriers = ${ue.num_carriers}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010048
Pau Espin Pedrola9a2fe22020-02-13 19:29:55 +010049device_name = ${ue.rf_dev_type}
50
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010051# For best performance in 2x2 MIMO and >= 15 MHz use the following device_args settings:
52# USRP B210: num_recv_frames=64,num_send_frames=64
53
54# For best performance when BW<5 MHz (25 PRB), use the following device_args settings:
55# USRP B210: send_frame_size=512,recv_frame_size=512
56
Pau Espin Pedrola9a2fe22020-02-13 19:29:55 +010057device_args = ${ue.rf_dev_args}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010058#time_adv_nsamples = auto
59#burst_preamble_us = auto
60#continuous_tx = auto
61
62
63#####################################################################
64# Packet capture configuration
65#
66# Packet capture is supported at both MAC and NAS layers.
67# MAC-layer packets are captured to file in the compact format
68# decoded by the Wireshark mac-lte-framed dissector.
69# To use this dissector, edit the preferences for DLT_USER to
70# add an entry with DLT=147, Payload Protocol=mac-lte-framed.
71# For more information see: https://wiki.wireshark.org/MAC-LTE
72# NAS-layer packets are dissected with DLT=148, and
73# Payload Protocol = nas-eps.
74#
75# enable: Enable MAC layer packet captures (true/false)
76# filename: File path to use for MAC packet captures
77# nas_enable: Enable NAS layer packet captures (true/false)
78# nas_filename: File path to use for NAS packet captures
79#####################################################################
80[pcap]
Pau Espin Pedrol1e81b5a2020-03-16 12:42:17 +010081enable = ${'true' if ue.enable_pcap else 'false'}
Pau Espin Pedrol0e6ab422020-04-16 15:40:22 +020082filename = ${ue.pcap_filename}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +010083nas_enable = false
84nas_filename = /tmp/nas.pcap
85
86#####################################################################
87# Log configuration
88#
89# Log levels can be set for individual layers. "all_level" sets log
90# level for all layers unless otherwise configured.
91# Format: e.g. phy_level = info
92#
93# In the same way, packet hex dumps can be limited for each level.
94# "all_hex_limit" sets the hex limit for all layers unless otherwise
95# configured.
96# Format: e.g. phy_hex_limit = 32
97#
98# Logging layers: rf, phy, mac, rlc, pdcp, rrc, nas, gw, usim, all
99# Logging levels: debug, info, warning, error, none
100#
101# filename: File path to use for log output. Can be set to stdout
102# to print logs to standard output
103# file_max_size: Maximum file size (in kilobytes). When passed, multiple files are created.
104# If set to negative, a single log file will be created.
105#####################################################################
106[log]
Andre Puschmann82ced3f2020-06-18 14:52:39 +0200107all_level = ${ue.log_all_level}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100108phy_lib_level = none
109all_hex_limit = 32
Pau Espin Pedrol0e6ab422020-04-16 15:40:22 +0200110filename = ${ue.log_filename}
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100111file_max_size = -1
112
113#####################################################################
114# USIM configuration
115#
116# mode: USIM mode (soft/pcsc)
117# algo: Authentication algorithm (xor/milenage)
118# op/opc: 128-bit Operator Variant Algorithm Configuration Field (hex)
119# - Specify either op or opc (only used in milenage)
120# k: 128-bit subscriber key (hex)
121# imsi: 15 digit International Mobile Subscriber Identity
122# imei: 15 digit International Mobile Station Equipment Identity
123# pin: PIN in case real SIM card is used
124# reader: Specify card reader by it's name as listed by 'pcsc_scan'. If empty, try all available readers.
125#####################################################################
126[usim]
127mode = soft
128algo = ${ue.auth_algo}
129#opc = 63BFA50EE6523365FF14C1F45F88737D
130k = ${ue.ki}
131imsi = ${ue.imsi}
132imei = 353490069873319
133#reader =
134#pin = 1234
135
136#####################################################################
137# RRC configuration
138#
139# ue_category: Sets UE category (range 1-5). Default: 4
140# release: UE Release (8 to 10)
141# feature_group: Hex value of the featureGroupIndicators field in the
142# UECapabilityInformation message. Default 0xe6041000
143# mbms_service_id: MBMS service id for autostarting MBMS reception
144# (default -1 means disabled)
145# mbms_service_port: Port of the MBMS service
146#####################################################################
147[rrc]
Andre Puschmann65e769f2020-04-06 14:53:13 +0200148% if int(ue.num_carriers) == 2:
Andre Puschmannd61613a2020-03-24 12:05:05 +0100149ue_category = 7
150release = 10
151% else:
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100152#ue_category = 4
153#release = 8
Andre Puschmannd61613a2020-03-24 12:05:05 +0100154% endif
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100155#feature_group = 0xe6041000
156#mbms_service_id = -1
157#mbms_service_port = 4321
158
159#####################################################################
160# NAS configuration
161#
162# apn: Set Access Point Name (APN)
163# apn_protocol: Set APN protocol (IPv4, IPv6 or IPv4v6.)
164# user: Username for CHAP authentication
165# pass: Password for CHAP authentication
166# force_imsi_attach: Whether to always perform an IMSI attach
167# eia: List of integrity algorithms included in UE capabilities
168# Supported: 1 - Snow3G, 2 - AES
169# eea: List of ciphering algorithms included in UE capabilities
170# Supported: 0 - NULL, 1 - Snow3G, 2 - AES
171#####################################################################
172[nas]
173#apn = internetinternet
174#apn_protocol = ipv4
175#user = srsuser
176#pass = srspass
177#force_imsi_attach = false
178#eia = 1,2
179#eea = 0,1,2
180
181#####################################################################
182# GW configuration
183#
184# netns: Network namespace to create TUN device. Default: empty
185# ip_devname: Name of the tun_srsue device. Default: tun_srsue
186# ip_netmask: Netmask of the tun_srsue device. Default: 255.255.255.0
187#####################################################################
188[gw]
189#netns =
190#ip_devname = tun_srsue
191#ip_netmask = 255.255.255.0
192
193#####################################################################
194# GUI configuration
195#
196# Simple GUI displaying PDSCH constellation and channel freq response.
197# (Requires building with srsGUI)
198# enable: Enable the graphical interface (true/false)
199#####################################################################
200[gui]
201enable = false
202
203#####################################################################
204# Channel emulator options:
205# enable: Enable/Disable internal Downlink/Uplink channel emulator
206#
207# -- Fading emulator
208# fading.enable: Enable/disable fading simulator
209# fading.model: Fading model + maximum doppler (E.g. none, epa5, eva70, etu300, etc)
210#
211# -- Delay Emulator delay(t) = delay_min + (delay_max - delay_min) * (1 + sin(2pi*t/period)) / 2
212# Maximum speed [m/s]: (delay_max - delay_min) * pi * 300 / period
213# delay.enable: Enable/disable delay simulator
214# delay.period_s: Delay period in seconds.
215# delay.init_time_s: Delay initial time in seconds.
216# delay.maximum_us: Maximum delay in microseconds
217# delay.minumum_us: Minimum delay in microseconds
218#
219# -- Radio-Link Failure (RLF) Emulator
220# rlf.enable: Enable/disable RLF simulator
221# rlf.t_on_ms: Time for On state of the channel (ms)
222# rlf.t_off_ms: Time for Off state of the channel (ms)
223#
224# -- High Speed Train Doppler model simulator
225# hst.enable: Enable/Disable HST simulator
226# hst.period_s: HST simulation period in seconds
227# hst.fd_hz: Doppler frequency in Hz
228# hst.init_time_s: Initial time in seconds
229#####################################################################
230[channel.dl]
231#enable = false
232
233[channel.dl.fading]
234#enable = false
235#model = none
236
237[channel.dl.delay]
238#enable = false
239#period_s = 3600
240#init_time_s = 0
241#maximum_us = 100
242#minimum_us = 10
243
244[channel.dl.rlf]
245#enable = false
246#t_on_ms = 10000
247#t_off_ms = 2000
248
249[channel.dl.hst]
250#enable = false
251#period_s = 7.2
252#fd_hz = 750.0
253#init_time_s = 0.0
254
255[channel.ul]
256#enable = false
257
258[channel.ul.fading]
259#enable = false
260#model = none
261
262[channel.ul.delay]
263#enable = false
264#period_s = 3600
265#init_time_s = 0
266#maximum_us = 100
267#minimum_us = 10
268
269[channel.ul.rlf]
270#enable = false
271#t_on_ms = 10000
272#t_off_ms = 2000
273
274[channel.ul.hst]
275#enable = false
276#period_s = 7.2
277#fd_hz = -750.0
278#init_time_s = 0.0
279
280#####################################################################
281# PHY configuration options
282#
283# rx_gain_offset: RX Gain offset to add to rx_gain to calibrate RSRP readings
284# prach_gain: PRACH gain (dB). If defined, forces a gain for the tranmsission of PRACH only.,
285# Default is to use tx_gain in [rf] section.
286# cqi_max: Upper bound on the maximum CQI to be reported. Default 15.
287# cqi_fixed: Fixes the reported CQI to a constant value. Default disabled.
288# snr_ema_coeff: Sets the SNR exponential moving average coefficient (Default 0.1)
289# snr_estim_alg: Sets the noise estimation algorithm. (Default refs)
290# Options: pss: use difference between received and known pss signal,
291# refs: use difference between noise references and noiseless (after filtering)
292# empty: use empty subcarriers in the boarder of pss/sss signal
293# pdsch_max_its: Maximum number of turbo decoder iterations (Default 4)
294# nof_phy_threads: Selects the number of PHY threads (maximum 4, minimum 1, default 2)
295# equalizer_mode: Selects equalizer mode. Valid modes are: "mmse", "zf" or any
296# non-negative real number to indicate a regularized zf coefficient.
297# Default is MMSE.
298# sfo_ema: EMA coefficient to average sample offsets used to compute SFO
299# sfo_correct_period: Period in ms to correct sample time to adjust for SFO
300# sss_algorithm: Selects the SSS estimation algorithm. Can choose between
301# {full, partial, diff}.
302# estimator_fil_auto: The channel estimator smooths the channel estimate with an adaptative filter.
303# estimator_fil_stddev: Sets the channel estimator smooth gaussian filter standard deviation.
304# estimator_fil_order: Sets the channel estimator smooth gaussian filter order (even values perform better).
305# The taps are [w, 1-2w, w]
306#
307# snr_to_cqi_offset: Sets an offset in the SNR to CQI table. This is used to adjust the reported CQI.
308#
309# pregenerate_signals: Pregenerate uplink signals after attach. Improves CPU performance.
310#
311# interpolate_subframe_enabled: Interpolates in the time domain the channel estimates within 1 subframe. Default is to average.
312#
313# sic_pss_enabled: Applies Successive Interference Cancellation to PSS signals when searching for neighbour cells.
314# Must be disabled if cells have identical channel and timing, for instance if generated from
315# the same source.
316#
317# pdsch_csi_enabled: Stores the Channel State Information and uses it for weightening the softbits. It is only
318# used in TM1. It is True by default.
319#
320# pdsch_8bit_decoder: Use 8-bit for LLR representation and turbo decoder trellis computation (Experimental)
321# force_ul_amplitude: Forces the peak amplitude in the PUCCH, PUSCH and SRS (set 0.0 to 1.0, set to 0 or negative for disabling)
322#
323#####################################################################
324[phy]
325#rx_gain_offset = 62
326#prach_gain = 30
327#cqi_max = 15
328#cqi_fixed = 10
329#snr_ema_coeff = 0.1
330#snr_estim_alg = refs
331#pdsch_max_its = 8 # These are half iterations
Andre Puschmannbf960ec2020-03-21 22:11:59 +0100332% if ue.get('rf_dev_type') == 'zmq':
333nof_phy_threads = 1
334% endif
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100335#equalizer_mode = mmse
336#sfo_ema = 0.1
337#sfo_correct_period = 10
338#sss_algorithm = full
339#estimator_fil_auto = false
340#estimator_fil_stddev = 1.0
341#estimator_fil_order = 4
342#snr_to_cqi_offset = 0.0
343#interpolate_subframe_enabled = false
344#sic_pss_enabled = true
345#pregenerate_signals = false
346#pdsch_csi_enabled = true
347#pdsch_8bit_decoder = false
348#force_ul_amplitude = 0
349
350#####################################################################
Andre Puschmann35234f22020-03-23 18:52:41 +0100351# Simulation configuration options
352#
353# The UE simulation supports turning on and off airplane mode in the UE.
354# The actions are carried periodically until the UE is stopped.
355#
356# airplane_t_on_ms: Time to leave airplane mode turned on (in ms)
357#
358# airplane_t_off_ms: Time to leave airplane mode turned off (in ms)
359#
360#####################################################################
361[sim]
362airplane_t_on_ms = ${ue.airplane_t_on_ms}
363airplane_t_off_ms = ${ue.airplane_t_off_ms}
364
365#####################################################################
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100366# General configuration options
367#
368# metrics_csv_enable: Write UE metrics to CSV file.
369#
370# metrics_period_secs: Sets the period at which metrics are requested from the UE.
371#
372# metrics_csv_filename: File path to use for CSV metrics.
373#
374#####################################################################
375[general]
Pau Espin Pedrola0319952020-03-02 11:06:51 +0100376metrics_csv_enable = true
Pau Espin Pedrolc8b0f932020-02-11 17:45:26 +0100377#metrics_period_secs = 1
Pau Espin Pedrol0e6ab422020-04-16 15:40:22 +0200378metrics_csv_filename = ${ue.metrics_filename}