summaryrefslogtreecommitdiffstats
path: root/src/usr/runtime/test/tcetest.H
blob: fefbe1867eebdb70153f1a27ff0ccf49eeb9b9d0 (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

/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/runtime/test/tcetest.H $                              */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* p1                                                                     */
/*                                                                        */
/* Object Code Only (OCO) source materials                                */
/* Licensed Internal Code Source Materials                                */
/* IBM HostBoot Licensed Internal Code                                    */
/*                                                                        */
/* The source code for this program is not published or otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#ifndef __TEST_TCETEST_H
#define __TEST_TCETEST_H

/**
 *  @file tcetest.H
 *
 */

#include <cxxtest/TestSuite.H>

#include <arch/ppc.H> //for MAGIC
#include <errl/errlmanager.H>
#include <runtime/runtime.H>
#include <targeting/common/commontargeting.H>
#include <runtime/tceif.H>
#include "../tce.H"
#include <util/align.H>
#include <kernel/console.H>
#include <sys/mmio.h>
#include <kernel/pagemgr.H>

extern trace_desc_t* g_trac_tce;

class TCETest: public CxxTest::TestSuite
{
  public:
    void testTCE(void)
    {
        TRACFCOMP( g_trac_tce, "testTCE> start" );
        errlHndl_t errhdl = NULL;
        uint64_t token0 = 0;
        uint64_t token1 = 0;
        uint64_t token2 = 0;
        uint64_t token3 = 0;
        uint64_t token4 = 0;
        uint64_t token5 = 0;

        uint64_t l_tceTable =
          reinterpret_cast<uint64_t>(PageManager::allocatePage(4, true));


        TceMgr *TceTable = new
             TceMgr(l_tceTable+100,100*(sizeof(uint64_t)));

        //---------------------------------------------------
        // TEST 1 - Call Create with unaligned addr
        //---------------------------------------------------

            errhdl = TceTable->createTceTable();

            if (errhdl == NULL)
            {
                TRACFCOMP( g_trac_tce,"TestTce: T1:  Did not get expected error from CreateTce ");
                TS_FAIL("testTcE> T1 Did not get expected error back.");
            }
            else
            {
                TRACFCOMP( g_trac_tce,"TestTce: T1: Got expected error unaligedn addr back from CreateTce ");
                delete errhdl;
            }

        // Since we are not page aligned.. Delete the TceTable
        delete TceTable;

        // create new TCE table with the aligned address but with a size too
        // large
        TceTable = new TceMgr(l_tceTable, THIRTYTWO_MB + PAGESIZE);


        //---------------------------------------------------
        // TEST 2 - Call create with aligned addr with large addr
        //---------------------------------------------------
        errhdl = TceTable->createTceTable();

        if (errhdl == NULL)
        {
            TRACFCOMP( g_trac_tce,"TestTce: T2:  Did not get expected error from CreateTce ");
            TS_FAIL("testTcE> T2 Did not get expected error back.");
        }
        else
        {
            TRACFCOMP( g_trac_tce,"TestTce: T2: Got expected error, size > 32M back from CreateTce ");
            delete errhdl;
        }


        // Since the size was too big. Delete the TceTable
        delete TceTable;

        // create new TCE table with the aligned address and valid size
        TceTable = new TceMgr(l_tceTable,100*(sizeof(uint64_t)));


        //---------------------------------------------------
        // TEST 3 - Call allocate before init.
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0, ((16*PAGESIZE)), token0);

        if (errhdl != NULL)
        {
            delete errhdl;
            errhdl = NULL;
        }
        else
        {
            TRACFCOMP( g_trac_tce,"TestTCE T3: Did not get back expected error");
            TS_FAIL("testTCE:T3: No error when address not page aligned.");
        }

        //---------------------------------------------------
        // TEST 4 - Call create with aligned addr
        //---------------------------------------------------
        errhdl = TceTable->createTceTable();

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce,
                      "TestTce: T4:  Got unexpected error from CreateTce ");
            TS_FAIL("testTcE> T4 got unexpected error back.");
            errlCommit(errhdl,RUNTIME_COMP_ID);

        }

        //---------------------------------------------------
        // TEST 5 - Call init.
        //---------------------------------------------------

        errhdl = TceTable->initTceInHdw();

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce,
                      "TestTce: T5:  Got unexpected error from InitTCEINHdw ");
            TS_FAIL("testTcE> T5 got unexpected error back.");
            errlCommit(errhdl,RUNTIME_COMP_ID);

        }

        token0 = 0;

        //---------------------------------------------------
        // TEST 6 - trying to allocate too large of size.
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0,
                                         (520*KILOBYTE*PAGESIZE),
                                         token0);

        if (errhdl != NULL)
        {
            delete errhdl;
            errhdl = NULL;
        }
        else
        {
            TRACFCOMP( g_trac_tce, "testTCE>T6: Did not get expecte error");
            TS_FAIL("testTCE> T6: No errorLog when size too large");
        }


        //---------------------------------------------------
        // TEST 7 - Address not page aligned.
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x4140, ((16*PAGESIZE)), token0);

        if (errhdl != NULL)
        {
            delete errhdl;
            errhdl = NULL;
        }
        else
        {
            TRACFCOMP( g_trac_tce, "testTCE:T7: Did not get back expected error");
            TS_FAIL("testTCE:T7 No error when addr not page aligned");
        }


        //---------------------------------------------------
        // TEST 8 - valid address with  8 pages in size
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000004000000,
                                         PAGESIZE*8,
                                         token1);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE> T8:  Got unexpected error ");
            TS_FAIL("testTCE> T8 got unexpected error back.");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token1 != 0)
        {
            TRACFCOMP( g_trac_tce, "testTCEs> T8:  Did not get back expected Token= %lx", token1);
            TS_FAIL("testTCEs> T8 got wrong Token.");

        }

        //---------------------------------------------------
        // TEST 9 - valid address with  16 pages in size
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000004010000,
                                        PAGESIZE*16,
                                        token2);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE> T9:  Got unexpected error ");
            TS_FAIL("testTCE> T9 got unexpected error back.");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token2 != 0x8000)
        {
            TRACFCOMP( g_trac_tce, "testTCE> T9:  Did not get back expected Token = %lx ", token2);
            TS_FAIL("testTCE> T9 got wrong Token.");
        }


        //---------------------------------------------------
        // TEST 10 - valid address with  50 pages in size
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000004800000,
                                        PAGESIZE*50,
                                        token3);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE> T10:  Got unexpected error ");
            TS_FAIL("testTCE> T10 got unexpected error back.");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token3 != 0x18000)
        {
            TRACFCOMP( g_trac_tce, "testTCE> T10:  Did not get back expected Token = %lx ", token3);
            TS_FAIL("testTCE> T10 got wrong Token.");
        }


        //---------------------------------------------------
        // TEST 11 - Deallocate token with 16 pages from above
        //---------------------------------------------------
        errhdl = TceTable->deallocateTces(token2,
                                          PAGESIZE*16);
        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T11:  Got unexpected error ");
            TS_FAIL("testTCE:T11 Deallocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }


        token2 = 0;

        //---------------------------------------------------
        // TEST 12 Allocate 10 pages.. will go into the slot left by the
        // previous allocate
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000004010000,
                                        PAGESIZE*10,
                                        token2);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "T12:  Got unexpected error ");
            TS_FAIL("testAllocateTCEs> T12 Allocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token2 != 0x8000)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T12:  Did not get back expected Token = %lx", token2);
            TS_FAIL("testTCE:T12: got wrong Token.");
        }


        //---------------------------------------------------
        // TEST 13 Allocate 10 pages.. will have ot pass the 6 slots avail from
        // the 16 page dealloate.. So will go past that to find a valid index to
        // fit the 20 entries
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000005010000,
                                        PAGESIZE*20,
                                        token4);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T13:  Got unexpected error ");
            TS_FAIL("testTCE:T13: Allocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token4 != 0x4a000)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T13:  Did not get back expected Token = %lx ", token4);
            TS_FAIL("testTCE:T10: got wrong Token.");
        }



        //---------------------------------------------------
        // TEST 14 Allocate 6 pages.. will go into the 6 slots avail from
        // the 16 page dealloate..
        //---------------------------------------------------
        errhdl = TceTable->allocateTces(0x0000000006010000,
                                        PAGESIZE*6,
                                        token5);

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T14:  Got unexpected error ");
            TS_FAIL("testTCE:T14: Allocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }
        else if (token5 != 0x12000)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T14:  Did not get back expected Token ");
            TS_FAIL("testTCE:T14: got wrong Token.");
        }


        //---------------------------------------------------
        // TEST 15 Deallocate 20 pages from above
        //---------------------------------------------------
        errhdl = TceTable->deallocateTces(token4,  PAGESIZE*20);
        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T15:  Got unexpected error ");
            TS_FAIL("testTCE:T15: Deallocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }

        //---------------------------------------------------
        // TEST 16 Deallocate 10 pages from above
        //---------------------------------------------------
        errhdl = TceTable->deallocateTces(token2,  PAGESIZE*10);
        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T16: Got unexpected error ");
            TS_FAIL("testTCE:T16: Deallocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }

        //---------------------------------------------------
        // TEST 17 Deallocate Too large of size.   No error returned instead the
        // code should to end of the TCE table and commit errorlog and return
        //---------------------------------------------------
        errhdl = TceTable->deallocateTces(token5,  (520*KILOBYTE*PAGESIZE));

        if (errhdl != NULL)
        {
            TRACFCOMP( g_trac_tce, "testTCE:T17:  Got unexpected error returned");
            TS_FAIL("testTCE:T17: Deallocate got unexpected error");

            errlCommit(errhdl,RUNTIME_COMP_ID);
        }

        TRACFCOMP(g_trac_tce, "testTCE> complete" );
    }



};
#endif
OpenPOWER on IntegriCloud