
313
Chapter 6 Memory Mangement Unit
Since the PTE table is frequently accessed by TLB trapware, it is important that
quick access to the table is supported. For this reason register
upte
is initialized to
point to the base of the PTE table, and the table is located in the first SRAM page. One
SRAM page can contain 32 sets of PTE data. In multi–tasking systems, with each
task having its own PTE table, the
upte
value is normally stored in a per–task data
structure know as the Process Control Block (PCB), and the
upte
register is updated
from the PCB data at each context switch.
The Am29000 takes traps very quickly, without expending a number of internal
processor cycles preparing an interrupt processing context for the processor. This ad-
vantage over typical CISC processor operation enables the Am29000 to process the
trap quickly in Freeze mode and return to the user’s program. It is the Freeze mode
processing capability of the Am29000 that makes a soft cache mechanism attractive.
However, TLB miss handlers can not always complete their handling quickly in
Freeze mode code. In such cases they must signal the operating system to continue
with further processing, Freeze mode is departed, and Supervisor mode with freeze
disabled is entered. Before Freeze mode can be exited, the frozen special registers
must be stored on a Supervisor mode memory stack. They will have to be restored
from this stack once the operating system completes the TLB miss processing. The
operating system stack is located on page 4, which is in a different set from the PTE
table. Operating system accessible register
kmsp
is used as a stack pointer.
Using the cache architecture described, the
nroff
and
assembler
utilities were
observed running in a 128 page SRAM based system. The page–in activity is shown
on Figure 6-13. It appears the two programs were too large to execute in 128K byte
SRAM (1K byte page size). The paging activity is at a minimum with a 256K byte
cache (2K byte page size). It is possible the increased paging activity is due to cache
sets being only 4–way. In the case of
nroff
, it is more likely the page replacement al-
gorithm was having difficulty in keeping the desired pages in the cache for such a
large program.
As page sizes get larger, the probability of a TLB miss diminishes. Since the
cache gets larger for a given SRAM of fixed number of pages, expect the probability
of a page–in to increase as page size increases. Reflecting the fact that with large
caches, a TLB miss causes a page–in and the TLB maintains a cached entry for the
permanently resident page. Figure 6-14 gives the probability of a page–in given a
TLB miss has occurred.
With the
nroff
utility, the probability actually reduces when the page size is in-
creased from 1K byte to 2K byte. This is because of the cache–thrashing occurring
with the 128K byte cache used with the 1K byte page size.
6.4.1 Cache Page Maintenance
The example software controlled cache system only supports User mode ad-
dress translation. This means Supervisor mode TLB miss handlers will not be consid-