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

101 lines
3.0 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
* Copyright 2013-2019 Software Radio Systems Limited
2017-05-30 06:38:04 -07:00
*
2019-04-26 12:27:38 -07:00
* This file is part of srsLTE.
2017-05-30 06:38:04 -07:00
*
2019-04-26 12:27:38 -07:00
* srsLTE is free software: you can redistribute it and/or modify
2017-05-30 06:38:04 -07:00
* 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.
*
2019-04-26 12:27:38 -07:00
* srsLTE is distributed in the hope that it will be useful,
2017-05-30 06:38:04 -07:00
* 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/.
*
*/
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/interfaces/ue_interfaces.h"
#include "srslte/common/pdu_queue.h"
#include "srslte/common/log.h"
#include "srslte/common/timers.h"
#include "srslte/common/pdu.h"
2017-05-30 06:38:04 -07:00
/* Logical Channel Demultiplexing and MAC CE dissassemble */
namespace srsue {
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:
2017-10-17 09:10:31 -07:00
demux();
2019-04-23 01:53:11 -07:00
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);
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);
2019-04-23 01:53:11 -07:00
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);
2017-05-30 06:38:04 -07:00
bool get_uecrid_successful();
2019-04-23 01:53:11 -07:00
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
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;
2019-04-23 01:53:11 -07:00
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);
2017-05-30 06:38:04 -07:00
bool process_ce(srslte::sch_subh *subheader);
2019-04-23 01:53:11 -07:00
bool is_uecrid_successful;
phy_interface_mac_common* phy_h;
2019-05-03 02:17:16 -07:00
srslte::log* log_h;
srslte::timers::timer* time_alignment_timer;
rlc_interface_mac* rlc;
2019-04-23 01:53:11 -07:00
mac_interface_demux* mac;
2017-10-17 09:10:31 -07:00
2017-05-30 06:38:04 -07:00
// Buffer of PDUs
srslte::pdu_queue pdus;
};
} // namespace srsue
2018-03-31 10:04:04 -07:00
#endif // SRSUE_DEMUX_H
2017-05-30 06:38:04 -07:00