radixmmu: read prtable entry
[soc.git] / src / soc / decoder / isa / radixmmu.py
1 # SPDX-License-Identifier: LGPLv3+
2 # Copyright (C) 2020, 2021 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
3 # Copyright (C) 2021 Tobias Platen
4 # Funded by NLnet http://nlnet.nl
5 """core of the python-based POWER9 simulator
6
7 this is part of a cycle-accurate POWER9 simulator. its primary purpose is
8 not speed, it is for both learning and educational purposes, as well as
9 a method of verifying the HDL.
10
11 related bugs:
12
13 * https://bugs.libre-soc.org/show_bug.cgi?id=604
14 """
15
16 from nmigen.back.pysim import Settle
17 from copy import copy
18 from soc.decoder.selectable_int import (FieldSelectableInt, SelectableInt,
19 selectconcat)
20 from soc.decoder.helpers import exts, gtu, ltu, undefined
21 from soc.decoder.isa.mem import Mem
22 from soc.consts import MSRb # big-endian (PowerISA versions)
23
24 import math
25 import sys
26 import unittest
27
28 # very quick, TODO move to SelectableInt utils later
29 def genmask(shift, size):
30 res = SelectableInt(0, size)
31 for i in range(size):
32 if i < shift:
33 res[size-1-i] = SelectableInt(1, 1)
34 return res
35
36 # NOTE: POWER 3.0B annotation order! see p4 1.3.2
37 # MSB is indexed **LOWEST** (sigh)
38 # from gem5 radixwalk.hh
39 # Bitfield<63> valid; 64 - (63 + 1) = 0
40 # Bitfield<62> leaf; 64 - (62 + 1) = 1
41
42 def rpte_valid(r):
43 return bool(r[0])
44
45 def rpte_leaf(r):
46 return bool(r[1])
47
48 ## Shift address bits 61--12 right by 0--47 bits and
49 ## supply the least significant 16 bits of the result.
50 def addrshift(addr,shift):
51 x = addr.value >> shift.value
52 return SelectableInt(x,16)
53
54 def NLB(x):
55 """
56 Next Level Base
57 right shifted by 8
58 """
59 return x[4:55]
60
61 def NLS(x):
62 """
63 Next Level Size
64 NLS >= 5
65 """
66 return x[59:63]
67
68 """
69 Get Root Page
70
71 //Accessing 2nd double word of partition table (pate1)
72 //Ref: Power ISA Manual v3.0B, Book-III, section 5.7.6.1
73 // PTCR Layout
74 // ====================================================
75 // -----------------------------------------------
76 // | /// | PATB | /// | PATS |
77 // -----------------------------------------------
78 // 0 4 51 52 58 59 63
79 // PATB[4:51] holds the base address of the Partition Table,
80 // right shifted by 12 bits.
81 // This is because the address of the Partition base is
82 // 4k aligned. Hence, the lower 12bits, which are always
83 // 0 are ommitted from the PTCR.
84 //
85 // Thus, The Partition Table Base is obtained by (PATB << 12)
86 //
87 // PATS represents the partition table size right-shifted by 12 bits.
88 // The minimal size of the partition table is 4k.
89 // Thus partition table size = (1 << PATS + 12).
90 //
91 // Partition Table
92 // ====================================================
93 // 0 PATE0 63 PATE1 127
94 // |----------------------|----------------------|
95 // | | |
96 // |----------------------|----------------------|
97 // | | |
98 // |----------------------|----------------------|
99 // | | | <-- effLPID
100 // |----------------------|----------------------|
101 // .
102 // .
103 // .
104 // |----------------------|----------------------|
105 // | | |
106 // |----------------------|----------------------|
107 //
108 // The effective LPID forms the index into the Partition Table.
109 //
110 // Each entry in the partition table contains 2 double words, PATE0, PATE1,
111 // corresponding to that partition.
112 //
113 // In case of Radix, The structure of PATE0 and PATE1 is as follows.
114 //
115 // PATE0 Layout
116 // -----------------------------------------------
117 // |1|RTS1|/| RPDB | RTS2 | RPDS |
118 // -----------------------------------------------
119 // 0 1 2 3 4 55 56 58 59 63
120 //
121 // HR[0] : For Radix Page table, first bit should be 1.
122 // RTS1[1:2] : Gives one fragment of the Radix treesize
123 // RTS2[56:58] : Gives the second fragment of the Radix Tree size.
124 // RTS = (RTS1 << 3 + RTS2) + 31.
125 //
126 // RPDB[4:55] = Root Page Directory Base.
127 // RPDS = Logarithm of Root Page Directory Size right shifted by 3.
128 // Thus, Root page directory size = 1 << (RPDS + 3).
129 // Note: RPDS >= 5.
130 //
131 // PATE1 Layout
132 // -----------------------------------------------
133 // |///| PRTB | // | PRTS |
134 // -----------------------------------------------
135 // 0 3 4 51 52 58 59 63
136 //
137 // PRTB[4:51] = Process Table Base. This is aligned to size.
138 // PRTS[59: 63] = Process Table Size right shifted by 12.
139 // Minimal size of the process table is 4k.
140 // Process Table Size = (1 << PRTS + 12).
141 // Note: PRTS <= 24.
142 //
143 // Computing the size aligned Process Table Base:
144 // table_base = (PRTB & ~((1 << PRTS) - 1)) << 12
145 // Thus, the lower 12+PRTS bits of table_base will
146 // be zero.
147
148
149 //Ref: Power ISA Manual v3.0B, Book-III, section 5.7.6.2
150 //
151 // Process Table
152 // ==========================
153 // 0 PRTE0 63 PRTE1 127
154 // |----------------------|----------------------|
155 // | | |
156 // |----------------------|----------------------|
157 // | | |
158 // |----------------------|----------------------|
159 // | | | <-- effPID
160 // |----------------------|----------------------|
161 // .
162 // .
163 // .
164 // |----------------------|----------------------|
165 // | | |
166 // |----------------------|----------------------|
167 //
168 // The effective Process id (PID) forms the index into the Process Table.
169 //
170 // Each entry in the partition table contains 2 double words, PRTE0, PRTE1,
171 // corresponding to that process
172 //
173 // In case of Radix, The structure of PRTE0 and PRTE1 is as follows.
174 //
175 // PRTE0 Layout
176 // -----------------------------------------------
177 // |/|RTS1|/| RPDB | RTS2 | RPDS |
178 // -----------------------------------------------
179 // 0 1 2 3 4 55 56 58 59 63
180 //
181 // RTS1[1:2] : Gives one fragment of the Radix treesize
182 // RTS2[56:58] : Gives the second fragment of the Radix Tree size.
183 // RTS = (RTS1 << 3 + RTS2) << 31,
184 // since minimal Radix Tree size is 4G.
185 //
186 // RPDB = Root Page Directory Base.
187 // RPDS = Root Page Directory Size right shifted by 3.
188 // Thus, Root page directory size = RPDS << 3.
189 // Note: RPDS >= 5.
190 //
191 // PRTE1 Layout
192 // -----------------------------------------------
193 // | /// |
194 // -----------------------------------------------
195 // 0 63
196 // All bits are reserved.
197
198
199 """
200
201 testmem = {
202
203 0x10000: # PARTITION_TABLE_2 (not implemented yet)
204 # PATB_GR=1 PRTB=0x1000 PRTS=0xb
205 0x800000000100000b,
206
207 0x30000: # RADIX_ROOT_PTE
208 # V = 1 L = 0 NLB = 0x400 NLS = 9
209 0x8000000000040009,
210 0x40000: # RADIX_SECOND_LEVEL
211 # V = 1 L = 1 SW = 0 RPN = 0
212 # R = 1 C = 1 ATT = 0 EAA 0x7
213 0xc000000000000187,
214
215 0x1000000: # PROCESS_TABLE_3
216 # RTS1 = 0x2 RPDB = 0x300 RTS2 = 0x5 RPDS = 13
217 0x40000000000300ad,
218 }
219
220 # this one has a 2nd level RADIX with a RPN of 0x5000
221 testmem2 = {
222
223 0x10000: # PARTITION_TABLE_2 (not implemented yet)
224 # PATB_GR=1 PRTB=0x1000 PRTS=0xb
225 0x800000000100000b,
226
227 0x30000: # RADIX_ROOT_PTE
228 # V = 1 L = 0 NLB = 0x400 NLS = 9
229 0x8000000000040009,
230 0x40000: # RADIX_SECOND_LEVEL
231 # V = 1 L = 1 SW = 0 RPN = 0x5000
232 # R = 1 C = 1 ATT = 0 EAA 0x7
233 0xc000000005000187,
234
235 0x1000000: # PROCESS_TABLE_3
236 # RTS1 = 0x2 RPDB = 0x300 RTS2 = 0x5 RPDS = 13
237 0x40000000000300ad,
238 }
239
240
241 testresult = """
242 prtbl = 1000000
243 DCACHE GET 1000000 PROCESS_TABLE_3
244 DCACHE GET 30000 RADIX_ROOT_PTE V = 1 L = 0
245 DCACHE GET 40000 RADIX_SECOND_LEVEL V = 1 L = 1
246 DCACHE GET 10000 PARTITION_TABLE_2
247 translated done 1 err 0 badtree 0 addr 40000 pte 0
248 """
249
250 # see qemu/target/ppc/mmu-radix64.c for reference
251 class RADIX:
252 def __init__(self, mem, caller):
253 self.mem = mem
254 self.caller = caller
255 if caller is not None:
256 self.dsisr = self.caller.spr["DSISR"]
257 self.dar = self.caller.spr["DAR"]
258 self.pidr = self.caller.spr["PIDR"]
259 self.prtbl = self.caller.spr["PRTBL"]
260 self.msr = self.caller.msr
261
262 # cached page table stuff
263 self.pgtbl0 = 0
264 self.pt0_valid = False
265 self.pgtbl3 = 0
266 self.pt3_valid = False
267
268 def __call__(self, addr, sz):
269 val = self.ld(addr.value, sz, swap=False)
270 print("RADIX memread", addr, sz, val)
271 return SelectableInt(val, sz*8)
272
273 def ld(self, address, width=8, swap=True, check_in_mem=False,
274 instr_fetch=False):
275 print("RADIX: ld from addr 0x%x width %d" % (address, width))
276
277 priv = ~(self.msr(MSR_PR).value) # problem-state ==> privileged
278 if instr_fetch:
279 mode = 'EXECUTE'
280 else:
281 mode = 'LOAD'
282 addr = SelectableInt(address, 64)
283 (shift, mbits, pgbase) = self._decode_prte(addr)
284 #shift = SelectableInt(0, 32)
285
286 pte = self._walk_tree(addr, pgbase, mode, mbits, shift, priv)
287
288 # use pte to load from phys address
289 return self.mem.ld(pte.value, width, swap, check_in_mem)
290
291 # XXX set SPRs on error
292
293 # TODO implement
294 def st(self, address, v, width=8, swap=True):
295 print("RADIX: st to addr 0x%x width %d data %x" % (address, width, v))
296
297 priv = ~(self.msr(MSR_PR).value) # problem-state ==> privileged
298 mode = 'STORE'
299 addr = SelectableInt(address, 64)
300 (shift, mbits, pgbase) = self._decode_prte(addr)
301 pte = self._walk_tree(addr, pgbase, mode, mbits, shift, priv)
302
303 # use pte to store at phys address
304 return self.mem.st(pte.value, v, width, swap)
305
306 # XXX set SPRs on error
307
308 def memassign(self, addr, sz, val):
309 print("memassign", addr, sz, val)
310 self.st(addr.value, val.value, sz, swap=False)
311
312 def _next_level(self, addr, entry_width, swap, check_in_mem):
313 # implement read access to mmu mem here
314
315 # DO NOT perform byte-swapping: load 8 bytes (that's the entry size)
316 value = self.mem.ld(addr.value, 8, False, check_in_mem)
317 assert(value is not None, "address lookup %x not found" % addr.value)
318
319 print("addr", hex(addr.value))
320 data = SelectableInt(value, 64) # convert to SelectableInt
321 print("value", hex(value))
322 # index += 1
323 return data;
324
325 def _walk_tree(self, addr, pgbase, mode, mbits, shift, priv=1):
326 """walk tree
327
328 // vaddr 64 Bit
329 // vaddr |-----------------------------------------------------|
330 // | Unused | Used |
331 // |-----------|-----------------------------------------|
332 // | 0000000 | usefulBits = X bits (typically 52) |
333 // |-----------|-----------------------------------------|
334 // | |<--Cursize---->| |
335 // | | Index | |
336 // | | into Page | |
337 // | | Directory | |
338 // |-----------------------------------------------------|
339 // | |
340 // V |
341 // PDE |---------------------------| |
342 // |V|L|//| NLB |///|NLS| |
343 // |---------------------------| |
344 // PDE = Page Directory Entry |
345 // [0] = V = Valid Bit |
346 // [1] = L = Leaf bit. If 0, then |
347 // [4:55] = NLB = Next Level Base |
348 // right shifted by 8 |
349 // [59:63] = NLS = Next Level Size |
350 // | NLS >= 5 |
351 // | V
352 // | |--------------------------|
353 // | | usfulBits = X-Cursize |
354 // | |--------------------------|
355 // |---------------------><--NLS-->| |
356 // | Index | |
357 // | into | |
358 // | PDE | |
359 // |--------------------------|
360 // |
361 // If the next PDE obtained by |
362 // (NLB << 8 + 8 * index) is a |
363 // nonleaf, then repeat the above. |
364 // |
365 // If the next PDE is a leaf, |
366 // then Leaf PDE structure is as |
367 // follows |
368 // |
369 // |
370 // Leaf PDE |
371 // |------------------------------| |----------------|
372 // |V|L|sw|//|RPN|sw|R|C|/|ATT|EAA| | usefulBits |
373 // |------------------------------| |----------------|
374 // [0] = V = Valid Bit |
375 // [1] = L = Leaf Bit = 1 if leaf |
376 // PDE |
377 // [2] = Sw = Sw bit 0. |
378 // [7:51] = RPN = Real Page Number, V
379 // real_page = RPN << 12 -------------> Logical OR
380 // [52:54] = Sw Bits 1:3 |
381 // [55] = R = Reference |
382 // [56] = C = Change V
383 // [58:59] = Att = Physical Address
384 // 0b00 = Normal Memory
385 // 0b01 = SAO
386 // 0b10 = Non Idenmpotent
387 // 0b11 = Tolerant I/O
388 // [60:63] = Encoded Access
389 // Authority
390 //
391 """
392 # get sprs
393 print("_walk_tree")
394 pidr = self.caller.spr["PIDR"]
395 prtbl = self.caller.spr["PRTBL"]
396 print(pidr)
397 print(prtbl)
398 p = addr[55:63]
399 print("last 8 bits ----------")
400 print
401
402 # get address of root entry
403 shift = selectconcat(SelectableInt(0,1), prtbl[58:63]) # TODO verify
404 addr_next = self._get_prtable_addr(shift, prtbl, addr, pidr)
405 print("starting with prtable, addr_next",addr_next)
406
407 assert(addr_next.bits == 64)
408 assert(addr_next.value == 0x1000000) #TODO
409
410 # read an entry from prtable
411 swap = False
412 check_in_mem = False
413 entry_width = 8
414 data = self._next_level(addr_next, entry_width, swap, check_in_mem)
415 print("pr_table",data)
416
417 # rts = shift = unsigned('0' & data(62 downto 61) & data(7 downto 5));
418 shift = selectconcat(SelectableInt(0,1), data[1:3], data[55:58])
419 assert(shift.bits==6) # variable rts : unsigned(5 downto 0);
420 print("shift",shift)
421
422 # mbits := unsigned('0' & data(4 downto 0));
423 mbits = selectconcat(SelectableInt(0,1), data[58:63])
424 assert(mbits.bits==6) #variable mbits : unsigned(5 downto 0);
425 print("mbits",mbits)
426
427 new_shift = self._segment_check(addr, mbits, shift)
428 print("new_shift",new_shift)
429
430 addr_next = SelectableInt(0x30000,64) # radix root for testing
431 # this needs to be calculated using the code above
432
433 # walk tree starts on prtbl
434 while True:
435 print("nextlevel----------------------------")
436 # read an entry
437 swap = False
438 check_in_mem = False
439 entry_width = 8
440
441 data = self._next_level(addr_next, entry_width, swap, check_in_mem)
442 valid = rpte_valid(data)
443 leaf = rpte_leaf(data)
444
445 print(" valid, leaf", valid, leaf)
446 if not valid:
447 return "invalid" # TODO: return error
448 if leaf:
449 print ("is leaf, checking perms")
450 ok = self._check_perms(data, priv, mode)
451 if ok == True: # data was ok, found phys address, return it?
452 paddr = self._get_pte(addrsh, addr, data)
453 print (" phys addr", hex(paddr.value))
454 return paddr
455 return ok # return the error code
456 else:
457 newlookup = self._new_lookup(data, mbits, shift)
458 if newlookup == 'badtree':
459 return newlookup
460 shift, mask, pgbase = newlookup
461 print (" next level", shift, mask, pgbase)
462 shift = SelectableInt(shift.value,16) #THIS is wrong !!!
463 print("calling _get_pgtable_addr")
464 print(mask) #SelectableInt(value=0x9, bits=4)
465 print(pgbase) #SelectableInt(value=0x40000, bits=56)
466 print(shift) #SelectableInt(value=0x4, bits=16) #FIXME
467 pgbase = SelectableInt(pgbase.value, 64)
468 addrsh = addrshift(addr,shift)
469 addr_next = self._get_pgtable_addr(mask, pgbase, addrsh)
470 print("addr_next",addr_next)
471 print("addrsh",addrsh)
472
473 def _new_lookup(self, data, mbits, shift):
474 """
475 mbits := unsigned('0' & data(4 downto 0));
476 if mbits < 5 or mbits > 16 or mbits > r.shift then
477 v.state := RADIX_FINISH;
478 v.badtree := '1'; -- throw error
479 else
480 v.shift := v.shift - mbits;
481 v.mask_size := mbits(4 downto 0);
482 v.pgbase := data(55 downto 8) & x"00"; NLB?
483 v.state := RADIX_LOOKUP; --> next level
484 end if;
485 """
486 mbits = data[59:64]
487 print("mbits=", mbits)
488 if mbits < 5 or mbits > 16: #fixme compare with r.shift
489 print("badtree")
490 return "badtree"
491 # reduce shift (has to be done at same bitwidth)
492 shift = shift - selectconcat(SelectableInt(0, 1), mbits)
493 mask_size = mbits[1:5] # get 4 LSBs
494 pgbase = selectconcat(data[8:56], SelectableInt(0, 8)) # shift up 8
495 return shift, mask_size, pgbase
496
497 def _decode_prte(self, data):
498 """PRTE0 Layout
499 -----------------------------------------------
500 |/|RTS1|/| RPDB | RTS2 | RPDS |
501 -----------------------------------------------
502 0 1 2 3 4 55 56 58 59 63
503 """
504 # note that SelectableInt does big-endian! so the indices
505 # below *directly* match the spec, unlike microwatt which
506 # has to turn them around (to LE)
507 zero = SelectableInt(0, 1)
508 rts = selectconcat(zero,
509 data[56:59], # RTS2
510 data[1:3], # RTS1
511 )
512 masksize = data[59:64] # RPDS
513 mbits = selectconcat(zero, masksize)
514 pgbase = selectconcat(data[8:56], # part of RPDB
515 SelectableInt(0, 16),)
516
517 return (rts, mbits, pgbase)
518
519 def _segment_check(self, addr, mbits, shift):
520 """checks segment valid
521 mbits := '0' & r.mask_size;
522 v.shift := r.shift + (31 - 12) - mbits;
523 nonzero := or(r.addr(61 downto 31) and not finalmask(30 downto 0));
524 if r.addr(63) /= r.addr(62) or nonzero = '1' then
525 v.state := RADIX_FINISH;
526 v.segerror := '1';
527 elsif mbits < 5 or mbits > 16 or mbits > (r.shift + (31 - 12)) then
528 v.state := RADIX_FINISH;
529 v.badtree := '1';
530 else
531 v.state := RADIX_LOOKUP;
532 """
533 # note that SelectableInt does big-endian! so the indices
534 # below *directly* match the spec, unlike microwatt which
535 # has to turn them around (to LE)
536 mask = genmask(shift, 44)
537 nonzero = addr[2:33] & mask[13:44] # mask 31 LSBs (BE numbered 13:44)
538 print ("RADIX _segment_check nonzero", bin(nonzero.value))
539 print ("RADIX _segment_check addr[0-1]", addr[0].value, addr[1].value)
540 if addr[0] != addr[1] or nonzero != 0:
541 return "segerror"
542 limit = shift + (31 - 12)
543 if mbits < 5 or mbits > 16 or mbits > limit:
544 return "badtree mbits="+str(mbits)+" limit="+str(limit)
545 new_shift = shift + (31 - 12) - mbits
546 return new_shift
547
548 def _check_perms(self, data, priv, mode):
549 """check page permissions
550 // Leaf PDE |
551 // |------------------------------| |----------------|
552 // |V|L|sw|//|RPN|sw|R|C|/|ATT|EAA| | usefulBits |
553 // |------------------------------| |----------------|
554 // [0] = V = Valid Bit |
555 // [1] = L = Leaf Bit = 1 if leaf |
556 // PDE |
557 // [2] = Sw = Sw bit 0. |
558 // [7:51] = RPN = Real Page Number, V
559 // real_page = RPN << 12 -------------> Logical OR
560 // [52:54] = Sw Bits 1:3 |
561 // [55] = R = Reference |
562 // [56] = C = Change V
563 // [58:59] = Att = Physical Address
564 // 0b00 = Normal Memory
565 // 0b01 = SAO
566 // 0b10 = Non Idenmpotent
567 // 0b11 = Tolerant I/O
568 // [60:63] = Encoded Access
569 // Authority
570 //
571 -- test leaf bit
572 -- check permissions and RC bits
573 perm_ok := '0';
574 if r.priv = '1' or data(3) = '0' then
575 if r.iside = '0' then
576 perm_ok := data(1) or (data(2) and not r.store);
577 else
578 -- no IAMR, so no KUEP support for now
579 -- deny execute permission if cache inhibited
580 perm_ok := data(0) and not data(5);
581 end if;
582 end if;
583 rc_ok := data(8) and (data(7) or not r.store);
584 if perm_ok = '1' and rc_ok = '1' then
585 v.state := RADIX_LOAD_TLB;
586 else
587 v.state := RADIX_FINISH;
588 v.perm_err := not perm_ok;
589 -- permission error takes precedence over RC error
590 v.rc_error := perm_ok;
591 end if;
592 """
593 # decode mode into something that matches microwatt equivalent code
594 instr_fetch, store = 0, 0
595 if mode == 'STORE':
596 store = 1
597 if mode == 'EXECUTE':
598 inst_fetch = 1
599
600 # check permissions and RC bits
601 perm_ok = 0
602 if priv == 1 or data[60] == 0:
603 if instr_fetch == 0:
604 perm_ok = data[62] | (data[61] & (store == 0))
605 # no IAMR, so no KUEP support for now
606 # deny execute permission if cache inhibited
607 perm_ok = data[63] & ~data[58]
608 rc_ok = data[55] & (data[56] | (store == 0))
609 if perm_ok == 1 and rc_ok == 1:
610 return True
611
612 return "perm_err" if perm_ok == 0 else "rc_err"
613
614 def _get_prtable_addr(self, shift, prtbl, addr, pid):
615 """
616 if r.addr(63) = '1' then
617 effpid := x"00000000";
618 else
619 effpid := r.pid;
620 end if;
621 x"00" & r.prtbl(55 downto 36) &
622 ((r.prtbl(35 downto 12) and not finalmask(23 downto 0)) or
623 (effpid(31 downto 8) and finalmask(23 downto 0))) &
624 effpid(7 downto 0) & "0000";
625 """
626 print ("_get_prtable_addr", shift, prtbl, addr, pid)
627 finalmask = genmask(shift, 44)
628 finalmask24 = finalmask[20:44]
629 if addr[0].value == 1:
630 effpid = SelectableInt(0, 32)
631 else:
632 effpid = pid #self.pid # TODO, check on this
633 zero8 = SelectableInt(0, 8)
634 zero4 = SelectableInt(0, 4)
635 res = selectconcat(zero8,
636 prtbl[8:28], #
637 (prtbl[28:52] & ~finalmask24) | #
638 (effpid[0:24] & finalmask24), #
639 effpid[24:32],
640 zero4
641 )
642 return res
643
644 def _get_pgtable_addr(self, mask_size, pgbase, addrsh):
645 """
646 x"00" & r.pgbase(55 downto 19) &
647 ((r.pgbase(18 downto 3) and not mask) or (addrsh and mask)) &
648 "000";
649 """
650 mask16 = genmask(mask_size+5, 16)
651 zero8 = SelectableInt(0, 8)
652 zero3 = SelectableInt(0, 3)
653 res = selectconcat(zero8,
654 pgbase[8:45], #
655 (pgbase[45:61] & ~mask16) | #
656 (addrsh & mask16), #
657 zero3
658 )
659 return res
660
661 def _get_pte(self, shift, addr, pde):
662 """
663 x"00" &
664 ((r.pde(55 downto 12) and not finalmask) or
665 (r.addr(55 downto 12) and finalmask))
666 & r.pde(11 downto 0);
667 """
668 shift.value = 12
669 finalmask = genmask(shift, 44)
670 zero8 = SelectableInt(0, 8)
671 rpn = pde[8:52] # RPN = Real Page Number
672 abits = addr[8:52] # non-masked address bits
673 print(" get_pte RPN", hex(rpn.value))
674 print(" abits", hex(abits.value))
675 print(" shift", shift.value)
676 print(" finalmask", bin(finalmask.value))
677 res = selectconcat(zero8,
678 (rpn & ~finalmask) | #
679 (abits & finalmask), #
680 addr[52:64],
681 )
682 return res
683
684 class TestRadixMMU(unittest.TestCase):
685
686 def test_genmask(self):
687 shift = SelectableInt(5, 6)
688 mask = genmask(shift, 43)
689 print (" mask", bin(mask.value))
690
691 self.assertEqual(mask.value, 0b11111, "mask should be 5 1s")
692
693 def test_get_pgtable_addr(self):
694
695 mem = None
696 caller = None
697 dut = RADIX(mem, caller)
698
699 mask_size=4
700 pgbase = SelectableInt(0,64)
701 addrsh = SelectableInt(0,16)
702 ret = dut._get_pgtable_addr(mask_size, pgbase, addrsh)
703 print("ret=", ret)
704 self.assertEqual(ret, 0, "pgtbl_addr should be 0")
705
706 def test_walk_tree_1(self):
707
708 # test address as in
709 # https://github.com/power-gem5/gem5/blob/gem5-experimental/src/arch/power/radix_walk_example.txt#L65
710 testaddr = 0x1000
711 expected = 0x1000
712
713 # starting prtbl
714 prtbl = 0x1000000
715
716 # set up dummy minimal ISACaller
717 spr = {'DSISR': SelectableInt(0, 64),
718 'DAR': SelectableInt(0, 64),
719 'PIDR': SelectableInt(0, 64),
720 'PRTBL': SelectableInt(prtbl, 64)
721 }
722 # set problem state == 0 (other unit tests, set to 1)
723 msr = SelectableInt(0, 64)
724 msr[MSRb.PR] = 0
725 class ISACaller: pass
726 caller = ISACaller()
727 caller.spr = spr
728 caller.msr = msr
729
730 shift = SelectableInt(5, 6)
731 mask = genmask(shift, 43)
732 print (" mask", bin(mask.value))
733
734 mem = Mem(row_bytes=8, initial_mem=testmem)
735 mem = RADIX(mem, caller)
736 # -----------------------------------------------
737 # |/|RTS1|/| RPDB | RTS2 | RPDS |
738 # -----------------------------------------------
739 # |0|1 2|3|4 55|56 58|59 63|
740 data = SelectableInt(0, 64)
741 data[1:3] = 0b01
742 data[56:59] = 0b11
743 data[59:64] = 0b01101 # mask
744 data[55] = 1
745 (rts, mbits, pgbase) = mem._decode_prte(data)
746 print (" rts", bin(rts.value), rts.bits)
747 print (" mbits", bin(mbits.value), mbits.bits)
748 print (" pgbase", hex(pgbase.value), pgbase.bits)
749 addr = SelectableInt(0x1000, 64)
750 check = mem._segment_check(addr, mbits, shift)
751 print (" segment check", check)
752
753 print("walking tree")
754 addr = SelectableInt(testaddr,64)
755 # pgbase = None
756 mode = None
757 #mbits = None
758 shift = rts
759 result = mem._walk_tree(addr, pgbase, mode, mbits, shift)
760 print(" walking tree result", result)
761 print("should be", testresult)
762 self.assertEqual(result.value, expected,
763 "expected 0x%x got 0x%x" % (expected,
764 result.value))
765
766
767 def test_walk_tree_2(self):
768
769 # test address slightly different
770 testaddr = 0x1101
771 expected = 0x5001101
772
773 # starting prtbl
774 prtbl = 0x1000000
775
776 # set up dummy minimal ISACaller
777 spr = {'DSISR': SelectableInt(0, 64),
778 'DAR': SelectableInt(0, 64),
779 'PIDR': SelectableInt(0, 64),
780 'PRTBL': SelectableInt(prtbl, 64)
781 }
782 # set problem state == 0 (other unit tests, set to 1)
783 msr = SelectableInt(0, 64)
784 msr[MSRb.PR] = 0
785 class ISACaller: pass
786 caller = ISACaller()
787 caller.spr = spr
788 caller.msr = msr
789
790 shift = SelectableInt(5, 6)
791 mask = genmask(shift, 43)
792 print (" mask", bin(mask.value))
793
794 mem = Mem(row_bytes=8, initial_mem=testmem2)
795 mem = RADIX(mem, caller)
796 # -----------------------------------------------
797 # |/|RTS1|/| RPDB | RTS2 | RPDS |
798 # -----------------------------------------------
799 # |0|1 2|3|4 55|56 58|59 63|
800 data = SelectableInt(0, 64)
801 data[1:3] = 0b01
802 data[56:59] = 0b11
803 data[59:64] = 0b01101 # mask
804 data[55] = 1
805 (rts, mbits, pgbase) = mem._decode_prte(data)
806 print (" rts", bin(rts.value), rts.bits)
807 print (" mbits", bin(mbits.value), mbits.bits)
808 print (" pgbase", hex(pgbase.value), pgbase.bits)
809 addr = SelectableInt(0x1000, 64)
810 check = mem._segment_check(addr, mbits, shift)
811 print (" segment check", check)
812
813 print("walking tree")
814 addr = SelectableInt(testaddr,64)
815 # pgbase = None
816 mode = None
817 #mbits = None
818 shift = rts
819 result = mem._walk_tree(addr, pgbase, mode, mbits, shift)
820 print(" walking tree result", result)
821 print("should be", testresult)
822 self.assertEqual(result.value, expected,
823 "expected 0x%x got 0x%x" % (expected,
824 result.value))
825
826
827 if __name__ == '__main__':
828 unittest.main()