aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/cache.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2017-01-08 17:31:48 -0600
committerMichael Ellerman <mpe@ellerman.id.au>2017-02-06 19:46:04 +1100
commit65e01f386fcddb3460be78fc886856889f80ecc7 (patch)
tree0bea2fc49e3bee2a3d7e16f0bf1d244abec0f9b2 /arch/powerpc/include/asm/cache.h
parentpowerpc/64: Clean up ppc64_caches using a struct per cache (diff)
downloadlinux-dev-65e01f386fcddb3460be78fc886856889f80ecc7.tar.xz
linux-dev-65e01f386fcddb3460be78fc886856889f80ecc7.zip
powerpc/64: Add L2 and L3 cache shape info
Retrieved from device-tree when available Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/cache.h')
-rw-r--r--arch/powerpc/include/asm/cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/cache.h b/arch/powerpc/include/asm/cache.h
index 823750fa6e66..d7cf60f87604 100644
--- a/arch/powerpc/include/asm/cache.h
+++ b/arch/powerpc/include/asm/cache.h
@@ -43,6 +43,8 @@ struct ppc_cache_info {
struct ppc64_caches {
struct ppc_cache_info l1d;
struct ppc_cache_info l1i;
+ struct ppc_cache_info l2;
+ struct ppc_cache_info l3;
};
extern struct ppc64_caches ppc64_caches;