summaryrefslogtreecommitdiffstats
path: root/src/occ_405/firdata/scom_util.c
blob: 43006935b59d3783e4cd9ecd72ba79e9480e9f75 (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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/occ_405/firdata/scom_util.c $                             */
/*                                                                        */
/* OpenPOWER OnChipController Project                                     */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015,2017                        */
/* [+] 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                                                     */

/* Support for SCOM operations */
#include <scom_util.h>
#include <fsi.h>
#include <native.h>

enum {
    /*FSI addresses are byte offsets, so need to multiply by 4
      since each register is 4 bytes long.
      prefix with 0x10xx for FSI2PIB engine offset */
    DATA0_REG         = 0x1000,  /* SCOM Data Register 0 (0x00) */
    DATA1_REG         = 0x1004,  /* SCOM Data Register 1 (0x01) */
    COMMAND_REG       = 0x1008,  /* SCOM Command Register (0x02) */
    ENGINE_RESET_REG  = 0x1018,  /* Engine Reset Register (0x06) */
    STATUS_REG        = 0x101C,  /* STATUS Register (0x07) */
    PIB_RESET_REG     = 0x101C,  /* PIB Reset Register (0x07) */

    PIB_ABORT_BIT     = 0x00100000, /* 12= PIB Abort */
    PIB_ERROR_BITS    = 0x00007000, /* 17:19= PCB/PIB Errors */
};

/**
 * @brief Indirect SCOM Status
 */
typedef union
{
    uint64_t data64;
    struct
    {
        uint64_t :12;        /*0:11*/
        uint64_t addr:20;    /*12:31*/
        uint64_t done:1;     /*32*/
        uint64_t piberr:3;   /*33:35*/
        uint64_t userstat:4; /*36:39*/
        uint64_t :8;         /*40:47*/
        uint64_t data:16;    /*48:63*/
    };
} IndirectScom_t;

enum {
    MCS_MASK =             0xFFFFFFFF7FFFFF80,
    MCS_BASEADDR =         0x0000000002011800,
    MCS_DMI_BASEADDR =     0x0000000002011A00,
    IND_MCS_BASEADDR =     0x8000006002011A00,
    IND_MCS_DMI_BASEADDR = 0x8000006002011A3F,
    MBA_MASK =             0xFFFFFFFF7FFFFC00,
    MBA_BASEADDR =         0x0000000003010400,
    TCM_MBA_BASEADDR =     0x0000000003010800,
    IND_MBA_BASEADDR =     0x800000000301143f,
};

/**
 * @brief  Translates a relative unit address to a real physical address
 * @param  i_trgt Chip/unit to SCOM.
 * @param  i_addr Address to SCOM (the unit's 0th address for unit SCOMs).
 * @param  o_addr Return address.
 * @return Non-SUCCESS if an internal function fails. SUCCESS otherwise.
 */
int32_t translate_addr( SCOM_Trgt_t i_trgt, uint64_t i_addr, uint64_t * o_addr )
{
    #define FUNC "[translate_addr] "

    int32_t rc = SUCCESS;

    TrgtType_t l_type = i_trgt.type;

    *o_addr = i_addr;

    /* No translation needed for non-unit scoms */
    if( (l_type == TRGT_PROC) || (l_type == TRGT_MEMBUF) )
    {
        *o_addr = i_addr;
    }
    else /* it is a Unit */
    {
        uint8_t l_num = SCOM_Trgt_getChipUnitPos(i_trgt);

        if( l_type == TRGT_EX )
        {
            /*first byte is 0x10, second nibble of that byte is the EX number */
            *o_addr |= (l_num << 24);
        }
        else if( l_type == TRGT_MCS )
        {
            /*Non-DMI address */
            if( (i_addr & MCS_MASK) == MCS_BASEADDR )
            {
                /* MC0 MCS0 = 0x02011800  MCS-0  range 0             */
                /* MC0 MCS1 = 0x02011880  MCS-1  range 0 + remainder */
                /* MC1 MCS0 = 0x02011900  MCS-2  range 1             */
                /* MC1 MCS0 = 0x02011980  MCS-3  range 1 + remainder */
                /* MC2 MCS0 = 0x02011C00  MCS-4  range 2             */
                /* MC2 MCS1 = 0x02011C80  MCS-5  range 2 + remainder */
                /* MC3 MCS0 = 0x02011D00  MCS-6  range 3             */
                /* MC3 MCS1 = 0x02011D80  MCS-7  range 3 + remainder */
                if( (l_num / 2) == 1) /*range 1 */
                {
                    *o_addr |= 0x100;
                }
                else if( (l_num / 2) == 2)  /*range 2 */
                {
                    *o_addr |= 0x400;
                }
                else if( (l_num / 2) == 3)  /*range 3 */
                {
                    *o_addr |= 0x500;
                }

                /* Add 0x80 for the odd numbers */
                if( l_num % 2)
                {
                    *o_addr |= 0x80;
                }
            }
            else if( (i_addr & MCS_MASK) == MCS_DMI_BASEADDR )
            {
                /* 0x00000000_02011A00  MCS 0-3  # MCS/DMI0 Direct SCOM */
                /* 0x00000000_02011E00  MCS 4-7  # MCS/DMI4 Direct SCOM */
                if( l_num > 3 )
                {
                    *o_addr |= 0x400; /* A00->E00 */
                }
            }
            else if( (i_addr & MCS_MASK) == IND_MCS_DMI_BASEADDR )
            {
                /* 0x80000060_02011A3F  MCS 0  # DMI0 Indirect SCOM RX3 */
                /* 0x80000040_02011A3F  MCS 1  # DMI1 Indirect SCOM RX2 */
                /* 0x80000000_02011A3F  MCS 2  # DMI3 Indirect SCOM RX0 */
                /* 0x80000020_02011A3F  MCS 3  # DMI2 Indirect SCOM RX1 */

                /* 0x80000060_02011E3F  MCS 4  # DMI4 Indirect SCOM RX3 */
                /* 0x80000040_02011E3F  MCS 5  # DMI5 Indirect SCOM RX2 */
                /* 0x80000000_02011E3F  MCS 6  # DMI7 Indirect SCOM RX0 */
                /* 0x80000020_02011E3F  MCS 7  # DMI6 Indirect SCOM RX1 */

                /* 0x80000460_02011A3F  MCS 0  # DMI0 Indirect SCOM TX3 */
                /* 0x80000440_02011A3F  MCS 1  # DMI1 Indirect SCOM TX2 */
                /* 0x80000400_02011A3F  MCS 2  # DMI3 Indirect SCOM TX0 */
                /* 0x80000420_02011A3F  MCS 3  # DMI2 Indirect SCOM TX1 */

                /* 0x80000460_02011E3F  MCS 4  # DMI4 Indirect SCOM TX3 */
                /* 0x80000440_02011E3F  MCS 5  # DMI5 Indirect SCOM TX2 */
                /* 0x80000400_02011E3F  MCS 6  # DMI7 Indirect SCOM TX0 */
                /* 0x80000420_02011E3F  MCS 7  # DMI6 Indirect SCOM TX1 */

                /* zero out the instance bits */
                *o_addr &= 0xFFFFFF9FFFFFFFFF;
                switch( l_num )
                {
                    case(0):
                    case(4):
                        *o_addr |= 0x0000006000000000;
                        break;
                    case(1):
                    case(5):
                        *o_addr |= 0x0000004000000000;
                        break;
                    case(2):
                    case(6):
                        /*nothing to do */
                        break;
                    case(3):
                    case(7):
                        *o_addr |= 0x0000002000000000;
                        break;
                    default:
                        TRAC_ERR(FUNC"unsupported MCS unit position %d", l_num);
                        rc = FAIL;
                }
                if( l_num > 3 )
                {
                    *o_addr |= 0x400; /* A00->E00 */
                }
            }
        }
        else if( l_type == TRGT_MBA )
        {
            if( (i_addr & MBA_MASK) == MBA_BASEADDR )
            {
                /* 0x00000000_03010400  MBA 0  # MBA01 */
                /* 0x00000000_03010C00  MBA 1  # MBA23 */
                if( l_num == 1 )
                {
                    *o_addr |= 0x00000800;
                }
            }
            else if( (i_addr & MBA_MASK) == TCM_MBA_BASEADDR )
            {
                /* 0x00000000_03010880  MBA 0  # Trace for MBA01 */
                /* 0x00000000_030110C0  MBA 1  # Trace for MBA23 */
                *o_addr |= (l_num * 0x840);
            }
            else if( (i_addr & MBA_MASK) == IND_MBA_BASEADDR )
            {
                /* 0x00000000_03011400  MBA 0  # DPHY01 (indirect addressing) */
                /* 0x00000000_03011800  MBA 1  # DPHY23 (indirect addressing) */
                /* 0x80000000_0301143f  MBA 0  # DPHY01 (indirect addressing) */
                /* 0x80000000_0301183f  MBA 1  # DPHY23 (indirect addressing) */
                /* 0x80000000_0701143f  MBA 0  # DPHY01 (indirect addressing) */
                /* 0x80000000_0701183f  MBA 1  # DPHY23 (indirect addressing) */
                if( l_num == 1 )
                {
                    /* 030114zz->030118zz */
                    *o_addr &= 0xFFFFFFFFFFFFFBFF;
                    *o_addr |= 0x0000000000000800;
                }
            }
        }
        else
        {
            TRAC_ERR( FUNC"unsupported unit type %d", l_type );
            rc = FAIL;
        }
    }

    return rc;

    #undef FUNC
}

/**
 * @brief  Performs a getscom operation with no address translation.
 * @param  i_chip Chip to SCOM.
 * @param  i_addr Address to SCOM.
 * @param  o_val  Returned value.
 * @return Non-SUCCESS if an internal function fails. SUCCESS otherwise.
 */
int32_t getscomraw( SCOM_Trgt_t i_chip, uint32_t i_addr, uint64_t * o_val )
{
    int32_t rc = SUCCESS;

    *o_val = 0;

    /* SCOMs to the master chip are done via XSCOM. */
    if ( i_chip.isMaster )
    {
        return xscom_read( i_addr, o_val );
    }

    /* 1) Sent the command to do the SCOM read. */
    rc = putfsi( i_chip, COMMAND_REG, i_addr );
    if ( SUCCESS != rc ) return rc;

    /* 2) Check status next -- TODO */

    /* 3) Read the two data registers. */
    uint32_t data0, data1;

    rc = getfsi( i_chip, DATA0_REG, &data0 );
    if ( SUCCESS != rc ) return rc;

    rc = getfsi( i_chip, DATA1_REG, &data1 );
    if ( SUCCESS != rc ) return rc;

    *o_val = ((uint64_t)data0 << 32) | (uint64_t)data1;

    return rc;
}

/**
 * @brief  Perform a putscom operation with no address translation.
 * @param  i_chip Chip to SCOM.
 * @param  i_addr Address to SCOM.
 * @param  i_val  Value to write.
 * @return Non-SUCCESS if an internal function fails. SUCCESS otherwise.
 */
int32_t putscomraw( SCOM_Trgt_t i_chip, uint32_t i_addr, uint64_t i_val )
{
    int32_t rc = SUCCESS;

    /* SCOMs to the master chip are done via XSCOM. */
    if ( i_chip.isMaster )
    {
        return xscom_write( i_addr, i_val );
    }

    /* 1) Write the two data registers. */
    rc = putfsi( i_chip, DATA0_REG, i_val >> 32 );
    if ( SUCCESS != rc ) return rc;

    rc = putfsi( i_chip, DATA1_REG, (uint32_t)i_val );
    if ( SUCCESS != rc ) return rc;

    /* 2) Send the command to do the SCOM write. */
    rc = putfsi( i_chip, COMMAND_REG, i_addr | 0x80000000 );
    if ( SUCCESS != rc ) return rc;

    /* 3) Check status next -- TODO */

    return rc;
}

/**
 * @brief  Executes standard getscom.
 * @param  i_trgt Chip to SCOM.
 * @param  i_addr Address to SCOM.
 * @param  o_val  Returned value.
 * @return Non-SUCCESS if an internal function fails. SUCCESS otherwise.
 */
int32_t SCOM_getScom( SCOM_Trgt_t i_trgt, uint32_t i_addr, uint64_t * o_val )
{
    int32_t rc = SUCCESS;

    /* Get the parent chip. */
    SCOM_Trgt_t chip_targ = SCOM_Trgt_getParentChip(i_trgt);

    /* Get the address relative to the parent chip. */
    uint64_t trans_addr;
    rc = translate_addr( i_trgt, i_addr, &trans_addr );
    if ( SUCCESS == rc )
    {
        /* Do the SCOM. */
        rc = getscomraw( chip_targ, trans_addr, o_val );
    }

    return rc;
}

/**
 * @brief  Execute indirect getscom.
 * @param  i_trgt Chip to SCOM.
 * @param  i_addr Address to SCOM.
 * @param  o_val  Returned value.
 * @return Non-SUCCESS if an internal function fails. SUCCESS otherwise.
 */
int32_t SCOM_getIdScom( SCOM_Trgt_t i_trgt, uint64_t i_addr, uint32_t * o_val )
{
    #define FUNC "[SCOM_getIdScom] "

    int32_t rc = SUCCESS;

    *o_val = 0;

    /* Get the parent chip */
    SCOM_Trgt_t chip_targ = SCOM_Trgt_getParentChip(i_trgt);

    /* Get the address relative to the parent chip. */
    uint64_t trans_addr;
    rc = translate_addr( i_trgt, i_addr, &trans_addr );
    if ( SUCCESS != rc ) return rc;

    /* An indirect SCOM is performed by putting the top of the 64-bit address
     * into the first data word of the SCOM */

    /* Zero out the indirect address from the buffer. */
    /* bit 0-31 - indirect area. */
    /* bit 32 - always 0 */
    /* bit 33-47 - bcast/chipletID/port */
    /* bit 48-63 - local addr */
    uint32_t phys_addr = trans_addr & 0x000000007FFFFFFF;

    /* To do a read we need to do a write first. */

    /* Start with the 20bit indirect address */
    uint64_t data_buffer = trans_addr & 0x001FFFFF00000000;
    /* Turn the read bit on. */
    data_buffer |= 0x8000000000000000;

    /* perform write before the read with the new */
    rc = putscomraw( i_trgt, phys_addr, data_buffer );
    if ( SUCCESS != rc ) return rc;

    // Loop on read until we see done, error, or we timeout
    IndirectScom_t scomout;
    uint64_t elapsed_indScom_time_ns = 0;
    do
    {
        /* Now perform the op requested using the passed in */
        /* IO_Buffer to pass the read data back to caller. */
        rc = getscomraw( chip_targ, phys_addr, &(scomout.data64) );
        if ( SUCCESS != rc ) return rc;

        /* Check for PIB error. */
        if ( scomout.piberr )
        {
            TRAC_ERR( FUNC"ID SCOM PIB error: phys_addr=0x%08x "
                      "trans_addr=0x%08x%08x", phys_addr,
                      (uint32_t)(trans_addr >> 32), (uint32_t)trans_addr );
            return FAIL;
        }

        /* Jump out when done. */
        if ( scomout.done ) break;

        sleep( 10000 ); /* sleep for 10,000 ns */
        elapsed_indScom_time_ns += 10000;

    } while ( elapsed_indScom_time_ns <= 100000 ); /* wait for .1ms */

    if ( !scomout.done )
    {
        TRAC_ERR( FUNC"ID SCOM loop timeout exceeded: phys_addr=0x%08x "
                      "trans_addr=0x%08x%08x", phys_addr,
                      (uint32_t)(trans_addr >> 32), (uint32_t)trans_addr );
        return FAIL;
    }

    *o_val = scomout.data;

    return rc;

    #undef FUNC
}
OpenPOWER on IntegriCloud