Changeset 0cfc4d38 in mainline for arch/sparc64/include/mm/frame.h


Ignore:
Timestamp:
2005-12-14T01:52:19Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
38282c0
Parents:
8ad925c
Message:

sparc64 work.
Functions for disabling/enabling MMU.
TLB initialization.
Identity mapping of first 4M for kernel.
Switch to kernel copy of trap table.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/include/mm/frame.h

    r8ad925c r0cfc4d38  
    3030#define __sparc64_FRAME_H__
    3131
     32#include <arch/types.h>
     33
    3234#define FRAME_SIZE              8192
     35
     36union frame_address {
     37        __address address;
     38        struct {
     39                unsigned : 23;
     40                __u64 pfn : 28;         /**< Physical Frame Number. */
     41                unsigned offset : 13;   /**< Offset. */
     42        } __attribute__ ((packed));
     43};
     44
     45typedef union frame_address frame_address_t;
    3346
    3447extern void frame_arch_init(void);
Note: See TracChangeset for help on using the changeset viewer.