Changeset 2057572 in mainline for boot/arch/sparc64/loader/asm.h


Ignore:
Timestamp:
2007-03-27T23:40:25Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
399ece9
Parents:
8d37a06
Message:

The Ultimate Solution To Illegal Virtual Aliases.
It is better to avoid them completely than to fight them.
Switch the sparc64 port to 16K pages. The TLBs and TSBs
continue to operate with 8K pages only. Page tables and
other generic parts operate with 16K pages.

Because the MMU doesn't support 16K directly, each 16K
page is emulated by a pair of 8K pages. With 16K pages,
illegal aliases cannot be created in 16K D-cache.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc64/loader/asm.h

    r8d37a06 r2057572  
    3434#include "main.h"
    3535
    36 #define PAGE_SIZE       8192
    37 #define PAGE_WIDTH      13
     36#define PAGE_WIDTH      14
     37#define PAGE_SIZE       (1 << PAGE_WIDTH)
    3838
    3939#define memcpy(dst, src, cnt)  __builtin_memcpy((dst), (src), (cnt))
Note: See TracChangeset for help on using the changeset viewer.