blob: dce863a7635cd8d0fe5bb7e9f305017eda0a2adb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Anton Blanchard7a0268f2006-01-11 13:16:44 +11002#ifndef _ASM_POWERPC_PERCPU_H_
3#define _ASM_POWERPC_PERCPU_H_
4#ifdef __powerpc64__
Anton Blanchard7a0268f2006-01-11 13:16:44 +11005
6/*
7 * Same as asm-generic/percpu.h, except that we store the per cpu offset
8 * in the paca. Based on the x86-64 implementation.
9 */
10
11#ifdef CONFIG_SMP
12
13#include <asm/paca.h>
14
Hugh Dickins1e835272008-02-23 19:40:17 +000015#define __my_cpu_offset local_paca->data_offset
Anton Blanchard7a0268f2006-01-11 13:16:44 +110016
travis@sgi.com56f90202008-01-30 23:27:58 +010017#endif /* CONFIG_SMP */
18#endif /* __powerpc64__ */
Anton Blanchard7a0268f2006-01-11 13:16:44 +110019
Stephen Rothwell6f9aa722005-08-29 14:08:11 +100020#include <asm-generic/percpu.h>
Anton Blanchard7a0268f2006-01-11 13:16:44 +110021
22#endif /* _ASM_POWERPC_PERCPU_H_ */