Subversion Repositories HelenOS

Rev

Rev 1891 | Rev 2048 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1891 Rev 1954
Line 40... Line 40...
40
 * is a nice number considered that it is one of
40
 * is a nice number considered that it is one of
41
 * the page sizes supported by hardware, which,
41
 * the page sizes supported by hardware, which,
42
 * again, is nice because TSBs need to be locked
42
 * again, is nice because TSBs need to be locked
43
 * in TLBs - only one TLB entry will do.
43
 * in TLBs - only one TLB entry will do.
44
 */
44
 */
45
#define TSB_SIZE            2           /* when changing this, change as.c as well */
45
#define TSB_SIZE            2   /* when changing this, change as.c as well */
46
#define ITSB_ENTRY_COUNT        (512*(1<<TSB_SIZE))
46
#define ITSB_ENTRY_COUNT        (512*(1<<TSB_SIZE))
47
#define DTSB_ENTRY_COUNT        (512*(1<<TSB_SIZE))
47
#define DTSB_ENTRY_COUNT        (512*(1<<TSB_SIZE))
48
 
48
 
49
#define TSB_TAG_TARGET_CONTEXT_SHIFT    48
49
#define TSB_TAG_TARGET_CONTEXT_SHIFT    48
50
 
50