OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_61/] [or1ksim/] [mmu/] [immu.c] - Diff between revs 416 and 425

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 416 Rev 425
Line 22... Line 22...
#include "immu.h"
#include "immu.h"
#include "abstract.h"
#include "abstract.h"
#include "stats.h"
#include "stats.h"
#include "sprs.h"
#include "sprs.h"
#include "except.h"
#include "except.h"
 
#include "sim-config.h"
 
 
extern int cont_run;
extern int cont_run;
 
 
/* Insn MMU */
/* Insn MMU */
 
 
Line 35... Line 36...
 
 
/*      printf("IMMU translate(%x) = %x\n", virtaddr, phyaddr);*/
/*      printf("IMMU translate(%x) = %x\n", virtaddr, phyaddr);*/
        return phyaddr;
        return phyaddr;
}
}
 
 
/* Number of ITLB sets used (power of 2, max is 256) */
 
#define ITLB_SETS 16
 
 
 
/* Entry size in bytes (8 == two singlewords) */
 
#define ITLB_ENTRY_SIZE 8
 
 
 
/* Number of ITLB ways (1, 2, 3 etc., max is 4). */
 
#define ITLB_WAYS 2
 
 
 
/* Number of usage states (2, 3, 4 etc., max is 4). */
 
#define ITLB_USTATES 2
 
 
 
void itlb_info()
void itlb_info()
{
{
        if (!testsprbits(SPR_UPR, SPR_UPR_IMP)) {
        if (!testsprbits(SPR_UPR, SPR_UPR_IMP)) {
                printf("IMMU not implemented. Set UPR[IMP].\n");
                printf("IMMU not implemented. Set UPR[IMP].\n");
                return;
                return;
        }
        }
 
 
        printf("Insn MMU %dKB: ", ITLB_SETS * ITLB_ENTRY_SIZE * ITLB_WAYS / 1024);
        printf("Insn MMU %dKB: ", config.immu.nsets * config.immu.entrysize * config.immu.nways / 1024);
        printf("%d ways, %d sets, entry size %d bytes\n", ITLB_WAYS, ITLB_SETS, ITLB_ENTRY_SIZE);
        printf("%d ways, %d sets, entry size %d bytes\n", config.immu.nways, config.immu.nsets, config.immu.entrysize);
}
}
 
 
/* First check if virtual address is covered by ITLB and if it is:
/* First check if virtual address is covered by ITLB and if it is:
    - increment ITLB read hit stats,
    - increment ITLB read hit stats,
    - set 'lru' at this way to ITLB_USTATES - 1 and
    - set 'lru' at this way to config.immu.ustates - 1 and
      decrement 'lru' of other ways unless they have reached 0,
      decrement 'lru' of other ways unless they have reached 0,
    - check page access attributes and invoke IMMU page fault exception
    - check page access attributes and invoke IMMU page fault exception
      handler if necessary
      handler if necessary
   and if not:
   and if not:
    - increment ITLB read miss stats
    - increment ITLB read miss stats
    - find lru way and entry and invoke ITLB miss exception handler
    - find lru way and entry and invoke ITLB miss exception handler
    - set 'lru' with ITLB_USTATES - 1 and decrement 'lru' of other
    - set 'lru' with config.immu.ustates - 1 and decrement 'lru' of other
      ways unless they have reached 0
      ways unless they have reached 0
*/
*/
 
 
void itlb_status(int start_set)
void itlb_status(int start_set)
{
{
        int set;
        int set;
        int way;
        int way;
        int end_set = ITLB_SETS;
        int end_set = config.immu.nsets;
 
 
        if (!testsprbits(SPR_UPR, SPR_UPR_IMP)) {
        if (!testsprbits(SPR_UPR, SPR_UPR_IMP)) {
                printf("IMMU not implemented. Set UPR[IMP].\n");
                printf("IMMU not implemented. Set UPR[IMP].\n");
                return;
                return;
        }
        }
Line 91... Line 80...
 
 
        printf("\nIMMU: ");
        printf("\nIMMU: ");
        /* Scan set(s) and way(s). */
        /* Scan set(s) and way(s). */
        for (set = start_set; set < end_set; set++) {
        for (set = start_set; set < end_set; set++) {
                printf("\nSet %x: ", set);
                printf("\nSet %x: ", set);
                for (way = 0; way < ITLB_WAYS; way++) {
                for (way = 0; way < config.immu.nways; way++) {
                        printf("  way %d: ", way);
                        printf("  way %d: ", way);
                        printf("vpn=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_VPN));
                        printf("vpn=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_VPN));
                        printf("lru=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_LRU));
                        printf("lru=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_LRU));
                        printf("pl1=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_PL1));
                        printf("pl1=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_PL1));
                        printf("v=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_V));
                        printf("v=%x ", getsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_V));
Line 121... Line 110...
 
 
        if (!(mfspr(SPR_SR) & SPR_SR_IME) || !(testsprbits(SPR_UPR, SPR_UPR_IMP)))
        if (!(mfspr(SPR_SR) & SPR_SR_IME) || !(testsprbits(SPR_UPR, SPR_UPR_IMP)))
                return virtaddr;
                return virtaddr;
 
 
        /* Which set to check out? */
        /* Which set to check out? */
        set = (virtaddr / PAGE_SIZE) % ITLB_SETS;
        set = (virtaddr / config.immu.pagesize) % config.immu.nsets;
        tagaddr = (virtaddr / PAGE_SIZE) / ITLB_SETS;
        tagaddr = (virtaddr / config.immu.pagesize) / config.immu.nsets;
        vpn = virtaddr / PAGE_SIZE;
        vpn = virtaddr / config.immu.pagesize;
 
 
        /* Scan all ways and try to find a matching way. */
        /* Scan all ways and try to find a matching way. */
        for (i = 0; i < ITLB_WAYS; i++)
        for (i = 0; i < config.immu.nways; i++)
                if ((getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_VPN) == vpn) &&
                if ((getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_VPN) == vpn) &&
                    testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_V))
                    testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_V))
                        way = i;
                        way = i;
 
 
        /* Did we find our tlb entry? */
        /* Did we find our tlb entry? */
        if (way >= 0) { /* Yes, we did. */
        if (way >= 0) { /* Yes, we did. */
                immu_stats.fetch_tlbhit++;
                immu_stats.fetch_tlbhit++;
                debug(5, "ITLB hit (virtaddr=%x).\n", virtaddr);
                debug(5, "ITLB hit (virtaddr=%x).\n", virtaddr);
 
 
                /* Set LRUs */
                /* Set LRUs */
                for (i = 0; i < ITLB_WAYS; i++)
                for (i = 0; i < config.immu.nways; i++)
                        if (testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU))
                        if (testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU))
                                setsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU, getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) - 1);
                                setsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU, getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) - 1);
                setsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_LRU, ITLB_USTATES - 1);
                setsprbits(SPR_ITLBMR_BASE(way) + set, SPR_ITLBMR_LRU, config.immu.ustates - 1);
 
 
                return getsprbits(SPR_ITLBTR_BASE(way) + set, SPR_ITLBTR_PPN) * PAGE_SIZE + (virtaddr % PAGE_SIZE);
                return getsprbits(SPR_ITLBTR_BASE(way) + set, SPR_ITLBTR_PPN) * config.immu.pagesize + (virtaddr % config.immu.pagesize);
        }
        }
        else {  /* No, we didn't. */
        else {  /* No, we didn't. */
                int minlru = ITLB_USTATES - 1;
                int minlru = config.immu.ustates - 1;
                int minway = 0;
                int minway = 0;
 
 
                immu_stats.fetch_tlbmiss++;
                immu_stats.fetch_tlbmiss++;
#if 0
#if 0
                for (i = 0; i < ITLB_WAYS; i++)
                for (i = 0; i < config.immu.nways; i++)
                        if (getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) < minlru)
                        if (getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) < minlru)
                                minway = i;
                                minway = i;
 
 
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_VPN, vpn);
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_VPN, vpn);
                for (i = 0; i < ITLB_WAYS; i++)
                for (i = 0; i < config.immu.nways; i++)
                        if (testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU))
                        if (testsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU))
                                setsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU, getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) - 1);
                                setsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU, getsprbits(SPR_ITLBMR_BASE(i) + set, SPR_ITLBMR_LRU) - 1);
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_LRU, ITLB_USTATES - 1);
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_LRU, config.immu.ustates - 1);
                setsprbits(SPR_ITLBTR_BASE(minway) + set, SPR_ITLBTR_PPN, vpn); /* 1 to 1 */
                setsprbits(SPR_ITLBTR_BASE(minway) + set, SPR_ITLBTR_PPN, vpn); /* 1 to 1 */
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_V, 1);
                setsprbits(SPR_ITLBMR_BASE(minway) + set, SPR_ITLBMR_V, 1);
#endif
#endif
                except_handle(EXCEPT_ITLBMISS, virtaddr);
                except_handle(EXCEPT_ITLBMISS, virtaddr);
                /* if tlb refill implemented in HW */
                /* if tlb refill implemented in HW */
                /* return getsprbits(SPR_ITLBTR_BASE(minway) + set, SPR_ITLBTR_PPN) * PAGE_SIZE + (virtaddr % PAGE_SIZE); */
                /* return getsprbits(SPR_ITLBTR_BASE(minway) + set, SPR_ITLBTR_PPN) * config.immu.pagesize + (virtaddr % config.immu.pagesize); */
                return 0;
                return 0;
        }
        }
}
}
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.