[PATCH] ARM l2x0: check whether l2x0 already enabled
srinidhi kasagar
srinidhi.kasagar at stericsson.com
Mon Nov 23 19:35:08 EST 2009
On Tue, 2009-11-24 at 13:11 +0100, Surinder P Singh wrote:
> On Tue, Nov 24, 2009 at 3:47 AM, srinidhi kasagar
> <srinidhi.kasagar at stericsson.com> wrote:
> > From: srinidhi kasagar <srinidhi.kasagar at stericsson.com>
> > Date: Tue, 24 Nov 2009 13:59:20 +0530
> >
> > If running in non-secure mode, accessing
> > control and auxiliary registers of l2x0
> > will fault.
> >
> > Signed-off-by: srinidhi kasagar <srinidhi.kasagar at stericsson.com>
> > ---
> > arch/arm/mm/cache-l2x0.c | 24 +++++++++++++++---------
> > 1 files changed, 15 insertions(+), 9 deletions(-)
> >
> > diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c
> > index b480f1d..7c0d056 100644
> > --- a/arch/arm/mm/cache-l2x0.c
> > +++ b/arch/arm/mm/cache-l2x0.c
> > @@ -99,18 +99,24 @@ void __init l2x0_init(void __iomem *base, __u32 aux_val, __u32 aux_mask)
> >
> > l2x0_base = base;
> >
> > - /* disable L2X0 */
> > - writel(0, l2x0_base + L2X0_CTRL);
> > + /* check if l2x0 controller is already enabled.
> > + * if you are booting from non-secure mode
> > + * accessing the below registers will fault.
> > + */
> > + if (!(readl(l2x0_base + L2X0_CTRL) & 1)) {
>
> 2 points:
>
> 1. Since this code is also valid for devices based on pre-ARMv6, maybe
> making this code conditional for >=ARMv6 would be cleaner ?
rather it depends on l2 controller being used. L210 controllers
do not have such restrictions whereas l220/pl310 have such kind
of secure/non-secure restrictions. So would it be better to keep
condition based on l2 controller being used?
Srinidhi
More information about the linux-arm-kernel
mailing list