summaryrefslogtreecommitdiffstats
path: root/xslt/mrwPCIEBusses.xsl
blob: fa9346a31f0e268065d92485870e05180c451320 (plain)
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- IBM_PROLOG_BEGIN_TAG                                                   -->
<!-- This is an automatically generated prolog.                             -->
<!--                                                                        -->
<!-- $Source: mrwPCIEBusses.xsl $                                           -->
<!--                                                                        -->
<!-- OpenPOWER HostBoot Project                                             -->
<!--                                                                        -->
<!-- Contributors Listed Below - COPYRIGHT 2014                             -->
<!-- [+] International Business Machines Corp.                              -->
<!--                                                                        -->
<!--                                                                        -->
<!-- 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.                         -->
<!--                                                                        -->
<!-- IBM_PROLOG_END_TAG                                                     -->
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:mrwpcie="http://w3.ibm.com/stg/power-firmware/schema/mrwpcie"
    xmlns="http://w3.ibm.com/stg/power-firmware/schema/mrwpcie"
    xmlns:ex="http://exslt.org/dates-and-times"
    extension-element-prefixes="ex">

    <!-- Pass in the system name with: xsltproc \-\-stringparam system <the systemName> -->
    <xsl:param name="system"/>

    <xsl:output method="html" indent="yes"/>

    <xsl:template match="/">
        <html>
            <head>
                <title>PCIE Connections</title>
            </head>
            <body>
                <h1>PCIE Connections</h1>
                <br/>
                <br/>

                <!-- The summary table, which will point to individual places down below -->
                <table border="3" cellpadding="9">
                <tr>
                    <th>Source</th>
                    <th>IOP</th>
                    <th>Width</th>
                    <th>Switch</th>
                    <th>Endpoint</th>
                    <th>Details</th>
                </tr>
                <xsl:for-each select="mrwpcie:pcie-busses/mrwpcie:pcie-bus">
                    <xsl:variable name="label" select="0"></xsl:variable>
                    <tr>
                        <td><xsl:value-of select="mrwpcie:source/mrwpcie:instance-path"/></td>
                        <td><xsl:value-of select="mrwpcie:source/mrwpcie:iop"/></td>
                        <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:width"/></td>
                        <xsl:choose>
                        <xsl:when test="mrwpcie:switch">
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:instance-path"/> (Station: <xsl:value-of select="mrwpcie:switch/mrwpcie:station"/> Port: <xsl:value-of select="mrwpcie:switch/mrwpcie:port"/>)</td>
                        </xsl:when>
                        <xsl:otherwise>
                            <td>None</td>
                        </xsl:otherwise>
                        </xsl:choose>

                        <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:instance-path"/></td>
                        <!-- Use the entry-num element to link to the detailed table below -->
                        <td><xsl:text disable-output-escaping="yes">&lt;a href="#dev</xsl:text><xsl:value-of select="mrwpcie:entry-num"></xsl:value-of><xsl:text disable-output-escaping="yes">"&gt;</xsl:text>Details<xsl:text disable-output-escaping="yes">&lt;/a&gt;</xsl:text></td>
                    </tr>
                </xsl:for-each>
                </table>
                 <br/><br/><br/><br/>


                 <!-- The detailed tables -->

                <xsl:for-each select="mrwpcie:pcie-busses/mrwpcie:pcie-bus">
                    <xsl:text disable-output-escaping="yes">&lt;a name="dev</xsl:text><xsl:value-of select="mrwpcie:entry-num"/><xsl:text disable-output-escaping="yes">"&gt;&lt;/a&gt;</xsl:text>
                    <table border="3" cellpadding="5" width="1000">
                        <tr>
                            <td colspan="2"><b><center>Source</center></b></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Processor</b>
                            </td>
                            <td>n<xsl:value-of select="mrwpcie:source/mrwpcie:target/mrwpcie:node"/>:p<xsl:value-of select="mrwpcie:source/mrwpcie:target/mrwpcie:position"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Instance Path</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:instance-path"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>IOP</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:iop"/></td>
                        </tr>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:source/mrwpcie:lane-mask">
                        <tr>
                            <td>
                                <b>Lane Mask</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:lane-mask"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:source/mrwpcie:dsmp-capable">
                        <tr>
                            <td>
                                <b>DSMP Capable</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:dsmp-capable"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:source/mrwpcie:lane-swap-bits">
                        <tr>
                            <td>
                                <b>Lane Swap Bits</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:lane-swap-bits"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:source/mrwpcie:lane-reversal-bits">
                        <tr>
                            <td>
                                <b>Lane Reversal Bits</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:source/mrwpcie:lane-reversal-bits"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>

                        <!-- if a x16 link, then also print the bifurcation settings -->
                        <xsl:choose>
                        <xsl:when test="mrwpcie:source/mrwpcie:bifurcation-settings">
                        <tr>
                            <td>
                                <b>Lane Swap Bits if Bifurcated</b>
                            </td>
                            <td>
                                Lanes <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[1]/mrwpcie:lane-mask"/> =
                                <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[1]/mrwpcie:lane-swap-bits"/>,
                                Lanes <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[2]/mrwpcie:lane-mask"/> =
                                <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[2]/mrwpcie:lane-swap-bits"/>
                            </td>
                       </tr>
                        <tr>
                            <td>
                                <b>Lane Reversal Bits if Bifurcated</b>
                            </td>
                            <td>
                                Lanes <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[1]/mrwpcie:lane-mask"/> =
                                <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[1]/mrwpcie:lane-reversal-bits"/>,
                                Lanes <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[2]/mrwpcie:lane-mask"/> =
                                <xsl:value-of select="mrwpcie:source/mrwpcie:bifurcation-settings/mrwpcie:bifurcation-setting[2]/mrwpcie:lane-reversal-bits"/>
                            </td>
                       </tr>

                        </xsl:when>
                        </xsl:choose>



                        <xsl:choose> <!-- Only print Switch section if present in the XML -->
                        <xsl:when test="mrwpcie:switch">
                        <tr>
                            <td colspan="2"><b><center>Switch</center></b></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Part </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:part-id"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Station </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:station"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Port </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:port"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Upstream Station </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:upstream-station"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Upstream Port </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:upstream-port"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Instance Path</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:switch/mrwpcie:instance-path"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>
                        <tr>
                            <td colspan="2"><b><center>Endpoint</center></b></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Card</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:card-id"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Part </b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:part-id"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Instance Path</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:instance-path"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Width</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:width"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Slot Index</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:slot-index"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Card Size</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:card-size"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Gen</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:gen"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Hot Plug</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:hot-plug"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>Is Slot</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:is-slot"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>CAPI</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:capi"/></td>
                        </tr>
                        <tr>
                            <td>
                                <b>LSI</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:lsi"/></td>
                        </tr>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:endpoint/mrwpcie:default-pcie-cooling-type">
                        <tr>
                            <td>
                                <b>Default Cooling Type</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:default-pcie-cooling-type"/></td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>

                        <xsl:choose> <!-- Might not be there -->
                        <xsl:when test="mrwpcie:endpoint/mrwpcie:default-power-consumption">
                        <tr>
                            <td>
                                <b>Default Power Consumption</b>
                            </td>
                            <td><xsl:value-of select="mrwpcie:endpoint/mrwpcie:default-power-consumption"/> Watts</td>
                        </tr>
                        </xsl:when>
                        </xsl:choose>
                    </table>
                    <br/>
                    <br/>
                </xsl:for-each>
                <br/><br/>
            </body>

        </html>
    </xsl:template>

</xsl:stylesheet>
OpenPOWER on IntegriCloud