srsLTE/srsue/hdr/stack/mac/demux.h

94 lines
2.8 KiB
C
Raw Normal View History

/**
2017-05-30 06:38:04 -07:00
*
* \section COPYRIGHT
2017-05-30 06:38:04 -07:00
*
* Copyright 2013-2020 Software Radio Systems Limited
2017-05-30 06:38:04 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2017-05-30 06:38:04 -07:00
*
*/
2018-03-31 10:04:04 -07:00
#ifndef SRSUE_DEMUX_H
#define SRSUE_DEMUX_H
2017-05-30 06:38:04 -07:00
#include "srslte/common/timers.h"
#include "srslte/interfaces/ue_mac_interfaces.h"
#include "srslte/interfaces/ue_rlc_interfaces.h"
2020-04-21 12:53:37 -07:00
#include "srslte/mac/pdu.h"
#include "srslte/mac/pdu_queue.h"
Upgrade loggers in srsue (#2163) * Replaced UE logger in the ue class. * Replaced loggers in the main phy class and prach. * Replaced loggers in phy common and ta_control. * Replace loggers in cc and sf workers. * Replaced loggers in intra_measure, scell_recv, search, sfn_sync, sync. * Remove last uses of the old loggers in the main phy class. * Remove stray newline in logs. * Replaced loggers in ue gw. * - Started to replace loggers in the ue stack. - Replaced loggers in usim and pcsc. - Adapted nas and usim tests. * Replace loggers in nas. * Added missing log init calls in two previously modified tests. * Replaced logger in nas idle procs. * Replaced loggers in nas emm state. * Replaced loggers in tft packet filter and adapted tft test. * Replaced loggers in main RRC class. * Replaced loggers in RRC cell. * Replaced loggers in RRC meas. * Replaced loggers in rrc procedures. * Started logger replacement in MAC layer, more precisely in demux and dl_harq classes. Been unable to inject loggers in construction for dl_tb_process due to very weird static assertions in the std::vector code being the type not constructible which is not true, so instead use the main MAC logger directly. * Replaced loggers in mac mux class. * Replaced loggers in mac pro_bsr. * Replaced loggers in mac proc phr. * Replaced loggers in mac proc SR and RA. * Replace loggers in mac UL HARQ. * Replaced loggers in main ue stack class. * Fixed nas test crashing due to a null string. * Ported mac_test to use the new loggers. * Removed TTI reporting for the PHY log as the old logger did. * Replaced loggers in UE phy tests. * Configure loggers in nas_test. * Replaced loggers in rrc_meas_test. * Replaced loggers in rrc_reconfig_test. * Added missing newline in tft_test. * Fix compilation errors in TTCN3 tests. * Fix linker error detected in CI and warning. * Replaced loggers in TTCN3 tests. * Fix a text replace error in some log messages. * Remove trailing newlines from log entries. * Remove old logger from rrc. * Flush backend before printing the test status. * - Fix compilation error from previous rebase. - Remove trailing newlines from some missing log entries.
2021-01-28 08:17:43 -08:00
#include "srslte/srslog/srslog.h"
2017-05-30 06:38:04 -07:00
/* Logical Channel Demultiplexing and MAC CE dissassemble */
2017-05-30 06:38:04 -07:00
namespace srsue {
class rlc_interface_mac;
class phy_interface_mac_common;
2019-04-23 01:53:11 -07:00
class mac_interface_demux
{
public:
virtual void reset_harq(uint32_t cc_idx) = 0;
virtual bool contention_resolution_id_rcv(uint64_t id) = 0;
};
2017-05-30 06:38:04 -07:00
class demux : public srslte::pdu_queue::process_callback
{
public:
explicit demux(srslog::basic_logger& logger);
void init(phy_interface_mac_common* phy_h_,
rlc_interface_mac* rlc,
mac_interface_demux* mac,
srslte::timer_handler::unique_timer* time_alignment_timer);
void reset();
2017-05-30 06:38:04 -07:00
bool process_pdus();
2017-10-17 09:10:31 -07:00
uint8_t* request_buffer(uint32_t len);
uint8_t* request_buffer_bcch(uint32_t len);
2017-05-30 06:38:04 -07:00
void deallocate(uint8_t* payload_buffer_ptr);
void push_pdu(uint8_t* buff, uint32_t nof_bytes, uint32_t tti);
2019-04-23 01:53:11 -07:00
void push_pdu_bcch(uint8_t* buff, uint32_t nof_bytes);
void push_pdu_mch(uint8_t* buff, uint32_t nof_bytes);
void push_pdu_temp_crnti(uint8_t* buff, uint32_t nof_bytes);
bool get_uecrid_successful();
void process_pdu(uint8_t* pdu, uint32_t nof_bytes, srslte::pdu_queue::channel_t channel);
void mch_start_rx(uint32_t lcid);
2019-04-23 01:53:11 -07:00
2017-05-30 06:38:04 -07:00
private:
2019-04-23 01:53:11 -07:00
const static int MAX_PDU_LEN = 150 * 1024 / 8; // ~ 150 Mbps
2017-10-17 09:10:31 -07:00
const static int MAX_BCCH_PDU_LEN = 1024;
uint8_t bcch_buffer[MAX_BCCH_PDU_LEN]; // BCCH PID has a dedicated buffer
2019-04-23 01:53:11 -07:00
// args
Upgrade loggers in srsue (#2163) * Replaced UE logger in the ue class. * Replaced loggers in the main phy class and prach. * Replaced loggers in phy common and ta_control. * Replace loggers in cc and sf workers. * Replaced loggers in intra_measure, scell_recv, search, sfn_sync, sync. * Remove last uses of the old loggers in the main phy class. * Remove stray newline in logs. * Replaced loggers in ue gw. * - Started to replace loggers in the ue stack. - Replaced loggers in usim and pcsc. - Adapted nas and usim tests. * Replace loggers in nas. * Added missing log init calls in two previously modified tests. * Replaced logger in nas idle procs. * Replaced loggers in nas emm state. * Replaced loggers in tft packet filter and adapted tft test. * Replaced loggers in main RRC class. * Replaced loggers in RRC cell. * Replaced loggers in RRC meas. * Replaced loggers in rrc procedures. * Started logger replacement in MAC layer, more precisely in demux and dl_harq classes. Been unable to inject loggers in construction for dl_tb_process due to very weird static assertions in the std::vector code being the type not constructible which is not true, so instead use the main MAC logger directly. * Replaced loggers in mac mux class. * Replaced loggers in mac pro_bsr. * Replaced loggers in mac proc phr. * Replaced loggers in mac proc SR and RA. * Replace loggers in mac UL HARQ. * Replaced loggers in main ue stack class. * Fixed nas test crashing due to a null string. * Ported mac_test to use the new loggers. * Removed TTI reporting for the PHY log as the old logger did. * Replaced loggers in UE phy tests. * Configure loggers in nas_test. * Replaced loggers in rrc_meas_test. * Replaced loggers in rrc_reconfig_test. * Added missing newline in tft_test. * Fix compilation errors in TTCN3 tests. * Fix linker error detected in CI and warning. * Replaced loggers in TTCN3 tests. * Fix a text replace error in some log messages. * Remove trailing newlines from log entries. * Remove old logger from rrc. * Flush backend before printing the test status. * - Fix compilation error from previous rebase. - Remove trailing newlines from some missing log entries.
2021-01-28 08:17:43 -08:00
srslog::basic_logger& logger;
phy_interface_mac_common* phy_h = nullptr;
rlc_interface_mac* rlc = nullptr;
mac_interface_demux* mac = nullptr;
2017-05-30 06:38:04 -07:00
srslte::sch_pdu mac_msg;
srslte::mch_pdu mch_mac_msg;
2017-05-30 06:38:04 -07:00
srslte::sch_pdu pending_mac_msg;
uint8_t mch_lcids[SRSLTE_N_MCH_LCIDS] = {};
void process_sch_pdu_rt(uint8_t* buff, uint32_t nof_bytes, uint32_t tti);
2019-04-23 01:53:11 -07:00
void process_sch_pdu(srslte::sch_pdu* pdu);
void process_mch_pdu(srslte::mch_pdu* pdu);
bool process_ce(srslte::sch_subh* subheader, uint32_t tti);
2021-03-09 04:08:36 -08:00
void parse_ta_cmd(srslte::sch_subh* subh, uint32_t tti);
2019-04-23 01:53:11 -07:00
bool is_uecrid_successful = false;
2019-04-23 01:53:11 -07:00
srslte::timer_handler::unique_timer* time_alignment_timer = nullptr;
2017-10-17 09:10:31 -07:00
2017-05-30 06:38:04 -07:00
// Buffer of PDUs
srslte::pdu_queue pdus;
2017-05-30 06:38:04 -07:00
};
} // namespace srsue
2018-03-31 10:04:04 -07:00
#endif // SRSUE_DEMUX_H