All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Laight <David.Laight@ACULAB.COM>
To: 'Palmer Dabbelt' <palmer@dabbelt.com>, Anup Patel <Anup.Patel@wdc.com>
Cc: "guoren@kernel.org" <guoren@kernel.org>,
	"anup@brainfault.org" <anup@brainfault.org>,
	"drew@beagleboard.org" <drew@beagleboard.org>,
	Christoph Hellwig <hch@lst.de>,
	"wefu@redhat.com" <wefu@redhat.com>,
	"lazyparser@gmail.com" <lazyparser@gmail.com>,
	"linux-riscv@lists.infradead.org"
	<linux-riscv@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>,
	"linux-sunxi@lists.linux.dev" <linux-sunxi@lists.linux.dev>,
	"guoren@linux.alibaba.com" <guoren@linux.alibaba.com>,
	Paul Walmsley <paul.walmsley@sifive.com>
Subject: RE: [PATCH RFC 0/3] riscv: Add DMA_COHERENT support
Date: Fri, 4 Jun 2021 09:02:29 +0000	[thread overview]
Message-ID: <f3d84841a80e4244887939624f6d3c10@AcuMS.aculab.com> (raw)
In-Reply-To: <mhng-3875d1bc-74dd-4dc8-b71d-18a8f004039a@palmerdabbelt-glaptop>

From: Palmer Dabbelt
> Sent: 03 June 2021 16:39
...
> An example here would be the errata: every system has errata of some
> sort, so if we start flipping off various vendor's errata Kconfigs
> you'll end up with kernels that only function properly on some systems.
> That's fine with me, as long as it's possible to turn on all vendor's
> errata Kconfigs at the same time and the resulting kernel functions
> correctly on all systems.

ISTM that if you can (easily) detect the errata then the detection
should be left it - but the kernel fail to boot if the system
needs the errata fixed.

The same would be needed for DMA in systems with non-coherent memory.

Only a hardware engineer would build a system with non-coherent memory
and without the ability to do uncached accesses and flush/invalidate
small sections of cache.

Mind you we did get a dual-cpu system that didn't have cache-coherency
between the cpus! That was singularly useless.

	David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)

WARNING: multiple messages have this Message-ID (diff)
From: David Laight <David.Laight@ACULAB.COM>
To: 'Palmer Dabbelt' <palmer@dabbelt.com>, Anup Patel <Anup.Patel@wdc.com>
Cc: "guoren@kernel.org" <guoren@kernel.org>,
	"anup@brainfault.org" <anup@brainfault.org>,
	"drew@beagleboard.org" <drew@beagleboard.org>,
	Christoph Hellwig <hch@lst.de>,
	"wefu@redhat.com" <wefu@redhat.com>,
	"lazyparser@gmail.com" <lazyparser@gmail.com>,
	"linux-riscv@lists.infradead.org"
	<linux-riscv@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>,
	"linux-sunxi@lists.linux.dev" <linux-sunxi@lists.linux.dev>,
	"guoren@linux.alibaba.com" <guoren@linux.alibaba.com>,
	Paul Walmsley <paul.walmsley@sifive.com>
Subject: RE: [PATCH RFC 0/3] riscv: Add DMA_COHERENT support
Date: Fri, 4 Jun 2021 09:02:29 +0000	[thread overview]
Message-ID: <f3d84841a80e4244887939624f6d3c10@AcuMS.aculab.com> (raw)
In-Reply-To: <mhng-3875d1bc-74dd-4dc8-b71d-18a8f004039a@palmerdabbelt-glaptop>

From: Palmer Dabbelt
> Sent: 03 June 2021 16:39
...
> An example here would be the errata: every system has errata of some
> sort, so if we start flipping off various vendor's errata Kconfigs
> you'll end up with kernels that only function properly on some systems.
> That's fine with me, as long as it's possible to turn on all vendor's
> errata Kconfigs at the same time and the resulting kernel functions
> correctly on all systems.

ISTM that if you can (easily) detect the errata then the detection
should be left it - but the kernel fail to boot if the system
needs the errata fixed.

The same would be needed for DMA in systems with non-coherent memory.

Only a hardware engineer would build a system with non-coherent memory
and without the ability to do uncached accesses and flush/invalidate
small sections of cache.

Mind you we did get a dual-cpu system that didn't have cache-coherency
between the cpus! That was singularly useless.

	David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2021-06-04  9:02 UTC|newest]

Thread overview: 124+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-19  5:04 [PATCH RFC 0/3] riscv: Add DMA_COHERENT support guoren
2021-05-19  5:04 ` guoren
2021-05-19  5:04 ` [PATCH RFC 1/3] riscv: pgtable.h: Fixup _PAGE_CHG_MASK usage guoren
2021-05-19  5:04   ` guoren
2021-05-19  5:04 ` [PATCH RFC 2/3] riscv: Add DMA_COHERENT for custom PTE attributes guoren
2021-05-19  5:04   ` guoren
2021-05-19  5:04 ` [PATCH RFC 3/3] riscv: Add SYNC_DMA_FOR_CPU/DEVICE for DMA_COHERENT guoren
2021-05-19  5:04   ` guoren
2021-05-19  6:32   ` Guo Ren
2021-05-19  6:32     ` Guo Ren
2021-05-19  6:32     ` Guo Ren
2021-05-19  5:20 ` [PATCH RFC 0/3] riscv: Add DMA_COHERENT support Christoph Hellwig
2021-05-19  5:20   ` Christoph Hellwig
2021-05-19  5:48   ` Guo Ren
2021-05-19  5:48     ` Guo Ren
2021-05-19  5:48     ` Guo Ren
2021-05-19  5:55     ` Christoph Hellwig
2021-05-19  5:55       ` Christoph Hellwig
2021-05-19  6:09       ` Guo Ren
2021-05-19  6:09         ` Guo Ren
2021-05-19  6:09         ` Guo Ren
2021-05-19  6:44     ` Drew Fustini
2021-05-19  6:44       ` Drew Fustini
2021-05-19  6:53       ` Christoph Hellwig
2021-05-19  6:53         ` Christoph Hellwig
2021-05-20  1:45         ` Guo Ren
2021-05-20  1:45           ` Guo Ren
2021-05-20  1:45           ` Guo Ren
2021-05-20  5:48           ` Christoph Hellwig
2021-05-20  5:48             ` Christoph Hellwig
2021-06-06 18:14           ` Nick Kossifidis
2021-06-06 18:14             ` Nick Kossifidis
2021-06-07  0:04             ` Guo Ren
2021-06-07  0:04               ` Guo Ren
2021-06-07  2:16               ` Nick Kossifidis
2021-06-07  2:16                 ` Nick Kossifidis
2021-06-07  3:19                 ` Guo Ren
2021-06-07  3:19                   ` Guo Ren
2021-06-07  6:27                   ` Christoph Hellwig
2021-06-07  6:27                     ` Christoph Hellwig
2021-06-07  6:41                     ` Guo Ren
2021-06-07  6:41                       ` Guo Ren
2021-06-07  6:51                       ` Christoph Hellwig
2021-06-07  6:51                         ` Christoph Hellwig
2021-06-07  7:46                         ` Guo Ren
2021-06-07  7:46                           ` Guo Ren
2021-06-08 15:00                     ` David Laight
2021-06-08 15:00                       ` David Laight
2021-06-08 15:32                       ` 'Christoph Hellwig'
2021-06-08 15:32                         ` 'Christoph Hellwig'
2021-06-08 16:11                         ` David Laight
2021-06-08 16:11                           ` David Laight
2021-06-07  8:35                   ` Nick Kossifidis
2021-06-07  8:35                     ` Nick Kossifidis
2021-06-09  3:28             ` Guo Ren
2021-06-09  3:28               ` Guo Ren
2021-06-09  6:05               ` Jisheng Zhang
2021-06-09  6:05                 ` Jisheng Zhang
2021-06-09  9:45               ` Nick Kossifidis
2021-06-09  9:45                 ` Nick Kossifidis
2021-06-09 12:43                 ` Guo Ren
2021-06-09 12:43                   ` Guo Ren
2021-05-19  6:05   ` Guo Ren
2021-05-19  6:05     ` Guo Ren
2021-05-19  6:05     ` Guo Ren
2021-05-19  6:06     ` Christoph Hellwig
2021-05-19  6:06       ` Christoph Hellwig
2021-05-19  6:11       ` Guo Ren
2021-05-19  6:11         ` Guo Ren
2021-05-19  6:11         ` Guo Ren
2021-05-19  6:54       ` Drew Fustini
2021-05-19  6:54         ` Drew Fustini
2021-05-19  6:56         ` Christoph Hellwig
2021-05-19  6:56           ` Christoph Hellwig
2021-05-19  7:14         ` Anup Patel
2021-05-19  7:14           ` Anup Patel
2021-05-19  8:25           ` Damien Le Moal
2021-05-19  8:25             ` Damien Le Moal
2021-05-20  1:47           ` Guo Ren
2021-05-20  1:47             ` Guo Ren
2021-05-20  1:59             ` Guo Ren
2021-05-20  1:59               ` Guo Ren
2021-05-22  0:36           ` Guo Ren
2021-05-22  0:36             ` Guo Ren
2021-05-30  0:30             ` Palmer Dabbelt
2021-05-30  0:30               ` Palmer Dabbelt
2021-06-03  4:13               ` Palmer Dabbelt
2021-06-03  4:13                 ` Palmer Dabbelt
2021-06-03  6:00                 ` Anup Patel
2021-06-03  6:00                   ` Anup Patel
2021-06-03 15:39                   ` Palmer Dabbelt
2021-06-03 15:39                     ` Palmer Dabbelt
2021-06-04  9:02                     ` David Laight [this message]
2021-06-04  9:02                       ` David Laight
2021-06-04  9:53                     ` Arnd Bergmann
2021-06-04  9:53                       ` Arnd Bergmann
2021-06-04  9:53                       ` Arnd Bergmann
2021-06-04 14:47                       ` Guo Ren
2021-06-04 14:47                         ` Guo Ren
2021-06-04 16:12                         ` Palmer Dabbelt
2021-06-04 16:12                           ` Palmer Dabbelt
2021-06-04 21:26                           ` Arnd Bergmann
2021-06-04 21:26                             ` Arnd Bergmann
2021-06-04 21:26                             ` Arnd Bergmann
2021-06-04 22:10                             ` Palmer Dabbelt
2021-06-04 22:10                               ` Palmer Dabbelt
2021-06-08 12:26                           ` Guo Ren
2021-06-08 12:26                             ` Guo Ren
2021-06-06 17:11                   ` Guo Ren
2021-06-06 17:11                     ` Guo Ren
2021-06-06 17:11                     ` Guo Ren
2021-06-07  3:38                     ` Anup Patel
2021-06-07  3:38                       ` Anup Patel
2021-06-07  4:22                       ` Guo Ren
2021-06-07  4:22                         ` Guo Ren
2021-06-07  4:22                         ` Guo Ren
2021-06-07  4:47                         ` Anup Patel
2021-06-07  4:47                           ` Anup Patel
2021-06-07  5:08                           ` Guo Ren
2021-06-07  5:08                             ` Guo Ren
2021-06-07  5:08                             ` Guo Ren
2021-06-07  5:13                           ` Guo Ren
2021-06-07  5:13                             ` Guo Ren
2021-06-07  5:13                             ` Guo Ren

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=f3d84841a80e4244887939624f6d3c10@AcuMS.aculab.com \
    --to=david.laight@aculab.com \
    --cc=Anup.Patel@wdc.com \
    --cc=anup@brainfault.org \
    --cc=drew@beagleboard.org \
    --cc=guoren@kernel.org \
    --cc=guoren@linux.alibaba.com \
    --cc=hch@lst.de \
    --cc=lazyparser@gmail.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.com \
    --cc=wefu@redhat.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.