table_walker.cc revision 8067:21f14583aa6a
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder.  You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Ali Saidi
38 */
39
40#include "arch/arm/faults.hh"
41#include "arch/arm/table_walker.hh"
42#include "arch/arm/tlb.hh"
43#include "dev/io_device.hh"
44#include "cpu/base.hh"
45#include "cpu/thread_context.hh"
46#include "sim/system.hh"
47
48using namespace ArmISA;
49
50TableWalker::TableWalker(const Params *p)
51    : MemObject(p), port(NULL), tlb(NULL), currState(NULL), pending(false),
52      doL1DescEvent(this), doL2DescEvent(this), doProcessEvent(this)
53{
54    sctlr = 0;
55}
56
57TableWalker::~TableWalker()
58{
59    ;
60}
61
62
63unsigned int
64TableWalker::drain(Event *de)
65{
66    if (stateQueueL1.size() || stateQueueL2.size() || pendingQueue.size())
67    {
68        changeState(Draining);
69        DPRINTF(Checkpoint, "TableWalker busy, wait to drain\n");
70        return 1;
71    }
72    else
73    {
74        changeState(Drained);
75        DPRINTF(Checkpoint, "TableWalker free, no need to drain\n");
76        return 0;
77    }
78}
79
80void
81TableWalker::resume()
82{
83    MemObject::resume();
84    if ((params()->sys->getMemoryMode() == Enums::timing) && currState) {
85            delete currState;
86            currState = NULL;
87    }
88}
89
90Port*
91TableWalker::getPort(const std::string &if_name, int idx)
92{
93    if (if_name == "port") {
94        if (port != NULL)
95            return port;
96        System *sys = params()->sys;
97        Tick minb = params()->min_backoff;
98        Tick maxb = params()->max_backoff;
99        port = new DmaPort(this, sys, minb, maxb);
100        return port;
101    }
102    return NULL;
103}
104
105Fault
106TableWalker::walk(RequestPtr _req, ThreadContext *_tc, uint8_t _cid, TLB::Mode _mode,
107            TLB::Translation *_trans, bool _timing)
108{
109    if (!currState) {
110        // For atomic mode, a new WalkerState instance should be only created
111        // once per TLB. For timing mode, a new instance is generated for every
112        // TLB miss.
113        DPRINTF(TLBVerbose, "creating new instance of WalkerState\n");
114
115        currState = new WalkerState();
116        currState->tableWalker = this;
117    }
118    else if (_timing) {
119        panic("currState should always be empty in timing mode!\n");
120    }
121
122    currState->tc = _tc;
123    currState->transState = _trans;
124    currState->req = _req;
125    currState->fault = NoFault;
126    currState->contextId = _cid;
127    currState->timing = _timing;
128    currState->mode = _mode;
129
130    /** @todo These should be cached or grabbed from cached copies in
131     the TLB, all these miscreg reads are expensive */
132    currState->vaddr = currState->req->getVaddr();
133    currState->sctlr = currState->tc->readMiscReg(MISCREG_SCTLR);
134    sctlr = currState->sctlr;
135    currState->N = currState->tc->readMiscReg(MISCREG_TTBCR);
136
137    currState->isFetch = (currState->mode == TLB::Execute);
138    currState->isWrite = (currState->mode == TLB::Write);
139
140
141    if (!currState->timing)
142        return processWalk();
143
144    if (pending || pendingQueue.size()) {
145        pendingQueue.push_back(currState);
146        currState = NULL;
147    } else {
148        pending = true;
149        return processWalk();
150    }
151
152    return NoFault;
153}
154
155void
156TableWalker::processWalkWrapper()
157{
158    assert(!currState);
159    assert(pendingQueue.size());
160    currState = pendingQueue.front();
161    pendingQueue.pop_front();
162    pending = true;
163    processWalk();
164}
165
166Fault
167TableWalker::processWalk()
168{
169    Addr ttbr = 0;
170
171    // If translation isn't enabled, we shouldn't be here
172    assert(currState->sctlr.m);
173
174    DPRINTF(TLB, "Begining table walk for address %#x, TTBCR: %#x, bits:%#x\n",
175            currState->vaddr, currState->N, mbits(currState->vaddr, 31,
176            32-currState->N));
177
178    if (currState->N == 0 || !mbits(currState->vaddr, 31, 32-currState->N)) {
179        DPRINTF(TLB, " - Selecting TTBR0\n");
180        ttbr = currState->tc->readMiscReg(MISCREG_TTBR0);
181    } else {
182        DPRINTF(TLB, " - Selecting TTBR1\n");
183        ttbr = currState->tc->readMiscReg(MISCREG_TTBR1);
184        currState->N = 0;
185    }
186
187    Addr l1desc_addr = mbits(ttbr, 31, 14-currState->N) |
188                       (bits(currState->vaddr,31-currState->N,20) << 2);
189    DPRINTF(TLB, " - Descriptor at address %#x\n", l1desc_addr);
190
191
192    // Trickbox address check
193    Fault f;
194    f = tlb->walkTrickBoxCheck(l1desc_addr, currState->vaddr, sizeof(uint32_t),
195            currState->isFetch, currState->isWrite, 0, true);
196    if (f) {
197        DPRINTF(TLB, "Trickbox check caused fault on %#x\n", currState->vaddr);
198        if (currState->timing) {
199            pending = false;
200            nextWalk(currState->tc);
201            currState = NULL;
202        } else {
203            currState->tc = NULL;
204            currState->req = NULL;
205        }
206        return f;
207    }
208
209    Request::Flags flag = 0;
210    if (currState->sctlr.c == 0) {
211        flag = Request::UNCACHEABLE;
212    }
213
214    if (currState->timing) {
215        port->dmaAction(MemCmd::ReadReq, l1desc_addr, sizeof(uint32_t),
216                &doL1DescEvent, (uint8_t*)&currState->l1Desc.data,
217                currState->tc->getCpuPtr()->ticks(1), flag);
218        DPRINTF(TLBVerbose, "Adding to walker fifo: queue size before adding: %d\n",
219                stateQueueL1.size());
220        stateQueueL1.push_back(currState);
221        currState = NULL;
222    } else {
223        port->dmaAction(MemCmd::ReadReq, l1desc_addr, sizeof(uint32_t),
224                NULL, (uint8_t*)&currState->l1Desc.data,
225                currState->tc->getCpuPtr()->ticks(1), flag);
226        doL1Descriptor();
227        f = currState->fault;
228    }
229
230    return f;
231}
232
233void
234TableWalker::memAttrs(ThreadContext *tc, TlbEntry &te, SCTLR sctlr,
235                      uint8_t texcb, bool s)
236{
237    // Note: tc and sctlr local variables are hiding tc and sctrl class
238    // variables
239    DPRINTF(TLBVerbose, "memAttrs texcb:%d s:%d\n", texcb, s);
240    te.shareable = false; // default value
241    te.nonCacheable = false;
242    bool outer_shareable = false;
243    if (sctlr.tre == 0 || ((sctlr.tre == 1) && (sctlr.m == 0))) {
244        switch(texcb) {
245          case 0: // Stongly-ordered
246            te.nonCacheable = true;
247            te.mtype = TlbEntry::StronglyOrdered;
248            te.shareable = true;
249            te.innerAttrs = 1;
250            te.outerAttrs = 0;
251            break;
252          case 1: // Shareable Device
253            te.nonCacheable = true;
254            te.mtype = TlbEntry::Device;
255            te.shareable = true;
256            te.innerAttrs = 3;
257            te.outerAttrs = 0;
258            break;
259          case 2: // Outer and Inner Write-Through, no Write-Allocate
260            te.mtype = TlbEntry::Normal;
261            te.shareable = s;
262            te.innerAttrs = 6;
263            te.outerAttrs = bits(texcb, 1, 0);
264            break;
265          case 3: // Outer and Inner Write-Back, no Write-Allocate
266            te.mtype = TlbEntry::Normal;
267            te.shareable = s;
268            te.innerAttrs = 7;
269            te.outerAttrs = bits(texcb, 1, 0);
270            break;
271          case 4: // Outer and Inner Non-cacheable
272            te.nonCacheable = true;
273            te.mtype = TlbEntry::Normal;
274            te.shareable = s;
275            te.innerAttrs = 0;
276            te.outerAttrs = bits(texcb, 1, 0);
277            break;
278          case 5: // Reserved
279            panic("Reserved texcb value!\n");
280            break;
281          case 6: // Implementation Defined
282            panic("Implementation-defined texcb value!\n");
283            break;
284          case 7: // Outer and Inner Write-Back, Write-Allocate
285            te.mtype = TlbEntry::Normal;
286            te.shareable = s;
287            te.innerAttrs = 5;
288            te.outerAttrs = 1;
289            break;
290          case 8: // Non-shareable Device
291            te.nonCacheable = true;
292            te.mtype = TlbEntry::Device;
293            te.shareable = false;
294            te.innerAttrs = 3;
295            te.outerAttrs = 0;
296            break;
297          case 9 ... 15:  // Reserved
298            panic("Reserved texcb value!\n");
299            break;
300          case 16 ... 31: // Cacheable Memory
301            te.mtype = TlbEntry::Normal;
302            te.shareable = s;
303            if (bits(texcb, 1,0) == 0 || bits(texcb, 3,2) == 0)
304                te.nonCacheable = true;
305            te.innerAttrs = bits(texcb, 1, 0);
306            te.outerAttrs = bits(texcb, 3, 2);
307            break;
308          default:
309            panic("More than 32 states for 5 bits?\n");
310        }
311    } else {
312        assert(tc);
313        PRRR prrr = tc->readMiscReg(MISCREG_PRRR);
314        NMRR nmrr = tc->readMiscReg(MISCREG_NMRR);
315        DPRINTF(TLBVerbose, "memAttrs PRRR:%08x NMRR:%08x\n", prrr, nmrr);
316        uint8_t curr_tr = 0, curr_ir = 0, curr_or = 0;
317        switch(bits(texcb, 2,0)) {
318          case 0:
319            curr_tr = prrr.tr0;
320            curr_ir = nmrr.ir0;
321            curr_or = nmrr.or0;
322            outer_shareable = (prrr.nos0 == 0);
323            break;
324          case 1:
325            curr_tr = prrr.tr1;
326            curr_ir = nmrr.ir1;
327            curr_or = nmrr.or1;
328            outer_shareable = (prrr.nos1 == 0);
329            break;
330          case 2:
331            curr_tr = prrr.tr2;
332            curr_ir = nmrr.ir2;
333            curr_or = nmrr.or2;
334            outer_shareable = (prrr.nos2 == 0);
335            break;
336          case 3:
337            curr_tr = prrr.tr3;
338            curr_ir = nmrr.ir3;
339            curr_or = nmrr.or3;
340            outer_shareable = (prrr.nos3 == 0);
341            break;
342          case 4:
343            curr_tr = prrr.tr4;
344            curr_ir = nmrr.ir4;
345            curr_or = nmrr.or4;
346            outer_shareable = (prrr.nos4 == 0);
347            break;
348          case 5:
349            curr_tr = prrr.tr5;
350            curr_ir = nmrr.ir5;
351            curr_or = nmrr.or5;
352            outer_shareable = (prrr.nos5 == 0);
353            break;
354          case 6:
355            panic("Imp defined type\n");
356          case 7:
357            curr_tr = prrr.tr7;
358            curr_ir = nmrr.ir7;
359            curr_or = nmrr.or7;
360            outer_shareable = (prrr.nos7 == 0);
361            break;
362        }
363
364        switch(curr_tr) {
365          case 0:
366            DPRINTF(TLBVerbose, "StronglyOrdered\n");
367            te.mtype = TlbEntry::StronglyOrdered;
368            te.nonCacheable = true;
369            te.innerAttrs = 1;
370            te.outerAttrs = 0;
371            te.shareable = true;
372            break;
373          case 1:
374            DPRINTF(TLBVerbose, "Device ds1:%d ds0:%d s:%d\n",
375                    prrr.ds1, prrr.ds0, s);
376            te.mtype = TlbEntry::Device;
377            te.nonCacheable = true;
378            te.innerAttrs = 3;
379            te.outerAttrs = 0;
380            if (prrr.ds1 && s)
381                te.shareable = true;
382            if (prrr.ds0 && !s)
383                te.shareable = true;
384            break;
385          case 2:
386            DPRINTF(TLBVerbose, "Normal ns1:%d ns0:%d s:%d\n",
387                    prrr.ns1, prrr.ns0, s);
388            te.mtype = TlbEntry::Normal;
389            if (prrr.ns1 && s)
390                te.shareable = true;
391            if (prrr.ns0 && !s)
392                te.shareable = true;
393            break;
394          case 3:
395            panic("Reserved type");
396        }
397
398        if (te.mtype == TlbEntry::Normal){
399            switch(curr_ir) {
400              case 0:
401                te.nonCacheable = true;
402                te.innerAttrs = 0;
403                break;
404              case 1:
405                te.innerAttrs = 5;
406                break;
407              case 2:
408                te.innerAttrs = 6;
409                break;
410              case 3:
411                te.innerAttrs = 7;
412                break;
413            }
414
415            switch(curr_or) {
416              case 0:
417                te.nonCacheable = true;
418                te.outerAttrs = 0;
419                break;
420              case 1:
421                te.outerAttrs = 1;
422                break;
423              case 2:
424                te.outerAttrs = 2;
425                break;
426              case 3:
427                te.outerAttrs = 3;
428                break;
429            }
430        }
431    }
432    DPRINTF(TLBVerbose, "memAttrs: shareable: %d, innerAttrs: %d, \
433            outerAttrs: %d\n",
434            te.shareable, te.innerAttrs, te.outerAttrs);
435
436    /** Formatting for Physical Address Register (PAR)
437     *  Only including lower bits (TLB info here)
438     *  PAR:
439     *  PA [31:12]
440     *  Reserved [11]
441     *  TLB info [10:1]
442     *      NOS  [10] (Not Outer Sharable)
443     *      NS   [9]  (Non-Secure)
444     *      --   [8]  (Implementation Defined)
445     *      SH   [7]  (Sharable)
446     *      Inner[6:4](Inner memory attributes)
447     *      Outer[3:2](Outer memory attributes)
448     *      SS   [1]  (SuperSection)
449     *      F    [0]  (Fault, Fault Status in [6:1] if faulted)
450     */
451    te.attributes = (
452                ((outer_shareable ? 0:1) << 10) |
453                // TODO: NS Bit
454                ((te.shareable ? 1:0) << 7) |
455                (te.innerAttrs << 4) |
456                (te.outerAttrs << 2)
457                // TODO: Supersection bit
458                // TODO: Fault bit
459                );
460
461
462}
463
464void
465TableWalker::doL1Descriptor()
466{
467    DPRINTF(TLB, "L1 descriptor for %#x is %#x\n",
468            currState->vaddr, currState->l1Desc.data);
469    TlbEntry te;
470
471    switch (currState->l1Desc.type()) {
472      case L1Descriptor::Ignore:
473      case L1Descriptor::Reserved:
474        if (!currState->timing) {
475            currState->tc = NULL;
476            currState->req = NULL;
477        }
478        DPRINTF(TLB, "L1 Descriptor Reserved/Ignore, causing fault\n");
479        if (currState->isFetch)
480            currState->fault =
481                new PrefetchAbort(currState->vaddr, ArmFault::Translation0);
482        else
483            currState->fault =
484                new DataAbort(currState->vaddr, 0, currState->isWrite,
485                                  ArmFault::Translation0);
486        return;
487      case L1Descriptor::Section:
488        if (currState->sctlr.afe && bits(currState->l1Desc.ap(), 0) == 0) {
489            /** @todo: check sctlr.ha (bit[17]) if Hardware Access Flag is
490              * enabled if set, do l1.Desc.setAp0() instead of generating
491              * AccessFlag0
492              */
493
494            currState->fault = new DataAbort(currState->vaddr,
495                                    currState->l1Desc.domain(), currState->isWrite,
496                                    ArmFault::AccessFlag0);
497        }
498        if (currState->l1Desc.supersection()) {
499            panic("Haven't implemented supersections\n");
500        }
501        te.N = 20;
502        te.pfn = currState->l1Desc.pfn();
503        te.size = (1<<te.N) - 1;
504        te.global = !currState->l1Desc.global();
505        te.valid = true;
506        te.vpn = currState->vaddr >> te.N;
507        te.sNp = true;
508        te.xn = currState->l1Desc.xn();
509        te.ap = currState->l1Desc.ap();
510        te.domain = currState->l1Desc.domain();
511        te.asid = currState->contextId;
512        memAttrs(currState->tc, te, currState->sctlr,
513                currState->l1Desc.texcb(), currState->l1Desc.shareable());
514
515        DPRINTF(TLB, "Inserting Section Descriptor into TLB\n");
516        DPRINTF(TLB, " - N:%d pfn:%#x size: %#x global:%d valid: %d\n",
517                te.N, te.pfn, te.size, te.global, te.valid);
518        DPRINTF(TLB, " - vpn:%#x sNp: %d xn:%d ap:%d domain: %d asid:%d nc:%d\n",
519                te.vpn, te.sNp, te.xn, te.ap, te.domain, te.asid,
520                te.nonCacheable);
521        DPRINTF(TLB, " - domain from l1 desc: %d data: %#x bits:%d\n",
522                currState->l1Desc.domain(), currState->l1Desc.data,
523                (currState->l1Desc.data >> 5) & 0xF );
524
525        if (!currState->timing) {
526            currState->tc = NULL;
527            currState->req = NULL;
528        }
529        tlb->insert(currState->vaddr, te);
530
531        return;
532      case L1Descriptor::PageTable:
533        Addr l2desc_addr;
534        l2desc_addr = currState->l1Desc.l2Addr() |
535                      (bits(currState->vaddr, 19,12) << 2);
536        DPRINTF(TLB, "L1 descriptor points to page table at: %#x\n",
537                l2desc_addr);
538
539        // Trickbox address check
540        currState->fault = tlb->walkTrickBoxCheck(l2desc_addr, currState->vaddr,
541                sizeof(uint32_t), currState->isFetch, currState->isWrite,
542                currState->l1Desc.domain(), false);
543
544        if (currState->fault) {
545            if (!currState->timing) {
546                currState->tc = NULL;
547                currState->req = NULL;
548            }
549            return;
550        }
551
552
553        if (currState->timing) {
554            currState->delayed = true;
555            port->dmaAction(MemCmd::ReadReq, l2desc_addr, sizeof(uint32_t),
556                    &doL2DescEvent, (uint8_t*)&currState->l2Desc.data,
557                    currState->tc->getCpuPtr()->ticks(1));
558        } else {
559            port->dmaAction(MemCmd::ReadReq, l2desc_addr, sizeof(uint32_t),
560                    NULL, (uint8_t*)&currState->l2Desc.data,
561                    currState->tc->getCpuPtr()->ticks(1));
562            doL2Descriptor();
563        }
564        return;
565      default:
566        panic("A new type in a 2 bit field?\n");
567    }
568}
569
570void
571TableWalker::doL2Descriptor()
572{
573    DPRINTF(TLB, "L2 descriptor for %#x is %#x\n",
574            currState->vaddr, currState->l2Desc.data);
575    TlbEntry te;
576
577    if (currState->l2Desc.invalid()) {
578        DPRINTF(TLB, "L2 descriptor invalid, causing fault\n");
579        if (!currState->timing) {
580            currState->tc = NULL;
581            currState->req = NULL;
582        }
583        if (currState->isFetch)
584            currState->fault =
585                new PrefetchAbort(currState->vaddr, ArmFault::Translation1);
586        else
587            currState->fault =
588                new DataAbort(currState->vaddr, currState->l1Desc.domain(),
589                              currState->isWrite, ArmFault::Translation1);
590        return;
591    }
592
593    if (currState->sctlr.afe && bits(currState->l2Desc.ap(), 0) == 0) {
594        /** @todo: check sctlr.ha (bit[17]) if Hardware Access Flag is enabled
595          * if set, do l2.Desc.setAp0() instead of generating AccessFlag0
596          */
597
598        currState->fault =
599            new DataAbort(currState->vaddr, 0, currState->isWrite,
600                          ArmFault::AccessFlag1);
601
602    }
603
604    if (currState->l2Desc.large()) {
605      te.N = 16;
606      te.pfn = currState->l2Desc.pfn();
607    } else {
608      te.N = 12;
609      te.pfn = currState->l2Desc.pfn();
610    }
611
612    te.valid = true;
613    te.size =  (1 << te.N) - 1;
614    te.asid = currState->contextId;
615    te.sNp = false;
616    te.vpn = currState->vaddr >> te.N;
617    te.global = currState->l2Desc.global();
618    te.xn = currState->l2Desc.xn();
619    te.ap = currState->l2Desc.ap();
620    te.domain = currState->l1Desc.domain();
621    memAttrs(currState->tc, te, currState->sctlr, currState->l2Desc.texcb(),
622             currState->l2Desc.shareable());
623
624    if (!currState->timing) {
625        currState->tc = NULL;
626        currState->req = NULL;
627    }
628    tlb->insert(currState->vaddr, te);
629}
630
631void
632TableWalker::doL1DescriptorWrapper()
633{
634    currState = stateQueueL1.front();
635    currState->delayed = false;
636
637    DPRINTF(TLBVerbose, "L1 Desc object host addr: %p\n",&currState->l1Desc.data);
638    DPRINTF(TLBVerbose, "L1 Desc object      data: %08x\n",currState->l1Desc.data);
639
640    DPRINTF(TLBVerbose, "calling doL1Descriptor for vaddr:%#x\n", currState->vaddr);
641    doL1Descriptor();
642
643    stateQueueL1.pop_front();
644    // Check if fault was generated
645    if (currState->fault != NoFault) {
646        currState->transState->finish(currState->fault, currState->req,
647                                      currState->tc, currState->mode);
648
649        pending = false;
650        nextWalk(currState->tc);
651
652        currState->req = NULL;
653        currState->tc = NULL;
654        currState->delayed = false;
655
656    }
657    else if (!currState->delayed) {
658        // delay is not set so there is no L2 to do
659        DPRINTF(TLBVerbose, "calling translateTiming again\n");
660        currState->fault = tlb->translateTiming(currState->req, currState->tc,
661                                       currState->transState, currState->mode);
662
663        pending = false;
664        nextWalk(currState->tc);
665
666        currState->req = NULL;
667        currState->tc = NULL;
668        currState->delayed = false;
669        delete currState;
670    } else {
671        // need to do L2 descriptor
672        stateQueueL2.push_back(currState);
673    }
674    currState = NULL;
675}
676
677void
678TableWalker::doL2DescriptorWrapper()
679{
680    currState = stateQueueL2.front();
681    assert(currState->delayed);
682
683    DPRINTF(TLBVerbose, "calling doL2Descriptor for vaddr:%#x\n",
684            currState->vaddr);
685    doL2Descriptor();
686
687    // Check if fault was generated
688    if (currState->fault != NoFault) {
689        currState->transState->finish(currState->fault, currState->req,
690                                      currState->tc, currState->mode);
691    }
692    else {
693        DPRINTF(TLBVerbose, "calling translateTiming again\n");
694        currState->fault = tlb->translateTiming(currState->req, currState->tc,
695                                      currState->transState, currState->mode);
696    }
697
698
699    stateQueueL2.pop_front();
700    pending = false;
701    nextWalk(currState->tc);
702
703    currState->req = NULL;
704    currState->tc = NULL;
705    currState->delayed = false;
706
707    delete currState;
708    currState = NULL;
709}
710
711void
712TableWalker::nextWalk(ThreadContext *tc)
713{
714    if (pendingQueue.size())
715        schedule(doProcessEvent, tc->getCpuPtr()->nextCycle(curTick()+1));
716}
717
718
719
720ArmISA::TableWalker *
721ArmTableWalkerParams::create()
722{
723    return new ArmISA::TableWalker(this);
724}
725
726