2 * Copyright 2019 AT&T Intellectual Property
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
19 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
20 * platform project (RICP).
26 import "ran_function.proto";
27 import "e2node_component_config.proto";
28 import "additional_cell_information.proto";
29 import "nb_types.proto";
30 option go_package = "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib/entities";
33 repeated ServedNRCell served_nr_cells = 1;
34 repeated RanFunction ran_functions = 2;
36 repeated E2nodeComponentConfig node_configs = 4;
40 ServedNRCellInformation served_nr_cell_information = 1;
41 repeated NrNeighbourInformation nr_neighbour_infos = 2;
44 message ServedNRCellInformation{
48 string configured_stac = 4;
49 repeated string served_plmns= 5;
53 NrFrequencyInfo ul_freq_info = 1;
54 NrFrequencyInfo dl_freq_info = 2;
55 NrTransmissionBandwidth ul_transmission_bandwidth = 3;
56 NrTransmissionBandwidth dl_transmission_bandwidth = 4;
59 NrFrequencyInfo nr_freq_info = 1;
60 NrTransmissionBandwidth transmission_bandwidth = 2;
65 ChoiceNRMode choice_nr_mode = 7;
66 AdditionalCellInformation additional_cell_information = 8;
77 message NrFrequencyInfo{
79 message SulInformation{
80 uint64 sul_ar_fcn = 1;
81 NrTransmissionBandwidth sul_transmission_bandwidth = 2;
83 SulInformation sulInformation = 3;
84 repeated FrequencyBandItem frequency_bands = 4;
87 message FrequencyBandItem{
88 uint32 nr_frequency_band = 1;
89 repeated uint32 supported_sul_bands = 2;
92 message NrTransmissionBandwidth{
138 message NrNeighbourInformation{
142 message ChoiceNRMode{
144 NrFrequencyInfo ular_fcn_freq_info = 1;
145 NrFrequencyInfo dlar_fcn_freq_info = 2;
148 NrFrequencyInfo ar_fcn_nr_freq_info = 1;
153 ChoiceNRMode choice_nr_mode = 4;
155 string configured_stac = 6;