From: Han Xu <han.xu@freescale.com>
To: Yuan Yao-B46683 <yao.yuan@freescale.com>
Cc: Fabio Estevam <festevam@gmail.com>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Li Yang-Leo-R58472 <LeoLi@freescale.com>,
Wood Scott-B07421 <scottwood@freescale.com>,
"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mtd: spi-nor: fsl-quadspi: add big-endian support
Date: Wed, 11 Nov 2015 11:51:13 -0600 [thread overview]
Message-ID: <20151111175112.GA30612@chopperman.am.freescale.net> (raw)
In-Reply-To: <BLUPR03MB134C1F7A783914F4F1ACCDF832F0@BLUPR03MB134.namprd03.prod.outlook.com>
On Fri, Oct 30, 2015 at 04:49:41AM -0500, Yuan Yao-B46683 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.
>
> when it is not necessary to enable the clock every time we access the register.
> 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
>
> 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 the implement is fine, but I prefer to use quirk rather than
read from dts? Please also rebase the patch to latest l2-mtd code.
>
> 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.
--
Best Regards,
Han "Allen" Xu
next prev parent reply other threads:[~2015-11-11 18:03 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 [this message]
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
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=20151111175112.GA30612@chopperman.am.freescale.net \
--to=han.xu@freescale.com \
--cc=LeoLi@freescale.com \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=festevam@gmail.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).