
272
Evaluating and Programming the 29K RISC Family
cache at the same time it is presented to the MMU, the instruction cache does not
operate with physical addresses if the MMU is in use. Thus, the 29K family
instruction caches operate with virtual addresses when testing for a cache hit.
Because cache entries are not tagged with a per–process identifier the cache must be
flushed when a process (or task) context switch occurs. This is to prevent a previous
process’s virtual address appearing to match with the current task’s virtual address.
Only systems which operate with multiple tasks using virtual addressing must
invalidate the cache when a user–task context switch occurs. Using the IRETINV
(interrupt return and invalidate) instruction is one convenient way of doing this.
However, if the processor runs tasks with physical addressing, there is no need to
flush the cache on a process (task) context switch. With physical addressing, each
task is restricted to execution within a limited and possibly unique range of the
available address space.
The instruction cache is enabled by clearing the Instruction Cache Disable (ID)
bit of the CFG configuration register (the CD bit is used with 3–bus processors).
Cache entries are built around blocks of four consecutive instructions. Each block
has some associated tag and status information. This information, shown on
Figure 5-6, is the same for each processor. However, the exact layout of the bit–fields
may vary among family members.
Figure 5-6.
Instruction Cache Tag and Status bits
Address Tag
V
P
US
The Valid (V) bit–field indicates if the cache entry is valid. For processors which
have a 1–bit field, setting this bit means all four instructions are valid cache entries.
When a family member supports a 4–bit field, a separate bit is used to indicate a valid
entry for each of the four cached instructions.
Each block has a P bit–field. This bit indicates that the tagged address relates to a
physical address value. The P bit becomes set when the cache is reloaded while the PI
(Physical Instruction) bit in the CPS register is set. This allows cache entries to hold
interrupt handlers which typically run with physical addressing. The interrupt
handler code can be distinguished from User mode and Supervisor mode virtually
addressed code.
When the cache is invalidated using an INV type instruction all valid bits are
reset, even entries which were valid and had their P bit set. In some cases there may be
a performance gain to be had by not invalidating physical cache entries but only
virtual addresses entries. However, the performance gain is small and the on–chip
silicon overhead for this feature would be relatively high.