alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Abhilash Kesavan <kesavan.abhilash@gmail.com>
Cc: "alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
	Pawel Moll <Pawel.Moll@arm.com>,
	"heiko@sntech.de" <heiko@sntech.de>,
	"shc_work@mail.ru" <shc_work@mail.ru>,
	"corbet@lwn.net" <corbet@lwn.net>,
	Catalin Marinas <catalin.marinas@arm.com>,
	"kgene@kernel.org" <kgene@kernel.org>,
	"padma.v@samsung.com" <padma.v@samsung.com>,
	Will Deacon <Will.Deacon@arm.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
	"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>,
	Santosh Shilimkar <santosh.shilimkar@ti.com>,
	"shawn.guo@freescale.com" <shawn.guo@freescale.com>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
	"grant.likely@linaro.org" <grant.likely@linaro.org>,
	"bcousson@baylibre.com" <bcousson@baylibre.com>kern
Subject: Re: [PATCH 2/2] misc: sram: switch to ioremap_wc from ioremap
Date: Mon, 5 Jan 2015 10:18:24 -0800	[thread overview]
Message-ID: <20150105181823.GG4081@atomide.com> (raw)
In-Reply-To: <CAM4voakdfiTecW8YH0znnyB-dTnX_fsrRcH2McABwdk3T9drkQ@mail.gmail.com>

* Abhilash Kesavan <kesavan.abhilash@gmail.com> [141217 04:37]:
> Hi,
> 
> On Thu, Dec 11, 2014 at 8:28 PM, Catalin Marinas
> <catalin.marinas@arm.com> wrote:
> > On Thu, Dec 11, 2014 at 11:40:46AM +0000, Philipp Zabel wrote:
> >> Hi Will,
> >>
> >> Am Donnerstag, den 11.12.2014, 10:39 +0000 schrieb Will Deacon:
> >> > 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?
> >>
> >> [Added Tony Lindgren and Santosh Shilimkar to Cc:]
> >> I don't know.
> >
> > In addition to Will's question, do you care about the access size?
> > ioremap() returns Device memory which is bufferable (early
> > acknowledgement) but it guarantees the access size. With write
> > combining, you may get a different access size than requested.
> 
> From the existing dts files, omap, imx, rockchip and exynos seem to be
> the only users of the sram allocator code. I have tested this on
> Exynos5420, Exynos5800 and Exynos7; there is no change in behavior
> seen on these boards. Tested-by for other SoCs would be appreciated.

Sorry for the delay, these seems to boot OK on omap4, so from that
point of view:

Tested-by: Tony Lindgren <tony@atomide.com>

  reply	other threads:[~2015-01-05 18:22 UTC|newest]

Thread overview: 15+ 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:39     ` Will Deacon
2014-12-11 11:40       ` Philipp Zabel
2014-12-11 14:58         ` Catalin Marinas
2014-12-17 12:35           ` Abhilash Kesavan
2015-01-05 18:18             ` Tony Lindgren [this message]
2015-01-06 14:27               ` Abhilash Kesavan
2015-01-06 16:54                 ` Philipp Zabel
2015-01-06 17:27                   ` Rob Herring
2015-01-08 15:30                     ` Abhilash Kesavan
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=20150105181823.GG4081@atomide.com \
    --to=tony@atomide.com \
    --cc=Li.Xiubo@freescale.com \
    --cc=Pawel.Moll@arm.com \
    --cc=Will.Deacon@arm.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=bcousson@baylibre.com \
    --cc=catalin.marinas@arm.com \
    --cc=corbet@lwn.net \
    --cc=grant.likely@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=heiko@sntech.de \
    --cc=kesavan.abhilash@gmail.com \
    --cc=kgene@kernel.org \
    --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 \
    /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).