Changeset 6ed5352 in mainline for arch/mips32


Ignore:
Timestamp:
2006-01-21T17:44:26Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bd6e392
Parents:
86c9e37
Message:

Finalize ASID management for sparc64 and mips32 by making use of FIFO queue of ASIDs.

Location:
arch/mips32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/Makefile.inc

    r86c9e37 r6ed5352  
    5656
    5757CONFIG_ASID = y
    58 
     58CONFIG_ASID_FIFO = y
    5959
    6060## Accepted MACHINEs
     
    114114        arch/$(ARCH)/src/debugger.c \
    115115        arch/$(ARCH)/src/cpu/cpu.c \
    116         arch/$(ARCH)/src/mm/asid.c \
    117116        arch/$(ARCH)/src/mm/frame.c \
    118117        arch/$(ARCH)/src/mm/page.c \
  • arch/mips32/src/mm/tlb.c

    r86c9e37 r6ed5352  
    2929#include <arch/mm/tlb.h>
    3030#include <mm/asid.h>
     31#include <genarch/mm/asid_fifo.h>
    3132#include <mm/tlb.h>
    3233#include <mm/page.h>
     
    5758{
    5859        int i;
     60
     61        asid_fifo_init();
    5962
    6063        cp0_pagemask_write(TLB_PAGE_MASK_16K);
Note: See TracChangeset for help on using the changeset viewer.