Changes between Version 21 and Version 22 of VirtualMemory


Ignore:
Timestamp:
Jul 3, 2009, 12:09:41 PM (15 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VirtualMemory

    v21 v22  
    55The TSAR MMU (Memory Management Unit) is an hardware component implemented in the L1 cache controller. This generic component can be used with any  single instruction issue, 32 bits processor.
    66
    7 As the processor core can issue two simultaneous instruction and data requests, there is actually two separated data and instructions caches,
    8 sharing the same physical access to the VCI/OCP interconnect. These L1 caches use physical addresses.
    9 As any MMU, the generic TSAR MMU is in charge of the virtual to physical address translation, and perfoms
    10 access right verifications. It implements a paginated virtual memory, supporting two page sizes : 4 Kbytes pages, and 2 Mbytes pages.
    11 Therefore, the TSAR MMU contains two separated hardware TLBs for instruction and data. 
     7As the processor core can issue two simultaneous instruction and data requests, there is actually two separated MMUs for DATA data and instructions.
     8These two MMUs share the same physical access to the VCI/OCP interconnect.
     9Each MMU contains a set-associative cache and a TLB (Translation look-aside buffer), that is in charge of the virtual to physical address translation, and perfoms
     10access right verifications.
     11
     12The Tsar generic MMU implements a paginated virtual memory, supporting two page sizes : 4 Kbytes pages, and 2 Mbytes pages.   
    1213In order to be independent on the processor core choice, the TLB MISS are handled by an hardwired Finite State Machine (called a Table Walk), without any software action. 
    1314
    1415[[Image(generic_mmu.png, nolink)]]
    1516
    16 == 1. Page Table Organisation ==
     17== 1. Virtual Memory ==
    1718
    1819The TSAR architecture defines two page sizes : 4 Kbytes pages, and 2 Mbytes pages.
     
    2021The physical address space is limited to 1 Tbytes (40 bits physical addresses).
    2122The page table are build by the operating system, and are stored in the main memory.
     23Each execution context (such as an UNIX process) has is own page table.
    2224
    2325=== 1.1 Two levels Page Table structure ===
     
    259261|| MMU_DBVAR                 ||  14      || Data Bad Virtual Address Register             || R      ||
    260262
    261 == 3. I/O MMU ==
    262 
    263 To be defined...
    264 
     263
     264