blob: dfdd42c8f0b3052f74612dccf2127d775c24bb78 [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
4
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * 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
Matteo Scandolof9d43412021-01-12 11:11:34 -08008
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Matteo Scandolof9d43412021-01-12 11:11:34 -080010
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * 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.
16 */
Girish Gowdra161d27a2021-05-05 12:01:44 -070017/*
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070018 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070024package generated
25
26import "github.com/deckarep/golang-set"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028// XdslLineConfigurationProfilePart2ClassID is the 16-bit ID for the OMCI
29// Managed entity xDSL line configuration profile part 2
Andrea Campanella10426e22021-10-15 17:58:04 +020030const XdslLineConfigurationProfilePart2ClassID = ClassID(105) // 0x0069
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var xdsllineconfigurationprofilepart2BME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// XdslLineConfigurationProfilePart2 (Class ID: #105 / 0x0069)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070035// The overall xDSL line configuration profile is modelled in several parts, all of which are
36// associated together through a common ME ID (the client PPTP xDSL UNI part 1 has a single
37// pointer, which refers to the entire set of line configuration profile parts).
38//
39// Relationships
40// An instance of this ME may be associated with zero or more instances of an xDSL UNI.
41//
42// Attributes
43// Managed Entity Id
Andrea Campanella10426e22021-10-15 17:58:04 +020044// This attribute uniquely identifies each instance of this ME. All xDSL and VDSL2 line
45// configuration profiles and extensions that pertain to a given PPTP xDSL UNI must share a common
46// ME ID. (R, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070047//
48// Downstream Minimum Time Interval For Upshift Rate Adaptation
Andrea Campanella10426e22021-10-15 17:58:04 +020049// This parameter defines the interval during which the downstream noise margin must remain above
50// the downstream upshift noise margin before the xTU-R attempts to increase the downstream net
51// data rate. Its value ranges from 0 to 16383-s. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070052//
53// Upstream Minimum Time Interval For Upshift Rate Adaptation
Andrea Campanella10426e22021-10-15 17:58:04 +020054// This parameter defines the interval during which the upstream noise margin must remain above the
55// upstream upshift noise margin before the xTU-C attempts to increase the upstream net data rate.
56// Its value ranges from 0 to 16383-s. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070057//
58// Downstream Downshift Noise Margin
Andrea Campanella10426e22021-10-15 17:58:04 +020059// If the downstream noise margin is below the downstream downshift noise margin and remains there
60// for more than the downstream minimum time interval for downshift rate adaptation, the xTU-R
61// attempts to decrease the downstream net data rate. This attribute's value ranges from 0 (0.0 dB)
62// to 310 (31.0 dB). (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070063//
64// Upstream Downshift Noise Margin
Andrea Campanella10426e22021-10-15 17:58:04 +020065// If the upstream noise margin is below the upstream downshift noise margin and remains there for
66// more than the upstream minimum time interval for downshift rate adaptation, the xTUC attempts to
67// decrease the upstream net data rate. This attribute's value ranges from 0 (0.0 dB) to 310 (31.0
68// dB). (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070069//
70// Downstream Minimum Time Interval For Downshift Rate Adaptation
Andrea Campanella10426e22021-10-15 17:58:04 +020071// This parameter defines the interval during which the downstream noise margin must remain below
72// the downstream downshift noise margin before the xTU-R attempts to decrease the downstream net
73// data rate. Its value ranges from 0 to 16383-s. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070074//
75// Upstream Minimum Time Interval For Downshift Rate Adaptation
Andrea Campanella10426e22021-10-15 17:58:04 +020076// This parameter defines the interval during which the upstream noise margin must remain below the
77// upstream downshift noise margin before the xTU-C attempts to decrease the upstream net data
78// rate. Its value ranges from 0 to 16383-s. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070079//
80// Xtu Impedance State Forced
Andrea Campanella10426e22021-10-15 17:58:04 +020081// This parameter forces the impedance state of the xTU-C. It applies only to the T/S interface,
82// and is deprecated in the OMCI, which stands proxy for the Q interface. It is only valid for
83// Annex A of [ITUT G.992.3], Annex A of [ITUT G.992.4] and Annex A of [ITUT G.992.5]. It is
84// defined as follows.
85//
86// 1 Force the xTU-C to the disabled state.
87//
88// 2 Force the xTU-C to the inactive state.
89//
90// 3 Force the xTU-C to the active state.
91//
Matteo Scandolof9d43412021-01-12 11:11:34 -080092// (R,-W, setbycreate) (optional) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070093//
94// L0_Time
95// L0-time: This parameter specifies the minimum time between an exit from the L2 state and the
Matteo Scandolof9d43412021-01-12 11:11:34 -080096// next entry into the L2 state. It is only valid for [ITUT-G.992.3], [ITUT-G.992.4] and
97// [ITUT-G.992.5]. It ranges from 0 to 255-s. (R,-W, setbycreate) (mandatory) (1 byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070098//
99// L2_Time
100// L2-time: This parameter specifies the minimum time between an entry into the L2 state and the
101// first power trim in the L2 state, or between two consecutive power trims in the L2 state. It is
Matteo Scandolof9d43412021-01-12 11:11:34 -0800102// only valid for [ITUT-G.992.3], [ITUT-G.992.4] and [ITUT-G.992.5]. It ranges from 0 to 255-s. (R,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700103// W, setbycreate) (mandatory) (1 byte)
104//
105// Downstream Maximum Nominal Power Spectral Density
Andrea Campanella10426e22021-10-15 17:58:04 +0200106// This attribute specifies the maximum nominal transmit PSD in the downstream direction during
107// initialization and showtime. A single MAXNOMPSDds attribute is defined per mode enabled in the
108// xTSE line configuration attribute. It is only valid for [ITUT-G.992.3], [ITUT-G.992.4] and
109// [ITUT-G.992.5]. Its value ranges from 0 (60.0-dBm/Hz) to 300 (-30-dBm/Hz). (R, W, setbycreate)
110// (mandatory) (2 bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700111//
112// Upstream Maximum Nominal Power Spectral Density
Andrea Campanella10426e22021-10-15 17:58:04 +0200113// This attribute specifies the maximum nominal transmit PSD in the upstream direction during
114// initialization and showtime. A single MAXNOMPSDus attribute is defined per mode enabled in the
115// xTSE line configuration attribute. It is only valid for [ITUT-G.992.3], [ITUT-G.992.4] and
116// [ITUT-G.993.2]. Its value ranges from 0 (-60.0-dBm/Hz) to 300 (-30-dBm/Hz). (R, W, setbycreate)
117// (mandatory) (2 bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700118//
119// Downstream Maximum Nominal Aggregate Transmit Power
Andrea Campanella10426e22021-10-15 17:58:04 +0200120// This attribute specifies the maximum nominal aggregate transmit power in the downstream
121// direction during initialization and showtime. It is only valid for [ITUT-G.992.3],
122// [ITUT-G.992.4], [ITUT-G.992.5] and [ITUT-G.993.2]. Its value ranges from 0 (0.0-dBm) to 255
123// (25.5-dBm). (R, W, setbycreate) (mandatory) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700124//
125// Upstream Maximum Nominal Aggregate Transmit Power
Andrea Campanella10426e22021-10-15 17:58:04 +0200126// This parameter specifies the maximum nominal aggregate transmit power in the upstream direction
127// during initialization and showtime. It is only valid for [ITUT-G.992.3], [ITUT-G.992.4] and
128// [ITUT-G.992.5]. Its value ranges from 0 (0.0-dBm) to 255 (25.5-dBm). (R, W, setbycreate)
129// (mandatory) (1 byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700130//
131// Upstream Maximum Aggregate_Receive Power
Matteo Scandolof9d43412021-01-12 11:11:34 -0800132// Upstream maximum aggregate-receive power: This parameter specifies the maximum upstream
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700133// aggregate receive power over a set of subcarriers, as defined in the relevant Recommendation.
134// The xTU-C requests an upstream power cutback such that the upstream aggregate receive power over
135// that set of subcarriers is at or below the configured maximum value. It is only valid for
Matteo Scandolof9d43412021-01-12 11:11:34 -0800136// [ITUT-G.992.3], [ITUT-G.992.4] and [ITUT-G.992.5]. This attribute ranges from 0 (25.5-dBm) to
137// 510 (+25.5-dBm). The special value 0xFFFF indicates that no upstream maximum aggregate receive
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700138// power limit is to be applied. (R, W setbycreate) (mandatory) (2 bytes)
139//
140// Vdsl2 Transmission System Enabling
Andrea Campanella10426e22021-10-15 17:58:04 +0200141// This configuration attribute extends the transmission system coding types to be allowed by the
142// xTU-C. It is a bit map, defined as octet 8 (bits 57..64) in Table-9.7.12-1. (R, W, setbycreate)
143// (optional) (1 byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700144//
145type XdslLineConfigurationProfilePart2 struct {
146 ManagedEntityDefinition
147 Attributes AttributeValueMap
148}
149
150func init() {
151 xdsllineconfigurationprofilepart2BME = &ManagedEntityDefinition{
152 Name: "XdslLineConfigurationProfilePart2",
153 ClassID: 105,
154 MessageTypes: mapset.NewSetWith(
155 Create,
156 Delete,
157 Get,
158 Set,
159 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800160 AllowedAttributeMask: 0xfffe,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700161 AttributeDefinitions: AttributeDefinitionMap{
Matteo Scandolof9d43412021-01-12 11:11:34 -0800162 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
163 1: Uint16Field("DownstreamMinimumTimeIntervalForUpshiftRateAdaptation", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 1),
164 2: Uint16Field("UpstreamMinimumTimeIntervalForUpshiftRateAdaptation", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 2),
165 3: Uint16Field("DownstreamDownshiftNoiseMargin", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 3),
166 4: Uint16Field("UpstreamDownshiftNoiseMargin", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 4),
167 5: Uint16Field("DownstreamMinimumTimeIntervalForDownshiftRateAdaptation", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 5),
168 6: Uint16Field("UpstreamMinimumTimeIntervalForDownshiftRateAdaptation", UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 6),
169 7: ByteField("XtuImpedanceStateForced", UnsignedIntegerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 7),
170 8: ByteField("L0Time", UnsignedIntegerAttributeType, 0x0100, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 8),
171 9: ByteField("L2Time", UnsignedIntegerAttributeType, 0x0080, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 9),
172 10: Uint16Field("DownstreamMaximumNominalPowerSpectralDensity", UnsignedIntegerAttributeType, 0x0040, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 10),
173 11: Uint16Field("UpstreamMaximumNominalPowerSpectralDensity", UnsignedIntegerAttributeType, 0x0020, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 11),
174 12: ByteField("DownstreamMaximumNominalAggregateTransmitPower", UnsignedIntegerAttributeType, 0x0010, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 12),
175 13: ByteField("UpstreamMaximumNominalAggregateTransmitPower", UnsignedIntegerAttributeType, 0x0008, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 13),
Andrea Campanella10426e22021-10-15 17:58:04 +0200176 14: Uint16Field("UpstreamMaximumAggregateReceivePower", UnsignedIntegerAttributeType, 0x0004, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 14),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800177 15: ByteField("Vdsl2TransmissionSystemEnabling", UnsignedIntegerAttributeType, 0x0002, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 15),
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700178 },
Matteo Scandolof9d43412021-01-12 11:11:34 -0800179 Access: CreatedByOlt,
180 Support: UnknownSupport,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700181 }
182}
183
Matteo Scandolof9d43412021-01-12 11:11:34 -0800184// NewXdslLineConfigurationProfilePart2 (class ID 105) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700185// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -0800186// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700187func NewXdslLineConfigurationProfilePart2(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -0800188 return NewManagedEntity(*xdsllineconfigurationprofilepart2BME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700189}