On Thu, May 2, 2019 at 7:07 PM Andrew F. Davis <afd@xxxxxx> wrote: > > On 5/2/19 6:34 AM, Yash Shah wrote: > > The driver currently supports only SiFive FU540-C000 platform. > > > > The initial version of L2 cache controller driver includes: > > - Initial configuration reporting at boot up. > > - Support for ECC related functionality. > > > > Signed-off-by: Yash Shah <yash.shah@xxxxxxxxxx> > > --- > > arch/riscv/mm/Makefile | 1 + > > arch/riscv/mm/sifive_l2_cache.c | 221 ++++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 222 insertions(+) > > create mode 100644 arch/riscv/mm/sifive_l2_cache.c > > > > diff --git a/arch/riscv/mm/Makefile b/arch/riscv/mm/Makefile > > index eb22ab4..1523ee5 100644 > > --- a/arch/riscv/mm/Makefile > > +++ b/arch/riscv/mm/Makefile > > @@ -3,3 +3,4 @@ obj-y += fault.o > > obj-y += extable.o > > obj-y += ioremap.o > > obj-y += cacheflush.o > > +obj-y += sifive_l2_cache.o > > diff --git a/arch/riscv/mm/sifive_l2_cache.c b/arch/riscv/mm/sifive_l2_cache.c > > new file mode 100644 > > index 0000000..923ab34 > > --- /dev/null > > +++ b/arch/riscv/mm/sifive_l2_cache.c > > @@ -0,0 +1,221 @@ > > +// SPDX-License-Identifier: GPL-2.0 > > +/* > > + * SiFive L2 cache controller Driver > > + * > > + * Copyright (C) 2018-2019 SiFive, Inc. > > + * > > + */ ... > > +static unsigned int l2_datfail_count(void) > > +{ > > + return readl(l2_base + SIFIVE_L2_DATECCFAIL_COUNT); > > +} > > Do you really need all these single line functions? Below in several > spots you use the readl directly, just do that everywhere. Ok. Will remove these single line functions. Thanks for your comments. - Yash > > Andrew >