Changeset edebc15c in mainline for kernel/arch/mips32/include/mm/tlb.h


Ignore:
Timestamp:
2008-07-27T03:50:53Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4541ae4
Parents:
5e8ddf5
Message:

physical memory detection in MSIM (discontinous regions supported)
remove Sgi Indy (ARC) support — it was unmaintaned, untested for years and without uspace support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/mm/tlb.h

    r5e8ddf5 redebc15c  
    3636#define KERN_mips32_TLB_H_
    3737
     38#include <arch/types.h>
     39#include <typedefs.h>
     40#include <arch/mm/asid.h>
    3841#include <arch/exception.h>
    3942
     
    4750#define TLB_KSTACK_WIRED_INDEX  0
    4851
    49 #define TLB_PAGE_MASK_16K       (0x3<<13)
     52#define TLB_PAGE_MASK_16K       (0x3 << 13)
    5053
    5154#define PAGE_UNCACHED                   2
     
    160163extern void tlb_refill(istate_t *istate);
    161164extern void tlb_modified(istate_t *istate);
     165extern void tlb_prepare_entry_lo(entry_lo_t *lo, bool g, bool v, bool d, bool cacheable, uintptr_t pfn);
     166extern void tlb_prepare_entry_hi(entry_hi_t *hi, asid_t asid, uintptr_t addr);
    162167
    163168#endif
Note: See TracChangeset for help on using the changeset viewer.