From: Bjorn Helgaas <helgaas@kernel.org>
To: Logan Gunthorpe <logang@deltatee.com>
Cc: linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
Kelvin.Cao@microchip.com, Eric Pilmore <epilmore@gigaio.com>,
Doug Meyer <dmeyer@gigaio.com>
Subject: Re: [PATCH 00/12] Switchtec Fixes and Gen4 Support
Date: Wed, 8 Jan 2020 15:47:28 -0600 [thread overview]
Message-ID: <20200108214728.GA209478@google.com> (raw)
In-Reply-To: <20200106190337.2428-1-logang@deltatee.com>
On Mon, Jan 06, 2020 at 12:03:25PM -0700, Logan Gunthorpe wrote:
> Hi,
>
> Please find a bunch of patches for the switchtec driver collected over the
> last few months.
>
> The first 2 patches fix a couple of minor bugs. Patch 3 adds support for
> a new event that is available in specific firmware versions. Patches 4 and
> 5 are some code cleanup changes to simplify the logic. And the last 6
> patches implement support for the new Gen4 hardware.
>
> This patchset is based on v5.5-rc5 and a git branch is available here:
>
> https://github.com/sbates130272/linux-p2pmem switchtec-next
>
> Thanks,
>
> Logan
>
> --
>
> Kelvin Cao (3):
> PCI/switchtec: Add gen4 support in struct flash_info_regs
> PCI/switchtec: Add permission check for the GAS access MRPC commands
> PCI/switchtec: Introduce gen4 variant IDS in the device ID table
>
> Logan Gunthorpe (6):
> PCI/switchtec: Fix vep_vector_number ioread width
> PCI/switchtec: Add support for new events
> PCI/switchtec: Introduce Generation Variable
> PCI/switchtec: Separate out gen3 specific fields in the sys_info_regs
> structure
> PCI/switchtec: Add gen4 support in struct sys_info_regs
> PCI: Apply switchtec DMA aliasing quirk to GEN4 devices
>
> Wesley Sheng (3):
> PCI/switchtec: Use dma_set_mask_and_coherent()
> PCI/switchtec: Remove redundant valid PFF number count
> PCI/switchtec: Move check event id from mask_event() to
> switchtec_event_isr()
Current order is:
[PATCH 01/12] PCI/switchtec: Use dma_set_mask_and_coherent()
[PATCH 02/12] PCI/switchtec: Fix vep_vector_number ioread width
[PATCH 03/12] PCI/switchtec: Add support for new events
[PATCH 04/12] PCI/switchtec: Remove redundant valid PFF number count
[PATCH 05/12] PCI/switchtec: Move check event id from mask_event() to switchtec_event_isr()
[PATCH 06/12] PCI/switchtec: Introduce Generation Variable
[PATCH 07/12] PCI/switchtec: Separate out gen3 specific fields in the sys_info_regs structure
[PATCH 08/12] PCI/switchtec: Add gen4 support in struct sys_info_regs
[PATCH 09/12] PCI/switchtec: Add gen4 support in struct flash_info_regs
[PATCH 10/12] PCI/switchtec: Add permission check for the GAS access MRPC commands
10/12 looks lonely in the middle of the gen4 stuff, and it looks like
it's unrelated to gen3/gen4? Maybe it could be moved up after 05/12?
[PATCH 11/12] PCI/switchtec: Introduce gen4 variant IDS in the device ID table
[PATCH 12/12] PCI: Apply switchtec DMA aliasing quirk to GEN4 devices
I speculatively reordered the permission check patch and applied these
to my pci/switchtec branch for v5.6 (reverse order from "git log"):
b96abab6314f ("PCI/switchtec: Add permission check for the GAS access MRPC commands")
5f23367bd4df ("PCI/switchtec: Move check event ID from mask_event() to switchtec_event_isr()")
6722d609bc82 ("PCI/switchtec: Remove redundant valid PFF number count")
3f3a521ecc81 ("PCI/switchtec: Add support for intercom notify and UEC Port")
9375646b4cf0 ("PCI/switchtec: Fix vep_vector_number ioread width")
aa82130a22f7 ("PCI/switchtec: Use dma_set_mask_and_coherent()")
If you rework any of the subsequent ones, you can just post those
without reposting these first six.
Bjorn
next prev parent reply other threads:[~2020-01-08 21:47 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-06 19:03 [PATCH 00/12] Switchtec Fixes and Gen4 Support Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 01/12] PCI/switchtec: Use dma_set_mask_and_coherent() Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 02/12] PCI/switchtec: Fix vep_vector_number ioread width Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 03/12] PCI/switchtec: Add support for new events Logan Gunthorpe
2020-01-08 21:33 ` Bjorn Helgaas
2020-01-08 21:47 ` Logan Gunthorpe
2020-01-14 2:07 ` Kelvin.Cao
2020-01-14 18:21 ` Logan Gunthorpe
2020-01-14 19:07 ` Bjorn Helgaas
2020-01-06 19:03 ` [PATCH 04/12] PCI/switchtec: Remove redundant valid PFF number count Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 05/12] PCI/switchtec: Move check event id from mask_event() to switchtec_event_isr() Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 06/12] PCI/switchtec: Introduce Generation Variable Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 07/12] PCI/switchtec: Separate out gen3 specific fields in the sys_info_regs structure Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 08/12] PCI/switchtec: Add gen4 support in struct sys_info_regs Logan Gunthorpe
2020-01-08 21:21 ` Bjorn Helgaas
2020-01-06 19:03 ` [PATCH 09/12] PCI/switchtec: Add gen4 support in struct flash_info_regs Logan Gunthorpe
2020-01-08 21:23 ` Bjorn Helgaas
2020-01-08 21:34 ` Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 10/12] PCI/switchtec: Add permission check for the GAS access MRPC commands Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 11/12] PCI/switchtec: Introduce gen4 variant IDS in the device ID table Logan Gunthorpe
2020-01-06 19:03 ` [PATCH 12/12] PCI: Apply switchtec DMA aliasing quirk to GEN4 devices Logan Gunthorpe
2020-01-08 21:47 ` Bjorn Helgaas [this message]
2020-01-08 21:53 ` [PATCH 00/12] Switchtec Fixes and Gen4 Support Logan Gunthorpe
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=20200108214728.GA209478@google.com \
--to=helgaas@kernel.org \
--cc=Kelvin.Cao@microchip.com \
--cc=dmeyer@gigaio.com \
--cc=epilmore@gigaio.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=logang@deltatee.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).