* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
@ 2011-08-12 9:45 Srinivas KANDAGATLA
2011-08-12 10:20 ` Will Deacon
0 siblings, 1 reply; 9+ messages in thread
From: Srinivas KANDAGATLA @ 2011-08-12 9:45 UTC (permalink / raw)
To: linux-arm-kernel
From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
bits.
The Auxiliary Control Register for L2C-210, L2C-310 and PL310 has 3bits
[19:17] for Way size, however the existing code only uses 2 bits to
get this value. This results in incorrect cachesize calculations.
I should say this bug does not result in issue but, its just prints
incorrect values.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
---
Hi All,
I found an bug in L2 Cache size calculation in cache-l2x0 code.
According to ARM TRM for L2C-210, L2C-310 and PL310, the Auxiliary
Control Register has 3bits [19:17] allocated for Way size,however
the existing code only uses 2 bits to get this value from Aux
control register. This results in incorrect cache size calculations.
thanks,
srini
arch/arm/include/asm/hardware/cache-l2x0.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/include/asm/hardware/cache-l2x0.h b/arch/arm/include/asm/hardware/cache-l2x0.h
index 16bd480..bfa706f 100644
--- a/arch/arm/include/asm/hardware/cache-l2x0.h
+++ b/arch/arm/include/asm/hardware/cache-l2x0.h
@@ -64,7 +64,7 @@
#define L2X0_AUX_CTRL_MASK 0xc0000fff
#define L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT 16
#define L2X0_AUX_CTRL_WAY_SIZE_SHIFT 17
-#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x3 << 17)
+#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x7 << 17)
#define L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT 22
#define L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT 26
#define L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT 27
--
1.6.3.3
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
2011-08-12 9:45 [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation Srinivas KANDAGATLA
@ 2011-08-12 10:20 ` Will Deacon
2011-08-13 8:41 ` Russell King - ARM Linux
0 siblings, 1 reply; 9+ messages in thread
From: Will Deacon @ 2011-08-12 10:20 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Aug 12, 2011 at 10:45:27AM +0100, Srinivas KANDAGATLA wrote:
> From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
>
> This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
> PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
> bits.
>
> The Auxiliary Control Register for L2C-210, L2C-310 and PL310 has 3bits
> [19:17] for Way size, however the existing code only uses 2 bits to
> get this value. This results in incorrect cachesize calculations.
>
> I should say this bug does not result in issue but, its just prints
> incorrect values.
It also results in performing operations on the whole cache when we
erroneously decide that the range is big enough (due to l2x0_size being
too small).
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Please can you CC stable on this too?
Will
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
2011-08-12 10:20 ` Will Deacon
@ 2011-08-13 8:41 ` Russell King - ARM Linux
2011-08-14 20:48 ` Will Deacon
0 siblings, 1 reply; 9+ messages in thread
From: Russell King - ARM Linux @ 2011-08-13 8:41 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Aug 12, 2011 at 11:20:20AM +0100, Will Deacon wrote:
> On Fri, Aug 12, 2011 at 10:45:27AM +0100, Srinivas KANDAGATLA wrote:
> > From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
> >
> > This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
> > PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
> > bits.
> >
> > The Auxiliary Control Register for L2C-210, L2C-310 and PL310 has 3bits
> > [19:17] for Way size, however the existing code only uses 2 bits to
> > get this value. This results in incorrect cachesize calculations.
> >
> > I should say this bug does not result in issue but, its just prints
> > incorrect values.
>
> It also results in performing operations on the whole cache when we
> erroneously decide that the range is big enough (due to l2x0_size being
> too small).
>
> > Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
>
> Acked-by: Will Deacon <will.deacon@arm.com>
>
> Please can you CC stable on this too?
It's probably better to ask people to add a Cc: line to the _attributations_
rather than telling them to CC the stable tree with their email, and then
get a whinge from the stable maintainers about how that's not how to submit
patches for stable trees.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
2011-08-13 8:41 ` Russell King - ARM Linux
@ 2011-08-14 20:48 ` Will Deacon
2011-08-15 7:49 ` Srinivas KANDAGATLA
0 siblings, 1 reply; 9+ messages in thread
From: Will Deacon @ 2011-08-14 20:48 UTC (permalink / raw)
To: linux-arm-kernel
Hi Russell,
On Sat, Aug 13, 2011 at 09:41:29AM +0100, Russell King - ARM Linux wrote:
> On Fri, Aug 12, 2011 at 11:20:20AM +0100, Will Deacon wrote:
> > On Fri, Aug 12, 2011 at 10:45:27AM +0100, Srinivas KANDAGATLA wrote:
> > > From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
> > >
> > > This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
> > > PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
> > > bits.
[...]
> > Please can you CC stable on this too?
>
> It's probably better to ask people to add a Cc: line to the _attributations_
> rather than telling them to CC the stable tree with their email, and then
> get a whinge from the stable maintainers about how that's not how to submit
> patches for stable trees.
Of course, that's what I intended but unfortunately my choice of words
was ambiguous.
Srinivas: can you add the CC stable line to your patch please and put it
into Russell's patch system?
Thanks,
Will
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
2011-08-14 20:48 ` Will Deacon
@ 2011-08-15 7:49 ` Srinivas KANDAGATLA
2011-08-15 8:58 ` Will Deacon
0 siblings, 1 reply; 9+ messages in thread
From: Srinivas KANDAGATLA @ 2011-08-15 7:49 UTC (permalink / raw)
To: linux-arm-kernel
Resending the patch with Acked by and CC lines in patch...
Thanks,
--srini
Will Deacon wrote:
> Hi Russell,
>
> On Sat, Aug 13, 2011 at 09:41:29AM +0100, Russell King - ARM Linux wrote:
>
>> On Fri, Aug 12, 2011 at 11:20:20AM +0100, Will Deacon wrote:
>>
>>> On Fri, Aug 12, 2011 at 10:45:27AM +0100, Srinivas KANDAGATLA wrote:
>>>
>>>> From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
>>>>
>>>> This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
>>>> PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
>>>> bits.
>>>>
>
> [...]
>
>
>>> Please can you CC stable on this too?
>>>
>> It's probably better to ask people to add a Cc: line to the _attributations_
>> rather than telling them to CC the stable tree with their email, and then
>> get a whinge from the stable maintainers about how that's not how to submit
>> patches for stable trees.
>>
>
> Of course, that's what I intended but unfortunately my choice of words
> was ambiguous.
>
> Srinivas: can you add the CC stable line to your patch please and put it
> into Russell's patch system?
>
> Thanks,
>
> Will
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
@ 2011-08-12 11:22 Srinivas KANDAGATLA
0 siblings, 0 replies; 9+ messages in thread
From: Srinivas KANDAGATLA @ 2011-08-12 11:22 UTC (permalink / raw)
To: linux-arm-kernel
From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
bits.
The Auxiliary Control Register for L2C-210, L2C-310 and PL310 has 3bits
[19:17] for Way size, however the existing code only uses 2 bits to
get this value. This results in incorrect cachesize calculations.
It also results in performing operations on the whole cache when we
erroneously decide that the range is big enough (due to l2x0_size being
too small) and also prints incorrect cachesize.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Cc: stable at kernel.org
---
adding stable in CC..
Hi All,
I found an bug in L2 Cache size calculation in cache-l2x0 code.
According to ARM TRM for L2C-210, L2C-310 and PL310, the Auxiliary
Control Register has 3bits [19:17] allocated for Way size,however
the existing code only uses 2 bits to get this value from Aux
control register. This results in incorrect cache size calculations.
It also results in performing operations on the whole cache when we
erroneously decide that the range is big enough (due to l2x0_size being
too small).
thanks,
srini
arch/arm/include/asm/hardware/cache-l2x0.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/include/asm/hardware/cache-l2x0.h b/arch/arm/include/asm/hardware/cache-l2x0.h
index 16bd480..bfa706f 100644
--- a/arch/arm/include/asm/hardware/cache-l2x0.h
+++ b/arch/arm/include/asm/hardware/cache-l2x0.h
@@ -64,7 +64,7 @@
#define L2X0_AUX_CTRL_MASK 0xc0000fff
#define L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT 16
#define L2X0_AUX_CTRL_WAY_SIZE_SHIFT 17
-#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x3 << 17)
+#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x7 << 17)
#define L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT 22
#define L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT 26
#define L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT 27
--
1.6.3.3
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation.
@ 2011-08-12 9:21 Srinivas Kandagatla
0 siblings, 0 replies; 9+ messages in thread
From: Srinivas Kandagatla @ 2011-08-12 9:21 UTC (permalink / raw)
To: linux-arm-kernel
This patch fixes L2 Cache size calculations for L2C-210, L2C-310 and
PL310, by changing the L2X0_AUX_CTRL_WAY_SIZE_MASK from 2 bits to 3
bits.
The Auxiliary Control Register for L2C-210, L2C-310 and PL310 has 3bits
[19:17] for Way size, however the existing code only uses 2 bits to
get this value. This results in incorrect cachesize calculations.
It also results in performing operations on the whole cache when we
erroneously decide that the range is big enough (due to l2x0_size being
too small) and also prints incorrect cachesize.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Cc: stable at kernel.org
---
adding stable in CC..
Hi All,
I found an bug in L2 Cache size calculation in cache-l2x0 code.
According to ARM TRM for L2C-210, L2C-310 and PL310, the Auxiliary
Control Register has 3bits [19:17] allocated for Way size,however
the existing code only uses 2 bits to get this value from Aux
control register. This results in incorrect cache size calculations.
It also results in performing operations on the whole cache when we
erroneously decide that the range is big enough (due to l2x0_size being
too small).
thanks,
srini
arch/arm/include/asm/hardware/cache-l2x0.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/include/asm/hardware/cache-l2x0.h b/arch/arm/include/asm/hardware/cache-l2x0.h
index 16bd480..bfa706f 100644
--- a/arch/arm/include/asm/hardware/cache-l2x0.h
+++ b/arch/arm/include/asm/hardware/cache-l2x0.h
@@ -64,7 +64,7 @@
#define L2X0_AUX_CTRL_MASK 0xc0000fff
#define L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT 16
#define L2X0_AUX_CTRL_WAY_SIZE_SHIFT 17
-#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x3 << 17)
+#define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x7 << 17)
#define L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT 22
#define L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT 26
#define L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT 27
--
1.6.3.3
--------------070305060106060500050607--
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-08-15 10:12 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-12 9:45 [PATCH kernel-3.0] arm:cache-l2x0: Fix L2 Cache size calculation Srinivas KANDAGATLA
2011-08-12 10:20 ` Will Deacon
2011-08-13 8:41 ` Russell King - ARM Linux
2011-08-14 20:48 ` Will Deacon
2011-08-15 7:49 ` Srinivas KANDAGATLA
2011-08-15 8:58 ` Will Deacon
2011-08-15 10:12 ` Russell King - ARM Linux
-- strict thread matches above, loose matches on Subject: below --
2011-08-12 11:22 Srinivas KANDAGATLA
2011-08-12 9:21 Srinivas Kandagatla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).