forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral-diagnostics-cluster.xml
196 lines (182 loc) · 9.46 KB
/
general-diagnostics-cluster.xml
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
<?xml version="1.0"?>
<!--
Copyright (c) 2021 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<configurator>
<domain name="CHIP"/>
<enum name="HardwareFaultEnum" type="enum8">
<cluster code="0x0033"/>
<item name="Unspecified" value="0x00"/>
<item name="Radio" value="0x01"/>
<item name="Sensor" value="0x02"/>
<item name="ResettableOverTemp" value="0x03"/>
<item name="NonResettableOverTemp" value="0x04"/>
<item name="PowerSource" value="0x05"/>
<item name="VisualDisplayFault" value="0x06"/>
<item name="AudioOutputFault" value="0x07"/>
<item name="UserInterfaceFault" value="0x08"/>
<item name="NonVolatileMemoryError" value="0x09"/>
<item name="TamperDetected" value="0x0A"/>
</enum>
<enum name="RadioFaultEnum" type="enum8">
<cluster code="0x0033"/>
<item name="Unspecified" value="0x00"/>
<item name="WiFiFault" value="0x01"/>
<item name="CellularFault" value="0x02"/>
<item name="ThreadFault" value="0x03"/>
<item name="NFCFault" value="0x04"/>
<item name="BLEFault" value="0x05"/>
<item name="EthernetFault" value="0x06"/>
</enum>
<enum name="NetworkFaultEnum" type="enum8">
<cluster code="0x0033"/>
<item name="Unspecified" value="0x00"/>
<item name="HardwareFailure" value="0x01"/>
<item name="NetworkJammed" value="0x02"/>
<item name="ConnectionFailed" value="0x03"/>
</enum>
<enum name="BootReasonEnum" type="enum8">
<cluster code="0x0033"/>
<item name="Unspecified" value="0x00"/>
<item name="PowerOnReboot" value="0x01"/>
<item name="BrownOutReset" value="0x02"/>
<item name="SoftwareWatchdogReset" value="0x03"/>
<item name="HardwareWatchdogReset" value="0x04"/>
<item name="SoftwareUpdateCompleted" value="0x05"/>
<item name="SoftwareReset" value="0x06"/>
</enum>
<enum name="InterfaceTypeEnum" type="enum8">
<cluster code="0x0033"/>
<item name="Unspecified" value="0x00"/>
<item name="WiFi" value="0x01"/>
<item name="Ethernet" value="0x02"/>
<item name="Cellular" value="0x03"/>
<item name="Thread" value="0x04"/>
</enum>
<struct name="NetworkInterface">
<cluster code="0x0033"/>
<item code="0x00" name="Name" type="char_string" length="32"/>
<item code="0x01" name="IsOperational" type="boolean"/>
<item code="0x02" name="OffPremiseServicesReachableIPv4" type="boolean" isNullable="true"/>
<item code="0x03" name="OffPremiseServicesReachableIPv6" type="boolean" isNullable="true"/>
<!-- TODO(#14075): HWADR not supported yet -->
<item code="0x04" name="HardwareAddress" type="octet_string" length="8"/>
<item code="0x05" name="IPv4Addresses" type="octet_string" array="true"/>
<item code="0x06" name="IPv6Addresses" type="octet_string" array="true"/>
<item code="0x07" name="Type" type="InterfaceTypeEnum"/>
</struct>
<cluster>
<domain>General</domain>
<name>General Diagnostics</name>
<code>0x0033</code>
<define>GENERAL_DIAGNOSTICS_CLUSTER</define>
<description>The General Diagnostics Cluster, along with other diagnostics clusters, provide a means to acquire standardized diagnostics metrics that MAY be used by a Node to assist a user or Administrative Node in diagnosing potential problems.</description>
<globalAttribute side="either" code="0xFFFD" value="2"/>
<features>
<feature bit="0" code="DMTEST" name="DataModelTest" summary="Support specific testing needs for extended Data Model features">
<optionalConform/>
</feature>
</features>
<attribute side="server" code="0x00" name="NetworkInterfaces" define="NETWORK_INTERFACES" type="array" entryType="NetworkInterface" length="8">
<mandatoryConform/>
</attribute>
<attribute side="server" code="0x01" name="RebootCount" define="REBOOT_COUNT" type="int16u">
<mandatoryConform/>
</attribute>
<!-- ***NOTE***: UpTime attribute is mandatory starting at Rev >= 2, but because of backwards compatibility, has to be optional here.
The device type config and cert tests (TC-DGGEN-1.1/2.1) ensure that it is present. -->
<attribute side="server" code="0x02" name="UpTime" define="UP_TIME" type="int64u" optional="true">
<mandatoryConform/>
</attribute>
<attribute side="server" code="0x03" name="TotalOperationalHours" define="TOTAL_OPERATIONAL_HOURS" type="int32u" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x04" name="BootReason" define="BOOT_REASONS" type="BootReasonEnum" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x05" name="ActiveHardwareFaults" define="ACTIVE_HARDWARE_FAULTS" type="array" entryType="HardwareFaultEnum" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x06" name="ActiveRadioFaults" define="ACTIVE_RADIO_FAULTS" type="array" entryType="RadioFaultEnum" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x07" name="ActiveNetworkFaults" define="ACTIVE_NETWORK_FAULTS" type="array" entryType="NetworkFaultEnum" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x08" name="TestEventTriggersEnabled" define="TEST_EVENT_TRIGGERS_ENABLED" type="boolean">
<mandatoryConform/>
</attribute>
<!--
WARNING !!!!! Attribute 0x0009 (previously AverageWearCount, see #30002/#29285)
was previously mistakenly added in SDK without being in spec and WAS REMOVED.
Previously (disallowed):
<attribute side="server" code="0x09" define="AVERAGE_WEAR_COUNT" type="int32u" writable="false" default="0x00000000" optional="true">AverageWearCount</attribute>
====== ID 0x0009 is reserved, do not use ======
-->
<command source="client" code="0x00" name="TestEventTrigger" optional="false">
<description>Provide a means for certification tests to trigger some test-plan-specific events</description>
<arg name="EnableKey" type="octet_string" length="16"/>
<arg name="EventTrigger" type="int64u"/>
<access op="invoke" role="manage"/>
<mandatoryConform/>
</command>
<command source="client" code="0x01" name="TimeSnapshot" response="TimeSnapshotResponse" optional="false" apiMaturity="provisional">
<description>Take a snapshot of system time and epoch time.</description>
<mandatoryConform/>
</command>
<command source="server" code="0x02" name="TimeSnapshotResponse" optional="false" apiMaturity="provisional">
<description>Response for the TimeSnapshot command.</description>
<arg name="SystemTimeMs" type="systime_ms" optional="false"/>
<arg name="PosixTimeMs" type="posix_ms" isNullable="true" optional="false"/>
<mandatoryConform/>
</command>
<command source="client" code="0x03" name="PayloadTestRequest" response="PayloadTestResponse" optional="true" apiMaturity="provisional">
<description>Request a variable length payload response.</description>
<arg name="EnableKey" type="octet_string" length="16"/>
<arg name="Value" type="int8u"/>
<arg name="Count" type="int16u" max="2048"/>
<mandatoryConform>
<feature name="DMTEST"/>
</mandatoryConform>
</command>
<command source="server" code="0x04" name="PayloadTestResponse" optional="true" apiMaturity="provisional">
<description>Response for the PayloadTestRequest command.</description>
<arg name="Payload" type="octet_string" max="2048" optional="false"/>
<mandatoryConform>
<feature name="DMTEST"/>
</mandatoryConform>
</command>
<event side="server" code="0x00" name="HardwareFaultChange" priority="critical" optional="true">
<description>Indicate a change in the set of hardware faults currently detected by the Node.</description>
<field id="0" name="Current" type="HardwareFaultEnum" array="true"/>
<field id="1" name="Previous" type="HardwareFaultEnum" array="true"/>
<optionalConform/>
</event>
<event side="server" code="0x01" name="RadioFaultChange" priority="critical" optional="true">
<description>Indicate a change in the set of radio faults currently detected by the Node.</description>
<field id="0" name="Current" type="RadioFaultEnum" array="true"/>
<field id="1" name="Previous" type="RadioFaultEnum" array="true"/>
<optionalConform/>
</event>
<event side="server" code="0x02" name="NetworkFaultChange" priority="critical" optional="true">
<description>Indicate a change in the set of network faults currently detected by the Node.</description>
<field id="0" name="Current" type="NetworkFaultEnum" array="true"/>
<field id="1" name="Previous" type="NetworkFaultEnum" array="true"/>
<optionalConform/>
</event>
<event side="server" code="0x03" name="BootReason" priority="critical" optional="false">
<description>Indicate the reason that caused the device to start-up.</description>
<field id="0" name="BootReason" type="BootReasonEnum"/>
<mandatoryConform/>
</event>
</cluster>
</configurator>