/usr/include/ns3.27/ns3/lte-enb-cmac-sap.h is in libns3-dev 3.27+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Nicola Baldo <nbaldo@cttc.es>
* Marco Miozzo <mmiozzo@cttc.es>
*/
#ifndef LTE_ENB_CMAC_SAP_H
#define LTE_ENB_CMAC_SAP_H
#include <ns3/packet.h>
#include <ns3/ff-mac-common.h>
#include <ns3/eps-bearer.h>
#include <ns3/lte-common.h>
namespace ns3 {
class LteMacSapUser;
/**
* Service Access Point (SAP) offered by the eNB MAC to the eNB RRC
* See Femto Forum MAC Scheduler Interface Specification v 1.11, Figure 1
*
* This is the MAC SAP Provider, i.e., the part of the SAP that contains the MAC methods called by the RRC
*/
class LteEnbCmacSapProvider
{
public:
virtual ~LteEnbCmacSapProvider ();
/**
*
*
* @param ulBandwidth
* @param dlBandwidth
*/
virtual void ConfigureMac (uint8_t ulBandwidth,
uint8_t dlBandwidth) = 0;
/**
* Add UE function
*
* \param rnti
*/
virtual void AddUe (uint16_t rnti) = 0;
/**
* remove the UE, e.g., after handover or termination of the RRC connection
*
* \param rnti
*/
virtual void RemoveUe (uint16_t rnti) = 0;
/**
* Logical Channel information to be passed to CmacSapProvider::ConfigureLc
*
*/
struct LcInfo
{
uint16_t rnti; /**< C-RNTI identifying the UE */
uint8_t lcId; /**< logical channel identifier */
uint8_t lcGroup; /**< logical channel group */
uint8_t qci; /**< QoS Class Identifier */
bool isGbr; /**< true if the bearer is GBR, false if the bearer is NON-GBR */
uint64_t mbrUl; /**< maximum bitrate in uplink */
uint64_t mbrDl; /**< maximum bitrate in downlink */
uint64_t gbrUl; /**< guaranteed bitrate in uplink */
uint64_t gbrDl; /**< guaranteed bitrate in downlink */
};
/**
* Add a new logical channel
*
* \param lcinfo
* \param msu
*/
virtual void AddLc (LcInfo lcinfo, LteMacSapUser* msu) = 0;
/**
* Reconfigure an existing logical channel
*
* \param lcinfo
*/
virtual void ReconfigureLc (LcInfo lcinfo) = 0;
/**
* release an existing logical channel
*
* \param rnti
* \param lcid
*/
virtual void ReleaseLc (uint16_t rnti, uint8_t lcid) = 0;
/**
* \brief Parameters for [re]configuring the UE
*/
struct UeConfig
{
/**
* UE id within this cell
*/
uint16_t m_rnti;
/**
* Transmission mode [1..7] (i.e., SISO, MIMO, etc.)
*/
uint8_t m_transmissionMode;
};
/**
* update the configuration of the UE
*
* \param params
*/
virtual void UeUpdateConfigurationReq (UeConfig params) = 0;
/**
* struct defining the RACH configuration of the MAC
*
*/
struct RachConfig
{
uint8_t numberOfRaPreambles; ///< number of RA preambles
uint8_t preambleTransMax; ///< preamble transmit maximum
uint8_t raResponseWindowSize; ///< RA response window size
};
/**
*
* \return the current RACH configuration of the MAC
*/
virtual RachConfig GetRachConfig () = 0;
/**
* \brief AllocateNcRaPreambleReturnValue structure
*
*/
struct AllocateNcRaPreambleReturnValue
{
bool valid; ///< true if a valid RA config was allocated, false otherwise
uint8_t raPreambleId; ///< random access preamble id
uint8_t raPrachMaskIndex; ///< PRACH mask index
};
/**
* Allocate a random access preamble for non-contention based random access (e.g., for handover).
*
* \param rnti the RNTI of the UE who will perform non-contention based random access
*
* \return the newly allocated random access preamble
*/
virtual AllocateNcRaPreambleReturnValue AllocateNcRaPreamble (uint16_t rnti) = 0;
};
/**
* Service Access Point (SAP) offered by the MAC to the RRC
* See Femto Forum MAC Scheduler Interface Specification v 1.11, Figure 1
*
* This is the MAC SAP User, i.e., the part of the SAP that contains the RRC methods called by the MAC
*/
class LteEnbCmacSapUser
{
public:
virtual ~LteEnbCmacSapUser ();
/**
* request the allocation of a Temporary C-RNTI
*
* \return the T-C-RNTI
*/
virtual uint16_t AllocateTemporaryCellRnti () = 0;
/**
* notify the result of the last LC config operation
*
* \param rnti the rnti of the user
* \param lcid the logical channel id
* \param success true if the operation was successful, false otherwise
*/
virtual void NotifyLcConfigResult (uint16_t rnti, uint8_t lcid, bool success) = 0;
/**
* \brief Parameters for [re]configuring the UE
*/
struct UeConfig
{
/**
* UE id within this cell
*/
uint16_t m_rnti;
/**
* Transmission mode [1..7] (i.e., SISO, MIMO, etc.)
*/
uint8_t m_transmissionMode;
};
/**
* Notify the RRC of a UE config updated requested by the MAC (normally, by the scheduler)
*
* \param params
*/
virtual void RrcConfigurationUpdateInd (UeConfig params) = 0;
};
} // namespace ns3
#endif // MAC_SAP_H
|