summaryrefslogtreecommitdiffstats
path: root/sbe/sbefw/sbefifo.C
blob: 08a493db20648066f30dd64c92514087bac3f970 (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
/*
 * @file: ppe/sbe/sbefw/sbefifo.C
 *
 * @brief This file contains the SBE FIFO Commands
 *
 */

#include "sbeexeintf.H"
#include "sbefifo.H"
#include "sbetrace.H"
#include "sbe_sp_intf.H"

//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
uint32_t sbeUpFifoDeq_mult (uint8_t     &io_len,
                            uint32_t    *o_pData,
                            const bool  i_flush)
{
    #define SBE_FUNC " sbeUpFifoDeq_mult "
    uint32_t l_rc = SBE_FIFO_RC_UNKNOWN;
    uint8_t  l_len = 0;

    // @TODO via RTC : 130575
    //       Refactor this utility to
    //       optimize RC handling, stack usage
    //       and FIFO operation infrastructure.
    //

    do
    {
        sbe_upfifo_entry_t l_data = {0};
        uint64_t l_upfifo_data = 0;

        // Read Double word from the Upstream FIFO;
        // The DW data represents the first 32 bits of data word entry
        // followed by the status bits.

        // Bit 0-31    : Data
        // Bit 32      : Data valid flag
        // Bit 33      : EOT flag
        // Bit 34-63   : Status (2-31)
        // Valid : EOT
        //    1  : 0   -> data=message
        //    0  : 1   -> data=dummy_data of EOT operation
        //    0  : 0   -> data=dummy_data
        //    1  : 1   -> Not used

        l_rc = sbeUpFifoDeq ( &l_upfifo_data );

        if (l_rc)
        {
            // Error while dequeueing from upstream FIFO
            SBE_ERROR(SBE_FUNC"sbeUpFifoDeq failed,"
                         "l_rc=[0x%08X]", l_rc);
            l_rc = SBE_SEC_FIFO_ACCESS_FAILURE;
            break;
        }

        l_data.upfifo_data   =   (uint32_t)(l_upfifo_data>>32);
        l_data.upfifo_status.upfifo_status_uint32 = (uint32_t)
                                               (l_upfifo_data);

        SBE_DEBUG(SBE_FUNC"sbeUpFifoDeq, "
                    "l_data.upfifo_data=[0x%08X],"
                    "l_data.upfifo_status=[0x%08X]",
                     l_data.upfifo_data,
                     l_data.upfifo_status.upfifo_status_uint32);

        // If FIFO reset is requested
        if(l_data.upfifo_status.upfifo_status_bitset.req_upfifo_reset)
        {
            // @TODO via RTC : 126147
            //       Review reset loop flow in here.
            //       Received a FIFO reset request
            l_rc = SBE_FIFO_RC_RESET;
            break;
        }

        // if EOT flag is set
        //    clear EOT
        if (l_data.upfifo_status.upfifo_status_bitset.eot_flag)
        {
            l_rc = sbeUpFifoAckEot();
            if (l_rc)
            {
                // Error while ack'ing EOT in upstream FIFO
                SBE_ERROR(SBE_FUNC"sbeUpFifoAckEot failed,"
                          "l_rc=[0x%08X]", l_rc);
                // Collect FFDC
                l_rc = SBE_FIFO_RC_EOT_ACK_FAILED;
            }
            else
            {
                l_rc = SBE_FIFO_RC_EOT_ACKED;
            }
            break;
        }

        // if Upstream FIFO is empty,
        if (l_data.upfifo_status.upfifo_status_bitset.fifo_empty)
        {
            l_rc = SBE_FIFO_RC_EMPTY;
            continue;
        }

        if (i_flush)
        {
            l_len  = 0; // to force the upFIFO flush until EOT arrives
            continue;
        }

        o_pData[l_len] = l_data.upfifo_data;
        ++l_len;
        l_rc = SBE_SEC_OPERATION_SUCCESSFUL;

    } while(l_len<io_len);

    // Return the length of entries dequeued.
    // When user sets i_flush as true, this
    // would return io_len as 0;
    io_len = l_len;
    return l_rc;

    #undef SBE_FUNC
}

//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
uint32_t sbeDownFifoEnq_mult (uint8_t        &io_len,
                              const uint32_t *i_pData)
{
    #define SBE_FUNC " sbeDownFifoEnq_mult "
    uint8_t  l_rc   = SBE_FIFO_RC_UNKNOWN;
    uint8_t  l_len = 0;

    // @TODO via RTC : 130575
    //       Refactor this utility to
    //       optimize RC handling, stack usage
    //       and FIFO operation infrastructure.

    do
    {
        sbe_downfifo_status_t l_downFifoStatus ;
        typedef union
        {
            uint64_t status;
            uint64_t data;
        } sbeDownFiFoEntry_t;
        sbeDownFiFoEntry_t l_sbeDownFiFoEntry ;

        // Read the down stream FIFO status
        l_rc = sbeDownFifoGetStatus (&l_sbeDownFiFoEntry.status);
        if (l_rc)
        {
            // Error while reading downstream FIFO status
            SBE_ERROR(SBE_FUNC"sbeDownFifoGetStatus failed, "
                      "l_rc=[0x%08X]", l_rc);
            l_rc = SBE_SEC_FIFO_ACCESS_FAILURE;
            break;
        }

        l_downFifoStatus.downfifo_status_uint32 = (uint32_t)
                                      (l_sbeDownFiFoEntry.status>>32);

        SBE_DEBUG(SBE_FUNC"downstream fifo status[0x%08X]",
                   l_downFifoStatus.downfifo_status_uint32);

        // Check if there was a FIFO reset request from SP
        if (l_downFifoStatus.downfifo_status_bitset.req_upfifo_reset)
        {
            // @TODO via RTC : 126147
            //       Review reset loop flow in here.
            //       Received an upstream FIFO reset request
            SBE_ERROR(SBE_FUNC"Received reset request");
            l_rc = SBE_FIFO_RC_RESET;
            break;
        }

        // Check if downstream FIFO is full
        if (l_downFifoStatus.downfifo_status_bitset.fifo_full)
        {
            // Downstream FIFO is full
            SBE_INFO(SBE_FUNC"Downstream FIFO is full");
            l_rc = SBE_FIFO_RC_FULL; // in case we ever add timeout
            continue;
        }

        // PIB write data format:
        // Bit 0 - 31  : Data
        // Bit 32 - 63 : Unused

        l_sbeDownFiFoEntry.data   = (uint64_t)(*(i_pData+l_len));
        l_sbeDownFiFoEntry.data   = l_sbeDownFiFoEntry.data<<32;

        SBE_DEBUG(SBE_FUNC"Downstream fifo data entry[0x%08X]",
                                    (l_sbeDownFiFoEntry.data>>32));

        // Write the data into the downstream FIFO
        l_rc = sbeDownFifoEnq (l_sbeDownFiFoEntry.data);
        if (l_rc)
        {
            SBE_ERROR(SBE_FUNC"sbeDownFifoEnq failed, "
                              "l_rc[0x%08X]", l_rc);
            l_rc = SBE_SEC_FIFO_ACCESS_FAILURE;
            break;
        }

        l_rc = SBE_SEC_OPERATION_SUCCESSFUL;
        ++l_len;

    } while(l_len<io_len);

    io_len = l_len;
    return l_rc;
    #undef SBE_FUNC
}

////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
void sbeBuildMinRespHdr ( uint32_t *io_pBuf,
                          uint8_t  &io_curIndex,
                    const uint16_t  i_primStatus,
                    const uint16_t  i_secStatus,
                    const uint32_t  i_pcbpibStatus,
                    const uint8_t   i_startIndex )
{
    do
    {
        if (!io_pBuf)
        {
            break;
        }

        io_pBuf[io_curIndex] = sbeBuildRespHeaderMagicCodeCmdClass();
        io_pBuf[++io_curIndex] = sbeBuildRespHeaderStatusWordLocal(
                                          i_primStatus, i_secStatus);

        // @TODO via RTC: 128916
        //       pcb-pib error is optional,
        //       not needed for success case
        io_pBuf[++io_curIndex]    = i_pcbpibStatus;

        // Somehow this compiler isn't allowing the
        // index pre-increment for the last array entry
        // directly embedded into the assignment
        ++io_curIndex;
        io_pBuf[io_curIndex]   = io_curIndex - i_startIndex + 1;

    } while(false);
}
OpenPOWER on IntegriCloud