summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorChristiano F. Haesbaert <haesbaert@cvs.openbsd.org>2012-03-16 01:53:01 +0000
committerChristiano F. Haesbaert <haesbaert@cvs.openbsd.org>2012-03-16 01:53:01 +0000
commitcac07d34d1a0123dd107c7db8c91c983978ee5cc (patch)
tree6ebe3725461a55711c0b7cccd36c4f19a28a67cf /sys/arch/amd64
parent24a6076cc5e03eddb0caa0e110d93996d78ed385 (diff)
Display L3 cache information on amd64 for amd cpus, Intel now uses a
different scheme. ok jsg@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/cacheinfo.c62
-rw-r--r--sys/arch/amd64/include/cacheinfo.h11
2 files changed, 46 insertions, 27 deletions
diff --git a/sys/arch/amd64/amd64/cacheinfo.c b/sys/arch/amd64/amd64/cacheinfo.c
index 197a91c452a..8926949af6d 100644
--- a/sys/arch/amd64/amd64/cacheinfo.c
+++ b/sys/arch/amd64/amd64/cacheinfo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cacheinfo.c,v 1.5 2009/02/16 15:50:05 jsg Exp $ */
+/* $OpenBSD: cacheinfo.c,v 1.6 2012/03/16 01:53:00 haesbaert Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -143,6 +143,11 @@ static const struct x86_cache_info amd_cpuid_l2cache_assoc_info[] = {
{ 0, 0x04, 4 },
{ 0, 0x06, 8 },
{ 0, 0x08, 16 },
+ { 0, 0x0a, 32 },
+ { 0, 0x0b, 48 },
+ { 0, 0x0c, 64 },
+ { 0, 0x0d, 96 },
+ { 0, 0x0e, 128 },
{ 0, 0x0f, 0xff },
{ 0, 0x00, 0 },
};
@@ -237,34 +242,41 @@ amd_cpu_cacheinfo(struct cpu_info *ci)
cai->cai_associativity = cp->cai_associativity;
else
cai->cai_associativity = 0; /* XXX Unknown/reserved */
+
+ /*
+ * Determine L3 cache, Intel is different
+ */
+ if (!strcmp(cpu_vendor, "AuthenticAMD") && family >= 0xf) {
+ cai = &ci->ci_cinfo[CAI_L3CACHE];
+ cai->cai_totalsize = AMD_L3_EDX_C_SIZE(descs[3]);
+ cai->cai_associativity = AMD_L3_EDX_C_ASSOC(descs[3]);
+ cai->cai_linesize = AMD_L3_EDX_C_LS(descs[3]);
+ cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
+ cai->cai_associativity);
+ if (cp != NULL)
+ cai->cai_associativity = cp->cai_associativity;
+ else
+ cai->cai_associativity = 0; /* XXX Unknown/reserved */
+ }
}
void
x86_print_cacheinfo(struct cpu_info *ci)
{
char *sep;
-
- sep = NULL;
- if (ci->ci_cinfo[CAI_ICACHE].cai_totalsize != 0 ||
- ci->ci_cinfo[CAI_DCACHE].cai_totalsize != 0) {
- sep = print_cache_config(ci, CAI_ICACHE, "I-cache", NULL);
- sep = print_cache_config(ci, CAI_DCACHE, "D-cache", sep);
- }
- if (ci->ci_cinfo[CAI_L2CACHE].cai_totalsize != 0) {
- sep = print_cache_config(ci, CAI_L2CACHE, "L2 cache", sep);
- if (sep != NULL)
- printf("\n");
- }
- if (ci->ci_cinfo[CAI_ITLB].cai_totalsize != 0) {
- sep = print_tlb_config(ci, CAI_ITLB, "ITLB", NULL);
- sep = print_tlb_config(ci, CAI_ITLB2, NULL, sep);
- if (sep != NULL)
- printf("\n");
- }
- if (ci->ci_cinfo[CAI_DTLB].cai_totalsize != 0) {
- sep = print_tlb_config(ci, CAI_DTLB, "DTLB", NULL);
- sep = print_tlb_config(ci, CAI_DTLB2, NULL, sep);
- if (sep != NULL)
- printf("\n");
- }
+
+ sep = print_cache_config(ci, CAI_ICACHE, "I-cache", NULL);
+ sep = print_cache_config(ci, CAI_DCACHE, "D-cache", sep);
+ sep = print_cache_config(ci, CAI_L2CACHE, "L2 cache", sep);
+ sep = print_cache_config(ci, CAI_L3CACHE, "L3 cache", sep);
+ if (sep != NULL)
+ printf("\n");
+ sep = print_tlb_config(ci, CAI_ITLB, "ITLB", NULL);
+ sep = print_tlb_config(ci, CAI_ITLB2, NULL, sep);
+ if (sep != NULL)
+ printf("\n");
+ sep = print_tlb_config(ci, CAI_DTLB, "DTLB", NULL);
+ sep = print_tlb_config(ci, CAI_DTLB2, NULL, sep);
+ if (sep != NULL)
+ printf("\n");
}
diff --git a/sys/arch/amd64/include/cacheinfo.h b/sys/arch/amd64/include/cacheinfo.h
index ea0d7837029..5cd7d4e6488 100644
--- a/sys/arch/amd64/include/cacheinfo.h
+++ b/sys/arch/amd64/include/cacheinfo.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cacheinfo.h,v 1.1 2004/01/28 01:39:39 mickey Exp $ */
+/* $OpenBSD: cacheinfo.h,v 1.2 2012/03/16 01:53:00 haesbaert Exp $ */
/* $NetBSD: cacheinfo.h,v 1.1 2003/04/25 21:54:30 fvdl Exp $ */
#ifndef _X86_CACHEINFO_H
@@ -20,8 +20,9 @@ struct x86_cache_info {
#define CAI_ICACHE 4 /* Instruction cache */
#define CAI_DCACHE 5 /* Data cache */
#define CAI_L2CACHE 6 /* Level 2 cache */
+#define CAI_L3CACHE 7 /* Level 3 cache */
-#define CAI_COUNT 7
+#define CAI_COUNT 8
struct cpu_info;
@@ -108,4 +109,10 @@ void x86_print_cacheinfo(struct cpu_info *);
#define AMD_L2_ECX_C_LPT(x) (((x) >> 8) & 0xf)
#define AMD_L2_ECX_C_LS(x) ( (x) & 0xff)
+/* L3 Cache */
+#define AMD_L3_EDX_C_SIZE(x) ((((x) >> 18) & 0x3fff) * 512 * 1024)
+#define AMD_L3_EDX_C_ASSOC(x) (((x) >> 12) & 0xf)
+#define AMD_L3_EDX_C_LPT(x) (((x) >> 8) & 0xf)
+#define AMD_L3_EDX_C_LS(x) ( (x) & 0xff)
+
#endif /* _X86_CACHEINFO_H */