Changeset d99c1d2 in mainline for kernel/arch/ia64
- Timestamp:
- 2010-03-23T14:41:06Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b1164e8
- Parents:
- 7c682dd1
- Location:
- kernel/arch/ia64
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/asm.h
r7c682dd1 rd99c1d2 38 38 #include <config.h> 39 39 #include <typedefs.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <arch/register.h> 42 42 -
kernel/arch/ia64/include/bootinfo.h
r7c682dd1 rd99c1d2 67 67 unsigned int memmap_items; 68 68 69 un signed long *sapic;69 unative_t *sapic; 70 70 unsigned long sys_freq; 71 71 unsigned long freq_scale; -
kernel/arch/ia64/include/context.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia64_CONTEXT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/register.h> 40 40 #include <align.h> -
kernel/arch/ia64/include/cpu.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia64_CPU_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/register.h> 40 40 #include <arch/asm.h> -
kernel/arch/ia64/include/faddr.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia64_FADDR_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 /** -
kernel/arch/ia64/include/fpu_context.h
r7c682dd1 rd99c1d2 38 38 #define FPU_CONTEXT_ALIGN 16 39 39 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 #define FRS 96 -
kernel/arch/ia64/include/interrupt.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia64_INTERRUPT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/register.h> 40 40 -
kernel/arch/ia64/include/mm/asid.h
r7c682dd1 rd99c1d2 38 38 #ifndef __ASM__ 39 39 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 typedef uint16_t asid_t; -
kernel/arch/ia64/include/mm/frame.h
r7c682dd1 rd99c1d2 42 42 #ifndef __ASM__ 43 43 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 46 46 extern uintptr_t last_frame; -
kernel/arch/ia64/include/mm/page.h
r7c682dd1 rd99c1d2 108 108 #include <arch/barrier.h> 109 109 #include <arch/mm/asid.h> 110 #include < arch/types.h>110 #include <typedefs.h> 111 111 #include <debug.h> 112 112 -
kernel/arch/ia64/include/mm/tlb.h
r7c682dd1 rd99c1d2 39 39 #include <arch/mm/asid.h> 40 40 #include <arch/interrupt.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 43 43 /** Data and instruction Translation Register indices. */ -
kernel/arch/ia64/include/register.h
r7c682dd1 rd99c1d2 142 142 #ifndef __ASM__ 143 143 144 #include < arch/types.h>144 #include <typedefs.h> 145 145 146 146 /** Processor Status Register. */ -
kernel/arch/ia64/include/types.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ia64_TYPES_H_ 37 37 38 typedef signed char int8_t;39 typedef signed short int16_t;40 typedef signed int int32_t;41 typedef signed long int64_t;42 typedef struct {43 int64_t lo;44 int64_t hi;45 } int128_t;46 47 typedef unsigned char uint8_t;48 typedef unsigned short uint16_t;49 typedef unsigned int uint32_t;50 typedef unsigned long uint64_t;51 typedef struct {52 uint64_t lo;53 uint64_t hi;54 } uint128_t;55 56 38 typedef uint64_t size_t; 57 39 … … 70 52 } __attribute__((may_alias)) fncptr_t; 71 53 72 #define PRIp "lx" 73 #define PRIs "lu" 54 #define PRIp "lx" /**< Format for uintptr_t. */ 55 #define PRIs "lu" /**< Format for size_t. */ 74 56 75 #define PRId8 "d" 76 #define PRId16 "d" 77 #define PRId32 "d" 78 #define PRId64 "ld" 79 #define PRIdn "d" 57 #define PRId8 "d" /**< Format for int8_t. */ 58 #define PRId16 "d" /**< Format for int16_t. */ 59 #define PRId32 "d" /**< Format for int32_t. */ 60 #define PRId64 "ld" /**< Format for int64_t. */ 61 #define PRIdn "d" /**< Format for native_t. */ 80 62 81 #define PRIu8 "u" 82 #define PRIu16 "u" 83 #define PRIu32 "u" 84 #define PRIu64 "lu" 85 #define PRIun "u" 63 #define PRIu8 "u" /**< Format for uint8_t. */ 64 #define PRIu16 "u" /**< Format for uint16_t. */ 65 #define PRIu32 "u" /**< Format for uint32_t. */ 66 #define PRIu64 "lu" /**< Format for uint64_t. */ 67 #define PRIun "u" /**< Format for unative_t. */ 86 68 87 #define PRIx8 "x" 88 #define PRIx16 "x" 89 #define PRIx32 "x" 90 #define PRIx64 "lx" 91 #define PRIxn "x" 69 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 70 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 71 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 72 #define PRIx64 "lx" /**< Format for hexadecimal (u)int64_t. */ 73 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 92 74 93 75 #endif -
kernel/arch/ia64/src/ddi/ddi.c
r7c682dd1 rd99c1d2 36 36 #include <ddi/ddi.h> 37 37 #include <proc/task.h> 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <mm/slab.h> 40 40 #include <errno.h> -
kernel/arch/ia64/src/debug/stacktrace.c
r7c682dd1 rd99c1d2 35 35 #include <stacktrace.h> 36 36 #include <syscall/copy.h> 37 #include <arch/types.h>38 37 #include <typedefs.h> 39 38 -
kernel/arch/ia64/src/drivers/ski.c
r7c682dd1 rd99c1d2 37 37 #include <console/chardev.h> 38 38 #include <sysinfo/sysinfo.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <proc/thread.h> 41 41 #include <synch/spinlock.h> -
kernel/arch/ia64/src/ia64.c
r7c682dd1 rd99c1d2 40 40 #include <arch/asm.h> 41 41 #include <arch/register.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <arch/context.h> 44 44 #include <arch/stack.h> -
kernel/arch/ia64/src/interrupt.c
r7c682dd1 rd99c1d2 41 41 #include <debug.h> 42 42 #include <console/console.h> 43 #include < arch/types.h>43 #include <typedefs.h> 44 44 #include <arch/asm.h> 45 45 #include <arch/barrier.h> -
kernel/arch/ia64/src/mm/page.c
r7c682dd1 rd99c1d2 39 39 #include <arch/mm/asid.h> 40 40 #include <arch/mm/vhpt.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <print.h> 43 43 #include <mm/page.h> -
kernel/arch/ia64/src/smp/smp.c
r7c682dd1 rd99c1d2 40 40 #include <arch/asm.h> 41 41 #include <arch/register.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <arch/context.h> 44 44 #include <arch/stack.h>
Note:
See TracChangeset
for help on using the changeset viewer.