Changeset 008029d in mainline for arch/sparc64/src/mm/tlb.c


Ignore:
Timestamp:
2006-02-21T23:36:37Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f5df72d
Parents:
c2942d8
Message:

sparc64 work.
Add initial TLB miss handlers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/src/mm/tlb.c

    rc2942d8 r008029d  
    3737#include <config.h>
    3838#include <arch/trap/trap.h>
     39#include <panic.h>
    3940
    4041/** Initialize ITLB and DTLB.
     
    9899}
    99100
     101/** ITLB miss handler. */
     102void fast_instruction_access_mmu_miss(void)
     103{
     104        panic("%s\n", __FUNCTION__);
     105}
     106
     107/** DTLB miss handler. */
     108void fast_data_access_mmu_miss(void)
     109{
     110        panic("%s\n", __FUNCTION__);
     111}
     112
     113/** DTLB protection fault handler. */
     114void fast_data_access_protection(void)
     115{
     116        panic("%s\n", __FUNCTION__);
     117}
     118
    100119/** Print contents of both TLBs. */
    101120void tlb_print(void)
Note: See TracChangeset for help on using the changeset viewer.