diff options
author | Graf Yang <graf.yang@analog.com> | 2009-01-07 10:14:39 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2009-01-07 10:14:39 -0500 |
commit | 46fa5eecec58934902ea4a65d9c7b7a486ac6f6b (patch) | |
tree | b7373553151456c620d9747785de322b30d11548 /arch/blackfin/mach-bf533 | |
parent | 8f65873e47784a390949f0d61e5692dbf2a8253e (diff) |
Blackfin arch: SMP supporting patchset: some other misc code
Blackfin dual core BF561 processor can support SMP like features.
https://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:smp-like
In this patch, we provide SMP extend to some other misc code
Singed-off-by: Graf Yang <graf.yang@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf533')
-rw-r--r-- | arch/blackfin/mach-bf533/include/mach/mem_map.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf533/include/mach/mem_map.h b/arch/blackfin/mach-bf533/include/mach/mem_map.h index 581fc6eea789..d5eaef21edb7 100644 --- a/arch/blackfin/mach-bf533/include/mach/mem_map.h +++ b/arch/blackfin/mach-bf533/include/mach/mem_map.h | |||
@@ -168,4 +168,19 @@ | |||
168 | #define L1_SCRATCH_START 0xFFB00000 | 168 | #define L1_SCRATCH_START 0xFFB00000 |
169 | #define L1_SCRATCH_LENGTH 0x1000 | 169 | #define L1_SCRATCH_LENGTH 0x1000 |
170 | 170 | ||
171 | #define get_l1_scratch_start_cpu(cpu) L1_SCRATCH_START | ||
172 | #define get_l1_code_start_cpu(cpu) L1_CODE_START | ||
173 | #define get_l1_data_a_start_cpu(cpu) L1_DATA_A_START | ||
174 | #define get_l1_data_b_start_cpu(cpu) L1_DATA_B_START | ||
175 | #define get_l1_scratch_start() L1_SCRATCH_START | ||
176 | #define get_l1_code_start() L1_CODE_START | ||
177 | #define get_l1_data_a_start() L1_DATA_A_START | ||
178 | #define get_l1_data_b_start() L1_DATA_B_START | ||
179 | |||
180 | #define GET_PDA_SAFE(preg) \ | ||
181 | preg.l = _cpu_pda; \ | ||
182 | preg.h = _cpu_pda; | ||
183 | |||
184 | #define GET_PDA(preg, dreg) GET_PDA_SAFE(preg) | ||
185 | |||
171 | #endif /* _MEM_MAP_533_H_ */ | 186 | #endif /* _MEM_MAP_533_H_ */ |