* [PATCH v3 0/2] spi: dt-bindings: spi-controller: Slave mode fixes
@ 2020-03-06 8:50 Geert Uytterhoeven
2020-03-06 8:50 ` [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode Geert Uytterhoeven
` (2 more replies)
0 siblings, 3 replies; 155+ messages in thread
From: Geert Uytterhoeven @ 2020-03-06 8:50 UTC (permalink / raw)
To: Mark Brown, Rob Herring, Maxime Ripard
Cc: Yoshihiro Shimoda, linux-spi-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven
Hi Mark, Rob, Maxime,
This patch series contains two fixes for the SPI controller DT bindings
regarding SPI controllers configured for slave mode.
Changes compared to v2[1]:
- Make #address-cells mutually-exclusive with spi-slave,
Changes compared to v1[2]:
- Use "enum: [0, 1]" instead of min/max limit,
- use "- spi-slave" instead of "[ spi-slave ]".
- New fix for spi-[rt]x-bus-width.
Thanks!
[1] https://lore.kernel.org/linux-devicetree/20200303094522.23180-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org/
[2] https://lore.kernel.org/linux-devicetree/20200227130323.15327-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org/
Geert Uytterhoeven (2):
spi: dt-bindings: spi-controller: Fix #address-cells for slave mode
spi: dt-bindings: spi-controller: Fix spi-[rt]x-bus-width for slave
mode
.../devicetree/bindings/spi/spi-controller.yaml | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
--
2.17.1
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 155+ messages in thread
* [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode
2020-03-06 8:50 [PATCH v3 0/2] spi: dt-bindings: spi-controller: Slave mode fixes Geert Uytterhoeven
@ 2020-03-06 8:50 ` Geert Uytterhoeven
[not found] ` <20200306085038.8111-2-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2020-03-13 17:06 ` Applied "spi: dt-bindings: spi-controller: Fix #address-cells for slave mode" to the spi tree Mark Brown
[not found] ` <20200306085038.8111-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2020-03-13 17:20 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
2 siblings, 2 replies; 155+ messages in thread
From: Geert Uytterhoeven @ 2020-03-06 8:50 UTC (permalink / raw)
To: Mark Brown, Rob Herring, Maxime Ripard
Cc: Yoshihiro Shimoda, linux-spi, devicetree, linux-renesas-soc,
Geert Uytterhoeven
Currently, the DT bindings for an SPI controller specify that
"#address-cells" must be fixed to one. However, that applies to an SPI
controller in master mode only. When running in SPI slave mode,
"#address-cells" should not be specified.
Fix this making "#address-cells" mutually-exclusive with "spi-slave".
Fixes: 0a1b929356830257 ("spi: Add YAML schemas for the generic SPI options")
Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v3:
- Make #address-cells mutually-exclusive with spi-slave,
v2:
- Use "enum: [0, 1]" instead of min/max limit,
- use "- spi-slave" instead of "[ spi-slave ]".
---
Documentation/devicetree/bindings/spi/spi-controller.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/spi/spi-controller.yaml b/Documentation/devicetree/bindings/spi/spi-controller.yaml
index 1e0ca6ccf64bbd0a..0ebaf6677ac4f68d 100644
--- a/Documentation/devicetree/bindings/spi/spi-controller.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-controller.yaml
@@ -52,6 +52,12 @@ properties:
description:
The SPI controller acts as a slave, instead of a master.
+oneOf:
+ - required:
+ - "#address-cells"
+ - required:
+ - spi-slave
+
patternProperties:
"^slave$":
type: object
--
2.17.1
^ permalink raw reply related [flat|nested] 155+ messages in thread
* [PATCH v3 2/2] spi: dt-bindings: spi-controller: Fix spi-[rt]x-bus-width for slave mode
[not found] ` <20200306085038.8111-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2020-03-06 8:50 ` Geert Uytterhoeven
[not found] ` <20200306085038.8111-3-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
0 siblings, 1 reply; 155+ messages in thread
From: Geert Uytterhoeven @ 2020-03-06 8:50 UTC (permalink / raw)
To: Mark Brown, Rob Herring, Maxime Ripard
Cc: Yoshihiro Shimoda, linux-spi-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven
The descriptions for the spi-rx-bus-width and spi-tx-bus-width
properties refer to "MISO" and "MOSI", which are not explained in the
document. While these abbreviations are fairly common when talking
about SPI, and thus may not need an explanation, they are not entirely
correct in this context, as the SPI controller may be used in slave mode
instead of master mode.
Fix this by replacing them by "read transfers" resp. "write transfers",
like is done for the spi-rx-delay-us and spi-tx-delay-us properties.
Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
v3:
- No changes,
v2:
- New.
This issue was present in the .txt version of the bindings, too, so
technically it needs
Fixes: a8830cb19cfea04e ("spi: Document DT bindings for SPI controllers in slave mode")
but of course it won't apply to that version.
---
Documentation/devicetree/bindings/spi/spi-controller.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/spi/spi-controller.yaml b/Documentation/devicetree/bindings/spi/spi-controller.yaml
index 0ebaf6677ac4f68d..d8e5509a70816df5 100644
--- a/Documentation/devicetree/bindings/spi/spi-controller.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-controller.yaml
@@ -120,7 +120,7 @@ patternProperties:
- enum: [ 1, 2, 4, 8 ]
- default: 1
description:
- Bus width to the SPI bus used for MISO.
+ Bus width to the SPI bus used for read transfers.
spi-rx-delay-us:
description:
@@ -132,7 +132,7 @@ patternProperties:
- enum: [ 1, 2, 4, 8 ]
- default: 1
description:
- Bus width to the SPI bus used for MOSI.
+ Bus width to the SPI bus used for write transfers.
spi-tx-delay-us:
description:
--
2.17.1
^ permalink raw reply related [flat|nested] 155+ messages in thread
* Re: [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode
[not found] ` <20200306085038.8111-2-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2020-03-12 19:16 ` Rob Herring
0 siblings, 0 replies; 155+ messages in thread
From: Rob Herring @ 2020-03-12 19:16 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Mark Brown, Yoshihiro Shimoda, linux-spi-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven
On Fri, 6 Mar 2020 09:50:37 +0100, Geert Uytterhoeven wrote:
> Currently, the DT bindings for an SPI controller specify that
> "#address-cells" must be fixed to one. However, that applies to an SPI
> controller in master mode only. When running in SPI slave mode,
> "#address-cells" should not be specified.
>
> Fix this making "#address-cells" mutually-exclusive with "spi-slave".
>
> Fixes: 0a1b929356830257 ("spi: Add YAML schemas for the generic SPI options")
> Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
> Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
> ---
> v3:
> - Make #address-cells mutually-exclusive with spi-slave,
>
> v2:
> - Use "enum: [0, 1]" instead of min/max limit,
> - use "- spi-slave" instead of "[ spi-slave ]".
> ---
> Documentation/devicetree/bindings/spi/spi-controller.yaml | 6 ++++++
> 1 file changed, 6 insertions(+)
>
Reviewed-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
^ permalink raw reply [flat|nested] 155+ messages in thread
* Re: [PATCH v3 2/2] spi: dt-bindings: spi-controller: Fix spi-[rt]x-bus-width for slave mode
[not found] ` <20200306085038.8111-3-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2020-03-12 19:17 ` Rob Herring
0 siblings, 0 replies; 155+ messages in thread
From: Rob Herring @ 2020-03-12 19:17 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Mark Brown, Yoshihiro Shimoda, linux-spi-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven
On Fri, 6 Mar 2020 09:50:38 +0100, Geert Uytterhoeven wrote:
> The descriptions for the spi-rx-bus-width and spi-tx-bus-width
> properties refer to "MISO" and "MOSI", which are not explained in the
> document. While these abbreviations are fairly common when talking
> about SPI, and thus may not need an explanation, they are not entirely
> correct in this context, as the SPI controller may be used in slave mode
> instead of master mode.
>
> Fix this by replacing them by "read transfers" resp. "write transfers",
> like is done for the spi-rx-delay-us and spi-tx-delay-us properties.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
> ---
> v3:
> - No changes,
>
> v2:
> - New.
>
> This issue was present in the .txt version of the bindings, too, so
> technically it needs
> Fixes: a8830cb19cfea04e ("spi: Document DT bindings for SPI controllers in slave mode")
> but of course it won't apply to that version.
> ---
> Documentation/devicetree/bindings/spi/spi-controller.yaml | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
^ permalink raw reply [flat|nested] 155+ messages in thread
* Applied "spi: dt-bindings: spi-controller: Fix #address-cells for slave mode" to the spi tree
2020-03-06 8:50 ` [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode Geert Uytterhoeven
[not found] ` <20200306085038.8111-2-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2020-03-13 17:06 ` Mark Brown
1 sibling, 0 replies; 155+ messages in thread
From: Mark Brown @ 2020-03-13 17:06 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: devicetree, linux-renesas-soc, linux-spi, Mark Brown,
Maxime Ripard, Rob Herring, Yoshihiro Shimoda
The patch
spi: dt-bindings: spi-controller: Fix #address-cells for slave mode
has been applied to the spi tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From a079ff858cc0831f5bbad205016bfd88bf992bb1 Mon Sep 17 00:00:00 2001
From: Geert Uytterhoeven <geert+renesas@glider.be>
Date: Fri, 6 Mar 2020 09:50:37 +0100
Subject: [PATCH] spi: dt-bindings: spi-controller: Fix #address-cells for
slave mode
Currently, the DT bindings for an SPI controller specify that
"#address-cells" must be fixed to one. However, that applies to an SPI
controller in master mode only. When running in SPI slave mode,
"#address-cells" should not be specified.
Fix this making "#address-cells" mutually-exclusive with "spi-slave".
Fixes: 0a1b929356830257 ("spi: Add YAML schemas for the generic SPI options")
Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20200306085038.8111-2-geert+renesas@glider.be
Signed-off-by: Mark Brown <broonie@kernel.org>
---
Documentation/devicetree/bindings/spi/spi-controller.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/spi/spi-controller.yaml b/Documentation/devicetree/bindings/spi/spi-controller.yaml
index 1e0ca6ccf64b..0ebaf6677ac4 100644
--- a/Documentation/devicetree/bindings/spi/spi-controller.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-controller.yaml
@@ -52,6 +52,12 @@ properties:
description:
The SPI controller acts as a slave, instead of a master.
+oneOf:
+ - required:
+ - "#address-cells"
+ - required:
+ - spi-slave
+
patternProperties:
"^slave$":
type: object
--
2.20.1
^ permalink raw reply related [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
2020-03-06 8:50 [PATCH v3 0/2] spi: dt-bindings: spi-controller: Slave mode fixes Geert Uytterhoeven
2020-03-06 8:50 ` [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode Geert Uytterhoeven
[not found] ` <20200306085038.8111-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2020-03-13 17:20 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
2 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A @ 2020-03-13 17:20 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA, broonie-DgEjT+Ai2ygdnm+yROfE0A
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: dt-bindings: spi-controller: Slave mode fixes
Submitter: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=252285
Patches: [v3,1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode
[v3,2/2] spi: dt-bindings: spi-controller: Fix spi-[rt]x-bus-width for slave mode
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-26 0:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-01-26 0:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [v2,1/2] spi: dt-bindings: drop unneeded quotes
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=715031
Lore link: https://lore.kernel.org/r/20230124083342.34869-1-krzysztof.kozlowski@linaro.org
Patches: [v2,1/2] spi: dt-bindings: drop unneeded quotes
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-13 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-01-13 21:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: SPI core CS delay fixes and additions
Submitter: Hector Martin <marcan@marcan.st>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=708730
Lore link: https://lore.kernel.org/r/20230104093631.15611-1-marcan@marcan.st
Patches: [1/5] spi: dt-bindings: Rename spi-cs-setup-ns to spi-cs-setup-delay-ns
[4/5] spi: dt-bindings: Add hold/inactive CS delay peripheral properties
[5/5] spi: Parse hold/inactive CS delay values from the DT
Series: SPI core CS delay fixes and additions
Submitter: Hector Martin <marcan@marcan.st>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=711711
Lore link: https://lore.kernel.org/r/20230113102309.18308-1-marcan@marcan.st
Patches: [v2,1/3] spi: Use a 32-bit DT property for spi-cs-setup-delay-ns
[v2,2/3] spi: dt-bindings: Add hold/inactive CS delay peripheral properties
[v2,3/3] spi: Parse hold/inactive CS delay values from the DT
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-06 22:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-01-06 22:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [v2,1/2] spi: spidev: fix a race condition when accessing spidev->spi
Submitter: Bartosz Golaszewski <brgl@bgdev.pl>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=709492
Lore link: https://lore.kernel.org/r/20230106100719.196243-1-brgl@bgdev.pl
Patches: [v2,1/2] spi: spidev: fix a race condition when accessing spidev->spi
[v2,2/2] spi: spidev: remove debug messages that access spidev->spi without locking
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-12-26 23:59 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-12-26 23:59 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: mtd: spi-nor: Fix the number of bytes for the dummy cycles
Submitter: Allen-KH Cheng <Allen-KH.Cheng@mediatek.com>
Committer: Tudor Ambarus <tudor.ambarus@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=690481
Lore link: https://lore.kernel.org/r/20221031124633.13189-1-allen-kh.cheng@mediatek.com
Series: [1/3] ACPI: scan: substitute empty_zero_page with helper ZERO_PAGE(0)
Submitter: Giulio Benetti <giulio.benetti@benettiengineering.com>
Committer: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=686470
Lore link: https://lore.kernel.org/r/20221018215755.33566-1-giulio.benetti@benettiengineering.com
Patches: [1/3] ACPI: scan: substitute empty_zero_page with helper ZERO_PAGE(0)
Series: dt-bindings: cleanup titles
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=705156
Lore link: https://lore.kernel.org/r/20221216163815.522628-1-krzysztof.kozlowski@linaro.org
Patches: [v3,1/9] dt-bindings: drop redundant part of title of shared bindings
[v3,2/9] dt-bindings: memory-controllers: ti,gpmc-child: drop redundant part of title
[v3,3/9] dt-bindings: clock: st,stm32mp1-rcc: add proper title
[v3,4/9] dt-bindings: drop redundant part of title (end)
[v3,5/9] dt-bindings: drop redundant part of title (end, part two)
[v3,6/9] dt-bindings: drop redundant part of title (end, part three)
[v3,7/9] dt-bindings: drop redundant part of title (beginning)
[v3,8/9] dt-bindings: clock: drop redundant part of title
[v3,9/9] dt-bindings: drop redundant part of title (manual)
Series: imx8mp: spi: update binding and compatible
Submitter: Peng Fan (OSS) <peng.fan@oss.nxp.com>
Committer: Shawn Guo <shawnguo@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=687082
Lore link: https://lore.kernel.org/r/20221020103158.2273874-1-peng.fan@oss.nxp.com
Patches: [1/2] dt-bindings: spi: fsl-imx-cspi: update i.MX8MP binding
[2/2] arm64: dts: imx8mp: update ecspi compatible and clk
Series: spi: amlogic: meson-spicc: Use pinctrl to drive CLK line when idle
Submitter: Amjad Ouled-Ameur <aouledameur@baylibre.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=687529
Lore link: https://lore.kernel.org/r/20221004-up-aml-fix-spi-v4-0-0342d8e10c49@baylibre.com
Patches: [v4,1/4] spi: dt-bindings: amlogic, meson-gx-spicc: Add pinctrl names for SPI signal states
[v4,3/4] arm64: dts: meson-gxl: add SPI pinctrl nodes for CLK
[v4,4/4] arm64: dts: meson-gxbb: add SPI pinctrl nodes for CLK
Patch: dt-bindings: Add missing start and/or end of line regex anchors
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=697135
Lore link: https://lore.kernel.org/r/20221118223728.1721589-1-robh@kernel.org
Total patches: 17
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-12-06 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-12-06 16:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Add MediaTek MT7986 SPI NAND and ECC support
Submitter: Xiangsheng Hou (侯祥胜) <xiangsheng.hou@mediatek.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=701679
Lore link: https://lore.kernel.org/r/20221205065756.26875-1-xiangsheng.hou@mediatek.com
Patches: [v2,1/9] spi: mtk-snfi: Add snfi support for MT7986 IC
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-29 13:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-29 13:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: nuvoton,wpcm450-fiu binding example fixes
Submitter: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=700033
Lore link: https://lore.kernel.org/r/20221129102225.3598044-1-j.neuschaefer@gmx.net
Patches: [v2,1/2] spi: dt-bindings: nuvoton,wpcm450-fiu: Fix error in example (bogus include)
[v2,2/2] spi: dt-bindings: nuvoton,wpcm450-fiu: Fix warning in example (missing reg property)
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-25 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-25 15:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Nuvoton WPCM450 FIU SPI flash controller
Submitter: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=698952
Lore link: https://lore.kernel.org/r/20221124191400.287918-1-j.neuschaefer@gmx.net
Patches: [v2,1/3] dt-bindings: spi: Add Nuvoton WPCM450 Flash Interface Unit (FIU)
[v2,2/3] spi: wpcm-fiu: Add driver for Nuvoton WPCM450 Flash Interface Unit (FIU)
[v2,3/3] spi: wpcm-fiu: Add direct map support
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-24 13:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-24 13:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Introduce Socionext F_OSPI SPI flash controller
Submitter: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=698711
Lore link: https://lore.kernel.org/r/20221124003351.7792-1-hayashi.kunihiko@socionext.com
Patches: [v3,1/2] dt-bindings: spi: Add Socionext F_OSPI controller
[v3,2/2] spi: Add Socionext F_OSPI SPI flash controller driver
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-17 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-17 11:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [1/5] spi: tegra210-quad: Fix combined sequence
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=682511
Lore link: https://lore.kernel.org/r/20221001122148.9158-1-kyarlagadda@nvidia.com
Patches: [1/5] spi: tegra210-quad: Fix combined sequence
[2/5] spi: tegra210-quad: Fix duplicate resource error
Patch: spi: tegra210-quad: Fix duplicate resource error
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=696293
Lore link: https://lore.kernel.org/r/20221117070320.18720-1-kyarlagadda@nvidia.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-16 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-16 13:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v3] spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock
Submitter: Frieder Schrempf <frieder@fris.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=695655
Lore link: https://lore.kernel.org/r/20221115181002.2068270-1-frieder@fris.de
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-04 13:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-04 13:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: hisi-sfc-v3xx: Fix a typo ("duall")
Submitter: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=691795
Lore link: https://lore.kernel.org/r/20221103190052.915755-1-j.neuschaefer@gmx.net
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-02 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-11-02 15:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: meson-spicc: fix do_div build error on non-arm64
Submitter: Neil Armstrong <neil.armstrong@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=691113
Lore link: https://lore.kernel.org/r/20221027-b4-spicc-burst-delay-fix-v2-0-8cc2bab3417a@linaro.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-21 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-10-21 15:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: pxa2xx: Pass the SSP type via device property
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=687271
Lore link: https://lore.kernel.org/r/20221020194500.10225-1-andriy.shevchenko@linux.intel.com
Patches: [v4,1/5] spi: pxa2xx: Respect Intel SSP type given by a property
[v4,4/5] spi: pxa2xx: Consistently use dev variable in pxa2xx_spi_init_pdata()
[v4,5/5] spi: pxa2xx: Switch from PM ifdeffery to pm_ptr()
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-21 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-10-21 13:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2,1/1] spi: Introduce spi_get_device_match_data() helper
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=687276
Lore link: https://lore.kernel.org/r/20221020195421.10482-1-andriy.shevchenko@linux.intel.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-19 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-10-19 17:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: spi-zyqnmp-gqspi: Add tap delay and Versal platform support
Submitter: Amit Kumar Mahapatra <amit.kumar-mahapatra@xilinx.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=680345
Lore link: https://lore.kernel.org/r/20220926063327.20753-1-amit.kumar-mahapatra@xilinx.com
Patches: [RESEND,v3,1/7] spi: spi-zynqmp-gqspi: Fix kernel-doc warnings
[RESEND,v3,2/7] spi: spi-zynqmp-gqspi: Set CPOL and CPHA during hardware init
[RESEND,v3,3/7] spi: spi-zynqmp-gqspi: Avoid setting baud rate multiple times for same SPI frequency
[RESEND,v3,4/7] firmware: xilinx: Add qspi firmware interface
[RESEND,v3,5/7] spi: spi-zynqmp-gqspi: Add tap delay support for ZynqMP GQSPI Controller
[RESEND,v3,6/7] dt-bindings: spi: spi-zynqmp-qspi: Add support for Xilinx Versal QSPI
[RESEND,v3,7/7] spi: spi-zynqmp-gqspi: Add tap delay support for GQSPI controller on Versal platform
Series: spi: spi-zyqnmp-gqspi: Add tap delay and Versal platform support
Submitter: Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=684406
Lore link: https://lore.kernel.org/r/20221011062040.12116-1-amit.kumar-mahapatra@amd.com
Patches: [v4,1/7] spi: spi-zynqmp-gqspi: Fix kernel-doc warnings
[v4,2/7] spi: spi-zynqmp-gqspi: Set CPOL and CPHA during hardware init
[v4,3/7] spi: spi-zynqmp-gqspi: Avoid setting baud rate multiple times for same SPI frequency
[v4,4/7] firmware: xilinx: Add qspi firmware interface
[v4,5/7] spi: spi-zynqmp-gqspi: Add tap delay support for ZynqMP GQSPI Controller
[v4,6/7] spi: dt-bindings: zynqmp-qspi: Add support for Xilinx Versal QSPI
[v4,7/7] spi: spi-zynqmp-gqspi: Add tap delay support for GQSPI controller on Versal platform
Total patches: 14
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-18 11:37 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-10-18 11:37 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Make atmel serial driver aware of GCLK
Submitter: Sergiu Moga <sergiu.moga@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=679400
Lore link: https://lore.kernel.org/r/20220922113347.144383-1-sergiu.moga@microchip.com
Patches: [v5,1/9] dt-bindings: mfd: atmel,sama5d2-flexcom: Add SPI child node ref binding
[v5,2/9] dt-bindings: serial: atmel,at91-usart: convert to json-schema
[v5,3/9] dt-bindings: serial: atmel,at91-usart: Add SAM9260 compatibles to SAM9X60
[v5,5/9] dt-bindings: serial: atmel,at91-usart: Add gclk as a possible USART clock
[v5,6/9] tty: serial: atmel: Separate mode clearing between UART and USART
[v5,7/9] tty: serial: atmel: Only divide Clock Divisor if the IP is USART
[v5,8/9] tty: serial: atmel: Make the driver aware of the existence of GCLK
[v5,9/9] tty: serial: atmel: Use FIELD_PREP/FIELD_GET
Series: spi: stm32_qspi: use QSPI bus as 8 lines communication channel
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Committer: Alexandre Torgue <alexandre.torgue@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=670073
Lore link: https://lore.kernel.org/r/20220823075850.575043-1-patrice.chotard@foss.st.com
Patches: [v4,1/2] ARM: dts: stm32: Create separate pinmux for qspi cs pin in stm32mp15-pinctrl.dtsi
Series: ACPI: unify _UID handling as integer
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Committer: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=676641
Lore link: https://lore.kernel.org/r/20220913163147.24258-1-andriy.shevchenko@linux.intel.com
Patches: [v3,1/8] ACPI: utils: Add acpi_dev_uid_to_integer() helper to get _UID as integer
[v3,2/8] ACPI: LPSS: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,3/8] ACPI: x86: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,4/8] i2c: amd-mp2-plat: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,5/8] i2c: mlxbf: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,6/8] perf: qcom_l2_pmu: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,7/8] spi: pxa2xx: Refactor _UID handling to use acpi_dev_uid_to_integer()
[v3,8/8] efi/dev-path-parser: Refactor _UID handling to use acpi_dev_uid_to_integer()
Patch: riscv: dts: microchip: add qspi compatible fallback
Submitter: Conor Dooley <conor.dooley@microchip.com>
Committer: Conor Dooley <conor.dooley@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=666531
Lore link: https://lore.kernel.org/r/20220810085914.801170-1-conor.dooley@microchip.com
Series: Add more Rockchip rk3128 compatible strings
Submitter: Johan Jonker <jbx6244@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=675845
Lore link: https://lore.kernel.org/r/3ed145c6-f400-ee75-ccac-894b0a0d15d2@gmail.com
Patches: [v1,11/11] dt-bindings: mtd: rockchip: add rockchip,rk3128-nfc
[v1,01/11] dt-bindings: serial: rockchip: add rockchip,rk3128-uart
[v1,10/11] dt-bindings: soc: rockchip: grf: add rockchip,rk3128-grf
[v1,09/11] dt-bindings: phy: phy-rockchip-inno-usb2: add rockchip,rk3128-usb2phy
[v1,08/11] dt-bindings: arm: rockchip: pmu: add rockchip,rk3128-pmu
[v1,07/11] dt-bindings: watchdog: rockchip: add rockchip,rk3128-wdt
[v1,06/11] dt-bindings: usb: dwc2: rockchip: add rockchip,rk3128-usb
[v1,04/11] dt-bindings: mmc: rockchip: add rockchip,rk3128-dw-mshc
[v1,03/11] dt-bindings: pwm: rockchip: add rockchip,rk3128-pwm
[v1,02/11] dt-bindings: i2c: rockchip: add rockchip,rk3128-i2c
Patch: [-next,v2] Documentation: devres: add missing SPI helper
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Jonathan Corbet <corbet@lwn.net>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=679894
Lore link: https://lore.kernel.org/r/20220923141803.75734-1-yangyingliang@huawei.com
Patch: MAINTAINERS: Update email of Neil Armstrong
Submitter: Neil Armstrong <narmstrong@baylibre.com>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=667978
Lore link: https://lore.kernel.org/r/20220816095617.948678-1-narmstrong@baylibre.com
Series: spi: remove "spidev" nodes from DTs
Submitter: Wolfram Sang <wsa+renesas@sang-engineering.com>
Committer: Alexandre Torgue <alexandre.torgue@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=670550
Lore link: https://lore.kernel.org/r/20220824082130.21934-1-wsa+renesas@sang-engineering.com
Patches: [1/2] ARM: dts: stm32: argon: remove spidev node
[2/2] powerpc/82xx: remove spidev node from mgcoge
Total patches: 32
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-10 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-10-10 14:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: aspeed: Fix typo in mode_bits field for AST2600 platform
Submitter: Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=683165
Lore link: https://lore.kernel.org/r/20221005083209.222272-1-chin-ting_kuo@aspeedtech.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-09-28 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-09-28 17:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: Fix DMA bugs in (not only) spi-s3c64xx
Submitter: Vincent Whitchurch <vincent.whitchurch@axis.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=680983
Lore link: https://lore.kernel.org/r/20220927112117.77599-1-vincent.whitchurch@axis.com
Patches: [v2,1/4] spi: Save current RX and TX DMA devices
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-09-12 9:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-09-12 9:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] dt-bindings: spi: rockchip: add power-domains property
Submitter: Johan Jonker <jbx6244@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=676053
Lore link: https://lore.kernel.org/r/12af4fe6-4d35-cb4a-f5f6-06e3aba990cb@gmail.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-28 21:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-08-28 21:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: stm32-qspi: Fix stm32_qspi_transfer_one_message() error path
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=671402
Lore link: https://lore.kernel.org/r/20220826092031.1393430-1-patrice.chotard@foss.st.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-22 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-08-22 15:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: cadence-quadspi: Disable irqs during indirect reads
Submitter: None <niravkumar.l.rabara@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=667304
Lore link: https://lore.kernel.org/r/20220813042736.1372180-1-niravkumar.l.rabara@intel.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-15 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-08-15 15:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: npcm-pspi: add Arbel NPCM8XX and full duplex support
Submitter: Tomer Maimon <tmaimon77@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=661789
Lore link: https://lore.kernel.org/r/20220721101556.118568-1-tmaimon77@gmail.com
Patches: [v1,1/2] spi: npcm-pspi: add full duplex support
[v1,2/2] dt-binding: spi: npcm-pspi: Add npcm845 compatible
Series: spi: npcm-pspi: add Arbel NPCM8XX support
Submitter: Tomer Maimon <tmaimon77@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=662218
Lore link: https://lore.kernel.org/r/20220722114136.251415-1-tmaimon77@gmail.com
Patches: [v2,1/2] dt-binding: spi: npcm-pspi: Add npcm845 compatible
Series: Add support for Microchip QSPI controller
Submitter: Naga Sureshkumar Relli <nagasuresh.relli@microchip.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=665972
Lore link: https://lore.kernel.org/r/20220808064603.1174906-1-nagasuresh.relli@microchip.com
Patches: [v4,1/4] spi: dt-binding: document microchip coreQSPI
[v4,4/4] MAINTAINERS: add qspi to Polarfire SoC entry
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-15 15:36 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-08-15 15:36 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Canaan devicetree fixes
Submitter: Conor Dooley <mail@conchuod.ie>
Committer: Palmer Dabbelt <palmer@rivosinc.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=655138
Lore link: https://lore.kernel.org/r/20220629184343.3438856-1-mail@conchuod.ie
Patches: [v3,01/15] dt-bindings: display: convert ilitek,ili9341.txt to dt-schema
[v3,02/15] dt-bindings: display: ili9341: document canaan kd233's lcd
[v3,03/15] ASoC: dt-bindings: convert designware-i2s to dt-schema
[v3,07/15] riscv: dts: canaan: fix the k210's memory node
[v3,08/15] riscv: dts: canaan: fix the k210's timer nodes
[v3,09/15] riscv: dts: canaan: fix mmc node names
[v3,10/15] riscv: dts: canaan: fix kd233 display spi frequency
[v3,11/15] riscv: dts: canaan: use custom compatible for k210 i2s
[v3,12/15] riscv: dts: canaan: remove spi-max-frequency from controllers
[v3,14/15] riscv: dts: canaan: add specific compatible for kd233's LCD
[v3,15/15] riscv: dts: canaan: build all devicetress if SOC_CANAAN
Series: Add support for MT8365 EVK board
Submitter: Fabien Parent <fparent@baylibre.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=646271
Lore link: https://lore.kernel.org/r/20220531135026.238475-1-fparent@baylibre.com
Patches: [01/17] dt-bindings: i2c: i2c-mt65xx: add binding for MT8365 SoC
[05/17] dt-bindings: dma: mediatek,uart-dma: add MT8365 bindings
[11/17] dt-bindings: phy: mediatek,dsi-phy: Add MT8365 SoC bindings
[12/17] dt-bindings: phy: mediatek,tphy: add MT8365 SoC bindings
Patch: dt-bindings: efm32: remove bindings for deleted platform
Submitter: Wolfram Sang <wsa@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=650757
Lore link: https://lore.kernel.org/r/20220615210720.6363-1-wsa@kernel.org
Patch: None
Submitter: William Zhang <william.zhang@broadcom.com>
Committer: Florian Fainelli <f.fainelli@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=657290
Lore link: https://lore.kernel.org/r/20220707065800.261269-7-william.zhang@broadcom.com
Series: [v2,1/2] driver core: Introduce device_find_any_child() helper
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=649276
Lore link: https://lore.kernel.org/r/20220610120219.18988-1-andriy.shevchenko@linux.intel.com
Patches: [v2,1/2] driver core: Introduce device_find_any_child() helper
[v2,2/2] spi: Use device_find_any_child() instead of custom approach
Patch: eeprom: at25: Rework buggy read splitting
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=652377
Lore link: https://lore.kernel.org/r/7ae260778d2c08986348ea48ce02ef148100e088.1655817534.git.geert+renesas@glider.be
Total patches: 20
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-29 19:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-29 19:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Add SPI Driver to HPE GXP Architecture
Submitter: Hawkins, Nick <nick.hawkins@hpe.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=663824
Lore link: https://lore.kernel.org/r/20220728161459.7738-1-nick.hawkins@hpe.com
Patches: [v6,1/5] spi: spi-gxp: Add support for HPE GXP SoCs
[v6,2/5] spi: dt-bindings: add documentation for hpe,gxp-spifi
[v6,5/5] MAINTAINERS: add spi support to GXP
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-26 11:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-26 11:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: bcm2835: enable shared interrupt support
Submitter: Marc Kleine-Budde <mkl@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=661021
Lore link: https://lore.kernel.org/r/20220719105305.3076354-1-mkl@pengutronix.de
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-20 18:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-20 18:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [RESEND,v2] spi: dt-bindings: qcom,spi-geni-qcom: allow three interconnects
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=661531
Lore link: https://lore.kernel.org/r/20220720163841.7283-1-krzysztof.kozlowski@linaro.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-20 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-20 17:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA transfers
Submitter: Marc Kleine-Budde <mkl@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=661468
Lore link: https://lore.kernel.org/r/20220720133416.3342229-1-mkl@pengutronix.de
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-13 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-13 14:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Add support for Intel Thunder Bay SPI controller
Submitter: Srikandan, Nandhini <nandhini.srikandan@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=659146
Lore link: https://lore.kernel.org/r/20220713042223.1458-1-nandhini.srikandan@intel.com
Patches: [v6,1/4] spi: dw: Fix IP-core versions macro
[v6,2/4] dt-bindings: spi: Add bindings for Intel Thunder Bay SOC
[v6,3/4] spi: dw: Add support for master mode selection for DWC SSI controller
[v6,4/4] spi: dw: Add support for Intel Thunder Bay SPI controller
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-13 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-13 14:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [-next,1/2] spi: microchip-core: fix UAF in mchp_corespi_remove()
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=658926
Lore link: https://lore.kernel.org/r/20220712135357.918997-1-yangyingliang@huawei.com
Patches: [-next,1/2] spi: microchip-core: fix UAF in mchp_corespi_remove()
[-next,2/2] spi: microchip-core: switch to use devm_spi_alloc_master()
Series: spi: microchip-core: fix and cleanups
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=659120
Lore link: https://lore.kernel.org/r/20220713025657.3524506-1-yangyingliang@huawei.com
Patches: [-next,v2,1/3] spi: microchip-core: fix UAF in mchp_corespi_remove()
[-next,v2,2/3] spi: microchip-core: switch to use devm_spi_alloc_master()
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-01 10:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-07-01 10:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Canaan devicetree fixes
Submitter: Conor Dooley <mail@conchuod.ie>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=655138
Lore link: https://lore.kernel.org/r/20220629184343.3438856-1-mail@conchuod.ie
Patches: [v3,01/15] dt-bindings: display: convert ilitek,ili9341.txt to dt-schema
[v3,04/15] spi: dt-bindings: dw-apb-ssi: update spi-{r,t}x-bus-width
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-30 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-30 13:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: pxa2xx: Add support for Intel Meteor Lake PCH-P
Submitter: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=654991
Lore link: https://lore.kernel.org/r/20220629120700.620108-1-jarkko.nikula@linux.intel.com
Patch: [v2] spi: pxa2xx: Add support for Intel Meteor Lake-P
Submitter: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=655290
Lore link: https://lore.kernel.org/r/20220630073305.632850-1-jarkko.nikula@linux.intel.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-30 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-30 11:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: aspeed: Fix division by zero
Submitter: Cédric Le Goater <clg@kaod.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=652857
Lore link: https://lore.kernel.org/r/20220622161617.3719096-1-clg@kaod.org
Patches: [v3,1/2] spi: aspeed: Add dev_dbg() to dump the spi-mem direct mapping descriptor
[v3,2/2] spi: aspeed: Fix division by zero
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-29 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-29 14:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [1/5] spi: spi-s3c64xx: increase MAX_SPI_PORTS to 12
Submitter: Chanho Park <chanho61.park@samsung.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=654051
Lore link: https://lore.kernel.org/r/20220627064707.138883-2-chanho61.park@samsung.com
Patches: [1/5] spi: spi-s3c64xx: increase MAX_SPI_PORTS to 12
[2/5] spi: s3c64xx: support loopback mode
Series: [v3,1/4] spi: s3c64xx: support loopback mode
Submitter: Chanho Park <chanho61.park@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=654957
Lore link: https://lore.kernel.org/r/20220629102304.65712-2-chanho61.park@samsung.com
Patches: [v3,1/4] spi: s3c64xx: support loopback mode
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-28 10:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-28 10:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Optimize spi_sync path
Submitter: David Jander <david@protonic.nl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=652193
Lore link: https://lore.kernel.org/r/20220621061234.3626638-1-david@protonic.nl
Patches: [v3,01/11] spi: Move ctlr->cur_msg_prepared to struct spi_message
[v3,02/11] spi: Don't use the message queue if possible in spi_sync
[v3,03/11] spi: Lock controller idling transition inside the io_mutex
[v3,04/11] spi: __spi_pump_messages: Consolidate spin_unlocks to goto target
[v3,05/11] spi: Remove check for controller idling in spi sync path
[v3,06/11] spi: Remove check for idling in __spi_pump_messages()
[v3,07/11] spi: Remove the now unused ctlr->idling flag
[v3,08/11] spi: Remove unneeded READ_ONCE for ctlr->busy flag
[v3,09/11] spi: Set ctlr->cur_msg also in the sync transfer case
[v3,10/11] spi: Ensure the io_mutex is held until spi_finalize_current_message()
[v3,11/11] spi: opportunistically skip ctlr->cur_msg_completion
Total patches: 11
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-27 20:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-27 20:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [RESEND,v2] spi: dw: Add deferred DMA-channels setup support
Submitter: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=653733
Lore link: https://lore.kernel.org/r/20220624210623.6383-1-Sergey.Semin@baikalelectronics.ru
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-20 12:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-20 12:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: topcliff-pch: Use core message validation
Submitter: Mark Brown <broonie@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=650721
Lore link: https://lore.kernel.org/r/20220615174138.4060912-1-broonie@kernel.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-13 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-13 17:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: tegra quad: Add Tegra Grace features
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=647988
Lore link: https://lore.kernel.org/r/20220607114659.54314-1-kyarlagadda@nvidia.com
Patches: [V3,1/3] spi: tegra210-quad: Multi-cs support
Patch: spi: micro: fix unreasonable clk_prepare_enable() on error in mchp_corespi_probe()
Submitter: Peng Wu <wupeng58@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=649471
Lore link: https://lore.kernel.org/r/20220611021117.40494-1-wupeng58@huawei.com
Patch: spi: microchip-core: Fix the error handling path in mchp_corespi_probe()
Submitter: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=649492
Lore link: https://lore.kernel.org/r/a90bec10dec43719b12afdb967e87526c4bc849a.1654933052.git.christophe.jaillet@wanadoo.fr
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-09 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-09 14:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [-next,v2] spi: Return true/false (not 1/0) from bool function
Submitter: Yang Li <yang.lee@linux.alibaba.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=648722
Lore link: https://lore.kernel.org/r/20220609071250.59509-1-yang.lee@linux.alibaba.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-08 20:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-08 20:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: include: linux: spi: spi.h: Add missing documentation for struct members
Submitter: David Jander <david@protonic.nl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=648443
Lore link: https://lore.kernel.org/r/20220608122917.2892953-1-david@protonic.nl
Patch: [v2] spi: <linux/spi/spi.h>: Add missing documentation for struct members
Submitter: David Jander <david@protonic.nl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=648540
Lore link: https://lore.kernel.org/r/20220608153309.2899565-1-david@protonic.nl
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-07 10:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-07 10:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: stm32-qspi: Remove unused parameters
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=646821
Lore link: https://lore.kernel.org/r/20220602092540.369604-1-patrice.chotard@foss.st.com
Patches: [v2,1/3] spi: stm32-qspi: Remove stm32_qspi_get_mode() unused parameter
[v2,2/3] spi: stm32-qspi: Remove stm32_qspi_wait_cmd() unused parameter
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-06 17:18 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-06-06 17:18 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: spi-mem: Convert Aspeed SMC driver to spi-mem
Submitter: Cédric Le Goater <clg@kaod.org>
Committer: Joel Stanley <joel@jms.id.au>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=639867
Lore link: https://lore.kernel.org/r/20220509175616.1089346-1-clg@kaod.org
Patches: [v7,01/11] ARM: dts: aspeed: Adjust "reg" property of FMC/SPI controllers
[v7,09/11] ARM: dts: aspeed: Enable Dual SPI RX transfers
[v7,10/11] ARM: dts: aspeed-g4: Set spi-max-frequency for all flashes
Series: Fix broken usage of driver_override (and kfree of static memory)
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=633333
Lore link: https://lore.kernel.org/r/20220419113435.246203-1-krzysztof.kozlowski@linaro.org
Patches: [v7,01/12] driver: platform: Add helper for safer setting of driver_override
[v7,02/12] amba: Use driver_set_override() instead of open-coding
[v7,03/12] fsl-mc: Use driver_set_override() instead of open-coding
[v7,04/12] hv: Use driver_set_override() instead of open-coding
[v7,05/12] PCI: Use driver_set_override() instead of open-coding
[v7,06/12] s390/cio: Use driver_set_override() instead of open-coding
[v7,07/12] spi: Use helper for safer setting of driver_override
[v7,08/12] vdpa: Use helper for safer setting of driver_override
[v7,09/12] clk: imx: scu: Fix kfree() of static memory on setting driver_override
[v7,10/12] slimbus: qcom-ngd: Fix kfree() of static memory on setting driver_override
[v7,11/12] rpmsg: Constify local variable in field store macro
[v7,12/12] rpmsg: Fix kfree() of static memory on setting driver_override
Series: None
Submitter: Andre Przywara <andre.przywara@arm.com>
Committer: Jernej Skrabec <jernej.skrabec@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=624316
Lore link: https://lore.kernel.org/r/20220317162349.739636-11-andre.przywara@arm.com
Patches: [v2,10/12] dt-bindings: spi: sunxi: document F1C100 controllers
[v2,11/12] ARM: dts: suniv: F1C100: add SPI support
[v2,12/12] ARM: dts: suniv: licheepi-nano: add SPI flash
Series: Fix broken usage of driver_override (and kfree of static memory)
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=623930
Lore link: https://lore.kernel.org/r/20220316150533.421349-1-krzysztof.kozlowski@canonical.com
Patches: [v5,01/11] driver: platform: Add helper for safer setting of driver_override
[v5,02/11] amba: Use driver_set_override() instead of open-coding
[v5,03/11] fsl-mc: Use driver_set_override() instead of open-coding
[v5,04/11] hv: Use driver_set_override() instead of open-coding
[v5,05/11] PCI: Use driver_set_override() instead of open-coding
[v5,06/11] s390/cio: Use driver_set_override() instead of open-coding
[v5,07/11] spi: Use helper for safer setting of driver_override
[v5,08/11] vdpa: Use helper for safer setting of driver_override
[v5,09/11] clk: imx: scu: Fix kfree() of static memory on setting driver_override
[v5,10/11] slimbus: qcom-ngd: Fix kfree() of static memory on setting driver_override
Series: spi: add support for Mediatek SPI-NAND controller
Submitter: Chuanhong Guo <gch981213@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=634989
Lore link: https://lore.kernel.org/r/20220424032527.673605-1-gch981213@gmail.com
Patches: [v6,1/5] mtd: nand: make mtk_ecc.c a separated module
[v6,5/5] arm64: dts: mediatek: add mtk-snfi for mt7622
Patch: [v2] dt-bindings: qcom: update maintainers (drop Akash and Mukesh)
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=628992
Lore link: https://lore.kernel.org/r/20220405063724.12850-1-krzysztof.kozlowski@linaro.org
Series: dt-bindings: qcom: convert entire GSBI (QUP I2C/SPI/UART) to DT schema
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Bjorn Andersson <bjorn.andersson@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=628991
Lore link: https://lore.kernel.org/r/20220405063451.12011-1-krzysztof.kozlowski@linaro.org
Patches: [v4,1/9] arm64: dts: qcom: align dmas in I2C/SPI/UART with DT schema
[v4,2/9] arm64: dts: qcom: align clocks in I2C/SPI with DT schema
[v4,3/9] ARM: dts: qcom: ipq4019: align dmas in SPI/UART with DT schema
[v4,4/9] ARM: dts: qcom: ipq4019: align clocks in I2C with DT schema
[v4,5/9] ARM: dts: qcom: msm8660: disable GSBI8
[v4,6/9] spi: dt-bindings: qcom,spi-qup: convert to dtschema
[v4,7/9] dt-bindings: serial: qcom,msm-uartdm: convert to dtschema
[v4,8/9] dt-bindings: i2c: qcom,i2c-qup: convert to dtschema
[v4,9/9] dt-bindings: qcom: qcom,gsbi: convert to dtschema
Series: [v3,1/2] spi: dt-bindings: qcom,spi-geni-qcom: convert to dtschema
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Bjorn Andersson <bjorn.andersson@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=628657
Lore link: https://lore.kernel.org/r/20220404064017.68634-1-krzysztof.kozlowski@linaro.org
Patches: [v3,1/2] spi: dt-bindings: qcom,spi-geni-qcom: convert to dtschema
[v3,2/2] dt-bindings: qcom: qcom,geni-se: refer to dtschema for SPI
Patch: [v4] arm64: tegra: Add QSPI controllers on Tegra234
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Committer: Thierry Reding <treding@nvidia.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=621616
Lore link: https://lore.kernel.org/r/20220308183026.66394-1-kyarlagadda@nvidia.com
Patch: dt-bindings: align SPI NOR node name with dtschema
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=630056
Lore link: https://lore.kernel.org/r/20220407143405.295907-1-krzysztof.kozlowski@linaro.org
Patch: dt-bindings: Fix array constraints on scalar properties
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=631907
Lore link: https://lore.kernel.org/r/20220413140121.3132837-1-robh@kernel.org
Patch: dt-bindings: trivial-devices: Document CPLD on DH electronics boards
Submitter: Marek Vasut <marex@denx.de>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=630179
Lore link: https://lore.kernel.org/r/20220407210106.256027-1-marex@denx.de
Patch: dt-bindings: trivial-devices: Document CPLD on Menlo boards
Submitter: Marek Vasut <marex@denx.de>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=630180
Lore link: https://lore.kernel.org/r/20220407210131.256045-1-marex@denx.de
Total patches: 47
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-16 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-05-16 18:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: spi-mem: Convert Aspeed SMC driver to spi-mem
Submitter: Cédric Le Goater <clg@kaod.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=639867
Lore link: https://lore.kernel.org/r/20220509175616.1089346-1-clg@kaod.org
Patches: [v7,01/11] ARM: dts: aspeed: Adjust "reg" property of FMC/SPI controllers
[v7,03/11] spi: spi-mem: Convert Aspeed SMC driver to spi-mem
[v7,04/11] spi: aspeed: Add support for direct mapping
[v7,05/11] spi: aspeed: Adjust direct mapping to device size
[v7,06/11] spi: aspeed: Workaround AST2500 limitations
[v7,07/11] spi: aspeed: Add support for the AST2400 SPI controller
[v7,08/11] spi: aspeed: Calibrate read timings
[v7,11/11] mtd: spi-nor: aspeed: set the decoding size to at least 2MB for AST2600
Series: spi: spi-mem: Add driver for Aspeed SMC controllers
Submitter: Cédric Le Goater <clg@kaod.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=620287
Lore link: https://lore.kernel.org/r/20220304083643.1079142-1-clg@kaod.org
Patches: [v3,01/11] mtd: spi-nor: aspeed: Rename Kconfig option
[v3,06/11] spi: aspeed: Adjust direct mapping to device size
[v3,07/11] spi: aspeed: Workaround AST2500 limitations
Total patches: 11
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-09 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-05-09 21:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: spi-imx: cleanups and performance improvements
Submitter: Marc Kleine-Budde <mkl@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=637691
Lore link: https://lore.kernel.org/r/20220502175457.1977983-1-mkl@pengutronix.de
Patches: [v1,1/9] spi: spi-imx: fix sparse warning: add identifier name to function definition
[v1,2/9] spi: spi-imx: avoid unnecessary line continuations
[v1,3/9] spi: spi-imx: mx51_ecspi_intctrl(): prefer 'unsigned int' to bare use of 'unsigned'
[v1,8/9] spi: spi-imx: add PIO polling support
[v1,9/9] spi: spi-imx: mx51_ecspi_prepare_message(): skip writing MX51_ECSPI_CONFIG register if unchanged
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-04 21:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-05-04 21:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: omap2-mcspi: add support for interword delay
Submitter: Andrea Zanotti <andreazanottifo@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=637551
Lore link: https://lore.kernel.org/r/20220502111300.24754-1-andreazanottifo@gmail.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-03 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-05-03 16:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [RFC] spi: cadence-quadspi: Disable DAC on SoCFPGA
Submitter: Marek Vasut <marex@denx.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=616137
Lore link: https://lore.kernel.org/r/20220221043238.295369-1-marex@denx.de
Patch: spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA
Submitter: Ian Abbott <abbotti@mev.co.uk>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=636235
Lore link: https://lore.kernel.org/r/20220427153446.10113-1-abbotti@mev.co.uk
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-27 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-27 22:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: add support for Mediatek SPI-NAND controller
Submitter: Chuanhong Guo <gch981213@gmail.com>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=634989
Lore link: https://lore.kernel.org/r/20220424032527.673605-1-gch981213@gmail.com
Patches: [v6,1/5] mtd: nand: make mtk_ecc.c a separated module
[v6,3/5] mtd: nand: mtk-ecc: also parse nand-ecc-engine if available
[v6,4/5] spi: dt-bindings: add binding doc for spi-mtk-snfi
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-25 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-25 17:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [1/2] spi: cadence-quadspi: further simplify cqspi_set_protocol()
Submitter: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=633276
Lore link: https://lore.kernel.org/r/20220419084640.191299-1-matthias.schiffer@ew.tq-group.com
Patches: [1/2] spi: cadence-quadspi: further simplify cqspi_set_protocol()
[2/2] spi: cadence-quadspi: allow operations with cmd/addr buswidth >1
Series: [v2,1/2] spi: cadence-quadspi: drop cqspi_set_protocol()
Submitter: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=633864
Lore link: https://lore.kernel.org/r/20220420155616.281730-1-matthias.schiffer@ew.tq-group.com
Patches: [v2,1/2] spi: cadence-quadspi: drop cqspi_set_protocol()
[v2,2/2] spi: cadence-quadspi: allow operations with cmd/addr buswidth >1
Series: Improve SPI support for Ingenic SoCs.
Submitter: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=634921
Lore link: https://lore.kernel.org/r/1650724725-93758-1-git-send-email-zhouyanjie@wanyeetech.com
Patches: [v3,1/3] SPI: Ingenic: Add support for use GPIO as chip select line.
[v3,2/3] dt-bindings: SPI: Add bindings for new Ingenic SoCs.
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-21 15:31 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-21 15:31 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: spi-mem: check if data buffers are on stack
Submitter: Pratyush Yadav <p.yadav@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=633730
Lore link: https://lore.kernel.org/r/20220420102022.3310970-1-p.yadav@ti.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-20 21:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-20 21:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: MediaTek SPI controller cleanups and documentation
Submitter: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=629992
Lore link: https://lore.kernel.org/r/20220407114428.167091-1-angelogioacchino.delregno@collabora.com
Patches: [v2,1/8] spi: mt65xx: Simplify probe function with devm_spi_alloc_master
[v2,2/8] spi: mt65xx: Switch to device_get_match_data()
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-13 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-13 17:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [1/2] spi: atmel-quadspi.c: Fix the buswidth adjustment between spi-mem and controller
Submitter: Tudor Ambarus <tudor.ambarus@microchip.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=629550
Lore link: https://lore.kernel.org/r/20220406100340.224975-1-tudor.ambarus@microchip.com
Patches: [1/2] spi: atmel-quadspi.c: Fix the buswidth adjustment between spi-mem and controller
[2/2] spi: atmel-quadspi: Remove duplicated DTR checks
Series: [v2,1/2] spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and controller
Submitter: Tudor Ambarus <tudor.ambarus@microchip.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=629606
Lore link: https://lore.kernel.org/r/20220406133604.455356-1-tudor.ambarus@microchip.com
Patches: [v2,1/2] spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and controller
[v2,2/2] spi: atmel-quadspi: Remove duplicated DTR checks
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-05 9:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-05 9:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] dt-bindings: spi: qcom-qspi: Add minItems to interconnect-names
Submitter: Kuldeep Singh <singh.kuldeep87k@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=626984
Lore link: https://lore.kernel.org/r/20220328192006.18523-1-singh.kuldeep87k@gmail.com
Series: spi: mediatek: add single/quad mode support
Submitter: Leilk Liu <leilk.liu@mediatek.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=628101
Lore link: https://lore.kernel.org/r/20220401071616.8874-1-leilk.liu@mediatek.com
Patches: [V7,1/3] spi: mediatek: add spi memory support for ipm design
[V7,2/3] dt-bindings: spi: support hclk
[V7,3/3] spi: mediatek: support hclk
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-04 18:14 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-04-04 18:14 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Update the Icicle Kit device tree
Submitter: Conor Dooley <conor.dooley@microchip.com>
Committer: Palmer Dabbelt <palmer@rivosinc.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=605968
Lore link: https://lore.kernel.org/r/20220117110755.3433142-1-conor.dooley@microchip.com
Patches: [v4,01/14] dt-bindings: soc/microchip: update syscontroller compatibles
[v4,07/14] dt-bindings: usb: add bindings for microchip mpfs musb
[v4,09/14] riscv: dts: microchip: use clk defines for icicle kit
[v4,12/14] riscv: dts: microchip: update peripherals in icicle kit device tree
[v4,14/14] MAINTAINERS: update riscv/microchip entry
Series: External ECC engines & Macronix support
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=609005
Lore link: https://lore.kernel.org/r/20220127091808.1043392-1-miquel.raynal@bootlin.com
Patches: [v10,01/13] spi: spi-mem: Introduce a capability structure
[v10,02/13] spi: spi-mem: Check the controller extra capabilities
[v10,03/13] spi: cadence-quadspi: Provide a capability structure
[v10,04/13] spi: mxic: Provide a capability structure
[v10,05/13] spi: spi-mem: Kill the spi_mem_dtr_supports_op() helper
[v10,06/13] spi: spi-mem: Add an ecc parameter to the spi_mem_op structure
[v10,07/13] mtd: spinand: Delay a little bit the dirmap creation
[v10,08/13] mtd: spinand: Create direct mapping descriptors for ECC operations
[v10,09/13] spi: mxic: Fix the transmit path
[v10,10/13] spi: mxic: Create a helper to configure the controller before an operation
[v10,11/13] spi: mxic: Create a helper to ease the start of an operation
[v10,12/13] spi: mxic: Add support for direct mapping
Series: Support Spi in i2c-multi-instantiate driver
Submitter: Stefan Binding <sbinding@opensource.cirrus.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=607335
Lore link: https://lore.kernel.org/r/20220121172431.6876-1-sbinding@opensource.cirrus.com
Patches: [v6,1/9] spi: Make spi_alloc_device and spi_add_device public again
[v6,5/9] platform/x86: i2c-multi-instantiate: Rename it for a generic serial driver name
[v6,6/9] platform/x86: serial-multi-instantiate: Reorganize I2C functions
[v6,7/9] platform/x86: serial-multi-instantiate: Add SPI support
[v6,8/9] ALSA: hda/realtek: Add support for HP Laptops
[v6,9/9] ACPI / scan: Create platform device for CS35L41
Patch: [v11] spi: mxic: Add support for pipelined ECC operations
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=610697
Lore link: https://lore.kernel.org/r/20220202144536.393792-1-miquel.raynal@bootlin.com
Patch: dt-bindings: Fix missing '/schemas' in $ref paths
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=626437
Lore link: https://lore.kernel.org/r/20220325215652.525383-1-robh@kernel.org
Patch: [GIT,PULL] Immutable branch with spi in i2c-multi-instantiate changes
Submitter: Hans de Goede <hdegoede@redhat.com>
Committer: Takashi Iwai <tiwai@suse.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=610764
Lore link: https://lore.kernel.org/r/2062f567-9756-1e13-bb50-89c7211955fd@redhat.com
Patch: dt-bindings: Another pass removing cases of 'allOf' containing a '$ref'
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=618890
Lore link: https://lore.kernel.org/r/20220228213802.1639658-1-robh@kernel.org
Patch: spi: qcom: geni: Simplify DMA setting
Submitter: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=603752
Lore link: https://lore.kernel.org/r/1b14e4ce91a33c16b2c655389c728071a9c9aa2e.1641643601.git.christophe.jaillet@wanadoo.fr
Total patches: 28
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-15 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-03-15 13:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: mediatek: add single/quad mode support
Submitter: Leilk Liu <leilk.liu@mediatek.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=623390
Lore link: https://lore.kernel.org/r/20220315032411.2826-1-leilk.liu@mediatek.com
Patches: [V4,1/6] spi: mediatek: support tick_delay without enhance_timing
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-08 20:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-03-08 20:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: dt-bindings: samsung: convert to dtschema
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Committer: Lee Jones <lee.jones@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=607751
Lore link: https://lore.kernel.org/r/20220124082347.32747-1-krzysztof.kozlowski@canonical.com
Patches: [v6,1/4] spi: dt-bindings: samsung: convert to dtschema
[v6,4/4] spi: s3c64xx: allow controller-data to be optional
Patch: None
Submitter: Alim Akhtar <alim.akhtar@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=605199
Lore link: https://lore.kernel.org/r/20220113121143.22280-19-alim.akhtar@samsung.com
Series: [RESEND,v3,1/2] spi: dt-bindings: samsung: Add fsd spi compatible
Submitter: Alim Akhtar <alim.akhtar@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=621466
Lore link: https://lore.kernel.org/r/20220308121640.27344-1-alim.akhtar@samsung.com
Patches: [RESEND,v3,1/2] spi: dt-bindings: samsung: Add fsd spi compatible
[RESEND,v3,2/2] spi: s3c64xx: Add spi port configuration for Tesla FSD SoC
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-07 20:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-03-07 20:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: npcm-fiu: Fix typo ("npxm")
Submitter: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=620720
Lore link: https://lore.kernel.org/r/20220306142312.109017-1-j.neuschaefer@gmx.net
Patch: dt-bindings: spi: Fix Tegra QSPI example
Submitter: Jon Hunter <jonathanh@nvidia.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=620955
Lore link: https://lore.kernel.org/r/20220307113529.315685-1-jonathanh@nvidia.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-28 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-28 22:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: use specific last_cs instead of last_cs_enable
Submitter: Yun Zhou <yun.zhou@windriver.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=615434
Lore link: https://lore.kernel.org/r/20220217141234.72737-1-yun.zhou@windriver.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-24 23:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-24 23:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Tegra QUAD SPI combined sequence mode
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=616839
Lore link: https://lore.kernel.org/r/20220222175611.58051-1-kyarlagadda@nvidia.com
Patches: [v2,1/5] spi: tegra210-quad: use device_reset method
[v2,2/5] dt-bindings: spi: Tegra234 QUAD SPI compatible
[v2,3/5] spi: tegra210-quad: add new chips to compatible
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-22 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-22 15:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: auxdisplay: Add support for the Titanmec TM1628 7 segment display controller
Submitter: Heiner Kallweit <hkallweit1@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=616449
Lore link: https://lore.kernel.org/r/1f39432b-84e2-e6dc-a6b8-c48ad5cf2210@gmail.com
Patches: [v2,1/6] spi: gpio: Implement LSB First bitbang support
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-21 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-21 15:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Stacked/parallel memories bindings
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=608625
Lore link: https://lore.kernel.org/r/20220126112608.955728-1-miquel.raynal@bootlin.com
Patches: [v6,1/3] dt-bindings: mtd: spi-nor: Allow two CS per device
[v6,2/3] spi: dt-bindings: Describe stacked/parallel memories modes
[v6,3/3] spi: dt-bindings: Add an example with two stacked flashes
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-17 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-17 18:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: mediatek: Avoid NULL pointer crash in interrupt
Submitter: Benjamin Gaignard <benjamin.gaignard@collabora.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=610034
Lore link: https://lore.kernel.org/r/20220131141708.888710-1-benjamin.gaignard@collabora.com
Series: [1/6] spi: rockchip: Stop spi slave dma receiver when cs inactive
Submitter: Jon Lin <jon.lin@rock-chips.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=613337
Lore link: https://lore.kernel.org/r/20220211034344.4130-1-jon.lin@rock-chips.com
Patches: [1/6] spi: rockchip: Stop spi slave dma receiver when cs inactive
[3/6] spi: rockchip: Fix error in getting num-cs property
[4/6] spi: rockchip: Suspend and resume the bus during NOIRQ_SYSTEM_SLEEP_PM ops
[6/6] spi: rockchip: clear interrupt status in error handler
Series: New support and problem adjustment of SPI rockchip
Submitter: Jon Lin <jon.lin@rock-chips.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=614755
Lore link: https://lore.kernel.org/r/20220216014028.8123-1-jon.lin@rock-chips.com
Patches: [v3,1/6] spi: rockchip: Fix error in getting num-cs property
[v3,2/6] spi: rockchip: terminate dma transmission when slave abort
[v3,3/6] spi: rockchip: Stop spi slave dma receiver when cs inactive
[v3,5/6] spi: rockchip: Suspend and resume the bus during NOIRQ_SYSTEM_SLEEP_PM ops
[v3,6/6] spi: rockchip: clear interrupt status in error handler
Patch: spi: meson-spicc: add IRQ check in meson_spicc_probe
Submitter: Miaoqian Lin <linmq006@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=608620
Lore link: https://lore.kernel.org/r/20220126110447.24549-1-linmq006@gmail.com
Patch: spi: bcm-qspi: check for valid cs before applying chip select
Submitter: Kamal Dasu <kdasu.kdev@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=609218
Lore link: https://lore.kernel.org/r/20220127185359.27322-1-kdasu.kdev@gmail.com
Patch: spi: dt-bindings: Fix 'reg' child node schema
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=608851
Lore link: https://lore.kernel.org/r/20220126231326.1636199-1-robh@kernel.org
Patch: [1/3] dt-bindings: spi: spi-rockchip: Add rk3568-spi compatible
Submitter: Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=586477
Lore link: https://lore.kernel.org/r/20211126154344.724316-2-frattaroli.nicolas@gmail.com
Patch: [v2,1/3] dt-bindings: spi: spi-rockchip: Add rk3568-spi compatible
Submitter: Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=586695
Lore link: https://lore.kernel.org/r/20211127141910.12649-2-frattaroli.nicolas@gmail.com
Total patches: 15
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-15 13:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-15 13:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: amd: Add support for new controller version
Submitter: André Almeida <andrealmeid@collabora.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=613509
Lore link: https://lore.kernel.org/r/20220211143155.75513-1-andrealmeid@collabora.com
Patches: [v2,1/3] spi: amd: Use iopoll for busy waiting
[v2,2/3] spi: amd: Remove needless rom_addr variable
Series: mtd: spi-nor / spi / MFD: Convert intel-spi to SPI MEM
Submitter: Mika Westerberg <mika.westerberg@linux.intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=612609
Lore link: https://lore.kernel.org/r/20220209122706.42439-1-mika.westerberg@linux.intel.com
Patches: [v6,1/3] mtd: spi-nor: intel-spi: Disable write protection only if asked
[v6,3/3] Documentation / MTD: Rename the intel-spi driver
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-08 19:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-08 19:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [next] spi: Modify irq request position and modify parameters
Submitter: Li-hao Kuo <lhjeff911@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=611692
Lore link: https://lore.kernel.org/r/a94e3b123773fe303221d2bd2e4ce36ffa905a1c.1644198957.git.lhjeff911@gmail.com
Patch: spi: ath79: add mem_ops for fast-read
Submitter: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=609701
Lore link: https://lore.kernel.org/r/20220129040453.8476-1-luizluca@gmail.com
Series: [1/2] dt-bindings: spi: Convert spi-mt65xx & spi-slave-mt27xx to json-schema
Submitter: Leilk Liu <leilk.liu@mediatek.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=603997
Lore link: https://lore.kernel.org/r/20220110053744.30323-1-leilk.liu@mediatek.com
Patches: [1/2] dt-bindings: spi: Convert spi-mt65xx & spi-slave-mt27xx to json-schema
[2/2] dt-bindings: spi: Add compatible for Mediatek MT8186
Series: Add compatible for Mediatek MT8186
Submitter: Leilk Liu <leilk.liu@mediatek.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=608150
Lore link: https://lore.kernel.org/r/20220125012330.13449-1-leilk.liu@mediatek.com
Patches: [V4,1/3] dt-bindings: spi: Convert spi-slave-mt27xx to json-schema
[V4,2/3] dt-bindings: spi: Convert spi-mt65xx to json-schema
[V4,3/3] dt-bindings: spi: Add compatible for Mediatek MT8186
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-01 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-02-01 17:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Support Spi in i2c-multi-instantiate driver
Submitter: Stefan Binding <sbinding@opensource.cirrus.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=607335
Lore link: https://lore.kernel.org/r/20220121172431.6876-1-sbinding@opensource.cirrus.com
Patches: [v6,1/9] spi: Make spi_alloc_device and spi_add_device public again
[v6,2/9] spi: Create helper API to lookup ACPI info for spi device
[v6,3/9] spi: Support selection of the index of the ACPI Spi Resource before alloc
[v6,4/9] spi: Add API to count spi acpi resources
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-28 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-01-28 16:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [-next] spi: Fix missing unlock on error in sp7021_spi_master_transfer_one()
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=609069
Lore link: https://lore.kernel.org/r/20220127115815.3148950-1-yangyingliang@huawei.com
Patch: spi: sunplus-sp7021: Unlock on error path
Submitter: Dan Carpenter <dan.carpenter@oracle.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=609518
Lore link: https://lore.kernel.org/r/20220128135611.GA29554@kili
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-25 14:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-01-25 14:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: Add spi control driver for Sunplus SP7021 SoC
Submitter: Li-hao Kuo <lhjeff911@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=606178
Lore link: https://lore.kernel.org/r/cover.1642494310.git.lhjeff911@gmail.com
Patches: [v6,1/2] spi: Add spi driver for Sunplus SP7021
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-25 10:43 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-01-25 10:43 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: dt-bindinds/dts: support i.MX8ULP
Submitter: Peng Fan (OSS) <peng.fan@oss.nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=586229
Lore link: https://lore.kernel.org/r/20211126074002.1535696-1-peng.fan@oss.nxp.com
Patches: [V6,1/7] dt-bindings: i2c: imx-lpi2c: Add imx8ulp compatible string
[V6,3/7] dt-bindings: timer: tpm-timer: Add imx8ulp compatible string
Series: dmaengine: kill off dma_slave_config->slave_id
Submitter: Arnd Bergmann <arnd@kernel.org>
Committer: Vinod Koul <vkoul@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=584207
Lore link: https://lore.kernel.org/r/20211122222203.4103644-1-arnd@kernel.org
Patches: [v2,01/11] ASoC: tegra20-spdif: stop setting slave_id
[v2,02/11] ASoC: dai_dma: remove slave_id field
[v2,03/11] spi: pic32: stop setting dma_config->slave_id
[v2,04/11] mmc: bcm2835: stop setting chan_config->slave_id
[v2,05/11] dmaengine: shdma: remove legacy slave_id parsing
[v2,06/11] dmaengine: pxa/mmp: stop referencing config->slave_id
[v2,07/11] dmaengine: sprd: stop referencing config->slave_id
[v2,08/11] dmaengine: qcom-adm: stop abusing slave_id config
[v2,09/11] dmaengine: xilinx_dpdma: stop using slave_id field
[v2,10/11] dmaengine: tegra20-apb: stop checking config->slave_id
[v2,11/11] dmaengine: remove slave_id config field
Series: [1/4] mtd: dataflash: Warn about failure to unregister mtd device
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=576757
Lore link: https://lore.kernel.org/r/20211108093153.63792-1-u.kleine-koenig@pengutronix.de
Patches: [1/4] mtd: dataflash: Warn about failure to unregister mtd device
[2/4] mtd: mchp23k256: Warn about failure to unregister mtd device
[3/4] mtd: mchp48l640: Warn about failure to unregister mtd device
[4/4] mtd: sst25l: Warn about failure to unregister mtd device
Series: Add basic SoC support for mediatek mt8195
Submitter: Tinghan Shen <tinghan.shen@mediatek.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=598221
Lore link: https://lore.kernel.org/r/20211220121825.6446-1-tinghan.shen@mediatek.com
Patches: [v7,1/4] dt-bindings: arm: mediatek: add mt8195 pericfg compatible
[v7,3/4] dt-bindings: pinctrl: mt8195: add wrapping node of pin configurations
Series: [1/3,v3] spi: s3c64xx: Delete unused boardfile helpers
Submitter: Linus Walleij <linus.walleij@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=606407
Lore link: https://lore.kernel.org/r/20220118230915.157797-1-linus.walleij@linaro.org
Patches: [1/3,v3] spi: s3c64xx: Delete unused boardfile helpers
[2/3,v3] spi: s3c64xx: Drop custom gpio setup argument
Series: Update the Icicle Kit device tree
Submitter: <conor.dooley@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=605968
Lore link: https://lore.kernel.org/r/20220117110755.3433142-1-conor.dooley@microchip.com
Patches: [v4,01/14] dt-bindings: soc/microchip: update syscontroller compatibles
[v4,06/14] dt-bindings: spi: add bindings for microchip mpfs spi
Total patches: 23
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-10 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-01-10 16:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: driver:spi: change clk_disable_unprepare to clk_unprepare
Submitter: Dongliang Mu <mudongliangabcd@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=590707
Lore link: https://lore.kernel.org/r/20211206101931.2816597-1-mudongliangabcd@gmail.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-06 20:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2022-01-06 20:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [v2,1/2] spi: qcom: geni: set the error code for gpi transfer
Submitter: Vinod Koul <vkoul@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=602312
Lore link: https://lore.kernel.org/r/20220103071118.27220-1-vkoul@kernel.org
Patches: [v2,1/2] spi: qcom: geni: set the error code for gpi transfer
[v2,2/2] spi: qcom: geni: handle timeout for gpi mode
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-12-23 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-12-23 17:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: [v2,1/3] spi: dln2: Propagate firmware node
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=599402
Lore link: https://lore.kernel.org/r/20211222155739.7699-1-andriy.shevchenko@linux.intel.com
Patches: [v2,1/3] spi: dln2: Propagate firmware node
[v2,2/3] spi: dw: Propagate firmware node
[v2,3/3] spi: pxa2xx: Propagate firmware node
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-12-14 13:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-12-14 13:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: [v2] spi: Fix incorrect cs_setup delay handling
Submitter: Hector Martin <marcan@marcan.st>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=593813
Lore link: https://lore.kernel.org/r/20211210170534.177139-1-marcan@marcan.st
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-18 19:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-11-18 19:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: RSPI driver support for RZ/G2L
Submitter: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=582015
Lore link: https://lore.kernel.org/r/20211118031041.2312-1-prabhakar.mahadev-lad.rj@bp.renesas.com
Patches: [v2,1/3] spi: dt-bindings: renesas,rspi: Document RZ/G2L SoC
[v2,2/3] spi: spi-rspi: Add support to deassert/assert reset line
[v2,3/3] spi: spi-rspi: Drop redeclaring ret variable in qspi_transfer_in()
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-16 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-11-16 17:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: dw: Cleanup macros/funcs naming and add IP-core version support
Submitter: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=580303
Lore link: https://lore.kernel.org/r/20211115181917.7521-1-Sergey.Semin@baikalelectronics.ru
Patches: [v3,1/7] spi: dw: Add a symbols namespace for the core module
[v3,2/7] spi: dw: Discard redundant DW SSI Frame Formats enumeration
[v3,3/7] spi: dw: Put the driver entities naming in order
[v3,4/7] spi: dw: Convert to using the Bitfield access macros
[v3,5/7] spi: dw: Introduce Synopsys IP-core versions interface
[v3,6/7] spi: dw: Replace DWC_HSSI capability with IP-core version checker
[v3,7/7] spi: dw: Define the capabilities in a continuous bit-flags set
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-15 19:28 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-11-15 19:28 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: sound: soc: tlv320aic32x4: Make aic32x4_remove() return void
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=563951
Lore link: https://lore.kernel.org/r/20211015071113.2795767-1-u.kleine-koenig@pengutronix.de
Patch: spi: Check we have a spi_device_id for each DT compatible
Submitter: Mark Brown <broonie@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=550541
Lore link: https://lore.kernel.org/r/20210921192149.50740-1-broonie@kernel.org
Series: Update STMicroelectronics maintainers email
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=578111
Lore link: https://lore.kernel.org/r/20211110150144.18272-1-patrice.chotard@foss.st.com
Patches: [v3,1/5] dt-bindings: timer: Update maintainers for st,stm32-timer
[v3,2/5] dt-bindings: mfd: timers: Update maintainers for st,stm32-timers
[v3,3/5] dt-bindings: media: Update maintainers for st,stm32-cec.yaml
[v3,4/5] dt-bindings: media: Update maintainers for st,stm32-hwspinlock.yaml
[v3,5/5] dt-bindings: treewide: Update @st.com email address to @foss.st.com
Patch: sound: soc: tlv320aic3x: Make aic3x_remove() return void
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=566055
Lore link: https://lore.kernel.org/r/20211019074125.3812513-1-u.kleine-koenig@pengutronix.de
Series: Let spi drivers return 0 in .remove()
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Committer: David S. Miller <davem@davemloft.net>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=563939
Lore link: https://lore.kernel.org/r/20211015065615.2795190-1-u.kleine-koenig@pengutronix.de
Patches: [v2,1/2] net: ks8851: Make ks8851_remove_common() return void
[v2,2/2] net: w5100: Make w5100_remove() return void
Patch: dt-bindings: Remove Netlogic bindings
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=577559
Lore link: https://lore.kernel.org/r/20211109161707.2209170-1-robh@kernel.org
Total patches: 11
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-12 21:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-11-12 21:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: fix use-after-free of the add_lock mutex
Submitter: Michael Walle <michael@walle.cc>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=578547
Lore link: https://lore.kernel.org/r/20211111083713.3335171-1-michael@walle.cc
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-15 19:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-15 19:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: replace snprintf in show functions with sysfs_emit
Submitter: Qing Wang <wangqing@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=563925
Lore link: https://lore.kernel.org/r/1634280668-4954-1-git-send-email-wangqing@vivo.com
Patch: spi: orion: Add of_node_put() before goto
Submitter: Wan Jiabing <wanjiabing@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=563833
Lore link: https://lore.kernel.org/r/20211015034008.6357-1-wanjiabing@vivo.com
Patch: spi: cadence: Add of_node_put() before return
Submitter: Wan Jiabing <wanjiabing@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=563831
Lore link: https://lore.kernel.org/r/20211015033919.5915-1-wanjiabing@vivo.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-13 20:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-13 20:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Patch: spi: tegra20: fix build with CONFIG_PM_SLEEP=n
Submitter: Arnd Bergmann <arnd@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=562791
Lore link: https://lore.kernel.org/r/20211013144538.2346533-1-arnd@kernel.org
Patch: spi: cadence-quadspi: fix dma_unmap_single() call
Submitter: Arnd Bergmann <arnd@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=562793
Lore link: https://lore.kernel.org/r/20211013144600.2378037-1-arnd@kernel.org
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-11 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-11 16:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi-bcm-qspi spcr3 enahancements
Submitter: Kamal Dasu <kdasu.kdev@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=560175
Lore link: https://lore.kernel.org/r/20211008203603.40915-1-kdasu.kdev@gmail.com
Patches: [1/3] spi: bcm-qspi: Add mspi spcr3 32/64-bits xfer mode
[2/3] spi: bcm-qspi: clear MSPI spifie interrupt during probe
[3/3] spi: bcm-qspi: add support for 3-wire mode for half duplex transfer
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-07 21:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-07 21:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (for-next):
Series: spi: Various Cleanups
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=559095
Lore link: https://lore.kernel.org/r/20211007121415.2401638-1-u.kleine-koenig@pengutronix.de
Patches: [1/4] spi: Move comment about chipselect check to the right place
[2/4] spi: Remove unused function spi_busnum_to_master()
[3/4] spi: Reorder functions to simplify the next commit
[4/4] spi: Make several public functions private to spi.c
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-05 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-05 15:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: fsi: Print status on error
Submitter: Eddie James <eajames@linux.ibm.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=557341
Lore link: https://lore.kernel.org/r/20211004195149.29759-1-eajames@linux.ibm.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-04 17:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-04 17:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v2] spi: cadence: fix static checker warning
Submitter: Parshuram Thombare <pthombar@cadence.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=556997
Lore link: https://lore.kernel.org/r/1633336704-22735-1-git-send-email-pthombar@cadence.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-02 1:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-02 1:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: spi-nxp-fspi: don't depend on a specific node name erratum workaround
Submitter: Michael Walle <michael@walle.cc>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=556523
Lore link: https://lore.kernel.org/r/20211001212726.159437-1-michael@walle.cc
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-02 0:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-10-02 0:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: cadence-quadspi: Add Xilinx Versal OSPI support
Submitter: Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=552217
Lore link: https://lore.kernel.org/r/1632478031-12242-1-git-send-email-lakshmi.sai.krishna.potthuri@xilinx.com
Patches: [1/4] firmware: xilinx: Add OSPI Mux selection support
[2/4] dt-bindings: spi: cadence-quadspi: Add support for Xilinx Versal OSPI
[3/4] spi: cadence-quadspi: Add OSPI support for Xilinx Versal SoC
[4/4] spi: cadence-quadspi: Add Xilinx Versal external DMA support
Patch: [v2] spi: mediatek: skip delays if they are 0
Submitter: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=556347
Lore link: https://lore.kernel.org/r/20211001152153.4604-1-dafna.hirschfeld@collabora.com
Patch: [v4] spi: atmel: Fix PDC transfer setup bug
Submitter: Ville Baillie <VilleB@bytesnap.co.uk>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=550237
Lore link: https://lore.kernel.org/r/20210921072132.21831-1-villeb@bytesnap.co.uk
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-27 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-09-27 17:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Fix mdiobus users with devres
Submitter: Vladimir Oltean <vladimir.oltean@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=550071
Lore link: https://lore.kernel.org/r/20210920214209.1733768-1-vladimir.oltean@nxp.com
Patches: [net,1/2] net: dsa: don't allocate the slave_mii_bus using devres
[net,2/2] net: dsa: realtek: register the MDIO bus under devres
Series: add support for Cadence's XSPI controller
Submitter: Parshuram Thombare <pthombar@cadence.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=549405
Lore link: https://lore.kernel.org/r/1632038668-23756-1-git-send-email-pthombar@cadence.com
Patches: [v6,1/2] spi: cadence: add dt-bindings documentation for Cadence XSPI controller
[v6,2/2] spi: cadence: add support for Cadence XSPI controller
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-21 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-09-21 17:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: Revert modalias changes
Submitter: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=550495
Lore link: https://lore.kernel.org/r/20210921173222.46514-1-broonie@kernel.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-13 11:08 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-09-13 11:08 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: add ecspi ERR009165 for i.mx6/7 soc family
Submitter: Robin Gong <yibin.gong@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=515115
Lore link: https://lore.kernel.org/r/1626258052-22198-1-git-send-email-yibin.gong@nxp.com
Patches: [v16,01/12] Revert "ARM: dts: imx6q: Use correct SDMA script for SPI5 core"
[v16,02/12] Revert "ARM: dts: imx6: Use correct SDMA script for SPI cores"
[v16,03/12] Revert "dmaengine: imx-sdma: refine to load context only once"
[v16,04/12] dmaengine: imx-sdma: remove duplicated sdma_load_context
[v16,05/12] dmaengine: dma: imx-sdma: add fw_loaded and is_ram_script
[v16,06/12] dmaengine: imx-sdma: add mcu_2_ecspi script
[v16,07/12] spi: imx: fix ERR009165
[v16,08/12] spi: imx: remove ERR009165 workaround on i.mx6ul
[v16,09/12] dmaengine: imx-sdma: remove ERR009165 on i.mx6ul
[v16,10/12] dma: imx-sdma: add i.mx6ul compatible name
[v16,11/12] dmaengine: imx-sdma: add uart rom script
[v16,12/12] dmaengine: imx-sdma: add terminated list for freed descriptor in worker
Series: fpga/spi/hwmon: Initial support for Silicom N5010 PAC
Submitter: Martin Hundebøll <martin@geanix.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=516701
Lore link: https://lore.kernel.org/r/20210716135441.3235863-1-martin@geanix.com
Patches: [v5,1/3] fpga: dfl: expose feature revision from struct dfl_device
[v5,2/3] spi: spi-altera-dfl: support n5010 feature revision
[v5,3/3] hwmon: intel-m10-bmc-hwmon: add n5010 sensors
Series: [v2,1/4] spi: amd: Refactor code to use less spi_master_get_devdata
Submitter: Lucas tanure <tanureal@opensource.cirrus.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=544861
Lore link: https://lore.kernel.org/r/20210910111529.12539-1-tanureal@opensource.cirrus.com
Patches: [v2,1/4] spi: amd: Refactor code to use less spi_master_get_devdata
[v2,2/4] spi: amd: Refactor amd_spi_busy_wait
[v2,3/4] spi: amd: Remove unneeded variable
[v2,4/4] spi: amd: Don't wait for a write-only transfer to finish
Patch: dt-bindings: More use 'enum' instead of 'oneOf' plus 'const' entries
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=544985
Lore link: https://lore.kernel.org/r/20210910165153.2843871-1-robh@kernel.org
Series: GE Healthcare PPD firmware upgrade driver for ACHC
Submitter: Sebastian Reichel <sebastian.reichel@collabora.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=525109
Lore link: https://lore.kernel.org/r/20210802172309.164365-1-sebastian.reichel@collabora.com
Patches: [PATCHv8,1/3] dt-bindings: misc: ge-achc: Convert to DT schema format
[PATCHv8,2/3] ARM: dts: imx53-ppd: Fix ACHC entry
[PATCHv8,3/3] misc: gehc-achc: new driver
Patch: [v2] dt-bindings: memory: renesas,rpc-if: Miscellaneous improvements
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=522117
Lore link: https://lore.kernel.org/r/d81b59a513c2a5204c8378b4a89cd07f97c46797.1627401508.git.geert+renesas@glider.be
Patch: spi: dt-bindings: xilinx: Drop type reference on *-bits properties
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=544993
Lore link: https://lore.kernel.org/r/20210910165945.2852999-1-robh@kernel.org
Total patches: 25
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-26 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-08-26 14:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [RESEND] spi: spi-zynq-qspi: use wait_for_completion_timeout to make zynq_qspi_exec_mem_op not interruptible
Submitter: quanyang.wang <quanyang.wang@windriver.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=537429
Lore link: https://lore.kernel.org/r/20210826005930.20572-1-quanyang.wang@windriver.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-26 12:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-08-26 12:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Add sprd ADI r3 support
Submitter: Chunyan Zhang <zhang.lyra@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=537629
Lore link: https://lore.kernel.org/r/20210826091549.2138125-1-zhang.lyra@gmail.com
Patches: [V3,1/4] spi: sprd: Fix the wrong WDG_LOAD_VAL
[V3,2/4] spi: sprd: Add ADI r3 support
[V3,3/4] dt-bindings: spi: Convert sprd ADI bindings to yaml
[V3,4/4] dt-bindings: spi: add sprd ADI for sc9863 and ums512
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-13 17:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-08-13 17:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [-next] spi: mxic: add missing braces
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=529241
Lore link: https://lore.kernel.org/r/20210810142405.2221540-1-yangyingliang@huawei.com
Patch: spi: mxic: Fix missing { } around an if code block
Submitter: Colin King <colin.king@canonical.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=531099
Lore link: https://lore.kernel.org/r/20210813104259.17612-1-colin.king@canonical.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-09 13:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-08-09 13:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v7] spi: mxic: patch for octal DTR mode support
Submitter: Zhengxun Li <zhengxunli@mxic.com.tw>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=528389
Lore link: https://lore.kernel.org/r/1628501963-7814-1-git-send-email-zhengxunli@mxic.com.tw
Series: [v2,1/2] spi: tegra20-slink: Improve runtime PM usage
Submitter: Dmitry Osipenko <digetx@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=524505
Lore link: https://lore.kernel.org/r/20210731192731.5869-1-digetx@gmail.com
Patches: [v2,1/2] spi: tegra20-slink: Improve runtime PM usage
[v2,2/2] spi: tegra20-slink: Don't use resource-managed spi_register helper
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-06 0:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-08-06 0:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi cs_timing restructure
Submitter: Mason Zhang <Mason.Zhang@mediatek.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=526311
Lore link: https://lore.kernel.org/r/20210804133630.18519-1-Mason.Zhang@mediatek.com
Patches: [v3,1/2] spi: move cs spi_delay to spi_device
[v3,2/2] spi: modify set_cs_timing parameter
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-19 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-07-19 14:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: dt-bindings: Move fixed string 'patternProperties' to 'properties'
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=514971
Lore link: https://lore.kernel.org/r/20210713193514.690894-1-robh@kernel.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-16 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-07-16 17:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: spi-cadence-quadspi: Fix division by zero warning
Submitter: Yoshitaka Ikeda <ikeda@nskint.co.jp>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=516729
Lore link: https://lore.kernel.org/r/bd921311-5896-b228-ea6c-20e11dfe62e3@nskint.co.jp
Patches: [v5,1/2] spi: spi-cadence-quadspi: Revert "Fix division by zero warning"
[v5,2/2] spi: spi-cadence-quadspi: Fix division by zero warning
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-12 10:58 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-07-12 10:58 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: mtd: spinand: add SPI-NAND MTD resume handler
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=492423
Lore link: https://lore.kernel.org/r/20210602094913.26472-1-patrice.chotard@foss.st.com
Patches: [v5,1/3] mtd: spinand: add spinand_read_cfg() helper
[v5,2/3] mtd: spinand: Add spinand_init_flash() helper
[v5,3/3] mtd: spinand: add SPI-NAND MTD resume handler
Series: Adapt the sja1105 DSA driver to the SPI controller's transfer limits
Submitter: Vladimir Oltean <olteanv@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=486053
Lore link: https://lore.kernel.org/r/20210520211657.3451036-1-olteanv@gmail.com
Patches: [v3,net-next,1/2] net: dsa: sja1105: send multiple spi_messages instead of using cs_change
[v3,net-next,2/2] net: dsa: sja1105: adapt to a SPI controller with a limited max transfer size
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-06-23 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-06-23 16:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [1/1] spi-sun6i: Fix chipselect/clock bug
Submitter: Ralf Schlatterbeck <rsc@runtux.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=486737
Lore link: https://lore.kernel.org/r/20210521201913.2gapcmrzynxekro7@runtux.com
Patch: [v2,1/1] spi: spi-sun6i: Fix chipselect/clock bug
Submitter: Ralf Schlatterbeck <rsc@runtux.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=499971
Lore link: https://lore.kernel.org/r/20210614144507.y3udezjfbko7eavv@runtux.com
Series: Support ROCKCHIP SPI new feature
Submitter: Jon Lin <jon.lin@rock-chips.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=504289
Lore link: https://lore.kernel.org/r/20210621104800.19088-1-jon.lin@rock-chips.com
Patches: [v10,1/6] dt-bindings: spi: spi-rockchip: add description for rv1126
[v10,2/6] spi: rockchip: add compatible string for rv1126
[v10,3/6] spi: rockchip: Set rx_fifo interrupt waterline base on transfer item
[v10,4/6] spi: rockchip: Wait for STB status in slave mode tx_xfer
[v10,5/6] spi: rockchip: Support cs-gpio
[v10,6/6] spi: rockchip: Support SPI_CS_HIGH
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-06-03 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-06-03 18:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: MTD: spinand: Add spi_mem_poll_status() support
Submitter: Patrice CHOTARD <patrice.chotard@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=484439
Lore link: https://lore.kernel.org/r/20210518162754.15940-1-patrice.chotard@foss.st.com
Patches: [v5,1/3] spi: spi-mem: add automatic poll status functions
[v5,2/3] mtd: spinand: use the spi-mem poll status APIs
[v5,3/3] spi: stm32-qspi: add automatic poll status feature
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-28 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-05-28 16:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v1,1/1] spi: Enable tracing of the SPI setup CS selection
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=489145
Lore link: https://lore.kernel.org/r/20210526195655.75691-1-andriy.shevchenko@linux.intel.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-11 18:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-05-11 18:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: pxa2xx: Set of cleanups
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=480467
Lore link: https://lore.kernel.org/r/20210511141725.32097-1-andriy.shevchenko@linux.intel.com
Patches: [v3,1/8] spi: pxa2xx: Reuse int_error_stop() in pxa2xx_spi_slave_abort()
[v3,2/8] spi: pxa2xx: Use pxa_ssp_enable()/pxa_ssp_disable() in the driver
[v3,3/8] spi: pxa2xx: Extract pxa2xx_spi_update() helper
[v3,4/8] spi: pxa2xx: Extract clear_SSCR1_bits() helper
[v3,5/8] spi: pxa2xx: Extract read_SSSR_bits() helper
[v3,6/8] spi: pxa2xx: Constify struct driver_data parameter
[v3,7/8] spi: pxa2xx: Introduce special type for Merrifield SPIs
[v3,8/8] spi: Convert to use predefined time multipliers
Patch: [v1,1/1] spi: Convert to use predefined time multipliers
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=479557
Lore link: https://lore.kernel.org/r/20210510131120.49253-1-andriy.shevchenko@linux.intel.com
Total patches: 9
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-11 8:29 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-05-11 8:29 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: imx: Use of_device_get_match_data() helper
Submitter: Tian Tao <tiantao6@hisilicon.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=452493
Lore link: https://lore.kernel.org/r/1616385476-53327-1-git-send-email-tiantao6@hisilicon.com
Patch: dt-bindings: Clean-up undocumented compatible strings
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=449453
Lore link: https://lore.kernel.org/r/20210316194918.3528417-1-robh@kernel.org
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-21 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-04-21 18:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v1,1/1] spi: Don't overwrite num_chipselect with error code
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=470279
Lore link: https://lore.kernel.org/r/20210420131901.80233-1-andriy.shevchenko@linux.intel.com
Patch: [v2,1/1] spi: Make error handling of gpiod_count() call cleaner
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=470387
Lore link: https://lore.kernel.org/r/20210420164040.40055-1-andriy.shevchenko@linux.intel.com
Series: [v2,1/2] spi: Allow to have all native CSs in use along with GPIOs
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=470391
Lore link: https://lore.kernel.org/r/20210420164425.40287-1-andriy.shevchenko@linux.intel.com
Patches: [v2,1/2] spi: Allow to have all native CSs in use along with GPIOs
[v2,2/2] spi: Avoid undefined behaviour when counting unused native CSs
Patch: spi: Make of_register_spi_device also set the fwnode
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=470809
Lore link: https://lore.kernel.org/r/20210421101402.8468-1-ckeepax@opensource.cirrus.com
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-16 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-04-16 16:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: spi-zynqmp-gqspi: fix spi issues
Submitter: Quanyang Wang <quanyang.wang@windriver.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=468631
Lore link: https://lore.kernel.org/r/20210416142047.6349-1-quanyang.wang@windriver.com
Patches: [V2,1/5] spi: spi-zynqmp-gqspi: fix clk_enable/disable imbalance issue
[V2,2/5] spi: spi-zynqmp-gqspi: fix hang issue when suspend/resume
[V2,3/5] spi: spi-zynqmp-gqspi: Resolved slab-out-of-bounds bug
[V2,4/5] spi: spi-zynqmp-gqspi: fix use-after-free in zynqmp_qspi_exec_op
[V2,5/5] spi: spi-zynqmp-gqspi: return -ENOMEM if dma_map_single fails
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-12 19:01 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-04-12 19:01 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Minor updates for hisi-sfc-v3xx
Submitter: Yicong Yang <yangyicong@hisilicon.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=465569
Lore link: https://lore.kernel.org/r/1618228708-37949-1-git-send-email-yangyicong@hisilicon.com
Patches: [v2,1/2] spi: hisi-sfc-v3xx: fix potential irq race condition
[v2,2/2] spi: hisi-sfc-v3xx: drop unnecessary ACPI_PTR and related ifendif protection
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-23 22:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-03-23 22:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: drivers: spi: cadence: set cqspi to the driver_data field of struct device
Submitter: Li, Meng <Meng.Li@windriver.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=446063
Lore link: https://lore.kernel.org/r/20210311091220.3615-1-Meng.Li@windriver.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-04 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-03-04 15:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v2,1/3] parport: Introduce module_parport_driver() helper macro
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=433931
Lore link: https://lore.kernel.org/r/20210216110741.1286-1-andriy.shevchenko@linux.intel.com
Patches: [v2,1/3] parport: Introduce module_parport_driver() helper macro
[v2,2/3] spi: butterfly: Switch to use module_parport_driver()
[v2,3/3] spi: lm70llp: Switch to use module_parport_driver()
Series: parport: Introduce module_parport_driver() and use it
Submitter: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=441671
Lore link: https://lore.kernel.org/r/20210303091642.23929-1-andriy.shevchenko@linux.intel.com
Patches: [v3,1/3] parport: Introduce module_parport_driver() helper macro
[v3,2/3] spi: butterfly: Switch to use module_parport_driver()
[v3,3/3] spi: lm70llp: Switch to use module_parport_driver()
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-04 1:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-03-04 1:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: NXP Flexspi driver patches
Submitter: Kuldeep Singh <kuldeep.singh@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=440599
Lore link: https://lore.kernel.org/r/20210302124936.1972546-1-kuldeep.singh@nxp.com
Patches: [v2,1/4] spi: spi-nxp-fspi: Add support for IP read only
[v2,2/4] dt-bindings: spi: spi-nxp-fspi: Add imx8dxl support
[v2,3/4] spi: spi-nxp-fspi: Add imx8dxl driver support
[v2,4/4] spi: spi-nxp-fspi: Implement errata workaround for LS1028A
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-01 23:54 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-03-01 23:54 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [1/3] spi: mpc52xx: Avoid using get_tbl()
Submitter: Christophe Leroy <christophe.leroy@csgroup.eu>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=430565
Lore link: https://lore.kernel.org/r/99bf008e2970de7f8ed3225cda69a6d06ae1a644.1612866360.git.christophe.leroy@csgroup.eu
Patches: [1/3] spi: mpc52xx: Avoid using get_tbl()
[2/3] powerpc/time: Avoid using get_tbl()
[3/3] powerpc/time: Remove get_tbl()
Patch: regulator: axp20x: Fix reference cout leak
Submitter: Pan Bian <bianpan2016@163.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=419445
Lore link: https://lore.kernel.org/r/20210120123313.107640-1-bianpan2016@163.com
Patch: coresight: etm4x: Fix merge resolution for amba rework
Submitter: Uwe Kleine-König <uwe@kleine-koenig.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=428749
Lore link: https://lore.kernel.org/r/20210205130848.20009-1-uwe@kleine-koenig.org
Patch: [GIT,PULL] immutable branch for amba changes targeting v5.12-rc1
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=426429
Lore link: https://lore.kernel.org/r/20210202135350.36nj3dmcoq3t7gcf@pengutronix.de
Patch: mailbox: arm_mhuv2: make remove callback return void
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=426527
Lore link: https://lore.kernel.org/r/20210202194308.jm66vblqjwr5wo6v@pengutronix.de
Patch: ACPI: Test for ACPI_SUCCESS rather than !ACPI_FAILURE
Submitter: Bjorn Helgaas <helgaas@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=422933
Lore link: https://lore.kernel.org/r/20210126202317.2914080-1-helgaas@kernel.org
Patch: [v2] dt-bindings: spi: zynq: Convert Zynq QSPI binding to yaml
Submitter: Michal Simek <michal.simek@xilinx.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=431341
Lore link: https://lore.kernel.org/r/4ece21a7e9691ed1e775fd6b0b4046b1562e44bd.1612951821.git.michal.simek@xilinx.com
Total patches: 9
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-02-22 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-02-22 16:10 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v2] spi: spi-ti-qspi: Free DMA resources
Submitter: Tudor Ambarus <tudor.ambarus@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=435063
Lore link: https://lore.kernel.org/r/20210218130950.90155-1-tudor.ambarus@microchip.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-02-05 20:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-02-05 20:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: stm32: fix and enhancements for spi-stm32
Submitter: Alain Volmat <alain.volmat@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=428915
Lore link: https://lore.kernel.org/r/1612551572-495-1-git-send-email-alain.volmat@foss.st.com
Patches: [v2,1/8] spi: stm32: properly handle 0 byte transfer
[v2,2/8] spi: stm32: do not mandate cs_gpio
[v2,3/8] spi: stm32: use bitfield macros
[v2,4/8] spi: stm32h7: ensure message are smaller than max size
[v2,5/8] spi: stm32: driver uses reset controller only at init
[v2,6/8] spi: stm32: defer probe for reset
[v2,7/8] spi: stm32h7: replace private SPI_1HZ_NS with NSEC_PER_SEC
[v2,8/8] spi: stm32: make spurious and overrun interrupts visible
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-19 19:21 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-01-19 19:21 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: imx: Don't print error on -EPROBEDEFER
Submitter: Guido Günther <agx@sigxcpu.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=416929
Lore link: https://lore.kernel.org/r/0f51ab42e7c7a3452f2f8652794d81584303ea0d.1610987414.git.agx@sigxcpu.org
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-13 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-01-13 15:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: cadence-quadspi: Add QSPI controller support for Intel LGM SoC
Submitter: Ramuthevar,Vadivel MuruganX <vadivel.muruganx.ramuthevar@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=389857
Lore link: https://lore.kernel.org/r/20201124041840.31066-1-vadivel.muruganx.ramuthevar@linux.intel.com
Patches: [v9,1/5] spi: cadence-quadspi: Add QSPI support for Intel LGM SoC
[v9,2/5] spi: cadence-quadspi: Disable the DAC for Intel LGM SoC
[v9,3/5] spi: cadence-quadspi: Add multi-chipselect support for Intel LGM SoC
[v9,4/5] spi: Move cadence-quadspi.txt to Documentation/devicetree/bindings/spi
[v9,5/5] dt-bindings: spi: cadence-qspi: Add support for Intel lgm-qspi
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-04 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2021-01-04 17:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v3] spi: fix the divide by 0 error when calculating xfer waiting time
Submitter: Xu Yilun <yilun.xu@intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=408401
Lore link: https://lore.kernel.org/r/1609723749-3557-1-git-send-email-yilun.xu@intel.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-28 16:34 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-28 16:34 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v1] Input: touchscreen: ads7846.c: fix integer overflow on Rt calculation
Submitter: Oleksij Rempel <o.rempel@pengutronix.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=383551
Lore link: https://lore.kernel.org/r/20201113112240.1360-1-o.rempel@pengutronix.de
Series: [v6,1/3] spi: uapi: unify SPI modes into a single spi.h header
Submitter: Alexandru Ardelean <alexandru.ardelean@analog.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=404879
Lore link: https://lore.kernel.org/r/20201221152936.53873-1-alexandru.ardelean@analog.com
Patches: [v6,1/3] spi: uapi: unify SPI modes into a single spi.h header
[v6,2/3] spi: Add SPI_NO_TX/RX support
[v6,3/3] spi: dt-bindings: document zero value for spi-{rx,tx}-bus-width properties
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-18 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-18 18:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v3,1/4] spi: spi-geni-qcom: Fix geni_spi_isr() NULL dereference in timeout case
Submitter: Douglas Anderson <dianders@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=403853
Lore link: https://lore.kernel.org/r/20201217142842.v3.1.I99ee04f0cb823415df59bd4f550d6ff5756e43d6@changeid
Patches: [v3,1/4] spi: spi-geni-qcom: Fix geni_spi_isr() NULL dereference in timeout case
[v3,2/4] spi: spi-geni-qcom: Fail new xfers if xfer/cancel/abort pending
[v3,3/4] spi: spi-geni-qcom: Don't try to set CS if an xfer is pending
[v3,4/4] spi: spi-geni-qcom: Print an error when we timeout setting the CS
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-11 17:53 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-11 17:53 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: spi-geni-qcom: Use the new method of gpio CS control
Submitter: Stephen Boyd <swboyd@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=394995
Lore link: https://lore.kernel.org/r/20201202214935.1114381-1-swboyd@chromium.org
Series: spi: spi-geni-qcom: Use gpio descriptors for CS
Submitter: Stephen Boyd <swboyd@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=396589
Lore link: https://lore.kernel.org/r/20201204193540.3047030-1-swboyd@chromium.org
Patches: [1/3] platform/chrome: cros_ec_spi: Don't overwrite spi::mode
[2/3] platform/chrome: cros_ec_spi: Drop bits_per_word assignment
[3/3] spi: spi-geni-qcom: Use the new method of gpio CS control
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-09 15:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-09 15:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: DW apb_ssi V4 support for Kendryte K210 RISC-V SoC
Submitter: Damien Le Moal <damien.lemoal@wdc.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=396943
Lore link: https://lore.kernel.org/r/20201206011817.11700-1-damien.lemoal@wdc.com
Patches: [v3,1/3] dt-bindings: spi: dw-apb-ssi: Add Canaan K210 SPI controller
[v3,2/3] spi: dw: Add support for 32-bits max xfer size
[v3,3/3] spi: dw: Add support for the Canaan K210 SoC SPI
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-07 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-07 17:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [for-5.10] spi: gpio: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384811
Lore link: https://lore.kernel.org/r/49102f5bbb3f1592d9cfd7b39ac5e131a031f950.1605512876.git.lukas@wunner.de
Series: SPI probe/remove sanitization for 5.11
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=397369
Lore link: https://lore.kernel.org/r/cover.1607286887.git.lukas@wunner.de
Patches: [01/17] spi: davinci: Fix use-after-free on unbind
[02/17] spi: spi-geni-qcom: Fix use-after-free on unbind
[03/17] spi: spi-qcom-qspi: Fix use-after-free on unbind
[04/17] spi: spi-sh: Fix use-after-free on unbind
[05/17] spi: pxa2xx: Fix use-after-free on unbind
[06/17] spi: rpc-if: Fix use-after-free on unbind
[07/17] spi: mxic: Don't leak SPI master in probe error path
[08/17] spi: spi-mtk-nor: Don't leak SPI master in probe error path
[09/17] spi: gpio: Don't leak SPI master in probe error path
[10/17] spi: rb4xx: Don't leak SPI master in probe error path
[11/17] spi: sc18is602: Don't leak SPI master in probe error path
[12/17] media: netup_unidvb: Don't leak SPI master in probe error path
[13/17] spi: mt7621: Disable clock in probe error path
[14/17] spi: mt7621: Don't leak SPI master in probe error path
[15/17] spi: ar934x: Don't leak SPI master in probe error path
[16/17] spi: npcm-fiu: Disable clock in probe error path
[17/17] spi: atmel-quadspi: Fix use-after-free on unbind
Patch: [for-5.10] spi: spi-sh: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384789
Lore link: https://lore.kernel.org/r/0aeb0e948baf98ae69b69bae135cb31abe5a9181.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: spi-geni-qcom: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384765
Lore link: https://lore.kernel.org/r/73adc6ba84a4f968f2e1499a776e5c928fbdde56.1605512876.git.lukas@wunner.de
Patch: [for-5.10] media: netup_unidvb: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384825
Lore link: https://lore.kernel.org/r/48e6a396526bcd0a26e970036dbe3207cce57ea6.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: rb4xx: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384821
Lore link: https://lore.kernel.org/r/7ea28322f0295201ecd93253600b613fdc588d17.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: spi-qcom-qspi: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384781
Lore link: https://lore.kernel.org/r/76a3e9a52fdb5ff60d992c6cc2e64f29d3d3ea8b.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: spi-mtk-nor: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384809
Lore link: https://lore.kernel.org/r/a203c24658b7d70ddb27bf1f9898fe6f896fead5.1605512876.git.lukas@wunner.de
Patch: spi: davinci: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=379895
Lore link: https://lore.kernel.org/r/dd060534490eca5e946eb9165916542b01a9358d.1604874488.git.lukas@wunner.de
Patch: [for-5.10] spi: mxic: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384803
Lore link: https://lore.kernel.org/r/4a7efc3865aace7d28ddb74776ee05695be80bd4.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: sc18is602: Don't leak SPI master in probe error path
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384823
Lore link: https://lore.kernel.org/r/43babe4e6cd4a433dcdcf99aaabaa1a02ff44acd.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: rpc-if: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384801
Lore link: https://lore.kernel.org/r/bf610a9fc88376e2cdf661c4ad0bb275ee5f4f20.1605512876.git.lukas@wunner.de
Patch: [for-5.10] spi: pxa2xx: Fix use-after-free on unbind
Submitter: Lukas Wunner <lukas@wunner.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=384797
Lore link: https://lore.kernel.org/r/b43ec730d0991482d5c22cb0b63c68f2e04d5445.1605512876.git.lukas@wunner.de
Total patches: 29
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-02 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-12-02 17:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: spi-fsl-dspi: Use max_native_cs instead of num_chipselect to set SPI_MCR
Submitter: Maxim Kochetkov <fido_max@inbox.ru>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=394731
Lore link: https://lore.kernel.org/r/20201202142552.44385-1-fido_max@inbox.ru
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-11-20 21:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-11-20 21:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v2,1/3] spi: fix resource leak for drivers without .remove callback
Submitter: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=387693
Lore link: https://lore.kernel.org/r/20201119161604.2633521-1-u.kleine-koenig@pengutronix.de
Patches: [v2,1/3] spi: fix resource leak for drivers without .remove callback
[v2,2/3] spi: Use bus_type functions for probe, remove and shutdown
[v2,3/3] spi: Warn when a driver's remove callback returns an error
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-11-04 20:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-11-04 20:50 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: fsl-dspi: fix NULL pointer dereference
Submitter: Qiang Zhao <qiang.zhao@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=372907
Lore link: https://lore.kernel.org/r/20201029084035.19604-1-qiang.zhao@nxp.com
Patch: [v2] spi: fsl-dspi: fix wrong pointer in suspend/resume
Submitter: Qiang Zhao <qiang.zhao@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=375995
Lore link: https://lore.kernel.org/r/20201103020546.1822-1-qiang.zhao@nxp.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-27 0:07 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-10-27 0:07 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v2] spi: spi-sun6i: enable autosuspend feature
Submitter: Alexander Kochetkov <al.kochet@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=366799
Lore link: https://lore.kernel.org/r/20201019150343.2520-1-akochetkov@lintech.ru
Patch: spi: atmel: remove unnecessary include
Submitter: Alexandre Belloni <alexandre.belloni@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=357851
Lore link: https://lore.kernel.org/r/20200930145353.3043699-1-alexandre.belloni@bootlin.com
Patch: char: ipmi: convert tasklets to use new tasklet_setup() API
Submitter: Allen Pais <allen.cryptic@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=333475
Lore link: https://lore.kernel.org/r/20200817091617.28119-3-allen.cryptic@gmail.com
Patch: [v2] serial: max310x: rework RX interrupt handling
Submitter: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=358205
Lore link: https://lore.kernel.org/r/20201001074415.349739-1-thomas.petazzoni@bootlin.com
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-06 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-10-06 15:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: spi-mtk-nor: Add mt8192 support.
Submitter: Ikjoon Jang <ikjn@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=360161
Lore link: https://lore.kernel.org/r/20201006075405.11658-1-ikjn@chromium.org
Patches: [v5,1/4] dt-bindings: spi: add mt8192-nor compatible string
[v5,2/4] spi: spi-mtk-nor: use dma_alloc_coherent() for bounce buffer
[v5,3/4] spi: spi-mtk-nor: support 36bit dma addressing
[v5,4/4] spi: spi-mtk-nor: Add power management support
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-02 21:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-10-02 21:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v2,RESEND,1/9] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath()
Submitter: Łukasz Stelmach <l.stelmach@samsung.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=358407
Lore link: https://lore.kernel.org/r/20201001152148.29747-2-l.stelmach@samsung.com
Patches: [v2,RESEND,1/9] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath()
[v2,RESEND,2/9] spi: spi-s3s64xx: Add S3C64XX_SPI_QUIRK_CS_AUTO for Exynos3250
[v2,RESEND,3/9] spi: spi-s3c64xx: Check return values
[v2,RESEND,4/9] spi: spi-s3c64xx: Report more information when errors occur
[v2,RESEND,5/9] spi: spi-s3c64xx: Rename S3C64XX_SPI_SLAVE_* to S3C64XX_SPI_CS_*
[v2,RESEND,6/9] spi: spi-s3c64xx: Fix doc comment for struct s3c64xx_spi_driver_data
[v2,RESEND,7/9] spi: spi-s3c64xx: Ensure cur_speed holds actual clock value
[v2,RESEND,8/9] spi: spi-s3c64xx: Increase transfer timeout
[v2,RESEND,9/9] spi: spi-s3c64xx: Turn on interrupts upon resume
Series: Some fixes for spi-s3c64xx
Submitter: Łukasz Stelmach <l.stelmach@samsung.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=358785
Lore link: https://lore.kernel.org/r/20201002122243.26849-1-l.stelmach@samsung.com
Patches: [v3,1/9] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath()
[v3,2/9] spi: spi-s3s64xx: Add S3C64XX_SPI_QUIRK_CS_AUTO for Exynos3250
[v3,3/9] spi: spi-s3c64xx: Check return values
[v3,4/9] spi: spi-s3c64xx: Report more information when errors occur
[v3,5/9] spi: spi-s3c64xx: Rename S3C64XX_SPI_SLAVE_* to S3C64XX_SPI_CS_*
[v3,6/9] spi: spi-s3c64xx: Fix doc comment for struct s3c64xx_spi_driver_data
[v3,7/9] spi: spi-s3c64xx: Ensure cur_speed holds actual clock value
[v3,8/9] spi: spi-s3c64xx: Increase transfer timeout
[v3,9/9] spi: spi-s3c64xx: Turn on interrupts upon resume
Total patches: 18
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-29 16:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+spi-devel-general @ 2020-09-29 16:30 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: dw-dma: Add max SG entries burst capability support
Submitter: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=352151
Lore link: https://lore.kernel.org/r/20200920112322.24585-1-Sergey.Semin@baikalelectronics.ru
Patches: [v2,01/11] spi: dw-dma: Set DMA Level registers on init
[v2,02/11] spi: dw-dma: Fail DMA-based transfer if no Tx-buffer specified
[v2,03/11] spi: dw-dma: Configure the DMA channels in dma_setup
[v2,04/11] spi: dw-dma: Check rx_buf availability in the xfer method
[v2,05/11] spi: dw-dma: Move DMA transfers submission to the channels prep methods
[v2,06/11] spi: dw-dma: Check DMA Tx-desc submission status
[v2,07/11] spi: dw-dma: Remove DMA Tx-desc passing around
[v2,08/11] spi: dw-dma: Detach DMA transfer into a dedicated method
[v2,09/11] spi: dw-dma: Move DMAC register cleanup to DMA transfer method
[v2,10/11] spi: dw-dma: Pass exact data to the DMA submit and wait methods
[v2,11/11] spi: dw-dma: Add one-by-one SG list entries transfer
Total patches: 11
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-17 19:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-09-17 19:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: Fixes for FSI-attached controller
Submitter: Eddie James <eajames@linux.ibm.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=346185
Link: <20200909222857.28653-1-eajames@linux.ibm.com>
Patches: [v2,1/6] spi: fsi: Handle 9 to 15 byte transfers lengths
[v2,2/6] spi: fsi: Fix clock running too fast
[v2,3/6] spi: fsi: Fix use of the bneq+ sequencer instruction
[v2,4/6] dt-bindings: fsi: fsi2spi: Add compatible string for restricted version
[v2,5/6] spi: fsi: Implement restricted size for certain controllers
[v2,6/6] spi: fsi: Check mux status before transfers
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-17 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-09-17 14:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: bcm2835: mark polling_limit_us as static
Submitter: Marc Kleine-Budde <mkl@pengutronix.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=349449
Link: <20200915132311.1112865-1-mkl@pengutronix.de>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-14 15:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-09-14 15:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: qspi binding and DTS fixes
Submitter: Florian Fainelli <f.fainelli@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=339751
Link: <20200827181842.1000451-1-f.fainelli@gmail.com>
Patches: [1/5] dt-bindings: spi: Fix spi-bcm-qspi compatible ordering
[2/5] ARM: dts: bcm: HR2: Fixed QSPI compatible string
[3/5] ARM: dts: NSP: Fixed QSPI compatible string
[4/5] ARM: dts: BCM5301X: Fixed QSPI compatible string
[5/5] arm64: dts: ns2: Fixed QSPI compatible string
Patch: [REBASE] spi: sprd: Simplify with dev_err_probe()
Submitter: Krzysztof Kozlowski <krzk@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=346757
Link: <20200910160706.5883-1-krzk@kernel.org>
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-09 14:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-09-09 14:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v3] spi: Fix memory leak on splited transfers
Submitter: Gustav Wiklander <gustav.wiklander@axis.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=345505
Link: <20200908151129.15915-1-gustav.wiklander@axis.com>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-08 14:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-09-08 14:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v2] spi: spi-cadence-quadspi: Fix mapping of buffers for DMA reads
Submitter: Vignesh Raghavendra <vigneshr@ti.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=341031
Link: <20200831130720.4524-1-vigneshr@ti.com>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-08-20 22:03 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-08-20 22:03 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: spi: rspi: Bit rate improvements
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=335257
Link: <20200819125904.20938-1-geert+renesas@glider.be>
Patches: [v2,1/7] spi: rspi: Remove useless .set_config_register() check
[v2,2/7] spi: rspi: Clean up Bit Rate Division Setting handling
[v2,3/7] spi: rspi: Increase bit rate accuracy on RZ/A
[v2,4/7] spi: rspi: Increase bit rate range for RSPI on SH
[v2,5/7] spi: rspi: Increase bit rate range for QSPI
[v2,6/7] spi: rspi: Fill in spi_transfer.effective_speed_hz
[v2,7/7] spi: rspi: Fill in controller speed limits
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-08-17 12:27 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-08-17 12:27 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v2] spi: lantiq-ssc: Fix warning by using WQ_MEM_RECLAIM
Submitter: Hauke Mehrtens <hauke@hauke-m.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=320387
Link: <20200717215648.20522-1-hauke@hauke-m.de>
Series: QSPI: Add DVFS support
Submitter: Rajendra Nayak <rnayak@codeaurora.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=312471
Link: <1593769293-6354-1-git-send-email-rnayak@codeaurora.org>
Patches: [1/3] spi: spi-qcom-qspi: Use OPP API to set clk/perf state
[2/3] arm64: dts: sdm845: Add qspi opps and power-domains
[3/3] arm64: dts: sc7180: Add qspi opps and power-domains
Series: spi: spi-qcom-qspi: Avoid some per-transfer overhead
Submitter: Doug Anderson <dianders@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=315735
Link: <20200709145145.4055619-1-dianders@chromium.org>
Patches: [v2,1/2] spi: spi-qcom-qspi: Avoid clock setting if not needed
[v2,2/2] spi: spi-qcom-qspi: Set an autosuspend delay of 250 ms
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-29 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-07-29 14:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Some bug fix for lpspi
Submitter: Clark Wang <xiaoning.wang@nxp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=324497
Link: <20200727031448.31661-1-xiaoning.wang@nxp.com>
Patches: [V2,1/4] spi: lpspi: Fix kernel warning dump when probe fail after calling spi_register
[V2,2/4] spi: lpspi: remove unused fsl_lpspi->chipselect
[V2,3/4] spi: lpspi: fix using CS discontinuously on i.MX8DXLEVK
[V2,4/4] dt-bindings: lpspi: New property in document DT bindings for LPSPI
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-28 16:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-07-28 16:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v3] spi: spi-topcliff-pch: drop call to wakeup-disable
Submitter: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=324891
Link: <20200727172936.661567-1-vaibhavgupta40@gmail.com>
Series: [v3,1/3] spi: rockchip: Config spi rx dma burst size depend on xfer length
Submitter: Jon Lin <jon.lin@rock-chips.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=322881
Link: <20200723004356.6390-1-jon.lin@rock-chips.com>
Patches: [v3,1/3] spi: rockchip: Config spi rx dma burst size depend on xfer length
[v3,2/3] spi: rockchip: Support 64-location deep FIFOs
[v3,3/3] spi: rockchip: Fix error in SPI slave pio read
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-27 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-07-27 14:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: MAINTAINERS: Change Maintainer for some at91 drivers
Submitter: Nicolas Ferre <nicolas.ferre@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=311909
Link: <20200702134224.3750-1-nicolas.ferre@microchip.com>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-22 11:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-07-22 11:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: spi-cadence: add support for chip select high
Submitter: Shreyas Joshi <shreyas.joshi@biamp.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=321593
Link: <20200721000850.370-1-shreyas.joshi@biamp.com>
Series: [v2,1/8] spi: lantiq: fix: Rx overflow error in full duplex mode
Submitter: Dilip Kota <eswara.kota@linux.intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=319857
Link: <efb650b0faa49a00788c4e0ca8ef7196bdba851d.1594957019.git.eswara.kota@linux.intel.com>
Patches: [v2,1/8] spi: lantiq: fix: Rx overflow error in full duplex mode
[v2,2/8] spi: lantiq: Add SMP support
[v2,3/8] spi: lantiq: Move interrupt control register offesets to SoC specific data structure
[v2,4/8] spi: lantiq: Add support to acknowledge interrupt
[v2,5/8] spi: lantiq: Add fifo size bit mask in SoC specific data structure
[v2,6/8] spi: lantiq: Move interrupt configuration to SoC specific data structure
[v2,7/8] dt-bindings: spi: Add support to Lightning Mountain SoC
[v2,8/8] spi: lantiq: Add support to Lightning Mountain SoC
Total patches: 9
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-20 11:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-07-20 11:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Rid W=1 warnings in SPI
Submitter: Lee Jones <lee.jones@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=320171
Link: <20200717135424.2442271-1-lee.jones@linaro.org>
Patches: [v2,01/14] spi: spi-loopback-test: Fix formatting issues in function header blocks
[v2,02/14] spi: spi-bitbang: Demote obvious misuse of kerneldoc to standard comment blocks
[v2,03/14] spi: spi-davinci: Fix a few kerneldoc misspellings and API slippages
[v2,04/14] spi: spi-ep93xx: Fix API slippage
[v2,05/14] spi: spi-meson-spifc: Fix misdocumenting of 'dev' in 'struct meson_spifc'
[v2,06/14] spi: spi-meson-spicc: Remove set but never used variable 'data' from meson_spicc_reset_fifo()
[v2,07/14] spi: spi-s3c64xx: Add missing entries for structs 's3c64xx_spi_dma_data' and 's3c64xx_spi_dma_data'
[v2,08/14] spi: spi-pl022: Provide missing struct attribute/function param docs
[v2,09/14] spi: spi-zynq-qspi: Add description for 2 missing attributes/parameters
[v2,10/14] spi: spi-zynqmp-gqspi: Correct a couple of misspellings in kerneldoc
[v2,11/14] spi: spi-topcliff-pch: Add missing descriptions to 'struct pch_spi_data'
[v2,12/14] spi: spi-at91-usart: Remove unused OF table 'struct of_device_id'
[v2,13/14] spi: spi-pxa2xx: Do not define 'struct acpi_device_id' when !CONFIG_ACPI
[v2,14/14] spi: spi-amd: Do not define 'struct acpi_device_id' when !CONFIG_ACPI
Total patches: 14
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-23 11:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-23 11:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: Some small spi geni cleanups
Submitter: Stephen Boyd <swboyd@chromium.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=305923
Link: <20200620022233.64716-1-swboyd@chromium.org>
Patches: [v1,1/2] spi: spi-geni-qcom: Simplify setup_fifo_xfer()
[v1,2/2] spi: spi-geni-qcom: Don't set {tx,rx}_rem_bytes unnecessarily
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-22 15:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-22 15:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v4,1/4] spi: spi-fsl-dspi: Fix lockup if device is removed during SPI transfer
Submitter: Krzysztof Kozlowski <krzk@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=306461
Link: <20200622110543.5035-1-krzk@kernel.org>
Patches: [v4,1/4] spi: spi-fsl-dspi: Fix lockup if device is removed during SPI transfer
[v4,2/4] spi: spi-fsl-dspi: Fix lockup if device is shutdown during SPI transfer
[v4,3/4] spi: spi-fsl-dspi: Fix external abort on interrupt in resume or exit paths
[v4,4/4] spi: spi-fsl-dspi: Initialize completion before possible interrupt
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-19 13:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-19 13:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: add regmap & indirect access support
Submitter: Xu Yilun <yilun.xu@intel.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=305301
Link: <1592531021-11412-1-git-send-email-yilun.xu@intel.com>
Patches: [RESEND,v2,1/3] spi: altera: use regmap-mmio instead of direct mmio register access
[RESEND,v2,2/3] spi: altera: support indirect access to the registers
[RESEND,v2,3/3] spi: altera: fix size mismatch on 64 bit processors
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-15 23:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-15 23:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [v4] spi: add Renesas RPC-IF driver
Submitter: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=302223
Link: <1ece0e6c-71af-f0f1-709e-571f4b0b4853@cogentembedded.com>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-15 15:29 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-15 15:29 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [1/5] spi: dt-bindings: sifive: Add missing 2nd register region
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=286695
Link: <20200512204543.22090-1-robh@kernel.org>
Patches: [1/5] spi: dt-bindings: sifive: Add missing 2nd register region
[2/5] dt-bindings: usb: ehci: Add missing 2nd register region
[3/5] dt-bindings: ufs: ti: Fix address properties handling
[4/5] dt-bindings: ufs: ti: Add missing 'additionalProperties: false'
[5/5] dt-bindings: Fix incorrect 'reg' property sizes
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-11 15:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-06-11 15:40 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [v2,1/2] spi: tools: Make default_tx/rx and input_tx static
Submitter: Qing Zhang <zhangqing@loongson.cn>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=301299
Link: <1591880212-13479-1-git-send-email-zhangqing@loongson.cn>
Patches: [v2,1/2] spi: tools: Make default_tx/rx and input_tx static
[v2,2/2] spi: tools: Add macro definitions to fix build errors
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-05-29 17:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-05-29 17:00 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: [PATCHv4,1/2] spi: dw: add reset control
Submitter: Dinh Nguyen <dinguyen@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=295785
Link: <20200529155806.16758-1-dinguyen@kernel.org>
Patches: [PATCHv4,1/2] spi: dw: add reset control
[PATCHv4,2/2] dt-bindings: snps,dw-apb-ssi: add optional reset property
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-22 13:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-04-22 13:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: [-next] spi: spi-fsl-qspi: Fix return value check in fsl_qspi_probe()
Submitter: Wei Yongjun <weiyongjun1@huawei.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=274645
Link: <20200421093908.48213-1-weiyongjun1@huawei.com>
Patch: [-next,v2] spi: spi-fsl-qspi: Fix return value check of devm_ioremap() in probe
Submitter: Wei Yongjun <weiyongjun1@huawei.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=275061
Link: <20200422014543.111070-1-weiyongjun1@huawei.com>
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-21 15:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-04-21 15:20 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: dt-bindings: Fix dtc warnings on reg and ranges in examples
Submitter: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=268931
Link: <20200409202458.24509-1-robh@kernel.org>
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-14 12:06 patchwork-bot+linux-spi
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi @ 2020-04-14 12:06 UTC (permalink / raw)
To: linux-spi, broonie
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: pxa2xx: Enable support for compile-testing
Submitter: Geert Uytterhoeven <geert@linux-m68k.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=238989
Link: <20200210093027.6672-1-geert@linux-m68k.org>
Series: arm64: dts: sun50i: H6: Enable SPI controller
Submitter: André Przywara <andre.przywara@arm.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=229579
Link: <20200116231148.1490-1-andre.przywara@arm.com>
Patches: [v3,1/3] arm64: dts: sun50i: H6: Add SPI controllers nodes and pinmuxes
[v3,2/3] arm64: dts: allwinner: h6: Pine H64: Add SPI flash node
[v3,3/3] dt-bindings: spi: sunxi: Document new compatible strings
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
2020-03-06 8:50 [PATCH v3 0/4] rewrite mtk-quadspi spi-nor driver with spi-mem Chuanhong Guo
@ 2020-03-11 19:00 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A @ 2020-03-11 19:00 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA, broonie-DgEjT+Ai2ygdnm+yROfE0A
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: rewrite mtk-quadspi spi-nor driver with spi-mem
Submitter: Chuanhong Guo <gch981213-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=252289
Patches: [v3,1/4] spi: make spi-max-frequency optional
[v3,2/4] spi: add support for mediatek spi-nor controller
[v3,3/4] dt-bindings: convert mtk-quadspi binding doc for spi-mtk-nor
[v3,4/4] mtd: spi-nor: remove mtk-quadspi driver
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
2020-02-23 8:59 [PATCH] docs: dt: fix several broken doc references Mauro Carvalho Chehab
@ 2020-03-10 14:40 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A @ 2020-03-10 14:40 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA, broonie-DgEjT+Ai2ygdnm+yROfE0A
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: docs: dt: fix several broken doc references
Submitter: Mauro Carvalho Chehab <mchehab+huawei-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=245937
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
2020-02-11 22:34 ` (unknown) Rajat Jain
@ 2020-02-26 19:00 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A @ 2020-02-26 19:00 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA, broonie-DgEjT+Ai2ygdnm+yROfE0A
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Patch: spi: pxa2xx: Add CS control clock quirk
Submitter: Rajat Jain <rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=240023
Patch:
Submitter: Rajat Jain <rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=240019
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
* Patchwork summary for: spi-devel-general
2019-11-28 12:16 ` [PATCH] powerpc/devicetrees: Change 'gpios' to 'cs-gpios' on fsl,spi nodes Christophe Leroy
@ 2020-02-10 14:25 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 0 replies; 155+ messages in thread
From: patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A @ 2020-02-10 14:25 UTC (permalink / raw)
To: linux-spi-u79uwXL29TY76Z2rM5mHXA, broonie-DgEjT+Ai2ygdnm+yROfE0A
Hello:
The following patches were marked "accepted", because they were applied to
broonie/spi.git (refs/heads/for-next):
Series: add device tree for SAM9X60 SoC and SAM9X60-EK board
Submitter: Claudiu Beznea <claudiu.beznea-UWL1GkI3JZL3oGB3hsPCZA@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=229897
Patches: [v5,1/2] dt-bindings: atmel-usart: remove wildcard
[v5,2/2] dt-bindings: atmel-usart: add microchip,sam9x60-{usart, dbgu}
Patch: powerpc/devicetrees: Change 'gpios' to 'cs-gpios' on fsl,spi nodes
Submitter: Christophe Leroy <christophe.leroy-GgN8y9CXRhA@public.gmane.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=209489
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot
^ permalink raw reply [flat|nested] 155+ messages in thread
end of thread, other threads:[~2023-01-26 0:30 UTC | newest]
Thread overview: 155+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-06 8:50 [PATCH v3 0/2] spi: dt-bindings: spi-controller: Slave mode fixes Geert Uytterhoeven
2020-03-06 8:50 ` [PATCH v3 1/2] spi: dt-bindings: spi-controller: Fix #address-cells for slave mode Geert Uytterhoeven
[not found] ` <20200306085038.8111-2-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2020-03-12 19:16 ` Rob Herring
2020-03-13 17:06 ` Applied "spi: dt-bindings: spi-controller: Fix #address-cells for slave mode" to the spi tree Mark Brown
[not found] ` <20200306085038.8111-1-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2020-03-06 8:50 ` [PATCH v3 2/2] spi: dt-bindings: spi-controller: Fix spi-[rt]x-bus-width for slave mode Geert Uytterhoeven
[not found] ` <20200306085038.8111-3-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2020-03-12 19:17 ` Rob Herring
2020-03-13 17:20 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
-- strict thread matches above, loose matches on Subject: below --
2023-01-26 0:30 patchwork-bot+spi-devel-general
2023-01-13 21:20 patchwork-bot+spi-devel-general
2023-01-06 22:00 patchwork-bot+spi-devel-general
2022-12-26 23:59 patchwork-bot+spi-devel-general
2022-12-06 16:10 patchwork-bot+spi-devel-general
2022-11-29 13:20 patchwork-bot+spi-devel-general
2022-11-25 15:10 patchwork-bot+spi-devel-general
2022-11-24 13:30 patchwork-bot+spi-devel-general
2022-11-17 11:50 patchwork-bot+spi-devel-general
2022-11-16 13:50 patchwork-bot+spi-devel-general
2022-11-04 13:10 patchwork-bot+spi-devel-general
2022-11-02 15:10 patchwork-bot+spi-devel-general
2022-10-21 15:40 patchwork-bot+spi-devel-general
2022-10-21 13:50 patchwork-bot+spi-devel-general
2022-10-19 17:20 patchwork-bot+spi-devel-general
2022-10-18 11:37 patchwork-bot+spi-devel-general
2022-10-10 14:20 patchwork-bot+spi-devel-general
2022-09-28 17:30 patchwork-bot+spi-devel-general
2022-09-12 9:50 patchwork-bot+spi-devel-general
2022-08-28 21:10 patchwork-bot+spi-devel-general
2022-08-22 15:40 patchwork-bot+spi-devel-general
2022-08-15 15:50 patchwork-bot+spi-devel-general
2022-08-15 15:36 patchwork-bot+spi-devel-general
2022-07-29 19:30 patchwork-bot+spi-devel-general
2022-07-26 11:20 patchwork-bot+spi-devel-general
2022-07-20 18:10 patchwork-bot+spi-devel-general
2022-07-20 17:50 patchwork-bot+spi-devel-general
2022-07-13 14:50 patchwork-bot+spi-devel-general
2022-07-13 14:20 patchwork-bot+spi-devel-general
2022-07-01 10:40 patchwork-bot+spi-devel-general
2022-06-30 13:50 patchwork-bot+spi-devel-general
2022-06-30 11:50 patchwork-bot+spi-devel-general
2022-06-29 14:50 patchwork-bot+spi-devel-general
2022-06-28 10:40 patchwork-bot+spi-devel-general
2022-06-27 20:40 patchwork-bot+spi-devel-general
2022-06-20 12:50 patchwork-bot+spi-devel-general
2022-06-13 17:30 patchwork-bot+spi-devel-general
2022-06-09 14:20 patchwork-bot+spi-devel-general
2022-06-08 20:50 patchwork-bot+spi-devel-general
2022-06-07 10:50 patchwork-bot+spi-devel-general
2022-06-06 17:18 patchwork-bot+spi-devel-general
2022-05-16 18:40 patchwork-bot+spi-devel-general
2022-05-09 21:20 patchwork-bot+spi-devel-general
2022-05-04 21:00 patchwork-bot+spi-devel-general
2022-05-03 16:00 patchwork-bot+spi-devel-general
2022-04-27 22:10 patchwork-bot+spi-devel-general
2022-04-25 17:30 patchwork-bot+spi-devel-general
2022-04-21 15:31 patchwork-bot+spi-devel-general
2022-04-20 21:50 patchwork-bot+spi-devel-general
2022-04-13 17:40 patchwork-bot+spi-devel-general
2022-04-05 9:40 patchwork-bot+spi-devel-general
2022-04-04 18:14 patchwork-bot+spi-devel-general
2022-03-15 13:50 patchwork-bot+spi-devel-general
2022-03-08 20:10 patchwork-bot+spi-devel-general
2022-03-07 20:40 patchwork-bot+spi-devel-general
2022-02-28 22:10 patchwork-bot+spi-devel-general
2022-02-24 23:00 patchwork-bot+spi-devel-general
2022-02-22 15:40 patchwork-bot+spi-devel-general
2022-02-21 15:30 patchwork-bot+spi-devel-general
2022-02-17 18:40 patchwork-bot+spi-devel-general
2022-02-15 13:00 patchwork-bot+spi-devel-general
2022-02-08 19:10 patchwork-bot+spi-devel-general
2022-02-01 17:20 patchwork-bot+spi-devel-general
2022-01-28 16:00 patchwork-bot+spi-devel-general
2022-01-25 14:40 patchwork-bot+spi-devel-general
2022-01-25 10:43 patchwork-bot+spi-devel-general
2022-01-10 16:00 patchwork-bot+spi-devel-general
2022-01-06 20:30 patchwork-bot+spi-devel-general
2021-12-23 17:20 patchwork-bot+spi-devel-general
2021-12-14 13:30 patchwork-bot+spi-devel-general
2021-11-18 19:20 patchwork-bot+spi-devel-general
2021-11-16 17:50 patchwork-bot+spi-devel-general
2021-11-15 19:28 patchwork-bot+spi-devel-general
2021-11-12 21:30 patchwork-bot+spi-devel-general
2021-10-15 19:50 patchwork-bot+spi-devel-general
2021-10-13 20:00 patchwork-bot+spi-devel-general
2021-10-11 16:50 patchwork-bot+spi-devel-general
2021-10-07 21:40 patchwork-bot+spi-devel-general
2021-10-05 15:30 patchwork-bot+spi-devel-general
2021-10-04 17:00 patchwork-bot+spi-devel-general
2021-10-02 1:30 patchwork-bot+spi-devel-general
2021-10-02 0:10 patchwork-bot+spi-devel-general
2021-09-27 17:40 patchwork-bot+spi-devel-general
2021-09-21 17:50 patchwork-bot+spi-devel-general
2021-09-13 11:08 patchwork-bot+spi-devel-general
2021-08-26 14:20 patchwork-bot+spi-devel-general
2021-08-26 12:50 patchwork-bot+spi-devel-general
2021-08-13 17:10 patchwork-bot+spi-devel-general
2021-08-09 13:00 patchwork-bot+spi-devel-general
2021-08-06 0:50 patchwork-bot+spi-devel-general
2021-07-19 14:30 patchwork-bot+spi-devel-general
2021-07-16 17:20 patchwork-bot+spi-devel-general
2021-07-12 10:58 patchwork-bot+spi-devel-general
2021-06-23 16:00 patchwork-bot+spi-devel-general
2021-06-03 18:40 patchwork-bot+spi-devel-general
2021-05-28 16:10 patchwork-bot+spi-devel-general
2021-05-11 18:20 patchwork-bot+spi-devel-general
2021-05-11 8:29 patchwork-bot+spi-devel-general
2021-04-21 18:40 patchwork-bot+spi-devel-general
2021-04-16 16:00 patchwork-bot+spi-devel-general
2021-04-12 19:01 patchwork-bot+spi-devel-general
2021-03-23 22:20 patchwork-bot+spi-devel-general
2021-03-04 15:10 patchwork-bot+spi-devel-general
2021-03-04 1:00 patchwork-bot+spi-devel-general
2021-03-01 23:54 patchwork-bot+spi-devel-general
2021-02-22 16:10 patchwork-bot+spi-devel-general
2021-02-05 20:20 patchwork-bot+spi-devel-general
2021-01-19 19:21 patchwork-bot+spi-devel-general
2021-01-13 15:30 patchwork-bot+spi-devel-general
2021-01-04 17:50 patchwork-bot+spi-devel-general
2020-12-28 16:34 patchwork-bot+spi-devel-general
2020-12-18 18:30 patchwork-bot+spi-devel-general
2020-12-11 17:53 patchwork-bot+spi-devel-general
2020-12-09 15:20 patchwork-bot+spi-devel-general
2020-12-07 17:30 patchwork-bot+spi-devel-general
2020-12-02 17:30 patchwork-bot+spi-devel-general
2020-11-20 21:30 patchwork-bot+spi-devel-general
2020-11-04 20:50 patchwork-bot+spi-devel-general
2020-10-27 0:07 patchwork-bot+spi-devel-general
2020-10-06 15:30 patchwork-bot+spi-devel-general
2020-10-02 21:00 patchwork-bot+spi-devel-general
2020-09-29 16:30 patchwork-bot+spi-devel-general
2020-09-17 19:00 patchwork-bot+linux-spi
2020-09-17 14:00 patchwork-bot+linux-spi
2020-09-14 15:00 patchwork-bot+linux-spi
2020-09-09 14:20 patchwork-bot+linux-spi
2020-09-08 14:40 patchwork-bot+linux-spi
2020-08-20 22:03 patchwork-bot+linux-spi
2020-08-17 12:27 patchwork-bot+linux-spi
2020-07-29 14:00 patchwork-bot+linux-spi
2020-07-28 16:40 patchwork-bot+linux-spi
2020-07-27 14:00 patchwork-bot+linux-spi
2020-07-22 11:20 patchwork-bot+linux-spi
2020-07-20 11:20 patchwork-bot+linux-spi
2020-06-23 11:00 patchwork-bot+linux-spi
2020-06-22 15:00 patchwork-bot+linux-spi
2020-06-19 13:00 patchwork-bot+linux-spi
2020-06-15 23:40 patchwork-bot+linux-spi
2020-06-15 15:29 patchwork-bot+linux-spi
2020-06-11 15:40 patchwork-bot+linux-spi
2020-05-29 17:00 patchwork-bot+linux-spi
2020-04-22 13:20 patchwork-bot+linux-spi
2020-04-21 15:20 patchwork-bot+linux-spi
2020-04-14 12:06 patchwork-bot+linux-spi
2020-03-06 8:50 [PATCH v3 0/4] rewrite mtk-quadspi spi-nor driver with spi-mem Chuanhong Guo
2020-03-11 19:00 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
2020-02-23 8:59 [PATCH] docs: dt: fix several broken doc references Mauro Carvalho Chehab
2020-03-10 14:40 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
2020-02-11 22:37 [PATCH] spi: pxa2xx: Add CS control clock quirk Rajat Jain
2020-02-11 22:34 ` (unknown) Rajat Jain
2020-02-26 19:00 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
2020-01-17 11:58 [PATCH v5 0/2] add device tree for SAM9X60 SoC and SAM9X60-EK board Claudiu Beznea
2019-11-28 12:16 ` [PATCH] powerpc/devicetrees: Change 'gpios' to 'cs-gpios' on fsl,spi nodes Christophe Leroy
2020-02-10 14:25 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
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).