Changeset 76ca3f7 in mainline for kernel/arch/ia64
- Timestamp:
- 2010-03-23T20:49:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch/ia64
- Files:
-
- 21 edited
-
Makefile.inc (modified) (2 diffs)
-
include/asm.h (modified) (1 diff)
-
include/bootinfo.h (modified) (1 diff)
-
include/context.h (modified) (1 diff)
-
include/cpu.h (modified) (1 diff)
-
include/faddr.h (modified) (1 diff)
-
include/fpu_context.h (modified) (1 diff)
-
include/interrupt.h (modified) (1 diff)
-
include/mm/asid.h (modified) (1 diff)
-
include/mm/frame.h (modified) (1 diff)
-
include/mm/page.h (modified) (1 diff)
-
include/mm/tlb.h (modified) (1 diff)
-
include/register.h (modified) (1 diff)
-
include/types.h (modified) (2 diffs)
-
src/ddi/ddi.c (modified) (1 diff)
-
src/debug/stacktrace.c (modified) (1 diff)
-
src/drivers/ski.c (modified) (1 diff)
-
src/ia64.c (modified) (2 diffs)
-
src/interrupt.c (modified) (1 diff)
-
src/mm/page.c (modified) (1 diff)
-
src/smp/smp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/Makefile.inc
rb48ebd19 r76ca3f7 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf64-little 33 30 BFD_ARCH = ia64-elf64 34 TARGET = ia64-pc-linux-gnu35 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ia6436 31 37 32 CMN1 = -mconstant-gp -fno-unwind-tables -mfixed-range=f32-f127 … … 39 34 ICC_CFLAGS += $(CMN1) 40 35 41 LFLAGS += -EL42 AFLAGS += -mconstant-gp36 LFLAGS = -EL 37 AFLAGS = -mconstant-gp 43 38 44 39 BITS = 64 -
kernel/arch/ia64/include/asm.h
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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" /**< Format for uintptr_t. */73 #define PRIs "lu" /**< Format for size_t. */54 #define PRIp "lx" /**< Format for uintptr_t. */ 55 #define PRIs "lu" /**< Format for size_t. */ 74 56 75 #define PRId8 "d" /**< Format for int8_t. */76 #define PRId16 "d" /**< Format for int16_t. */77 #define PRId32 "d" /**< Format for int32_t. */78 #define PRId64 "ld" /**< Format for int64_t. */79 #define PRIdn "d" /**< Format for native_t. */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" /**< Format for uint8_t. */82 #define PRIu16 "u" /**< Format for uint16_t. */83 #define PRIu32 "u" /**< Format for uint32_t. */84 #define PRIu64 "lu" /**< Format for uint64_t. */85 #define PRIun "u" /**< Format for unative_t. */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" /**< Format for hexadecimal (u)int8_t. */88 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */89 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */90 #define PRIx64 "lx" /**< Format for hexadecimal (u)int64_t. */91 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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> 42 42 #include <arch/asm.h> 43 43 #include <arch/drivers/kbd.h> 44 #include <str ing.h>44 #include <str.h> 45 45 #include <arch.h> 46 46 -
kernel/arch/ia64/src/ia64.c
rb48ebd19 r76ca3f7 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> … … 66 66 #include <print.h> 67 67 #include <sysinfo/sysinfo.h> 68 #include <str ing.h>68 #include <str.h> 69 69 70 70 /* NS16550 as a COM 1 */ -
kernel/arch/ia64/src/interrupt.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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.
