blob: d4268d3f7fca05daebc3168d159ae331b773a36c [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
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
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
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
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 */
17/*
18 * 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// MulticastGemInterworkingTerminationPointClassID is the 16-bit ID for the OMCI
29// Managed entity Multicast GEM interworking termination point
Andrea Campanella10426e22021-10-15 17:58:04 +020030const MulticastGemInterworkingTerminationPointClassID = ClassID(281) // 0x0119
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var multicastgeminterworkingterminationpointBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// MulticastGemInterworkingTerminationPoint (Class ID: #281 / 0x0119)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070035// An instance of this ME represents a point in a G-PON ONU where a multicast service interworks
36// with the GEM layer. At this point, a multicast bit stream is reconstructed from GEM packets.
37//
38// Instances of this ME are created and deleted by the OLT.
39//
40// Multicast interworking GEM modes of operation
41//
42// The default multicast operation of the PON is where all the multicast content streams are
43// carried in one PON layer connection (GEM port). This connection is then specified in the first
44// entry of the IPv4 or IPv6 multicast address table, as the case may be. This single entry also
45// specifies an all-inclusive IP multicast destination address (DA) range (e.g., 224.0.0.0 to
46// 239.255.255.255 in the case of IPv4). The ONU then filters the traffic based on either Ethernet
47// MAC addresses or IP addresses. The associated GEM port network CTP ME specifies the GEM port-ID
48// that supports all multicast connections.
49//
50// In the default multicast operation, all multicast content streams are placed in one PON layer
51// connection (GEM port). The OLT sets up a completely conventional model, a pointer from the
52// multicast GEM IW termination to a GEM port network CTP. The OLT configures the GEM port-ID of
53// the GEM port network CTP into the appropriate multicast address table attribute(s), along with
54// the other table fields that specify the range of IP multicast DAs. The ONU accepts the entire
55// multicast stream through the designated GEM port, then filters the traffic based on either the
56// Ethernet MAC address or IP DA.
57//
58// An optional multicast configuration supports separate multicast streams carried over separate
59// PON layer connections, i.e., on separate GEM ports. This permits the ONU to filter multicast
60// streams at the GEM level, which is efficient in hardware, while ignoring other multicast streams
61// that may be of interest to other ONUs on the PON.
62//
63// After configuring the explicit model for the first multicast GEM port, the OLT supports multiple
64// multicast GEM ports by then configuring additional entries into the multicast address table(s),
65// entries with different GEM port-IDs. The OMCI model is defined such that these ports are
66// implicitly grouped together and served by the single explicit GEM port network CTP. No
67// additional GEM network CTPs need be created or linked for the additional GEM ports.
68//
69// Several multicast GEM IW TPs can exist, each linked to separate bridge ports or mappers to serve
70// different communities of interest in a complex ONU.
71//
72// Discovery of multicast support
73//
74// The OLT uses the multicast GEM IW TP entity as the means to discover the ONU's multicast
75// capability. This entity is mandatory if multicast is supported by the ONU. If the OLT attempts
76// to create this entity on an ONU that does not support multicast, the create command fails. The
77// create or set command also fails if the OLT attempts to exploit optional features that the ONU
78// does not support, e.g., in attempting to write a multicast address table with more than a single
79// entry or to create multiple multicast GEM IW TPs.
80//
81// This ME is defined by a similarity to the unicast GEM IW TP, and a number of its attributes are
82// not meaningful in a multicast context. These attributes are set to 0 and not used, as indicated
83// in the following.
84//
85// Relationships
86// An instance of this ME exists for each occurrence of transformation of GEM packets into a
87// multicast data stream.
88//
89// Attributes
90// Managed Entity Id
Andrea Campanella10426e22021-10-15 17:58:04 +020091// This attribute uniquely identifies each instance of this ME. The value 0xFFFF is reserved. (R,
92// setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070093//
94// Gem Port Network Ctp Connectivity Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +020095// This attribute points to an instance of the GEM port network CTP that is associated with this
96// multicast GEM IW TP. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070097//
98// Interworking Option
Andrea Campanella10426e22021-10-15 17:58:04 +020099// 3 Reserved
100//
101// 5 IEEE 802.1p mapper
102//
Matteo Scandolof9d43412021-01-12 11:11:34 -0800103// (R,-W, setbycreate) (mandatory) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700104//
Andrea Campanella10426e22021-10-15 17:58:04 +0200105// This attribute identifies the type of non-GEM function that is being interworked. The option can
106// be as follows.
107//
108// 0 This value is a "no-op" or "don't care". It should be used when the multicast GEM IW TP is
109// associated with several functions of different types. It can optionally be used in all cases,
110// since the necessary information is available elsewhere. The previous code points are retained
111// for backward compatibility:
112//
113// 1 MAC bridged LAN
114//
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700115// Service Profile Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +0200116// This attribute is set to 0 and not used. For backward compatibility, it may also be set to point
117// to a MAC bridge service profile or IEEE 802.1p mapper service profile. (R,-W, setbycreate)
118// (mandatory) (2-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800119//
120// Not Used 1
Andrea Campanella10426e22021-10-15 17:58:04 +0200121// This attribute is set to 0 and not used. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700122//
123// Pptp Counter
Andrea Campanella10426e22021-10-15 17:58:04 +0200124// This attribute represents the number of instances of PPTP MEs associated with this instance of
125// the multicast GEM IW TP. This attribute conveys no information that is not available elsewhere;
126// it may be set to 0xFF and not used. (R) (optional) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700127//
128// Operational State
Andrea Campanella10426e22021-10-15 17:58:04 +0200129// This attribute indicates whether the ME is capable of performing its function. Valid values are
130// enabled (0) and disabled (1). (R) (optional) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700131//
132// Gal Profile Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +0200133// This attribute is set to 0 and not used. For backward compatibility, it may also be set to point
134// to a GAL Ethernet profile. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800135//
136// Not Used 2
Andrea Campanella10426e22021-10-15 17:58:04 +0200137// This attribute is set to 0 and not used. (R,-W, setbycreate) (mandatory) (1-byte)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800138//
139// Ipv4 Multicast Address Table
Andrea Campanella10426e22021-10-15 17:58:04 +0200140// This attribute maps IP multicast addresses to PON layer addresses. Each entry contains the
141// following.
142//
143// GEM port-ID 2-bytes
144//
145// Secondary key 2-bytes
146//
147// IP multicast DA range start 4-bytes
148//
149// IP multicast DA range stop 4-bytes
150//
151// The first four bytes of each entry are treated as a key into the list. The secondary key allows
152// the table to contain more than a single range for a given GEM port.
153//
154// A set action to a particular value overwrites any existing entry with the same first four bytes.
155// If the last eight bytes of a set command are all zero, that entry is deleted from the list, as
156// the IP address 0.0.0.0 is not valid.
157//
158// (R,-W) (mandatory) (12N bytes, where N is the number of entries in the list.)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700159//
160// Ipv6 Multicast Address Table
Andrea Campanella10426e22021-10-15 17:58:04 +0200161// This attribute maps IPv6 multicast DAs to PON layer addresses. Each entry contains:
162//
163// GEM port-ID 2-bytes
164//
165// Secondary key 2-bytes
166//
167// Least significant bytes,
168//
169// IP multicast DA range start 4-bytes
170//
171// Least significant bytes,
172//
173// IP multicast DA range stop 4-bytes
174//
175// Most significant bytes, IP DA 12-bytes
176//
177// The first four bytes of each entry are treated as a key into the list. The secondary key allows
178// the table to contain more than a single range for a given GEM port.
179//
180// A set action to a particular value overwrites any existing entry with the same first four bytes.
181// If the last 20 bytes of a set command are all zero, that entry is deleted from the list.
182//
Matteo Scandolof9d43412021-01-12 11:11:34 -0800183// (R,-W) (optional) (24N bytes, where N is the number of entries in the list.)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700184//
185type MulticastGemInterworkingTerminationPoint struct {
186 ManagedEntityDefinition
187 Attributes AttributeValueMap
188}
189
Elia Battiston9bfe1102022-02-03 10:38:03 +0100190// Attribute name constants
191
192const MulticastGemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer = "GemPortNetworkCtpConnectivityPointer"
193const MulticastGemInterworkingTerminationPoint_InterworkingOption = "InterworkingOption"
194const MulticastGemInterworkingTerminationPoint_ServiceProfilePointer = "ServiceProfilePointer"
195const MulticastGemInterworkingTerminationPoint_NotUsed1 = "NotUsed1"
196const MulticastGemInterworkingTerminationPoint_PptpCounter = "PptpCounter"
197const MulticastGemInterworkingTerminationPoint_OperationalState = "OperationalState"
198const MulticastGemInterworkingTerminationPoint_GalProfilePointer = "GalProfilePointer"
199const MulticastGemInterworkingTerminationPoint_NotUsed2 = "NotUsed2"
200const MulticastGemInterworkingTerminationPoint_Ipv4MulticastAddressTable = "Ipv4MulticastAddressTable"
201const MulticastGemInterworkingTerminationPoint_Ipv6MulticastAddressTable = "Ipv6MulticastAddressTable"
202
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700203func init() {
204 multicastgeminterworkingterminationpointBME = &ManagedEntityDefinition{
205 Name: "MulticastGemInterworkingTerminationPoint",
Elia Battiston9bfe1102022-02-03 10:38:03 +0100206 ClassID: MulticastGemInterworkingTerminationPointClassID,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700207 MessageTypes: mapset.NewSetWith(
208 Create,
209 Delete,
210 Get,
211 GetNext,
212 Set,
Girish Gowdrae2683102021-03-05 08:24:26 -0800213 SetTable,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700214 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800215 AllowedAttributeMask: 0xffc0,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700216 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +0100217 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
218 1: Uint16Field(MulticastGemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer, PointerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
219 2: ByteField(MulticastGemInterworkingTerminationPoint_InterworkingOption, EnumerationAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
220 3: Uint16Field(MulticastGemInterworkingTerminationPoint_ServiceProfilePointer, PointerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
221 4: Uint16Field(MulticastGemInterworkingTerminationPoint_NotUsed1, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
222 5: ByteField(MulticastGemInterworkingTerminationPoint_PptpCounter, UnsignedIntegerAttributeType, 0x0800, 255, mapset.NewSetWith(Read), false, true, false, 5),
223 6: ByteField(MulticastGemInterworkingTerminationPoint_OperationalState, EnumerationAttributeType, 0x0400, 0, mapset.NewSetWith(Read), true, true, false, 6),
224 7: Uint16Field(MulticastGemInterworkingTerminationPoint_GalProfilePointer, PointerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 7),
225 8: ByteField(MulticastGemInterworkingTerminationPoint_NotUsed2, UnsignedIntegerAttributeType, 0x0100, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 8),
226 9: TableField(MulticastGemInterworkingTerminationPoint_Ipv4MulticastAddressTable, TableAttributeType, 0x0080, TableInfo{nil, 12}, mapset.NewSetWith(Read, Write), false, false, false, 9),
227 10: TableField(MulticastGemInterworkingTerminationPoint_Ipv6MulticastAddressTable, TableAttributeType, 0x0040, TableInfo{nil, 24}, mapset.NewSetWith(Read, Write), false, true, false, 10),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800228 },
229 Access: CreatedByOlt,
230 Support: UnknownSupport,
231 Alarms: AlarmMap{
232 0: "Deprecated",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700233 },
234 }
235}
236
Matteo Scandolof9d43412021-01-12 11:11:34 -0800237// NewMulticastGemInterworkingTerminationPoint (class ID 281) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700238// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -0800239// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700240func NewMulticastGemInterworkingTerminationPoint(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -0800241 return NewManagedEntity(*multicastgeminterworkingterminationpointBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700242}