summaryrefslogtreecommitdiffstats
path: root/src/sbefw/core/sbeConsole.C
blob: d3d3f3f6353c0562eeb553f7c57ef8626ce42822 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/sbefw/core/sbeConsole.C $                                 */
/*                                                                        */
/* OpenPOWER sbe Project                                                  */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2018                             */
/* [+] 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                                                     */
#include "sbetrace.H"
#include "fapi2.H"

#include "sbeConsole.H"

#include "p9_perv_scom_addresses.H"
#include "p9_perv_scom_addresses_fld.H"
#include "p9_misc_scom_addresses.H"
#include "p9_misc_scom_addresses_fld.H"

#include "sberegaccess.H"
#include "sbeglobals.H"
#include "p9_lpc_utils.H"

using namespace fapi2;

static uint32_t writeReg(uint8_t i_addr,
                  uint8_t i_data)
{
    uint32_t rc = SBE_SEC_OPERATION_SUCCESSFUL;

    do {
        Target<TARGET_TYPE_PROC_CHIP > proc = plat_getChipTarget();

        buffer<uint32_t> data = 0;
        data.insert(i_data, 0, 8);

        ReturnCode fapiRc = lpc_rw(proc,
                                   LPC_IO_SPACE + uartBase + i_addr,
                                   sizeof(uint8_t),
                                   false,
                                   false,
                                   data);
        if(fapiRc != FAPI2_RC_SUCCESS)
        {
            rc = SBE_SEC_LPC_ACCESS_FAILED;
            break;
        }
    } while(0);

    return rc;
}

static uint32_t readReg(uint8_t i_addr,
                 uint8_t &o_data)
{
    uint32_t rc = SBE_SEC_OPERATION_SUCCESSFUL;

    do
    {
        Target<TARGET_TYPE_PROC_CHIP > proc = plat_getChipTarget();

        buffer<uint32_t> data = 0;
        ReturnCode fapiRc = lpc_rw(proc,
                                   LPC_IO_SPACE + uartBase + i_addr,
                                   sizeof(uint8_t),
                                   true,
                                   false,
                                   data);
        if(fapiRc != FAPI2_RC_SUCCESS)
        {
            rc = SBE_SEC_LPC_ACCESS_FAILED;
            break;
        }
        data.extract(o_data, 0, 8);
    } while(0);

    return rc;
}

void uartInit(void)
{
    #define SBE_FUNC "uartInit"
    uint32_t rc = SBE_SEC_OPERATION_SUCCESSFUL;

    uint8_t lpcConsoleCfg = 0;
    FAPI_ATTR_GET(fapi2::ATTR_LPC_CONSOLE_CNFG,
                  plat_getChipTarget(),
                  lpcConsoleCfg);
    if(!lpcConsoleCfg)
    {
        SBE_INFO(SBE_FUNC " ATTR_LPC_CONSOLE_CNFG not set");
        return;
    }
    do {
        // Check for existence of scratch register (and thus UART device).
        rc = writeReg(SCR, 'h');
        if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
        {
            SBE_ERROR(SBE_FUNC " failure to write scratch for uart detection");
            break;
        }
        uint8_t data = 0;
        rc = readReg(SCR, data);
        if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
        {
            SBE_ERROR(SBE_FUNC " failure to read scratch for uart detection");
            break;
        }
        if(data != 'h')
        {
            SBE_ERROR(SBE_FUNC " uart device not found!");
            break;
        }

        struct i2c_config {
            uint8_t reg;
            uint8_t data;
        };

        i2c_config configTable[] = {
            {LSR, 0x00}, // clear line control register
            {IER, 0x00}, // clear interrupt register
            {LCR, LCR_DLAB}, // set baud rate
            {DLL, uartDivisor & 0xff},
            {DLM, uartDivisor >> 8},
            {LCR, LCR_DWL8 | LCR_NOP | LCR_STP1}, // set 8N1 mode
            {MCR, MCR_RTS | MCR_DTR}, // enable Request-to-send/Data-terminal-ready
            {FCR, FCR_ENF | FCR_CLFR | FCR_CLFT}, // clear and enable FIFOs
        };

        uint8_t step = 0;
        for(auto config:configTable) {
            rc = writeReg(config.reg, config.data);
            if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
            {
                SBE_ERROR(SBE_FUNC " failure step [%d]", step);
                return;
            }
            step++;
        }

        SBE_INFO(SBE_FUNC " UART device initialized.");
        SBE_GLOBAL->sbeUartActive = true;
    } while(0);

    #undef SBE_FUNC
}

static void uartPutChar(char c)
{
    #define SBE_FUNC "uartPutChar"
    uint32_t rc = SBE_SEC_OPERATION_SUCCESSFUL;
    do {
        static const uint64_t DELAY_NS = 100;
        static const uint64_t DELAY_LOOPS = 100000000;

        uint64_t loops = 0;
        uint8_t data = 0;
        do {
            rc = readReg(LSR, data);
            if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
            {
                SBE_ERROR(SBE_FUNC " failure to read LSR");
                break;
            }
            if(data == LSR_BAD || (data & LSR_THRE))
            {
                break;
            }
            delay(DELAY_NS, 1000000);
        } while(++loops < DELAY_LOOPS);

        if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
        {
            SBE_ERROR(SBE_FUNC " LSR read error.");
            break;
        }
        if(data == LSR_BAD)
        {
            SBE_ERROR(SBE_FUNC " LSR_BAD data error.");
            break;
        }
        if(loops >= DELAY_LOOPS)
        {
            SBE_ERROR(SBE_FUNC " FIFO timeout.");
            break;
        }

        rc = writeReg(THR, c);
        if(rc != SBE_SEC_OPERATION_SUCCESSFUL)
        {
            SBE_ERROR(SBE_FUNC " failure to write THR");
            break;
        }

    } while(0);

    #undef SBE_FUNC
}

void uartDisable(void)
{
    SBE_INFO("uart disabled");
    SBE_GLOBAL->sbeUartActive = false;
}

void uartLock(void)
{
    int rcPk = PK_OK;
    rcPk = pk_semaphore_pend (&SBE_GLOBAL->sbeUartBinSem, PK_WAIT_FOREVER);
    // PK API failure
    if (rcPk != PK_OK)
    {
        SBE_ERROR(SBE_FUNC"pk_semaphore_pend failed, "
                  "rcPk=%d, SBE_GLOBAL->sbeUartBinSem.count=%d",
                   rcPk, SBE_GLOBAL->sbeUartBinSem.count);
        pk_halt();
    }
}

void uartUnLock(void)
{
    int rcPk = PK_OK;
    rcPk = pk_semaphore_post(&SBE_GLOBAL->sbeUartBinSem);
    // PK API failure
    if (rcPk != PK_OK)
    {
        SBE_ERROR(SBE_FUNC"pk_semaphore_post failed, "
                  "rcPk=%d, SBE_GLOBAL->sbeUartBinSem.count=%d",
                   rcPk, SBE_GLOBAL->sbeUartBinSem.count);
        pk_halt();
    }
}

void sbeMsgConsole(uint32_t num)
{
    // 8 chars for max unit32_t and a null terminator
    char num_str[9] = {};

    int i = 0;
    if(num == 0)
        num_str[0] = '0';
    while(num)
    {
        num_str[i++] = (num % 10) + '0';
        num /= 10;
    }

    // reverse string
    char *start = num_str, *end = num_str + i-1;
    while(start < end)
    {
        char temp = *start;
        *start = *end;
        *end = temp;
        start++;
        end--;
    }

    sbeMsgConsole((char*)(num_str));
}

void sbeMsgConsole(char const *msg)
{
    size_t c = 0;
    while(msg[c] != '\0')
    {
        uartPutChar(msg[c++]);
    }
}
OpenPOWER on IntegriCloud