Changeset 46321fb in mainline for kernel/arch/ia64/include
- Timestamp:
- 2008-11-25T20:22:04Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 83d9712
- Parents:
- 14c331a
- Location:
- kernel/arch/ia64/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/mm/page.h
r14c331a r46321fb 49 49 #define FW_PAGE_WIDTH 28 /* 256M */ 50 50 51 /** Staticly mapped IO spaces */ 51 #define USPACE_IO_PAGE_WIDTH 12 /* 4K */ 52 53 54 55 /** Staticly mapped IO spaces - offsets to 0xe...00 of virtual adresses 56 becauce of "minimal virtual bits implemented is 51" 57 it is possible to have here values up to 0x0007000000000000 58 */ 52 59 53 60 /* Firmware area (bellow 4GB in phys mem) */ -
kernel/arch/ia64/include/mm/tlb.h
r14c331a r46321fb 47 47 #define DTR_KERNEL 0 48 48 #define ITR_KERNEL 0 49 #define DTR_KSTACK1 150 #define DTR_KSTACK2 249 #define DTR_KSTACK1 4 50 #define DTR_KSTACK2 5 51 51 52 52 /** Portion of TLB insertion format data structure. */ -
kernel/arch/ia64/include/proc/task.h
r14c331a r46321fb 32 32 /** @file 33 33 */ 34 #include <proc/task.h> 34 35 35 36 #ifndef KERN_ia64_TASK_H_ 36 37 #define KERN_ia64_TASK_H_ 37 38 39 #include <adt/bitmap.h> 40 38 41 typedef struct { 42 bitmap_t *iomap; 39 43 } task_arch_t; 40 44 41 #define task_create_arch(t) 45 46 #define task_create_arch(t) {(t)->arch.iomap=NULL;} 42 47 #define task_destroy_arch(t) 43 48
Note:
See TracChangeset
for help on using the changeset viewer.