From 05fe114a5969727c32cd9f1051cd7b9fde0344d5 Mon Sep 17 00:00:00 2001 From: Ravi Pendurty Date: Mon, 19 Apr 2021 12:46:16 +0200 Subject: Reorganization of devicemanager directory structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Organized into core, onap and o-ran-sc directories Issue-ID: CCSDK-3242 Signed-off-by: Ravi Pendurty Change-Id: I3c23710f990a2d96ba01104c97315fc8c6b1921b Signed-off-by: Ravi Pendurty Signed-off-by: Michael DÜrre --- .../src/main/yang/onf-ptp-dataset@2017-05-08.yang | 125 +++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 sdnr/wt/devicemanager-onap/onf12/provider/src/main/yang/onf-ptp-dataset@2017-05-08.yang (limited to 'sdnr/wt/devicemanager-onap/onf12/provider/src/main/yang/onf-ptp-dataset@2017-05-08.yang') diff --git a/sdnr/wt/devicemanager-onap/onf12/provider/src/main/yang/onf-ptp-dataset@2017-05-08.yang b/sdnr/wt/devicemanager-onap/onf12/provider/src/main/yang/onf-ptp-dataset@2017-05-08.yang new file mode 100644 index 000000000..41a1c3935 --- /dev/null +++ b/sdnr/wt/devicemanager-onap/onf12/provider/src/main/yang/onf-ptp-dataset@2017-05-08.yang @@ -0,0 +1,125 @@ +module onf-ptp-dataset { + namespace "urn:onf:params:xml:ns:yang:onf-ptp-dataset"; + prefix ptp-ex; + + import ietf-yang-types { + prefix yang; + } + import core-model { + prefix core-model; + } + import ietf-ptp-dataset { + prefix ptp; + } + + organization "ONF (Open Networking Foundation) Open Transport Working Group - Wireless Transport Project"; + contact "WG Web: + WG List: + WG Chair: Lyndon Ong + + Editors: Alfons Mittermaier + + Martin Skorupski + "; + description "This module contains a collection of YANG definitions to extent ptp-dataset."; + revision 2017-05-08 { + description "Initial version"; + reference "A YANG Data Model extending ptp-dataset."; + } + + augment "/ptp:instance-list/ptp:default-ds" { + description + "Addition of data nodes for the default data set of the clock."; + + leaf local-priority { + type uint8; + default 128; + description + "none"; + reference + "ITU-T G.8275.1 Precision time protocol telecom profile for phase/time + synchronization with full timing support from the network + Chapter 6.3.2"; + } + + leaf max-steps-removed { + type uint8; + default 128; + description + "none"; + reference + "ITU-T G.8275.1 Precision time protocol telecom profile for phase/time + synchronization with full timing support from the network + Chapter 6.3"; + } + + leaf multicast-mac-address { + type yang:mac-address; + description + "none"; + } + + leaf designated-enabled { + type boolean; + default true; + description + "A PTP Clock needs to be enabled by management."; + } + } + + augment "/ptp:instance-list/ptp:port-ds-list" { + description + "Addition of data nodes for the default data set of the clock."; + + leaf master-only { + type boolean; + default true; + description + "Indicates that port can only be a master."; + } + + leaf local-priority { + type uint8; + default 128; + description + "Local priority as used for alternate BMCA"; + reference + "ITU-T G.8275.1 Precision time protocol telecom profile for phase/time + synchronization with full timing support from the network + Chapter 6.3.2"; + } + + leaf designated-enabled { + type boolean; + default true; + description + "A PTP Port needs to be enabled by management."; + reference + "IEEE 1588-2008 IEEE Standard for a Precision Clock Synchronization Protocol + for Networked Measurement and Control Systems + Chapter 9.2"; + } + + leaf delay-asymmetry { + type int64; + default 0; + description + "As per PTP Known path asymmetry in ns."; + reference + "ITU-T G.8275.1 Precision time protocol telecom profile for phase/time + synchronization with full timing support from the network + Chapter 7.4.2"; + } + + leaf logical-termination-point { + type leafref { + path '/core-model:network-element/core-model:ltp/core-model:uuid'; + } + description + "A reference to a LTP of layer-protocol-name 'ETY' or 'MWPS', which is used + to discover the PTP topology."; + } + + } + +} -- cgit 1.2.3-korg