Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Gibson | 8882a4d | 2005-11-09 13:38:01 +1100 | [diff] [blame] | 2 | * include/asm-powerpc/paca.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
David Gibson | 8882a4d | 2005-11-09 13:38:01 +1100 | [diff] [blame] | 4 | * This control block defines the PACA which defines the processor |
| 5 | * specific data for each logical processor on the system. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * There are some pointers defined that are utilized by PLIC. |
| 7 | * |
| 8 | * C 2001 PPC 64 Team, IBM Corp |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
David Gibson | 8882a4d | 2005-11-09 13:38:01 +1100 | [diff] [blame] | 14 | */ |
| 15 | #ifndef _ASM_POWERPC_PACA_H |
| 16 | #define _ASM_POWERPC_PACA_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 17 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/types.h> |
| 20 | #include <asm/lppaca.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/mmu.h> |
| 22 | |
| 23 | register struct paca_struct *local_paca asm("r13"); |
Hugh Dickins | 048c8bc | 2006-11-01 05:44:54 +1100 | [diff] [blame] | 24 | |
| 25 | #if defined(CONFIG_DEBUG_PREEMPT) && defined(CONFIG_SMP) |
| 26 | extern unsigned int debug_smp_processor_id(void); /* from linux/smp.h */ |
| 27 | /* |
| 28 | * Add standard checks that preemption cannot occur when using get_paca(): |
| 29 | * otherwise the paca_struct it points to may be the wrong one just after. |
| 30 | */ |
| 31 | #define get_paca() ((void) debug_smp_processor_id(), local_paca) |
| 32 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #define get_paca() local_paca |
Hugh Dickins | 048c8bc | 2006-11-01 05:44:54 +1100 | [diff] [blame] | 34 | #endif |
| 35 | |
David Gibson | 3356bb9f7 | 2006-01-13 10:26:42 +1100 | [diff] [blame] | 36 | #define get_lppaca() (get_paca()->lppaca_ptr) |
Michael Neuling | 2f6093c | 2006-08-07 16:19:19 +1000 | [diff] [blame] | 37 | #define get_slb_shadow() (get_paca()->slb_shadow_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | struct task_struct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Defines the layout of the paca. |
| 43 | * |
| 44 | * This structure is not directly accessed by firmware or the service |
Stephen Rothwell | 30ff2e8 | 2008-04-10 16:43:47 +1000 | [diff] [blame] | 45 | * processor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | */ |
| 47 | struct paca_struct { |
| 48 | /* |
| 49 | * Because hw_cpu_id, unlike other paca fields, is accessed |
| 50 | * routinely from other CPUs (from the IRQ code), we stick to |
| 51 | * read-only (after boot) fields in the first cacheline to |
| 52 | * avoid cacheline bouncing. |
| 53 | */ |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct lppaca *lppaca_ptr; /* Pointer to LpPaca for PLIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
Jon Mason | 2ef9481 | 2006-01-23 10:58:20 -0600 | [diff] [blame] | 58 | * MAGIC: the spinlock functions in arch/powerpc/lib/locks.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | * load lock_token and paca_index with a single lwz |
| 60 | * instruction. They must travel together and be properly |
| 61 | * aligned. |
| 62 | */ |
| 63 | u16 lock_token; /* Constant 0x8000, used in locks */ |
| 64 | u16 paca_index; /* Logical processor number */ |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | u64 kernel_toc; /* Kernel TOC address */ |
| 67 | u64 stab_real; /* Absolute address of segment table */ |
| 68 | u64 stab_addr; /* Virtual address of segment table */ |
| 69 | void *emergency_sp; /* pointer to emergency stack */ |
Anton Blanchard | 7a0268f | 2006-01-11 13:16:44 +1100 | [diff] [blame] | 70 | u64 data_offset; /* per cpu data offset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | s16 hw_cpu_id; /* Physical processor number */ |
| 72 | u8 cpu_start; /* At startup, processor spins until */ |
| 73 | /* this becomes non-zero. */ |
Stephen Rothwell | e91948f | 2007-03-16 17:47:07 +1100 | [diff] [blame] | 74 | struct slb_shadow *slb_shadow_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Now, starting in cacheline 2, the exception save areas |
| 78 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 79 | /* used for most interrupts/exceptions */ |
| 80 | u64 exgen[10] __attribute__((aligned(0x80))); |
| 81 | u64 exmc[10]; /* used for machine checks */ |
| 82 | u64 exslb[10]; /* used for SLB/segment table misses |
| 83 | * on the linear mapping */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | mm_context_t context; |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 86 | u16 vmalloc_sllp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | u16 slb_cache_ptr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 88 | u16 slb_cache[SLB_CACHE_ENTRIES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * then miscellaneous read-write fields |
| 92 | */ |
| 93 | struct task_struct *__current; /* Pointer to current */ |
| 94 | u64 kstack; /* Saved Kernel stack addr */ |
| 95 | u64 stab_rr; /* stab/slb round-robin counter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | u64 saved_r1; /* r1 save for RTAS calls */ |
| 97 | u64 saved_msr; /* MSR saved here by enter_rtas */ |
Olof Johansson | 6873040 | 2007-04-24 01:11:55 +1000 | [diff] [blame] | 98 | u16 trap_save; /* Used when bad stack is encountered */ |
Paul Mackerras | d04c56f | 2006-10-04 16:47:49 +1000 | [diff] [blame] | 99 | u8 soft_enabled; /* irq soft-enable flag */ |
| 100 | u8 hard_enabled; /* set if irqs are enabled in MSR */ |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 101 | u8 io_sync; /* writel() needs spin_unlock sync */ |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 102 | |
| 103 | /* Stuff for accurate time accounting */ |
| 104 | u64 user_time; /* accumulated usermode TB ticks */ |
| 105 | u64 system_time; /* accumulated system TB ticks */ |
| 106 | u64 startpurr; /* PURR/TB value snapshot */ |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 107 | u64 startspurr; /* SPURR value snapshot */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | extern struct paca_struct paca[]; |
| 111 | |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 112 | #endif /* __KERNEL__ */ |
David Gibson | 8882a4d | 2005-11-09 13:38:01 +1100 | [diff] [blame] | 113 | #endif /* _ASM_POWERPC_PACA_H */ |