From: Will Deacon <will.deacon@arm.com>
To: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Abhilash Kesavan <a.kesavan@samsung.com>,
Santosh Shilimkar <santosh.shilimkar@ti.com>,
Catalin Marinas <Catalin.Marinas@arm.com>,
"heiko@sntech.de" <heiko@sntech.de>,
"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>,
"shc_work@mail.ru" <shc_work@mail.ru>,
"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
"arnd@arndb.de" <arnd@arndb.de>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"grant.likely@linaro.org" <grant.likely@linaro.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"corbet@lwn.net" <corbet@lwn.net>,
"padma.v@samsung.com" <padma.v@samsung.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"shawn.guo@freescale.com" <shawn.guo@freescale.com>,
"bcousson@baylibre.com" <bcousson@baylibre.com>,
"tony@atomide.com" <tony@atomide.com>,
"kernel@pengutronix.de" <kernel@peng>
Subject: Re: [PATCH 2/2] misc: sram: switch to ioremap_wc from ioremap
Date: Thu, 11 Dec 2014 10:39:20 +0000 [thread overview]
Message-ID: <20141211103919.GA6067@arm.com> (raw)
In-Reply-To: <1418292513.3188.4.camel@pengutronix.de>
On Thu, Dec 11, 2014 at 10:08:33AM +0000, Philipp Zabel wrote:
> Hi Abhilash,
>
> Am Donnerstag, den 11.12.2014, 08:28 +0530 schrieb Abhilash Kesavan:
> > Currently, the SRAM allocator returns device memory via ioremap.
> > This causes issues on ARM64 when the internal SoC SRAM allocated by
> > the generic sram driver is used for audio playback. The destination
> > buffer address (which is ioremapped SRAM) is not 64-bit aligned for
> > certain streams (e.g. 44.1k sampling rate). In such cases we get
> > unhandled alignment faults. Use ioremap_wc in place of ioremap which
> > gives us normal non-cacheable memory instead of device memory.
>
> Could this break the omap_bus_sync() implementation in
> arch/arm/mach-omap2/omap4-common.c?
>
> void omap_bus_sync(void)
> {
> if (dram_sync && sram_sync) {
> writel_relaxed(readl_relaxed(dram_sync), dram_sync);
> writel_relaxed(readl_relaxed(sram_sync), sram_sync);
> isb();
> }
> }
>
> It is used in wmb() and omap_do_wfi() to drain interconnect write
> buffers on omap4/5. If sram_sync is mapped with write-combining, could
> the last write to sram_sync stay stuck in the write-combining buffer
> until after the function returns?
I think you have that issue anyway, since you can get an early write
response even if you use ioremap. Does the write to sram_sync have
side-effects that we need to wait for?
Will
WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will.deacon@arm.com>
To: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Abhilash Kesavan <a.kesavan@samsung.com>,
Santosh Shilimkar <santosh.shilimkar@ti.com>,
Catalin Marinas <Catalin.Marinas@arm.com>,
"heiko@sntech.de" <heiko@sntech.de>,
"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>,
"shc_work@mail.ru" <shc_work@mail.ru>,
"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
"arnd@arndb.de" <arnd@arndb.de>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"grant.likely@linaro.org" <grant.likely@linaro.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"corbet@lwn.net" <corbet@lwn.net>,
"padma.v@samsung.com" <padma.v@samsung.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"shawn.guo@freescale.com" <shawn.guo@freescale.com>,
"bcousson@baylibre.com" <bcousson@baylibre.com>,
"tony@atomide.com" <tony@atomide.com>,
"kernel@pengutronix.de" <kernel@pengutronix.de>,
"kgene@kernel.org" <kgene@kernel.org>,
"kesavan.abhilash@gmail.com" <kesavan.abhilash@gmail.com>,
Pawel Moll <Pawel.Moll@arm.com>
Subject: Re: [PATCH 2/2] misc: sram: switch to ioremap_wc from ioremap
Date: Thu, 11 Dec 2014 10:39:20 +0000 [thread overview]
Message-ID: <20141211103919.GA6067@arm.com> (raw)
In-Reply-To: <1418292513.3188.4.camel@pengutronix.de>
On Thu, Dec 11, 2014 at 10:08:33AM +0000, Philipp Zabel wrote:
> Hi Abhilash,
>
> Am Donnerstag, den 11.12.2014, 08:28 +0530 schrieb Abhilash Kesavan:
> > Currently, the SRAM allocator returns device memory via ioremap.
> > This causes issues on ARM64 when the internal SoC SRAM allocated by
> > the generic sram driver is used for audio playback. The destination
> > buffer address (which is ioremapped SRAM) is not 64-bit aligned for
> > certain streams (e.g. 44.1k sampling rate). In such cases we get
> > unhandled alignment faults. Use ioremap_wc in place of ioremap which
> > gives us normal non-cacheable memory instead of device memory.
>
> Could this break the omap_bus_sync() implementation in
> arch/arm/mach-omap2/omap4-common.c?
>
> void omap_bus_sync(void)
> {
> if (dram_sync && sram_sync) {
> writel_relaxed(readl_relaxed(dram_sync), dram_sync);
> writel_relaxed(readl_relaxed(sram_sync), sram_sync);
> isb();
> }
> }
>
> It is used in wmb() and omap_do_wfi() to drain interconnect write
> buffers on omap4/5. If sram_sync is mapped with write-combining, could
> the last write to sram_sync stay stuck in the write-combining buffer
> until after the function returns?
I think you have that issue anyway, since you can get an early write
response even if you use ioremap. Does the write to sram_sync have
side-effects that we need to wait for?
Will
next prev parent reply other threads:[~2014-12-11 10:39 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-11 2:58 [PATCH 1/2] lib: devres: add a helper function for ioremap_wc Abhilash Kesavan
2014-12-11 2:58 ` [PATCH 2/2] misc: sram: switch to ioremap_wc from ioremap Abhilash Kesavan
2014-12-11 10:08 ` Philipp Zabel
2014-12-11 10:08 ` Philipp Zabel
2014-12-11 10:39 ` Will Deacon [this message]
2014-12-11 10:39 ` Will Deacon
2014-12-11 11:40 ` Philipp Zabel
2014-12-11 11:40 ` Philipp Zabel
2014-12-11 14:58 ` Catalin Marinas
2014-12-11 14:58 ` Catalin Marinas
2014-12-17 12:35 ` Abhilash Kesavan
2014-12-17 12:35 ` Abhilash Kesavan
2015-01-05 18:18 ` Tony Lindgren
2015-01-05 18:18 ` Tony Lindgren
2015-01-06 14:27 ` Abhilash Kesavan
2015-01-06 14:27 ` Abhilash Kesavan
2015-01-06 16:54 ` Philipp Zabel
2015-01-06 16:54 ` Philipp Zabel
2015-01-06 17:27 ` Rob Herring
2015-01-06 17:27 ` Rob Herring
2015-01-08 15:30 ` Abhilash Kesavan
2015-01-08 15:30 ` Abhilash Kesavan
2015-01-08 20:56 ` Heiko Stübner
2015-01-08 20:56 ` Heiko Stübner
2015-01-10 3:30 ` [PATCH 1/2] lib: devres: add a helper function for ioremap_wc Abhilash Kesavan
2015-01-12 13:05 ` gregkh
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=20141211103919.GA6067@arm.com \
--to=will.deacon@arm.com \
--cc=Catalin.Marinas@arm.com \
--cc=Li.Xiubo@freescale.com \
--cc=a.kesavan@samsung.com \
--cc=alsa-devel@alsa-project.org \
--cc=arnd@arndb.de \
--cc=bcousson@baylibre.com \
--cc=corbet@lwn.net \
--cc=grant.likely@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=heiko@sntech.de \
--cc=kernel@peng \
--cc=linux-kernel@vger.kernel.org \
--cc=nicoleotsuka@gmail.com \
--cc=p.zabel@pengutronix.de \
--cc=padma.v@samsung.com \
--cc=robh+dt@kernel.org \
--cc=santosh.shilimkar@ti.com \
--cc=shawn.guo@freescale.com \
--cc=shc_work@mail.ru \
--cc=tony@atomide.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.