forked from open-power/common-mrw-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattribute_types_obmc.xml
162 lines (152 loc) · 4.86 KB
/
attribute_types_obmc.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
<attributes>
<attribute>
<id>MANUFACTURER</id>
<description>The manufacturer</description>
<simpleType>
<string></string>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>BMC_DT_COMPATIBLE</id>
<description>The 'compatible' field for the part in the BMC device tree</description>
<simpleType>
<string>
<default></default>
</string>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>NCSI_MODE</id>
<description>1 = Use NC-SI (Network Controller-Sideband Interface) mode</description>
<simpleType>
<boolean>
<default>0</default>
</boolean>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>USE_HW_CHECKSUM</id>
<description>1 = Use hardware checksum mode</description>
<simpleType>
<boolean>
<default>1</default>
</boolean>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>BMC_DT_ATTR_NAMES</id>
<description>
Specifies which attributes, besides the existing BMC_DT_* attributes,
should be included as a property for this device's node in the BMC
device tree. The first column is the name of the MRW attribute, and
the second is what the name of the property should be in the device tree.
</description>
<simpleType>
<string>
<default>
NA, NA,
NA, NA,
NA, NA,
NA, NA
</default>
</string>
<array>4,2</array>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>BMC_DT_PINCTRL_FUNCS</id>
<description>Holds the pin control functions associated with the pingroup,
which allows Linux to know which function to enable for a
multi-function pin or set of pins.
(https://www.kernel.org/doc/Documentation/pinctrl.txt)
</description>
<simpleType>
<string>
<default>
NA,NA,NA,NA,NA,NA,NA,NA
</default>
</string>
<array>8,1</array>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>CONTROL_GROUPS</id>
<description>Contains information about which control groups an LED
belongs to. A row in the array specifies the group name
and properties for this LED in that group.
GroupName, BlinkFreqHz(0 = on solid), DutyCycle(0-100)
</description>
<simpleType>
<string>
</string>
<array>16,3</array>
</simpleType>
</attribute>
<attribute>
<id>HWMON_FEATURE</id>
<description>Contains information about a hwmon feature, where a
feature is an input that the chip measures, like
a temperature or voltage.
</description>
<complexType>
<field>
<name>HWMON_NAME</name>
<description>The name the hwmon uses, like 'in1'.</description>
<type>string</type>
</field>
<field>
<name>DESCRIPTIVE_NAME</name>
<description>A useful name for the feature, like 'ambient temp'
or 'VDDR voltage'.</description>
<type>string</type>
</field>
<field>
<name>WARN_LOW</name>
<description>A low warning threshold value</description>
<type>int32_t</type>
</field>
<field>
<name>WARN_HIGH</name>
<description>A high warning threshold value</description>
<type>int32_t</type>
</field>
<field>
<name>CRIT_LOW</name>
<description>A low critical threshold value</description>
<type>int32_t</type>
</field>
<field>
<name>CRIT_HIGH</name>
<description>A high critical threshold value</description>
<type>int32_t</type>
</field>
</complexType>
</attribute>
<attribute>
<id>REG_BASE_ADDRESS</id>
<description>The base register address of a function in hex.</description>
<simpleType>
<uint32_t>
<default></default>
</uint32_t>
</simpleType>
<readable/>
</attribute>
<attribute>
<id>REG_OFFSET</id>
<description>The offset, in hex, from the REG_BASE_ADDRESS that the
registers pertaining to this unit start at.</description>
<simpleType>
<uint32_t>
<default></default>
</uint32_t>
</simpleType>
<readable/>
</attribute>
</attributes>