From: Brian Norris <computersforpeace@gmail.com>
To: Yao Yuan <yao.yuan@freescale.com>
Cc: Fabio Estevam <festevam@gmail.com>,
David Woodhouse <dwmw2@infradead.org>,
Li Leo <LeoLi@freescale.com>,
Scott Wood <scottwood@freescale.com>,
Xu Han <han.xu@freescale.com>,
"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
Mark Brown <broonie@kernel.org>
Subject: Re: [PATCH] mtd: spi-nor: fsl-quadspi: add big-endian support
Date: Wed, 11 Nov 2015 11:03:59 -0800 [thread overview]
Message-ID: <20151111190359.GE12143@google.com> (raw)
In-Reply-To: <BLUPR03MB134C1F7A783914F4F1ACCDF832F0@BLUPR03MB134.namprd03.prod.outlook.com>
A few corrections for the record:
On Fri, Oct 30, 2015 at 09:49:41AM +0000, Yao Yuan wrote:
> Hi Fabio Estevam,
>
> Thanks for your suggestion.
> We have an internal discussions for that.
>
> We think that:
> According to the initial commit message of regmap, it is targeting
> non-memory mapped buses. (regmap: Add generic non-memory mapped
> register access API) But in the imx2_wdt driver, it is used for
> memory-mapped register space. So it seems that using such a complex
> framework just to deal with endian is an over-kill.
It is definitely useful for non-MMIO cases, but it's certainly not
exclusive too it.
> when it is not necessary to enable the clock every time we access the register.
You don't have to give it a clock. Just pass a NULL clk_id.
> We don't think it is obvious to us how to use it for handling
> endianness, especially not the way imx2_wdt uses regmap.
> __regmap_init_mmio_clk() calls regmap_mmio_gen_context() which errors
> out if reg_format_endian is not REGMAP_ENDIAN_DEFAULT or
> REGMAP_ENDIAN_NATIVE, and elsewhere regmap-mmio.c It seems only
> little-endian accessors.
>
> Although it is possible to add the endianness support in the regmap_mmio driver, we don't see too much value in using it especially
It already has DT endianness configuration support. See __regmap_init(),
which reconfigures the endianness according to regmap_get_val_endian().
So you don't need to do anything but just try it... I exepct it'll work
just fine.
> So we think:
> static void qspi_writel(struct fsl_qspi *q, u32 val, void __iomem
> *addr) {
> if (q->big_endian)
> iowrite32be(val, addr);
> else
> iowrite32(val, addr);
> }
> This way is an easier, more effective solution to do the endian issue.
>
> How about your think?
I think there's at least one more advantage: you get pretty good
tracing support for free. For debugging, for example, you can turn on
regmap tracing to see all the register reads and writes done in your
driver, all within the nice tracefs event infrastructure. I'm sure there
are other advantages too, but not all are applicable here.
Anyway, I do agree on the complexity argument. It's not actually that
complex to use (the imx2_wdt.c example really does show you everything
you need to know), it is a bit more complex to sort through all its
features and understand exactly what it's doing. But I'm confident it
has everything you need.
So, make your choice. I just wanted to educate on several points, so
that your decision is not just driven by lack of correct information.
For more information, a quick google search shows a few links, but no
official docs:
http://elinux.org/images/a/a3/Regmap-_The_Power_of_Subsystems_and_Abstractions.pdf
https://lwn.net/Articles/451789/
Brian
> Best Regards,
> Yuan Yao
>
> On Sat, Oct 24, 2015 at 11:47 PM, Fabio Estevam <festevam@gmail.com> wrote:
> > On Fri, Oct 23, 2015 at 5:53 AM, Yuan Yao <yao.yuan@freescale.com> wrote:
> >
> > > +static void qspi_writel(struct fsl_qspi *q, u32 val, void __iomem
> > > +*addr) {
> > > + if (q->big_endian)
> > > + iowrite32be(val, addr);
> > > + else
> > > + iowrite32(val, addr);
> > > +}
> >
> > I suggest you to implement regmap support for this driver instead.
> >
> > Take a look at drivers/watchdog/imx2_wdt.c for a reference.
> >
> > Then you only need to pass 'big-endian' as a property for the qspi in the .dtsi
> > file and regmap core will take care of endianness.
next prev parent reply other threads:[~2015-11-11 19:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-23 7:53 [PATCH] mtd: spi-nor: fsl-quadspi: add big-endian support Yuan Yao
2015-10-23 17:00 ` Brian Norris
2015-10-24 15:47 ` Fabio Estevam
2015-10-30 9:49 ` Yao Yuan
2015-11-11 17:51 ` Han Xu
2015-11-11 18:48 ` Scott Wood
2015-11-11 19:10 ` Brian Norris
2015-11-12 10:07 ` Yao Yuan
2015-11-11 19:03 ` Brian Norris [this message]
2015-11-16 4:08 ` Yao Yuan
2015-11-16 4:21 ` Brian Norris
2015-11-16 9:14 ` Yao Yuan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151111190359.GE12143@google.com \
--to=computersforpeace@gmail.com \
--cc=LeoLi@freescale.com \
--cc=broonie@kernel.org \
--cc=dwmw2@infradead.org \
--cc=festevam@gmail.com \
--cc=han.xu@freescale.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=scottwood@freescale.com \
--cc=yao.yuan@freescale.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).