* Re: [PATCH] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions
2009-04-02 10:30 ` Ingo Molnar
@ 2009-04-03 10:58 ` Andreas Herrmann
2009-04-03 16:07 ` [PATCH] [PATCH] x86: cacheinfo: fix build error in cache_disable Andreas Herrmann
2009-04-09 13:47 ` [PATCH v2] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions Andreas Herrmann
2 siblings, 0 replies; 7+ messages in thread
From: Andreas Herrmann @ 2009-04-03 10:58 UTC (permalink / raw)
To: Ingo Molnar
Cc: Mark Langsdorf, H. Peter Anvin, Ingo Molnar, Thomas Gleixner,
linux-kernel
On Thu, Apr 02, 2009 at 12:30:08PM +0200, Ingo Molnar wrote:
>
> * Andreas Herrmann <andreas.herrmann3@amd.com> wrote:
>
> > Impact: complete cache information for AMD CPUs
> >
> > See "CPUID Specification" (AMD Publication #: 25481, Rev. 2.28, April 2008)
> >
> > Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
> > ---
> > arch/x86/kernel/cpu/intel_cacheinfo.c | 16 ++++++++++++----
> > 1 files changed, 12 insertions(+), 4 deletions(-)
> >
> > Please apply.
>
> Hm, the x86/cpu topic is marked broken and blocked by another AMD
> patch from Mark Langsdorf:
>
> 45ca863: x86, cpu: conform L3 Cache Index Disable to Linux standards
Oops, wasn't aware that you had applied this patch and I couldn't find
it in tip/master. Now I know why.
The code seems broken. Defining k8_northbridges in a header file is the
wrong thing to do. I'll look at it.
Andreas
--
Operating | Advanced Micro Devices GmbH
System | Karl-Hammerschmidt-Str. 34, 85609 Dornach b. München, Germany
Research | Geschäftsführer: Jochen Polster, Thomas M. McCoy, Giuliano Meroni
Center | Sitz: Dornach, Gemeinde Aschheim, Landkreis München
(OSRC) | Registergericht München, HRB Nr. 43632
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] [PATCH] x86: cacheinfo: fix build error in cache_disable
2009-04-02 10:30 ` Ingo Molnar
2009-04-03 10:58 ` Andreas Herrmann
@ 2009-04-03 16:07 ` Andreas Herrmann
2009-04-03 15:59 ` Ingo Molnar
2009-04-09 13:47 ` [PATCH v2] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions Andreas Herrmann
2 siblings, 1 reply; 7+ messages in thread
From: Andreas Herrmann @ 2009-04-03 16:07 UTC (permalink / raw)
To: Ingo Molnar
Cc: Mark Langsdorf, H. Peter Anvin, Ingo Molnar, Thomas Gleixner,
linux-kernel
Impact: fix build error
Commit 45ca863 (x86, cpu: conform L3 Cache Index Disable to Linux standard)
introduced following build error with CONFIG_K8_NB=n
...
arch/x86/mm/built-in.o:(.bss+0x5c0): multiple definition of `k8_northbridges'
arch/x86/kernel/built-in.o:(.bss+0x18c8): first defined here
...
The patch deactivates cache_disable functionality for kernels with
CONFIG_K8_NB=n.
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
---
arch/x86/include/asm/k8.h | 4 ----
arch/x86/kernel/cpu/intel_cacheinfo.c | 19 ++++++++++++++++---
2 files changed, 16 insertions(+), 7 deletions(-)
The real fix would be to enable cache index disable functionality also
for kernels with CONFIG_K8_NB=n but I don't have time to provide such
a patch today.
Ingo, please either apply this (compile tested) patch or revert Mark's
patch to avoid further blocking of tip/x86/cpu branch.
Thanks,
Andreas
diff --git a/arch/x86/include/asm/k8.h b/arch/x86/include/asm/k8.h
index 0d619c3..54c8cc5 100644
--- a/arch/x86/include/asm/k8.h
+++ b/arch/x86/include/asm/k8.h
@@ -6,11 +6,7 @@
extern struct pci_device_id k8_nb_ids[];
extern int early_is_k8_nb(u32 value);
-#ifdef CONFIG_K8_NB
extern struct pci_dev **k8_northbridges;
-#else
-struct pci_dev **k8_northbridges;
-#endif
extern int num_k8_northbridges;
extern int cache_k8_northbridges(void);
extern void k8_flush_garts(void);
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 6f4d2a3..63e4468 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -640,14 +640,23 @@ static ssize_t show_##file_name \
return sprintf (buf, "%lu\n", (unsigned long)this_leaf->object + val); \
}
+#ifndef CONFIG_K8_NB
+struct pci_dev **k8_northbridges = NULL;
+#endif
+
static ssize_t show_cache_disable(struct _cpuid4_info *this_leaf, char *buf,
unsigned int index)
{
int cpu = cpumask_first(to_cpumask(this_leaf->shared_cpu_map));
int node = cpu_to_node(cpu);
- struct pci_dev *dev = k8_northbridges[node];
+ struct pci_dev *dev;
unsigned int reg = 0;
+ if (!k8_northbridges)
+ return -EINVAL;
+
+ dev = k8_northbridges[node];
+
if (!this_leaf->can_disable)
return -EINVAL;
@@ -668,10 +677,15 @@ store_cache_disable(struct _cpuid4_info *this_leaf, const char *buf,
{
int cpu = cpumask_first(to_cpumask(this_leaf->shared_cpu_map));
int node = cpu_to_node(cpu);
- struct pci_dev *dev = k8_northbridges[node];
+ struct pci_dev *dev;
unsigned long val = 0;
unsigned int scrubber = 0;
+ if (!k8_northbridges)
+ return -EINVAL;
+
+ dev = k8_northbridges[node];
+
if (!this_leaf->can_disable)
return -EINVAL;
@@ -786,7 +800,6 @@ static struct _cache_attr cache_disable_0 = __ATTR(cache_disable_0, 0644,
static struct _cache_attr cache_disable_1 = __ATTR(cache_disable_1, 0644,
show_cache_disable_1, store_cache_disable_1);
-
static struct attribute * default_attrs[] = {
&type.attr,
&level.attr,
--
1.6.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] [PATCH] x86: cacheinfo: fix build error in cache_disable
2009-04-03 16:07 ` [PATCH] [PATCH] x86: cacheinfo: fix build error in cache_disable Andreas Herrmann
@ 2009-04-03 15:59 ` Ingo Molnar
0 siblings, 0 replies; 7+ messages in thread
From: Ingo Molnar @ 2009-04-03 15:59 UTC (permalink / raw)
To: Andreas Herrmann
Cc: Mark Langsdorf, H. Peter Anvin, Ingo Molnar, Thomas Gleixner,
linux-kernel
* Andreas Herrmann <andreas.herrmann3@amd.com> wrote:
> Impact: fix build error
>
> Commit 45ca863 (x86, cpu: conform L3 Cache Index Disable to Linux standard)
> introduced following build error with CONFIG_K8_NB=n
> ...
> arch/x86/mm/built-in.o:(.bss+0x5c0): multiple definition of `k8_northbridges'
> arch/x86/kernel/built-in.o:(.bss+0x18c8): first defined here
> ...
>
> The patch deactivates cache_disable functionality for kernels with
> CONFIG_K8_NB=n.
>
> Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
> ---
> arch/x86/include/asm/k8.h | 4 ----
> arch/x86/kernel/cpu/intel_cacheinfo.c | 19 ++++++++++++++++---
> 2 files changed, 16 insertions(+), 7 deletions(-)
>
> The real fix would be to enable cache index disable functionality also
> for kernels with CONFIG_K8_NB=n but I don't have time to provide such
> a patch today.
>
> Ingo, please either apply this (compile tested) patch or revert Mark's
> patch to avoid further blocking of tip/x86/cpu branch.
>
>
> Thanks,
>
> Andreas
>
>
> diff --git a/arch/x86/include/asm/k8.h b/arch/x86/include/asm/k8.h
> index 0d619c3..54c8cc5 100644
> --- a/arch/x86/include/asm/k8.h
> +++ b/arch/x86/include/asm/k8.h
> @@ -6,11 +6,7 @@
> extern struct pci_device_id k8_nb_ids[];
>
> extern int early_is_k8_nb(u32 value);
> -#ifdef CONFIG_K8_NB
> extern struct pci_dev **k8_northbridges;
> -#else
> -struct pci_dev **k8_northbridges;
> -#endif
hm, what's wrong with the node_to_k8_dev() suggestion i made?
That would be a pretty clean interface, private to k8.c - and it
would map a 'return NULL' inline function in the !CONFIG_K8_NB case.
Ingo
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions
2009-04-02 10:30 ` Ingo Molnar
2009-04-03 10:58 ` Andreas Herrmann
2009-04-03 16:07 ` [PATCH] [PATCH] x86: cacheinfo: fix build error in cache_disable Andreas Herrmann
@ 2009-04-09 13:47 ` Andreas Herrmann
2009-04-10 14:06 ` [tip:x86/cpu] " Andreas Herrmann
2 siblings, 1 reply; 7+ messages in thread
From: Andreas Herrmann @ 2009-04-09 13:47 UTC (permalink / raw)
To: Ingo Molnar
Cc: Mark Langsdorf, H. Peter Anvin, Ingo Molnar, Thomas Gleixner,
linux-kernel
See "CPUID Specification" (AMD Publication #: 25481, Rev. 2.28, April 2008)
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
---
arch/x86/kernel/cpu/intel_cacheinfo.c | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
This patch applies on top of the changes sent with
[PATCH 0/8] x86: cacheinfo: cache_disable fixes/cleanup
Please apply.
Thanks,
Andreas
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 47e4fb4..3329347 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -200,10 +200,17 @@ union l3_cache {
};
static const unsigned short __cpuinitconst assocs[] = {
- [1] = 1, [2] = 2, [4] = 4, [6] = 8,
- [8] = 16, [0xa] = 32, [0xb] = 48,
+ [1] = 1,
+ [2] = 2,
+ [4] = 4,
+ [6] = 8,
+ [8] = 16,
+ [0xa] = 32,
+ [0xb] = 48,
[0xc] = 64,
- [0xf] = 0xffff // ??
+ [0xd] = 96,
+ [0xe] = 128,
+ [0xf] = 0xffff // fully associative - no way to show this currently
};
static const unsigned char __cpuinitconst levels[] = { 1, 1, 2, 3 };
@@ -264,7 +271,8 @@ amd_cpuid4(int leaf, union _cpuid4_leaf_eax *eax,
eax->split.type = types[leaf];
eax->split.level = levels[leaf];
if (leaf == 3)
- eax->split.num_threads_sharing = current_cpu_data.x86_max_cores - 1;
+ eax->split.num_threads_sharing =
+ current_cpu_data.x86_max_cores - 1;
else
eax->split.num_threads_sharing = 0;
eax->split.num_cores_on_die = current_cpu_data.x86_max_cores - 1;
--
1.6.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [tip:x86/cpu] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions
2009-04-09 13:47 ` [PATCH v2] x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions Andreas Herrmann
@ 2009-04-10 14:06 ` Andreas Herrmann
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Herrmann @ 2009-04-10 14:06 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, hpa, mingo, andreas.herrmann3, mark.langsdorf, tglx,
mingo
Commit-ID: 6265ff19ca08df0d96c859ae5e4dc2d9ad07070e
Gitweb: http://git.kernel.org/tip/6265ff19ca08df0d96c859ae5e4dc2d9ad07070e
Author: Andreas Herrmann <andreas.herrmann3@amd.com>
AuthorDate: Thu, 9 Apr 2009 15:47:10 +0200
Committer: Ingo Molnar <mingo@elte.hu>
CommitDate: Fri, 10 Apr 2009 15:41:18 +0200
x86: cacheinfo: complete L2/L3 Cache and TLB associativity field definitions
See "CPUID Specification" (AMD Publication #: 25481, Rev. 2.28, April 2008)
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
Cc: Mark Langsdorf <mark.langsdorf@amd.com>
LKML-Reference: <20090409134710.GA8026@alberich.amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
arch/x86/kernel/cpu/intel_cacheinfo.c | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index d46a849..789efe2 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -200,10 +200,17 @@ union l3_cache {
};
static const unsigned short __cpuinitconst assocs[] = {
- [1] = 1, [2] = 2, [4] = 4, [6] = 8,
- [8] = 16, [0xa] = 32, [0xb] = 48,
+ [1] = 1,
+ [2] = 2,
+ [4] = 4,
+ [6] = 8,
+ [8] = 16,
+ [0xa] = 32,
+ [0xb] = 48,
[0xc] = 64,
- [0xf] = 0xffff // ??
+ [0xd] = 96,
+ [0xe] = 128,
+ [0xf] = 0xffff /* fully associative - no way to show this currently */
};
static const unsigned char __cpuinitconst levels[] = { 1, 1, 2, 3 };
@@ -264,7 +271,8 @@ amd_cpuid4(int leaf, union _cpuid4_leaf_eax *eax,
eax->split.type = types[leaf];
eax->split.level = levels[leaf];
if (leaf == 3)
- eax->split.num_threads_sharing = current_cpu_data.x86_max_cores - 1;
+ eax->split.num_threads_sharing =
+ current_cpu_data.x86_max_cores - 1;
else
eax->split.num_threads_sharing = 0;
eax->split.num_cores_on_die = current_cpu_data.x86_max_cores - 1;
^ permalink raw reply related [flat|nested] 7+ messages in thread