mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.0 KiB
C
101 lines
3.0 KiB
C
6 years ago
|
/*
|
||
|
* Copyright 2013-2019 Software Radio Systems Limited
|
||
8 years ago
|
*
|
||
6 years ago
|
* This file is part of srsLTE.
|
||
8 years ago
|
*
|
||
6 years ago
|
* srsLTE is free software: you can redistribute it and/or modify
|
||
8 years ago
|
* 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 (at your option) any later version.
|
||
|
*
|
||
6 years ago
|
* srsLTE is distributed in the hope that it will be useful,
|
||
8 years ago
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* A copy of the GNU Affero General Public License can be found in
|
||
|
* the LICENSE file in the top-level directory of this distribution
|
||
|
* and at http://www.gnu.org/licenses/.
|
||
|
*
|
||
|
*/
|
||
|
|
||
7 years ago
|
#ifndef SRSUE_DEMUX_H
|
||
|
#define SRSUE_DEMUX_H
|
||
8 years ago
|
|
||
8 years ago
|
#include "srslte/interfaces/ue_interfaces.h"
|
||
8 years ago
|
#include "srslte/common/pdu_queue.h"
|
||
|
#include "srslte/common/log.h"
|
||
|
#include "srslte/common/timers.h"
|
||
|
#include "srslte/common/pdu.h"
|
||
8 years ago
|
|
||
|
/* Logical Channel Demultiplexing and MAC CE dissassemble */
|
||
|
|
||
|
|
||
|
namespace srsue {
|
||
|
|
||
6 years ago
|
class mac_interface_demux
|
||
|
{
|
||
|
public:
|
||
|
virtual void reset_harq(uint32_t cc_idx) = 0;
|
||
|
virtual bool contention_resolution_id_rcv(uint64_t id) = 0;
|
||
|
};
|
||
|
|
||
8 years ago
|
class demux : public srslte::pdu_queue::process_callback
|
||
|
{
|
||
|
public:
|
||
7 years ago
|
demux();
|
||
6 years ago
|
void init(phy_interface_mac_common* phy_h_,
|
||
|
rlc_interface_mac* rlc,
|
||
|
mac_interface_demux* mac,
|
||
|
srslte::log* log_h_,
|
||
|
srslte::timers::timer* time_alignment_timer);
|
||
8 years ago
|
|
||
|
bool process_pdus();
|
||
7 years ago
|
uint8_t* request_buffer(uint32_t len);
|
||
|
uint8_t* request_buffer_bcch(uint32_t len);
|
||
8 years ago
|
void deallocate(uint8_t* payload_buffer_ptr);
|
||
|
|
||
6 years ago
|
void push_pdu(uint8_t* buff, uint32_t nof_bytes);
|
||
|
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);
|
||
|
|
||
8 years ago
|
bool get_uecrid_successful();
|
||
7 years ago
|
|
||
6 years ago
|
void process_pdu(uint8_t* pdu, uint32_t nof_bytes, srslte::pdu_queue::channel_t channel);
|
||
7 years ago
|
void mch_start_rx(uint32_t lcid);
|
||
6 years ago
|
|
||
8 years ago
|
private:
|
||
6 years ago
|
const static int MAX_PDU_LEN = 150 * 1024 / 8; // ~ 150 Mbps
|
||
7 years ago
|
const static int MAX_BCCH_PDU_LEN = 1024;
|
||
|
uint8_t bcch_buffer[MAX_BCCH_PDU_LEN]; // BCCH PID has a dedicated buffer
|
||
6 years ago
|
|
||
8 years ago
|
srslte::sch_pdu mac_msg;
|
||
7 years ago
|
srslte::mch_pdu mch_mac_msg;
|
||
8 years ago
|
srslte::sch_pdu pending_mac_msg;
|
||
6 years ago
|
uint8_t mch_lcids[SRSLTE_N_MCH_LCIDS];
|
||
|
void process_sch_pdu_rt(uint8_t* buff, uint32_t nof_bytes);
|
||
|
void process_sch_pdu(srslte::sch_pdu* pdu);
|
||
|
void process_mch_pdu(srslte::mch_pdu* pdu);
|
||
|
|
||
8 years ago
|
bool process_ce(srslte::sch_subh *subheader);
|
||
6 years ago
|
|
||
|
bool is_uecrid_successful;
|
||
|
|
||
|
phy_interface_mac_common* phy_h;
|
||
6 years ago
|
srslte::log* log_h;
|
||
|
srslte::timers::timer* time_alignment_timer;
|
||
|
rlc_interface_mac* rlc;
|
||
6 years ago
|
mac_interface_demux* mac;
|
||
7 years ago
|
|
||
8 years ago
|
// Buffer of PDUs
|
||
|
srslte::pdu_queue pdus;
|
||
|
};
|
||
|
|
||
|
} // namespace srsue
|
||
|
|
||
7 years ago
|
#endif // SRSUE_DEMUX_H
|
||
8 years ago
|
|
||
|
|
||
|
|