Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1585061

Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement ARCH_HAS_FORCE_CACHE

Path csiph.com!feeder.erje.net!2.eu.feeder.erje.net!news2.arglkargh.de!news.mixmin.net!aioe.org!bofh.it!news.nic.it!robomod
From Chen Feng <puck.chen@hisilicon.com>
Newsgroups linux.kernel
Subject Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement ARCH_HAS_FORCE_CACHE
Date Tue, 21 Feb 2017 07:20:01 +0100
Message-ID <tdbXP-78b-7@gated-at.bofh.it> (permalink)
References <sgH7j-FR-9@gated-at.bofh.it> <sgH7k-FR-37@gated-at.bofh.it> <sgS2J-8jW-17@gated-at.bofh.it> <sgXvs-3zH-11@gated-at.bofh.it> <sgXF8-3Dr-25@gated-at.bofh.it> <sh0Wl-5Ew-1@gated-at.bofh.it>
X-Greylist delayed 415 seconds by postgrey-1.27 at vger.kernel.org; Tue, 21 Feb 2017 01:14:39 EST
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1
MIME-Version 1.0
Content-Type text/plain; charset="utf-8"
Content-Transfer-Encoding 7bit
X-Originating-IP [10.142.193.64]
X-Cfilter-Loop Reflected
X-Mirapoint-Virus-Rapid-Raw score=unknown(0), refid=str=0001.0A020206.58ABD8C9.02AF,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32
X-Mirapoint-Loop-ID f0cab7c1cbe13d9bf3e2362347b39352
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 67
Organization linux.* mail to news gateway
X-Original-Cc <devel@driverdev.osuosl.org>, Jon Medhurst <tixy@linaro.org>, "Android Kernel Team" <kernel-team@android.com>, <linux-kernel@vger.kernel.org>, Arnd Bergmann <arnd@arndb.de>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Rohit kumar <rohit.kr@samsung.com>, Arve Hjønnevåg <arve@android.com>, Russell King <linux@armlinux.org.uk>, <linaro-mm-sig@lists.linaro.org>, Riley Andrews <riandrews@android.com>, John Stultz <john.stultz@linaro.org>, Eun Taik Lee <eun.taik.lee@samsung.com>, Catalin Marinas <catalin.marinas@arm.com>, "Liviu Dudau" <Liviu.Dudau@arm.com>, Jeremy Gebben <jgebben@codeaurora.org>, <linux-arm-kernel@lists.infradead.org>, Dan Zhao <dan.zhao@hisilicon.com>
X-Original-Date Tue, 21 Feb 2017 14:05:44 +0800
X-Original-Message-ID <58ABD8B8.6050204@hisilicon.com>
X-Original-References <1473715978-11633-1-git-send-email-labbott@redhat.com> <1473715978-11633-4-git-send-email-labbott@redhat.com> <20160913091946.GB7467@arm.com> <27805ccf-1f2d-81ea-044e-b21207be8e7f@redhat.com> <20160913151325.GF17731@arm.com> <b4a92c52-cbe8-9009-43bf-4c7b49e31916@redhat.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1585061

Show key headers only | View raw


Hi Laura,

When we enable kernel v4.4 or newer version on our platform, we meet the issue
of flushing cache without reference device. It seems that this patch set is
a solution. I'm curious the progress of the discussion. Do you have any plan
to fix it in v4.4 and newer kernel verison?

On 2016/9/14 2:41, Laura Abbott wrote:
> On 09/13/2016 08:14 AM, Will Deacon wrote:
>> On Tue, Sep 13, 2016 at 08:02:20AM -0700, Laura Abbott wrote:
>>> On 09/13/2016 02:19 AM, Will Deacon wrote:
>>>> On Mon, Sep 12, 2016 at 02:32:56PM -0700, Laura Abbott wrote:
>>>>>
>>>>> arm64 may need to guarantee the caches are synced. Implement versions of
>>>>> the kernel_force_cache API to allow this.
>>>>>
>>>>> Signed-off-by: Laura Abbott <labbott@redhat.com>
>>>>> ---
>>>>> v3: Switch to calling cache operations directly instead of relying on
>>>>> DMA mapping.
>>>>> ---
>>>>> arch/arm64/include/asm/cacheflush.h |  8 ++++++++
>>>>> arch/arm64/mm/cache.S               | 24 ++++++++++++++++++++----
>>>>> arch/arm64/mm/flush.c               | 11 +++++++++++
>>>>> 3 files changed, 39 insertions(+), 4 deletions(-)
>>>>
>>>> I'm really hesitant to expose these cache routines as an API solely to
>>>> support a driver sitting in staging/. I appreciate that there's a chicken
>>>> and egg problem here, but we *really* don't want people using these routines
>>>> in preference to the DMA API, and I fear that we'll simply grow a bunch
>>>> more users of these things if we promote it as an API like you're proposing.
>>>>
>>>> Can the code not be contained under staging/, as part of ion?
>>>>
>>>
>>> I proposed that in V1 and it was suggested I make it a proper API
>>>
>>> http://www.mail-archive.com/driverdev-devel@linuxdriverproject.org/msg47654.html
>>> http://www.mail-archive.com/driverdev-devel@linuxdriverproject.org/msg47672.html
>>
>> :/ then I guess we're in disagreement. If ion really needs this stuff
>> (which I don't fully grok), perhaps we should be exposing something at
>> a higher level from the architecture, so it really can't be used for
>> anything other than ion.
> 
> I talked/complained about this at a past plumbers. The gist is that Ion
> ends up acting as a fake DMA layer for clients. It doesn't match nicely
> because clients can allocate both coherent and non-coherent memory.
> Trying to use dma_map doesn't work because a) a device for coherency isn't
> known at allocation time b) it kills performance. Part of the motivation
> for taking this approach is to avoid the need to rework the existing
> Android userspace and keep the existing behavior, as terrible as it
> is. Having Ion out of staging and not actually usable isn't helpful.
> 
> I'll give this all some more thought and hopefully have one or two more
> proposals before Connect/Plumbers.
> 
>>
>> Will
>>
> 
> Thanks,
> Laura
> _______________________________________________
> Linaro-mm-sig mailing list
> Linaro-mm-sig@lists.linaro.org
> https://lists.linaro.org/mailman/listinfo/linaro-mm-sig

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement  ARCH_HAS_FORCE_CACHE Chen Feng <puck.chen@hisilicon.com> - 2017-02-21 07:20 +0100
  Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement  ARCH_HAS_FORCE_CACHE Laura Abbott <labbott@redhat.com> - 2017-02-21 20:30 +0100
    Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement  ARCH_HAS_FORCE_CACHE Chen Feng <puck.chen@hisilicon.com> - 2017-02-23 02:10 +0100
      Re: [Linaro-mm-sig] [RFCv3][PATCH 3/5] arm64: Implement  ARCH_HAS_FORCE_CACHE Laura Abbott <labbott@redhat.com> - 2017-02-23 17:10 +0100

csiph-web