Changeset b3f8fb7 in mainline for kernel/arch/ppc32/include
- Timestamp:
- 2007-01-28T13:25:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e8c1a5
- Parents:
- 1ba41c5
- Location:
- kernel/arch/ppc32/include
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/cpu.h
r1ba41c5 rb3f8fb7 36 36 #define KERN_ppc32_CPU_H_ 37 37 38 #include < typedefs.h>38 #include <arch/asm.h> 39 39 40 40 typedef struct { -
kernel/arch/ppc32/include/drivers/cuda.h
r1ba41c5 rb3f8fb7 37 37 38 38 #include <arch/types.h> 39 #include <typedefs.h>40 39 41 40 extern void cuda_init(devno_t devno, uintptr_t base, size_t size); -
kernel/arch/ppc32/include/drivers/pic.h
r1ba41c5 rb3f8fb7 36 36 #define KERN_ppc32_PIC_H_ 37 37 38 #include <arch/types.h> 39 38 40 #define PIC_PENDING_LOW 8 39 41 #define PIC_PENDING_HIGH 4 -
kernel/arch/ppc32/include/exception.h
r1ba41c5 rb3f8fb7 37 37 38 38 #include <arch/types.h> 39 #include <typedefs.h>40 39 41 struct istate{40 typedef struct { 42 41 uint32_t r0; 43 42 uint32_t r2; … … 78 77 uint32_t r12; 79 78 uint32_t sp; 80 } ;79 } istate_t; 81 80 82 81 static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr) -
kernel/arch/ppc32/include/mm/as.h
r1ba41c5 rb3f8fb7 43 43 #define USER_ADDRESS_SPACE_END_ARCH ((unsigned long) 0x7fffffff) 44 44 45 #define USTACK_ADDRESS_ARCH (0x7fffffff -(PAGE_SIZE-1))45 #define USTACK_ADDRESS_ARCH (0x7fffffff - (PAGE_SIZE - 1)) 46 46 47 47 typedef struct { 48 48 } as_arch_t; 49 50 #include <genarch/mm/as_pt.h> 49 51 50 52 #define as_constructor_arch(as, flags) (as != as) -
kernel/arch/ppc32/include/mm/memory_init.h
r1ba41c5 rb3f8fb7 36 36 #define KERN_ppc32_MEMORY_INIT_H_ 37 37 38 #include <typedefs.h>39 40 38 size_t get_memory_size(void); 41 39 -
kernel/arch/ppc32/include/mm/page.h
r1ba41c5 rb3f8fb7 105 105 #ifndef __ASM__ 106 106 107 #include <mm/page.h> 108 #include <arch/mm/frame.h> 109 #include <arch/types.h> 107 #include <mm/mm.h> 108 #include <arch/interrupt.h> 110 109 111 110 static inline int get_pt_flags(pte_t *pt, index_t i) -
kernel/arch/ppc32/include/mm/tlb.h
r1ba41c5 rb3f8fb7 36 36 #define KERN_ppc32_TLB_H_ 37 37 38 #include <arch/interrupt.h> 39 38 40 typedef struct { 39 41 unsigned v : 1; /**< Valid */ -
kernel/arch/ppc32/include/types.h
r1ba41c5 rb3f8fb7 37 37 38 38 #define NULL 0 39 #define false 0 40 #define true 1 39 41 40 42 typedef signed char int8_t; … … 48 50 typedef unsigned long long uint64_t; 49 51 52 typedef uint32_t size_t; 53 typedef uint32_t count_t; 54 typedef uint32_t index_t; 55 50 56 typedef uint32_t uintptr_t; 51 57 typedef uint32_t pfn_t; … … 54 60 55 61 typedef uint32_t unative_t; 62 typedef int32_t native_t; 63 64 typedef uint8_t bool; 65 typedef uint64_t task_id_t; 66 typedef uint32_t context_id_t; 67 68 typedef int32_t inr_t; 69 typedef int32_t devno_t; 56 70 57 71 /** Page Table Entry. */
Note:
See TracChangeset
for help on using the changeset viewer.