* (unknown)
@ 2020-02-11 22:34 ` Rajat Jain
[not found] ` <20200211223400.107604-1-rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2020-02-26 19:00 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 2 replies; 279+ messages in thread
From: Rajat Jain @ 2020-02-11 22:34 UTC (permalink / raw)
To: Daniel Mack, Haojian Zhuang, Robert Jarzmik, Mark Brown,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-spi-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: Evan Green, rajatja-hpIqsD4AKlfQT0dZR+AlfA,
rajatxjain-Re5JQEeQqe8AvxtiuMwx3w,
evgreen-hpIqsD4AKlfQT0dZR+AlfA,
shobhit.srivastava-ral2JQCrhuEAvxtiuMwx3w,
porselvan.muthukrishnan-ral2JQCrhuEAvxtiuMwx3w
From: Evan Green <evgreen-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Date: Wed, 29 Jan 2020 13:54:16 -0800
Subject: [PATCH] spi: pxa2xx: Add CS control clock quirk
In some circumstances on Intel LPSS controllers, toggling the LPSS
CS control register doesn't actually cause the CS line to toggle.
This seems to be failure of dynamic clock gating that occurs after
going through a suspend/resume transition, where the controller
is sent through a reset transition. This ruins SPI transactions
that either rely on delay_usecs, or toggle the CS line without
sending data.
Whenever CS is toggled, momentarily set the clock gating register
to "Force On" to poke the controller into acting on CS.
Signed-off-by: Evan Green <evgreen-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Signed-off-by: Rajat Jain <rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
---
drivers/spi/spi-pxa2xx.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 4c7a71f0fb3e..2e318158fca9 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -70,6 +70,10 @@ MODULE_ALIAS("platform:pxa2xx-spi");
#define LPSS_CAPS_CS_EN_SHIFT 9
#define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
+#define LPSS_PRIV_CLOCK_GATE 0x38
+#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3
+#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3
+
struct lpss_config {
/* LPSS offset from drv_data->ioaddr */
unsigned offset;
@@ -86,6 +90,8 @@ struct lpss_config {
unsigned cs_sel_shift;
unsigned cs_sel_mask;
unsigned cs_num;
+ /* Quirks */
+ unsigned cs_clk_stays_gated : 1;
};
/* Keep these sorted with enum pxa_ssp_type */
@@ -156,6 +162,7 @@ static const struct lpss_config lpss_platforms[] = {
.tx_threshold_hi = 56,
.cs_sel_shift = 8,
.cs_sel_mask = 3 << 8,
+ .cs_clk_stays_gated = true,
},
};
@@ -383,6 +390,22 @@ static void lpss_ssp_cs_control(struct spi_device *spi, bool enable)
else
value |= LPSS_CS_CONTROL_CS_HIGH;
__lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value);
+ if (config->cs_clk_stays_gated) {
+ u32 clkgate;
+
+ /*
+ * Changing CS alone when dynamic clock gating is on won't
+ * actually flip CS at that time. This ruins SPI transfers
+ * that specify delays, or have no data. Toggle the clock mode
+ * to force on briefly to poke the CS pin to move.
+ */
+ clkgate = __lpss_ssp_read_priv(drv_data, LPSS_PRIV_CLOCK_GATE);
+ value = (clkgate & ~LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK) |
+ LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON;
+
+ __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, value);
+ __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, clkgate);
+ }
}
static void cs_assert(struct spi_device *spi)
--
2.25.0.225.g125e21ebc7-goog
^ permalink raw reply related [flat|nested] 279+ messages in thread
* [PATCH] spi: pxa2xx: Add CS control clock quirk
@ 2020-02-11 22:37 Rajat Jain
2020-02-11 22:34 ` (unknown) Rajat Jain
0 siblings, 1 reply; 279+ messages in thread
From: Rajat Jain @ 2020-02-11 22:37 UTC (permalink / raw)
To: Daniel Mack, Haojian Zhuang, Robert Jarzmik, Mark Brown,
linux-arm-kernel, linux-spi, linux-kernel
Cc: Evan Green, rajatja, rajatxjain, evgreen, shobhit.srivastava,
porselvan.muthukrishnan
From: Evan Green <evgreen@chromium.org>
In some circumstances on Intel LPSS controllers, toggling the LPSS
CS control register doesn't actually cause the CS line to toggle.
This seems to be failure of dynamic clock gating that occurs after
going through a suspend/resume transition, where the controller
is sent through a reset transition. This ruins SPI transactions
that either rely on delay_usecs, or toggle the CS line without
sending data.
Whenever CS is toggled, momentarily set the clock gating register
to "Force On" to poke the controller into acting on CS.
Signed-off-by: Evan Green <evgreen@chromium.org>
Signed-off-by: Rajat Jain <rajatja@google.com>
---
drivers/spi/spi-pxa2xx.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 4c7a71f0fb3e..2e318158fca9 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -70,6 +70,10 @@ MODULE_ALIAS("platform:pxa2xx-spi");
#define LPSS_CAPS_CS_EN_SHIFT 9
#define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
+#define LPSS_PRIV_CLOCK_GATE 0x38
+#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3
+#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3
+
struct lpss_config {
/* LPSS offset from drv_data->ioaddr */
unsigned offset;
@@ -86,6 +90,8 @@ struct lpss_config {
unsigned cs_sel_shift;
unsigned cs_sel_mask;
unsigned cs_num;
+ /* Quirks */
+ unsigned cs_clk_stays_gated : 1;
};
/* Keep these sorted with enum pxa_ssp_type */
@@ -156,6 +162,7 @@ static const struct lpss_config lpss_platforms[] = {
.tx_threshold_hi = 56,
.cs_sel_shift = 8,
.cs_sel_mask = 3 << 8,
+ .cs_clk_stays_gated = true,
},
};
@@ -383,6 +390,22 @@ static void lpss_ssp_cs_control(struct spi_device *spi, bool enable)
else
value |= LPSS_CS_CONTROL_CS_HIGH;
__lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value);
+ if (config->cs_clk_stays_gated) {
+ u32 clkgate;
+
+ /*
+ * Changing CS alone when dynamic clock gating is on won't
+ * actually flip CS at that time. This ruins SPI transfers
+ * that specify delays, or have no data. Toggle the clock mode
+ * to force on briefly to poke the CS pin to move.
+ */
+ clkgate = __lpss_ssp_read_priv(drv_data, LPSS_PRIV_CLOCK_GATE);
+ value = (clkgate & ~LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK) |
+ LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON;
+
+ __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, value);
+ __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, clkgate);
+ }
}
static void cs_assert(struct spi_device *spi)
--
2.25.0.225.g125e21ebc7-goog
^ permalink raw reply related [flat|nested] 279+ messages in thread
* Re:
[not found] ` <20200211223400.107604-1-rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
@ 2020-02-12 9:30 ` Jarkko Nikula
[not found] ` <b3397374-0cb8-cf6c-0555-34541a1c108c-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
0 siblings, 1 reply; 279+ messages in thread
From: Jarkko Nikula @ 2020-02-12 9:30 UTC (permalink / raw)
To: Rajat Jain, Daniel Mack, Haojian Zhuang, Robert Jarzmik,
Mark Brown, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-spi-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: Evan Green, rajatxjain-Re5JQEeQqe8AvxtiuMwx3w,
evgreen-hpIqsD4AKlfQT0dZR+AlfA,
shobhit.srivastava-ral2JQCrhuEAvxtiuMwx3w,
porselvan.muthukrishnan-ral2JQCrhuEAvxtiuMwx3w, Andy Shevchenko
Hi
+ Andy
On 2/12/20 12:34 AM, Rajat Jain wrote:
> From: Evan Green <evgreen-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
>
> Date: Wed, 29 Jan 2020 13:54:16 -0800
> Subject: [PATCH] spi: pxa2xx: Add CS control clock quirk
>
This patch subject is missing from mail subject.
> In some circumstances on Intel LPSS controllers, toggling the LPSS
> CS control register doesn't actually cause the CS line to toggle.
> This seems to be failure of dynamic clock gating that occurs after
> going through a suspend/resume transition, where the controller
> is sent through a reset transition. This ruins SPI transactions
> that either rely on delay_usecs, or toggle the CS line without
> sending data.
>
> Whenever CS is toggled, momentarily set the clock gating register
> to "Force On" to poke the controller into acting on CS.
>
Could you share the test case how to trigger this? What's the platform
here? I'd like to check does this reproduce on other Intel LPSS
platforms so is there need to add quirk for them too.
> Signed-off-by: Evan Green <evgreen-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
> Signed-off-by: Rajat Jain <rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
> ---
> drivers/spi/spi-pxa2xx.c | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
> index 4c7a71f0fb3e..2e318158fca9 100644
> --- a/drivers/spi/spi-pxa2xx.c
> +++ b/drivers/spi/spi-pxa2xx.c
> @@ -70,6 +70,10 @@ MODULE_ALIAS("platform:pxa2xx-spi");
> #define LPSS_CAPS_CS_EN_SHIFT 9
> #define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
>
> +#define LPSS_PRIV_CLOCK_GATE 0x38
> +#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3
> +#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3
> +
> struct lpss_config {
> /* LPSS offset from drv_data->ioaddr */
> unsigned offset;
> @@ -86,6 +90,8 @@ struct lpss_config {
> unsigned cs_sel_shift;
> unsigned cs_sel_mask;
> unsigned cs_num;
> + /* Quirks */
> + unsigned cs_clk_stays_gated : 1;
> };
>
> /* Keep these sorted with enum pxa_ssp_type */
> @@ -156,6 +162,7 @@ static const struct lpss_config lpss_platforms[] = {
> .tx_threshold_hi = 56,
> .cs_sel_shift = 8,
> .cs_sel_mask = 3 << 8,
> + .cs_clk_stays_gated = true,
> },
> };
>
> @@ -383,6 +390,22 @@ static void lpss_ssp_cs_control(struct spi_device *spi, bool enable)
> else
> value |= LPSS_CS_CONTROL_CS_HIGH;
> __lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value);
> + if (config->cs_clk_stays_gated) {
> + u32 clkgate;
> +
> + /*
> + * Changing CS alone when dynamic clock gating is on won't
> + * actually flip CS at that time. This ruins SPI transfers
> + * that specify delays, or have no data. Toggle the clock mode
> + * to force on briefly to poke the CS pin to move.
> + */
> + clkgate = __lpss_ssp_read_priv(drv_data, LPSS_PRIV_CLOCK_GATE);
> + value = (clkgate & ~LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK) |
> + LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON;
> +
> + __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, value);
> + __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, clkgate);
> + }
> }
>
I wonder is it enough to have this quick toggling only or is time or
actually number of clock cycles dependent? Now there is no delay between
but I'm thinking if it needs certain number cycles does this still work
when using low ssp_clk rates similar than in commit d0283eb2dbc1 ("spi:
pxa2xx: Add output control for multiple Intel LPSS chip selects").
I'm thinking can this be done only once after resume and may other LPSS
blocks need the same? I.e. should this be done in drivers/mfd/intel-lpss.c?
Jarkko
^ permalink raw reply [flat|nested] 279+ messages in thread
* Re:
[not found] ` <b3397374-0cb8-cf6c-0555-34541a1c108c-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
@ 2020-02-12 10:24 ` Andy Shevchenko
0 siblings, 0 replies; 279+ messages in thread
From: Andy Shevchenko @ 2020-02-12 10:24 UTC (permalink / raw)
To: Jarkko Nikula
Cc: Rajat Jain, Daniel Mack, Haojian Zhuang, Robert Jarzmik,
Mark Brown, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-spi-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Evan Green,
rajatxjain-Re5JQEeQqe8AvxtiuMwx3w,
evgreen-hpIqsD4AKlfQT0dZR+AlfA,
shobhit.srivastava-ral2JQCrhuEAvxtiuMwx3w,
porselvan.muthukrishnan-ral2JQCrhuEAvxtiuMwx3w
On Wed, Feb 12, 2020 at 11:30:51AM +0200, Jarkko Nikula wrote:
> On 2/12/20 12:34 AM, Rajat Jain wrote:
> This patch subject is missing from mail subject.
> I'm thinking can this be done only once after resume and may other LPSS
> blocks need the same? I.e. should this be done in drivers/mfd/intel-lpss.c?
On resume we restore the previously saved context, can we be sure that values
we saved during suspend are correct?
If above won't show any issue, it might be best place to have this quirk
applied in intel_lpss_suspend() / intel_lpss_resume() callbacks as Jarkko
suggested.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
2020-02-11 22:34 ` (unknown) Rajat Jain
[not found] ` <20200211223400.107604-1-rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
@ 2020-02-26 19:00 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
1 sibling, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-12-06 21:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-12-06 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):
Series: spi: axi-spi-engine: improvements round 2
Submitter: David Lechner <dlechner@baylibre.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=806728
Lore link: https://lore.kernel.org/r/20231204-axi-spi-engine-series-2-v1-0-063672323fce@baylibre.com
Patches: [1/9] spi: axi-spi-engine: return void from spi_engine_compile_message()
[2/9] spi: axi-spi-engine: populate xfer->effective_speed_hz
[3/9] spi: axi-spi-engine: remove spi_engine_get_clk_div()
[4/9] spi: axi-spi-engine: fix sleep ticks calculation
[5/9] spi: axi-spi-engine: remove xfer arg from spi_engine_gen_sleep()
[6/9] spi: axi-spi-engine: implement xfer->cs_change_delay
[7/9] spi: axi-spi-engine: restore clkdiv at end of message
[8/9] spi: axi-spi-engine: remove delay from CS assertion
[9/9] spi: axi-spi-engine: add watchdog timer
Patch: Revert "spi: cadence: Add SPI transfer delays"
Submitter: Nam Cao <namcao@linutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=807448
Lore link: https://lore.kernel.org/r/20231206134446.69048-1-namcao@linutronix.de
Patch: [v3] spi: cadence: revert "Add SPI transfer delays"
Submitter: Nam Cao <namcao@linutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=807486
Lore link: https://lore.kernel.org/r/20231206145233.74982-1-namcao@linutronix.de
Total patches: 11
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-12-05 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-12-05 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):
Patch: spi: atmel: Prevent spi transfers from being killed
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=806923
Lore link: https://lore.kernel.org/r/20231205083102.16946-1-miquel.raynal@bootlin.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-12-04 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-12-04 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: spl022: fix sleeping in interrupt context
Submitter: Nam Cao <namcao@linutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=805351
Lore link: https://lore.kernel.org/r/cover.1701274975.git.namcao@linutronix.de
Patches: [v2,1/2] spi: introduce SPI_TRANS_FAIL_IO for error reporting
[v2,2/2] spi: spl022: switch to use default spi_transfer_one_message()
Patch: spi: cadence-quadspi: add missing clk_disable_unprepare() in cqspi_probe()
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=805141
Lore link: https://lore.kernel.org/r/20231129081147.628004-1-yangyingliang@huawei.com
Series: [1/2] spi: atmel: Do not cancel a transfer upon any signal
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=804442
Lore link: https://lore.kernel.org/r/20231127095842.389631-1-miquel.raynal@bootlin.com
Patches: [1/2] spi: atmel: Do not cancel a transfer upon any signal
[2/2] spi: atmel: Drop unused defines
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-30 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-30 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: [v7,1/2] spi: Unify error codes by replacing -ENOTSUPP with -EOPNOTSUPP
Submitter: AceLan Kao <acelan.kao@canonical.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=805109
Lore link: https://lore.kernel.org/r/20231129064311.272422-1-acelan.kao@canonical.com
Patches: [v7,1/2] spi: Unify error codes by replacing -ENOTSUPP with -EOPNOTSUPP
[v7,2/2] mtd: spi-nor: Stop reporting warning message when soft reset is not suported
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-27 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-27 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: Deprecate register_restart_handler()
Submitter: Andrew Davis <afd@ti.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=801994
Lore link: https://lore.kernel.org/r/20231117161006.87734-1-afd@ti.com
Patches: [RFC,1/5] kernel/reboot: Deprecate register_restart_handler()
[RFC,4/5] spi: sprd: adi: Use devm_register_restart_handler()
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-20 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-20 18: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: axi-spi-engine improvements
Submitter: David Lechner <dlechner@baylibre.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=802046
Lore link: https://lore.kernel.org/r/20231117-axi-spi-engine-series-1-v1-0-cc59db999b87@baylibre.com
Patches: [01/14] dt-bindings: spi: axi-spi-engine: convert to yaml
[02/14] MAINTAINERS: add entry for AXI SPI Engine
[03/14] spi: axi-spi-engine: simplify driver data allocation
[04/14] spi: axi-spi-engine: use devm_spi_alloc_host()
[05/14] spi: axi-spi-engine: use devm action to reset hw on remove
[06/14] spi: axi-spi-engine: use devm_request_irq()
[07/14] spi: axi-spi-engine: use devm_spi_register_controller()
[08/14] spi: axi-spi-engine: check for valid clock rate
[09/14] spi: axi-spi-engine: move msg state to new struct
[10/14] spi: axi-spi-engine: use message_prepare/unprepare
[11/14] spi: axi-spi-engine: remove completed_id from driver state
[12/14] spi: axi-spi-engine: remove struct spi_engine::msg
[13/14] spi: axi-spi-engine: add support for cs_off
[14/14] spi: axi-spi-engine: add support for any word size
Total patches: 14
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-20 17:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-20 17: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: ingenic: convert not to use dma_request_slave_channel()
Submitter: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=802259
Lore link: https://lore.kernel.org/r/1c88236b5d6bff0af902492ea9e066c8cb0dfef5.1700391566.git.christophe.jaillet@wanadoo.fr
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-19 0:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-19 0: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: [v1] spi: intel: make mem_ops comparison unique to opcode match
Submitter: Raag Jadav <raag.jadav@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=801961
Lore link: https://lore.kernel.org/r/20231117144053.24005-1-raag.jadav@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-17 0:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-17 0: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: spi: dt-bindings: renesas,rspi: Document RZ/Five SoC
Submitter: Prabhakar <prabhakar.csengg@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=801433
Lore link: https://lore.kernel.org/r/20231115205333.31076-1-prabhakar.mahadev-lad.rj@bp.renesas.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-16 20:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-16 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):
Patch: [v1,1/1] treewide, spi: Get rid of SPI_MASTER_HALF_DUPLEX
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=800612
Lore link: https://lore.kernel.org/r/20231113111249.3982461-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-13 19:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-13 19: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 STM32F7 SPI support
Submitter: Ben Wolsieffer <ben.wolsieffer@hefring.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=798501
Lore link: https://lore.kernel.org/r/20231102193722.3042245-1-ben.wolsieffer@hefring.com
Patches: [v2,1/5] spi: stm32: rename stm32f4_* to stm32fx_*
[v2,2/5] spi: stm32: use callbacks for read_rx and write_tx
[v2,3/5] dt-bindings: spi: add stm32f7-spi compatible
[v2,4/5] spi: stm32: add STM32F7 support
Patch: spi: spi-ti-qspi: Convert to platform remove callback returning 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=798919
Lore link: https://lore.kernel.org/r/20231105172649.3738556-2-u.kleine-koenig@pengutronix.de
Patch: spi: spi-zynqmp-gqspi: fix driver kconfig dependencies
Submitter: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=799124
Lore link: https://lore.kernel.org/r/1699282435-884917-1-git-send-email-radhey.shyam.pandey@amd.com
Patch: spi: cadence-xspi: Drop useless assignment to NULL
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=798895
Lore link: https://lore.kernel.org/r/20231105143932.3722920-2-u.kleine-koenig@pengutronix.de
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-13 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-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 Intel LJCA device driver
Submitter: Wu, Wentong <wentong.wu@intel.com>
Committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=791135
Lore link: https://lore.kernel.org/r/1696833205-16716-1-git-send-email-wentong.wu@intel.com
Patches: [v20,1/4] usb: Add support for Intel LJCA device
[v20,2/4] i2c: Add support for Intel LJCA USB I2C driver
[v20,3/4] spi: Add support for Intel LJCA USB SPI driver
[v20,4/4] gpio: update Intel LJCA USB GPIO driver
Series: Support AMD Pensando Elba SoC
Submitter: Brad Larson <blarson@amd.com>
Committer: Arnd Bergmann <arnd@arndb.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=783935
Lore link: https://lore.kernel.org/r/20230913214944.59804-1-blarson@amd.com
Patches: [v16,1/6] dt-bindings: arm: add AMD Pensando boards
[v16,4/6] arm64: Add config for AMD Pensando SoC platforms
Patch: riscv: dts: starfive: fix NOR flash reserved-data partition size
Submitter: Aurelien Jarno <aurelien@aurel32.net>
Committer: Conor Dooley <conor.dooley@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=779638
Lore link: https://lore.kernel.org/r/20230826182702.2641743-1-aurelien@aurel32.net
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-08 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-08 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):
Patch: [v1] spi: Fix null dereference on suspend
Submitter: Mark Hasemeyer <markhas@chromium.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=799533
Lore link: https://lore.kernel.org/r/20231107144743.v1.1.I7987f05f61901f567f7661763646cb7d7919b528@changeid
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-11-06 13:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-11-06 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: spi-zynq-qspi: add spi-mem to driver kconfig dependencies
Submitter: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=798719
Lore link: https://lore.kernel.org/r/1699037031-702858-1-git-send-email-radhey.shyam.pandey@amd.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-23 17:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-23 17: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: omap2-mcspi: Add FIFO support without DMA
Submitter: Vaishnav Achath <vaishnav.a@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=792929
Lore link: https://lore.kernel.org/r/20231013092629.19005-1-vaishnav.a@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-17 23:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-17 23: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: [RESEND] spi: stm32: Explicitly include correct DT includes
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=794083
Lore link: https://lore.kernel.org/r/20231017203352.2698326-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-16 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-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 (for-next):
Series: spi/ACPI: Add support for SPI WM5102 coded on Lenovo YT3-X90
Submitter: Hans de Goede <hdegoede@redhat.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=793250
Lore link: https://lore.kernel.org/r/20231014205314.59333-1-hdegoede@redhat.com
Patches: [1/4] spi: Export acpi_spi_find_controller_by_adev()
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-16 15:21 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-16 15:21 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: nxp-fspi: use the correct ioremap function
Submitter: Han Xu <han.xu@nxp.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=791928
Lore link: https://lore.kernel.org/r/20231010201524.2021340-1-han.xu@nxp.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-11 18:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-11 18: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: [v1,1/1] spi: Don't use flexible array in struct spi_message definition
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=791863
Lore link: https://lore.kernel.org/r/20231010163100.89734-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-10 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-10 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: Add RZ/V2M CSI slave support
Submitter: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=788185
Lore link: https://lore.kernel.org/r/20230927162508.328736-1-fabrizio.castro.jz@renesas.com
Patches: [v2,1/2] spi: renesas,rzv2m-csi: Add CSI (SPI) target related property
[v2,2/2] spi: rzv2m-csi: Add target mode support
Patch: spi: bcm2835: add a sentinel at the end of the lookup array
Submitter: Bartosz Golaszewski <brgl@bgdev.pl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=790042
Lore link: https://lore.kernel.org/r/20231004183906.97845-1-brgl@bgdev.pl
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-09 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-09 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):
Patch: spi: spi-geni-qcom: Rename the label unmap_if_dma
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=790719
Lore link: https://lore.kernel.org/r/1696614170-18969-1-git-send-email-quic_vnivarth@quicinc.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-06 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-06 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: spi: spidev: make spidev_class constant
Submitter: Greg KH <gregkh@linuxfoundation.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=790652
Lore link: https://lore.kernel.org/r/2023100639-celtic-herbs-66be@gregkh
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-06 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-06 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):
Patch: spi: mpc52xx-psc: Make mpc52xx_psc_spi_transfer_one_message() static
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=790584
Lore link: https://lore.kernel.org/r/20231006112945.1491265-1-geert+renesas@glider.be
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-10-02 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-10-02 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):
Patch: spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0
Submitter: William A. Kennington III <william@wkennington.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=786878
Lore link: https://lore.kernel.org/r/20230922182812.2728066-1-william@wkennington.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-28 8:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-28 8: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: spi-gxp: BUG: Correct spi write return value
Submitter: None <charles.kearney@hpe.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=786091
Lore link: https://lore.kernel.org/r/20230920215339.4125856-1-charles.kearney@hpe.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-26 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-26 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: omap2-mcspi: Fix hardcoded reference clock
Submitter: Vaishnav Achath <vaishnav.a@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=787633
Lore link: https://lore.kernel.org/r/20230926113812.30692-1-vaishnav.a@ti.com
Patch: [V3] spi: spi-cadence-quadspi: Fix missing unwind goto warnings
Submitter: Dhruva Gole <d-gole@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=787659
Lore link: https://lore.kernel.org/r/20230926130926.314751-1-d-gole@ti.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-26 13:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-26 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):
Patch: spi: dt-bindings: Make "additionalProperties: true" explicit
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=787433
Lore link: https://lore.kernel.org/r/20230925212614.1974243-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-26 11:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-26 11: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: dt-bindings: spi: fsl-imx-cspi: Document missing entries
Submitter: Fabio Estevam <festevam@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=787057
Lore link: https://lore.kernel.org/r/20230924183904.752415-1-festevam@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-26 9:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-26 9: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: qup: Allow scaling power domains and interconnect
Submitter: Stephan Gerhold <stephan.gerhold@kernkonzept.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=785589
Lore link: https://lore.kernel.org/r/20230919-spi-qup-dvfs-v2-0-1bac2e9ab8db@kernkonzept.com
Patches: [v2,1/4] spi: dt-bindings: qup: Document power-domains and OPP
[v2,2/4] spi: qup: Parse OPP table for DVFS support
[v2,3/4] spi: dt-bindings: qup: Document interconnects
[v2,4/4] spi: qup: Vote for interconnect bandwidth to DRAM
Patch: spi: dt-bindings: st,stm32-spi: Move "st,spi-midi-ns" to spi-peripheral-props.yaml
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=784307
Lore link: https://lore.kernel.org/r/20230914190049.1853136-1-robh@kernel.org
Patch: spi: at91-usart: Remove some dead code
Submitter: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=784993
Lore link: https://lore.kernel.org/r/84eb08daf85d203b34af9d8d08abf86804211413.1694961365.git.christophe.jaillet@wanadoo.fr
Total patches: 6
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-22 21:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-22 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: mchp-pci1xxxx: Annotate struct pci1xxxx_spi with __counted_by
Submitter: Kees Cook <keescook@chromium.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=786873
Lore link: https://lore.kernel.org/r/20230922175322.work.170-kees@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-22 19:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-22 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):
Patch: spi: cs42l43: Remove spurious pm_runtime_disable
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=786576
Lore link: https://lore.kernel.org/r/20230922090829.1467594-1-ckeepax@opensource.cirrus.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-19 17:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-19 17: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: [RESEND] spi: zynqmp-gqspi: fix clock imbalance on probe failure
Submitter: Johan Hovold <johan+linaro@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=785511
Lore link: https://lore.kernel.org/r/20230919083401.26454-1-johan+linaro@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-18 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-18 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):
Patch: spi: Drop warning from spi_stop_queue()
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=784952
Lore link: https://lore.kernel.org/r/20230916161235.1050176-1-u.kleine-koenig@pengutronix.de
Patch: [v3] spi: bcm2835: reduce the abuse of the GPIO API
Submitter: Bartosz Golaszewski <brgl@bgdev.pl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=783115
Lore link: https://lore.kernel.org/r/20230911161553.24313-1-brgl@bgdev.pl
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-16 1:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-16 1: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: spi: dt-bindings: arm,pl022: Move child node properties to separate schema
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=784306
Lore link: https://lore.kernel.org/r/20230914190033.1852600-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-12 11:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-12 11: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: switch to use modern name (part3)
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=778415
Lore link: https://lore.kernel.org/r/20230823033003.3407403-1-yangyingliang@huawei.com
Patches: [-next,v2,01/21] spi: lm70llp: switch to use modern name
[-next,v2,02/21] spi: lp-8841: switch to use modern name
[-next,v2,03/21] spi: meson-spicc: switch to use modern name
[-next,v2,04/21] spi: meson-spifc: switch to use modern name
[-next,v2,05/21] spi: microchip-core-qspi: switch to use modern name
[-next,v2,06/21] spi: microchip-core: switch to use modern name
[-next,v2,07/21] spi: mpc512x-psc: switch to use modern name
[-next,v2,08/21] spi: mpc52xx-psc: switch to use modern name
[-next,v2,09/21] spi: mpc52xx: switch to use modern name
[-next,v2,10/21] spi: mt65xx: switch to use modern name
[-next,v2,11/21] spi: mt7621: switch to use modern name
[-next,v2,12/21] spi: mtk-nor: switch to use modern name
[-next,v2,13/21] spi: mtk-snfi: switch to use modern name
[-next,v2,14/21] spi: mux: switch to use spi_alloc_host()
[-next,v2,15/21] spi: mxic: switch to use modern name
[-next,v2,16/21] spi: mxs: switch to use modern name
[-next,v2,17/21] spi: npcm-pspi: switch to use modern name
[-next,v2,18/21] spi: nxp-fspi: switch to use modern name
[-next,v2,19/21] spi: oc-tiny: switch to use modern name
[-next,v2,20/21] spi: omap-uwire: switch to use modern name
[-next,v2,21/21] spi: omap2-mcspi: switch to use modern name
Patch: spi: nxp-fspi: reset the FLSHxCR1 registers
Submitter: Han Xu <han.xu@nxp.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=782067
Lore link: https://lore.kernel.org/r/20230906183254.235847-1-han.xu@nxp.com
Series: spidev: A few cleanups
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=779066
Lore link: https://lore.kernel.org/r/20230824162209.2890440-1-andriy.shevchenko@linux.intel.com
Patches: [v1,1/3] spidev: Decrease indentation level in spidev_ioctl() SPI_IOC_RD_MODE*
[v1,2/3] spidev: Switch to use spi_get_csgpiod()
[v1,3/3] spidev: Simplify SPI_IOC_RD_MODE* cases in spidev_ioctl()
Series: spi: Use devm_clk_get_*() helper function to simplify the drivers.
Submitter: Li Zetao <lizetao1@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=778225
Lore link: https://lore.kernel.org/r/20230822131237.1022815-1-lizetao1@huawei.com
Patches: [-next,01/25] spi: ar934x: Use helper function devm_clk_get_enabled()
[-next,03/25] spi: aspeed: Use helper function devm_clk_get_enabled()
[-next,04/25] spi: ath79: Use helper function devm_clk_get_enabled()
[-next,05/25] spi: spi-axi-spi-engine: Use helper function devm_clk_get_enabled()
[-next,06/25] spi: bcm2835: Use helper function devm_clk_get_enabled()
[-next,07/25] spi: bcm2835aux: Use helper function devm_clk_get_enabled()
[-next,08/25] spi: spi-cadence: Use helper function devm_clk_get_enabled()
[-next,09/25] spi: spi-cavium-thunderx: Use helper function devm_clk_get_enabled()
[-next,10/25] spi: davinci: Use helper function devm_clk_get_enabled()
[-next,11/25] spi: dw-bt1: Use helper function devm_clk_get_enabled()
[-next,13/25] spi: spi-fsl-dspi: Use helper function devm_clk_get_enabled()
[-next,14/25] spi: lantiq-ssc: Use helper function devm_clk_get_enabled()
[-next,15/25] spi: meson-spicc: Use helper function devm_clk_get_enabled()
[-next,16/25] spi: spi-meson-spifc: Use helper function devm_clk_get_enabled()
[-next,17/25] spi: microchip-core-qspi: Use helper function devm_clk_get_enabled()
[-next,18/25] spi: microchip-core: Use helper function devm_clk_get_enabled()
[-next,19/25] spi: mtk-snfi: Use helper function devm_clk_get_enabled()
[-next,20/25] spi: npcm-fiu: Use helper function devm_clk_get_enabled()
[-next,25/25] spi: rockchip: Use helper function devm_clk_get_enabled()
Series: [-next,v2,01/25] spi: ar934x: Use helper function devm_clk_get_enabled()
Submitter: Li Zetao <lizetao1@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=778625
Lore link: https://lore.kernel.org/r/20230823133938.1359106-2-lizetao1@huawei.com
Patches: [-next,v2,01/25] spi: ar934x: Use helper function devm_clk_get_enabled()
[-next,v2,02/25] spi: armada-3700: Use helper function devm_clk_get_prepared()
[-next,v2,03/25] spi: aspeed: Use helper function devm_clk_get_enabled()
[-next,v2,04/25] spi: ath79: Use helper function devm_clk_get_enabled()
[-next,v2,05/25] spi: spi-axi-spi-engine: Use helper function devm_clk_get_enabled()
[-next,v2,06/25] spi: bcm2835: Use helper function devm_clk_get_enabled()
[-next,v2,07/25] spi: bcm2835aux: Use helper function devm_clk_get_enabled()
[-next,v2,08/25] spi: spi-cadence: Use helper function devm_clk_get_enabled()
[-next,v2,09/25] spi: spi-cavium-thunderx: Use helper function devm_clk_get_enabled()
[-next,v2,10/25] spi: davinci: Use helper function devm_clk_get_enabled()
[-next,v2,11/25] spi: dw-bt1: Use helper function devm_clk_get_enabled()
[-next,v2,12/25] spi: dw-mmio: Use helper function devm_clk_get_*()
[-next,v2,13/25] spi: spi-fsl-dspi: Use helper function devm_clk_get_enabled()
[-next,v2,14/25] spi: lantiq-ssc: Use helper function devm_clk_get_enabled()
[-next,v2,15/25] spi: meson-spicc: Use helper function devm_clk_get_enabled()
[-next,v2,16/25] spi: spi-meson-spifc: Use helper function devm_clk_get_enabled()
[-next,v2,17/25] spi: microchip-core-qspi: Use helper function devm_clk_get_enabled()
[-next,v2,18/25] spi: microchip-core: Use helper function devm_clk_get_enabled()
[-next,v2,19/25] spi: mtk-snfi: Use helper function devm_clk_get_enabled()
[-next,v2,20/25] spi: npcm-fiu: Use helper function devm_clk_get_enabled()
[-next,v2,21/25] spi: orion: Use helper function devm_clk_get_enabled()
[-next,v2,22/25] spi: pic32-sqi: Use helper function devm_clk_get_enabled()
[-next,v2,23/25] spi: pic32: Use helper function devm_clk_get_enabled()
[-next,v2,24/25] spi: spl022: Use helper function devm_clk_get_enabled()
[-next,v2,25/25] spi: rockchip: Use helper function devm_clk_get_enabled()
Patch: spi: tegra: Fix missing IRQ check in tegra_slink_probe()
Submitter: Zhang Shurong <zhang_shurong@foxmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=779590
Lore link: https://lore.kernel.org/r/tencent_73FCC06A3D1C14EE5175253C6FB46A07B709@qq.com
Patch: spi: intel-pci: Add support for Granite Rapids SPI serial flash
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=782832
Lore link: https://lore.kernel.org/r/20230911074616.3473347-1-mika.westerberg@linux.intel.com
Patch: [V2] spi: spi-cadence-quadspi: add runtime pm support
Submitter: Dhruva Gole <d-gole@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=780117
Lore link: https://lore.kernel.org/r/20230829062706.786637-1-d-gole@ti.com
Patch: spi: stm32: add a delay before SPI disable
Submitter: Valentin Caron <valentin.caron@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=782003
Lore link: https://lore.kernel.org/r/20230906132735.748174-1-valentin.caron@foss.st.com
Total patches: 73
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-11 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-11 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: Add interconnects to QUPs on SM8250
Submitter: Konrad Dybcio <konrad.dybcio@linaro.org>
Committer: Georgi Djakov <djakov@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762155
Lore link: https://lore.kernel.org/r/20230703-topic-8250_qup_icc-v2-0-9ba0a9460be2@linaro.org
Patches: [v2,1/4] dt-bindings: interconnect: qcom,rpmh: Add SM8250 QUP virt
[v2,2/4] dt-bindings: interconnect: qcom,sm8250: Add QUP virt
[v2,3/4] interconnect: qcom: sm8250: Fix QUP0 nodes
Series: Add support for sam9x7 SoC family
Submitter: Varshini Rajendran <varshini.rajendran@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759897
Lore link: https://lore.kernel.org/r/20230623203056.689705-1-varshini.rajendran@microchip.com
Patches: [v2,01/45] dt-bindings: microchip: atmel,at91rm9200-tcb: add sam9x60, sam9x7 compatible
[v2,02/45] dt-bindings: usb: ehci: Add atmel at91sam9g45-ehci compatible
Series: Add cs42l43 PC focused SoundWire CODEC
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773051
Lore link: https://lore.kernel.org/r/20230804104602.395892-1-ckeepax@opensource.cirrus.com
Patches: [v7,1/6] soundwire: bus: Allow SoundWire peripherals to register IRQ handlers
[v7,6/6] ASoC: cs42l43: Add support for the cs42l43
Series: [v2,1/3] dt-bindings: media: amphion: Fix subnode pattern
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Committer: Mauro Carvalho Chehab <mchehab@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=768879
Lore link: https://lore.kernel.org/r/20230724122101.2903318-1-alexander.stein@ew.tq-group.com
Patches: [v2,1/3] dt-bindings: media: amphion: Fix subnode pattern
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-09-04 19:09 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-09-04 19:09 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: sun6i: fix RX data corruption in DMA mode
Submitter: Tobias Schramm <t.schramm@manjaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=779748
Lore link: https://lore.kernel.org/r/20230827152558.5368-1-t.schramm@manjaro.org
Patches: [1/2] spi: sun6i: reduce DMA RX transfer width to single byte
[2/2] spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-22 16:41 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-22 16:41 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: switch to use modern name (part4)
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=777345
Lore link: https://lore.kernel.org/r/20230818093154.1183529-1-yangyingliang@huawei.com
Patches: [-next,v3,01/23] spi: orion: switch to use modern name
[-next,v3,02/23] spi: mchp-pci1xxxx: switch to use modern name
[-next,v3,03/23] spi: pic32-sqi: switch to use modern name
[-next,v3,04/23] spi: pic32: switch to use modern name
[-next,v3,05/23] spi: spl022: switch to use modern name
[-next,v3,06/23] spi: ppc4xx: switch to use modern name
[-next,v3,07/23] spi: pxa2xx: switch to use modern name
[-next,v3,08/23] spi: spi-qcom-qspi: switch to use modern name
[-next,v3,09/23] spi: qup: switch to use modern name
[-next,v3,10/23] spi: rb4xx: switch to use modern name
[-next,v3,11/23] spi: realtek-rtl: switch to use devm_spi_alloc_host()
[-next,v3,12/23] spi: rockchip-sfc: switch to use modern name
[-next,v3,13/23] spi: rockchip: switch to use modern name
[-next,v3,14/23] spi: rspi: switch to use spi_alloc_host()
[-next,v3,15/23] spi: rzv2m-csi: switch to use devm_spi_alloc_host()
[-next,v3,16/23] spi: s3c64xx: switch to use modern name
[-next,v3,17/23] spi: sc18is602: switch to use modern name
[-next,v3,18/23] spi: sh-hspi: switch to use modern name
[-next,v3,19/23] spi: sh-msiof: switch to use modern name
[-next,v3,20/23] spi: sh-sci: switch to use modern name
[-next,v3,21/23] spi: sh: switch to use modern name
[-next,v3,22/23] spi: sifive: switch to use modern name
[-next,v3,23/23] spi: spi-sn-f-ospi: switch to use modern name
Patch: [-next] spi: at91-usart: Use PTR_ERR_OR_ZERO() to simplify code
Submitter: Jinjie Ruan <ruanjinjie@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=778212
Lore link: https://lore.kernel.org/r/20230822124643.987079-1-ruanjinjie@huawei.com
Patch: spi: bcm-qspi: Simplify logic by using devm_platform_ioremap_resource_byname()
Submitter: Zhang Zekun <zhangzekun11@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=774982
Lore link: https://lore.kernel.org/r/20230810131650.71916-1-zhangzekun11@huawei.com
Total patches: 25
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-21 21:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-21 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: fix accidential revert to byte-sized transfer splitting
Submitter: Leonard Göhrs <l.goehrs@pengutronix.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=776673
Lore link: https://lore.kernel.org/r/20230816145237.3159817-1-l.goehrs@pengutronix.de
Patch: spi: spi-cadence: Fix data corruption issues in slave mode
Submitter: Srinivas Goud <srinivas.goud@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=777833
Lore link: https://lore.kernel.org/r/1692610216-217644-1-git-send-email-srinivas.goud@amd.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-18 22:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-18 22: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 cs42l43 PC focused SoundWire CODEC
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Committer: Lee Jones <lee@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773051
Lore link: https://lore.kernel.org/r/20230804104602.395892-1-ckeepax@opensource.cirrus.com
Patches: [v7,1/6] soundwire: bus: Allow SoundWire peripherals to register IRQ handlers
[v7,2/6] dt-bindings: mfd: cirrus,cs42l43: Add initial DT binding
[v7,3/6] mfd: cs42l43: Add support for cs42l43 core driver
[v7,4/6] pinctrl: cs42l43: Add support for the cs42l43
[v7,5/6] spi: cs42l43: Add SPI controller support
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-16 16:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-16 16: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: switch to use modern name (part4)
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=776570
Lore link: https://lore.kernel.org/r/20230816094013.1275068-1-yangyingliang@huawei.com
Patches: [-next,01/24] spi: orion: switch to use modern name
[-next,14/24] spi: rpc-if: switch to use devm_spi_alloc_host()
Patch: [-next] spi: dw-mmio: keep old name same as documentation
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=776569
Lore link: https://lore.kernel.org/r/20230816093938.1274806-1-yangyingliang@huawei.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-15 22:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-15 22: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: tegra114: Remove unnecessary NULL-pointer checks
Submitter: Alexander Danilenko <al.b.danilenko@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=776234
Lore link: https://lore.kernel.org/r/20230815092058.4083-1-al.b.danilenko@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-14 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-14 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: switch to use modern name (part2)
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773656
Lore link: https://lore.kernel.org/r/20230807124105.3429709-1-yangyingliang@huawei.com
Patches: [-next,01/20] spi: amlogic-spifc-a1: switch to use devm_spi_alloc_host()
[-next,02/20] spi: au1550: switch to use modern name
[-next,03/20] spi: ep93xx: switch to use modern name
[-next,04/20] spi: falcon: switch to use modern name
[-next,05/20] spi: fsi: switch to use spi_alloc_host()
[-next,06/20] spi: fsl-dspi: switch to use modern name
[-next,07/20] spi: fsl-espi: switch to use modern name
[-next,08/20] spi: fsl-lpspi: switch to use modern name
[-next,09/20] spi: fsl-qspi: switch to use modern name
[-next,10/20] spi: fsl-spi: switch to use modern name
[-next,11/20] spi: gpio: switch to use modern name
[-next,12/20] spi: gxp: switch to use modern name
[-next,13/20] spi: bcmbca-hsspi: switch to use modern name
[-next,14/20] spi: hisi-sfc-v3xx: switch to use modern name
[-next,15/20] spi: img-spfi: switch to use modern name
[-next,16/20] spi: imx: switch to use modern name
[-next,17/20] spi: ingenic: switch to use devm_spi_alloc_host()
[-next,18/20] spi: intel: switch to use modern name
[-next,19/20] spi: jcore: switch to use modern name
[-next,20/20] spi: lantiq: switch to use modern name
Total patches: 20
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-14 21:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-14 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):
Series: [net-next,1/3] spi: sc18is602: fix Wvoid-pointer-to-enum-cast warning
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=774856
Lore link: https://lore.kernel.org/r/20230810091247.70149-1-krzysztof.kozlowski@linaro.org
Patches: [net-next,1/3] spi: sc18is602: fix Wvoid-pointer-to-enum-cast warning
[net-next,2/3] spi: pxa2xx: fix Wvoid-pointer-to-enum-cast warning
[net-next,3/3] spi: amd: fix Wvoid-pointer-to-enum-cast warning
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-09 16:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-09 16: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: fsl-cpm: Properly define and use IO pointers
Submitter: Christophe Leroy <christophe.leroy@csgroup.eu>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=774441
Lore link: https://lore.kernel.org/r/18a65dca9134f6fc35932408066d4a8284cbfa65.1691571190.git.christophe.leroy@csgroup.eu
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-08 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-08 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: spi: dw: Set default value if reg-io-width isn't specified
Submitter: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773457
Lore link: https://lore.kernel.org/r/20230807001621.196776-1-hayashi.kunihiko@socionext.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-07 22:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-07 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: spi: switch to use modern name
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=770496
Lore link: https://lore.kernel.org/r/20230728093221.3312026-1-yangyingliang@huawei.com
Patches: [-next,01/21] spi: amd: switch to use modern name
[-next,02/21] spi: aspeed: switch to use modern name
[-next,03/21] spi: spi-axi-spi-engine: switch to use modern name
[-next,04/21] spi: bcm-qspi: switch to use modern name
[-next,05/21] spi: bcm2835: switch to use modern name
[-next,06/21] spi: bcm2835aux: switch to use modern name
[-next,07/21] spi: bcm63xx-hsspi: switch to use modern name
[-next,08/21] spi: bcm63xx: switch to use modern name
[-next,09/21] spi: butterfly: switch to use modern name
[-next,11/21] spi: cadence-xspi: switch to use modern name
[-next,12/21] spi: cadence: switch to use modern name
[-next,13/21] spi: clps711x: switch to use modern name
[-next,14/21] spi: octeon: switch to use modern name
[-next,15/21] spi: spi-cavium-thunderx: switch to use modern name
[-next,16/21] spi: coldfire-qspi: switch to use modern name
[-next,17/21] spi: davinci: switch to use modern name
[-next,18/21] spi: dln2: switch to use modern name
[-next,19/21] spi: dw: switch to use modern name
[-next,20/21] spi: hisi-kunpeng: switch to use modern name
[-next,21/21] spi: npcm-fiu: switch to use modern name
Series: spi: switch to use modern name (part1)
Submitter: Yang Yingliang <yangyingliang@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773708
Lore link: https://lore.kernel.org/r/20230807140717.3484180-1-yangyingliang@huawei.com
Patches: [-next,v2,01/21] spi: amd: switch to use modern name
[-next,v2,02/21] spi: aspeed: switch to use modern name
[-next,v2,03/21] spi: spi-axi-spi-engine: switch to use modern name
[-next,v2,04/21] spi: bcm-qspi: switch to use modern name
[-next,v2,05/21] spi: bcm2835: switch to use modern name
[-next,v2,06/21] spi: bcm2835aux: switch to use modern name
[-next,v2,07/21] spi: bcm63xx-hsspi: switch to use modern name
[-next,v2,08/21] spi: bcm63xx: switch to use modern name
[-next,v2,09/21] spi: butterfly: switch to use modern name
[-next,v2,10/21] spi: cadence-quadspi: switch to use modern name
[-next,v2,11/21] spi: cadence-xspi: switch to use modern name
[-next,v2,12/21] spi: cadence: switch to use modern name
[-next,v2,13/21] spi: clps711x: switch to use modern name
[-next,v2,14/21] spi: octeon: switch to use modern name
[-next,v2,15/21] spi: spi-cavium-thunderx: switch to use modern name
[-next,v2,16/21] spi: coldfire-qspi: switch to use modern name
[-next,v2,17/21] spi: davinci: switch to use modern name
[-next,v2,18/21] spi: dln2: switch to use modern name
[-next,v2,19/21] spi: dw: switch to use modern name
[-next,v2,20/21] spi: hisi-kunpeng: switch to use modern name
[-next,v2,21/21] spi: npcm-fiu: switch to use modern name
Patch: [v2] dt-bindings: spi: convert spi-brcm63xx.txt to YAML
Submitter: Jonas Gorski <jonas.gorski@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769983
Lore link: https://lore.kernel.org/r/20230727070806.12205-1-jonas.gorski@gmail.com
Patch: [v2] spi: spi-mpc52xx-psc: Fix an unsigned comparison that can never be negative
Submitter: None <coolrrsh@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=773729
Lore link: https://lore.kernel.org/r/20230807144942.30317-2-coolrrsh@gmail.com
Patch: [-next] spi: omap2-mcspi: remove redundant dev_err_probe()
Submitter: Zhu Wang <wangzhu9@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=771702
Lore link: https://lore.kernel.org/r/20230801135442.255604-1-wangzhu9@huawei.com
Total patches: 44
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-07 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-07 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):
Patch: mtd: spi-nor: avoid holes in struct spi_mem_op
Submitter: Arnd Bergmann <arnd@kernel.org>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=767530
Lore link: https://lore.kernel.org/r/20230719190045.4007391-1-arnd@kernel.org
Patch: [-next] spi: Do not check for 0 return after calling platform_get_irq()
Submitter: Ruan Jinjie <ruanjinjie@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772098
Lore link: https://lore.kernel.org/r/20230802093238.975906-1-ruanjinjie@huawei.com
Series: update at91 usart compatible for sam9x60
Submitter: Durai Manickam KR <durai.manickamkr@microchip.com>
Committer: Arnd Bergmann <arnd@arndb.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=766797
Lore link: https://lore.kernel.org/r/20230718065735.10187-1-durai.manickamkr@microchip.com
Patches: [PATCHv3,1/2] dt-bindings: serial: atmel,at91-usart: update compatible for sam9x60
[PATCHv3,2/2] ARM: dts: at91: sam9x60: fix the SOC detection
Patch: [-next] spi: spi-zynq: Do not check for 0 return after calling platform_get_irq()
Submitter: Ruan Jinjie <ruanjinjie@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772110
Lore link: https://lore.kernel.org/r/20230802094357.981100-1-ruanjinjie@huawei.com
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-04 19:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-04 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):
Series: Add initialization of clock for StarFive JH7110 SoC
Submitter: William Qiu <william.qiu@starfivetech.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772857
Lore link: https://lore.kernel.org/r/20230804020254.291239-1-william.qiu@starfivetech.com
Patches: [v6,1/3] dt-bindings: qspi: cdns,qspi-nor: Add clocks for StarFive JH7110 SoC
[v6,2/3] spi: cadence-quadspi: Add clock configuration for StarFive JH7110 QSPI
Patch: [v4,1/3] dt-bindings: qspi: cdns,qspi-nor: Add clocks for StarFive JH7110 SoC
Submitter: William Qiu <william.qiu@starfivetech.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762275
Lore link: https://lore.kernel.org/r/20230704091948.85247-5-william.qiu@starfivetech.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-03 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-03 18: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] dt-bindings: spi: spi-cadence: Describe power-domains property
Submitter: Michal Simek <michal.simek@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772466
Lore link: https://lore.kernel.org/r/987430ee905fd299fe962663d94f848b341c87df.1691047461.git.michal.simek@amd.com
Patches: [1/2] dt-bindings: spi: spi-cadence: Describe power-domains property
[2/2] dt-bindings: spi: spi-cadence: Add label property
Patch: [-next] spi: mpc5xxx-psc: Fix unsigned expression compared with zero
Submitter: Li Zetao <lizetao1@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772656
Lore link: https://lore.kernel.org/r/20230803134805.1037251-1-lizetao1@huawei.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-08-03 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-08-03 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):
Patch: [-next] spi: fsl-spi: Do not check 0 for platform_get_irq()
Submitter: Zhu Wang <wangzhu9@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=772512
Lore link: https://lore.kernel.org/r/20230803083944.21501-1-wangzhu9@huawei.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-31 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-31 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-geni-qcom: Add SPI device mode support for GENI based QuPv3
Submitter: Praveen Talari <quic_ptalari@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=765519
Lore link: https://lore.kernel.org/r/20230714042203.14251-1-quic_ptalari@quicinc.com
Patches: [v7,1/2] soc: qcom: geni-se: Add SPI Device mode support for GENI based QuPv3
[v7,2/2] spi: spi-geni-qcom: Add SPI Device mode support for GENI based QuPv3
Series: spi-geni-qcom: Add SPI SLAVE mode support for GENI based QuPv3
Submitter: Praveen Talari <quic_ptalari@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=756605
Lore link: https://lore.kernel.org/r/20230613065229.5619-1-quic_ptalari@quicinc.com
Patches: [1/2] soc: qcom: geni-se: Add SPI SLAVE mode support for GENI based QuPv3
Series: spi-geni-qcom: Add SPI SLAVE mode support for
Submitter: Praveen Talari <quic_ptalari@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=757345
Lore link: https://lore.kernel.org/r/20230615070706.18322-1-quic_ptalari@quicinc.com
Patches: [v2,1/3] soc: qcom: geni-se: Add SPI SLAVE mode support for GENI based QuPv3
Series: spi-geni-qcom: Add SPI device mode support for
Submitter: Praveen Talari <quic_ptalari@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762931
Lore link: https://lore.kernel.org/r/20230706051024.15422-1-quic_ptalari@quicinc.com
Patches: [v4,1/2] soc: qcom: geni-se: Add SPI Device mode support for GENI based QuPv3
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-31 20:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-31 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):
Series: spi: loongson: add bus driver for the loongson spi
Submitter: Yinbo Zhu <zhuyinbo@loongson.cn>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=756627
Lore link: https://lore.kernel.org/r/20230613075834.5219-1-zhuyinbo@loongson.cn
Patches: [v13,1/2] spi: dt-bindings: add loongson spi
[v13,2/2] spi: loongson: add bus driver for the loongson spi controller
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-31 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-31 14: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: Use dev_err_probe instead of dev_err
Submitter: Wang Ming <machel@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769654
Lore link: https://lore.kernel.org/r/20230726105457.3743-1-machel@vivo.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-28 20:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-28 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):
Patch: [1/1] spi: fspi: Add power-domains to the DT bindings
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=770407
Lore link: https://lore.kernel.org/r/20230728060804.22796-1-alexander.stein@ew.tq-group.com
Patch: [-next,v2] spi: microchip-core: Clean up redundant dev_err_probe()
Submitter: Chen Jiahao <chenjiahao16@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=770448
Lore link: https://lore.kernel.org/r/20230728075729.3451867-1-chenjiahao16@huawei.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-27 19:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-27 19: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: [-next] spi: s3c64xx: Clean up redundant dev_err_probe()
Submitter: Chen Jiahao <chenjiahao16@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=770139
Lore link: https://lore.kernel.org/r/20230727131635.2898051-1-chenjiahao16@huawei.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-27 16:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-27 16: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: [-next] spi: stm32: Remove redundant dev_err_probe()
Submitter: Ruan Jinjie <ruanjinjie@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769921
Lore link: https://lore.kernel.org/r/20230727110558.2904084-1-ruanjinjie@huawei.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-26 19:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-26 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: [v2] spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe()
Submitter: Zhang Shurong <zhang_shurong@foxmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=768552
Lore link: https://lore.kernel.org/r/tencent_71FC162D589E4788C2152AAC84CD8D5C6D06@qq.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-26 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-26 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):
Series: [1/2] spi: spi-qcom-qspi: Fallback to PIO for xfers that aren't multiples of 4 bytes
Submitter: Doug Anderson <dianders@chromium.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769428
Lore link: https://lore.kernel.org/r/20230725110226.1.Ia2f980fc7cd0b831e633391f0bb1272914d8f381@changeid
Patches: [1/2] spi: spi-qcom-qspi: Fallback to PIO for xfers that aren't multiples of 4 bytes
[2/2] spi: spi-qcom-qspi: Add mem_ops to avoid PIO for badly sized reads
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-25 20:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-25 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):
Series: spi: spi-qcom-qspi: Follow-up patches to DMA mode support
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769274
Lore link: https://lore.kernel.org/r/1690285689-30233-1-git-send-email-quic_vnivarth@quicinc.com
Patches: [1/4] spi: spi-qcom-qspi: Ignore disabled interrupts' status in isr
[2/4] spi: spi-qcom-qspi: Use GFP_ATOMIC flag while allocating for descriptor
[3/4] spi: spi-qcom-qspi: Call dma_wmb() after setting up descriptors
[4/4] spi: spi-qcom-qspi: Add DMA_CHAIN_DONE to ALL_IRQS
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-25 19:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-25 19: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: fsl: Remove unused extern declarations
Submitter: YueHaibing <yuehaibing@huawei.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769325
Lore link: https://lore.kernel.org/r/20230725135411.21152-1-yuehaibing@huawei.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-25 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-25 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):
Patch: [v2] spi: fsl-dspi: Use dev_err_probe() in dspi_request_dma()
Submitter: Minjie Du <duminjie@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=769109
Lore link: https://lore.kernel.org/r/20230725035038.1702-1-duminjie@vivo.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-24 20:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-24 20: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] dt-bindings: media: amphion: Fix subnode pattern
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=768879
Lore link: https://lore.kernel.org/r/20230724122101.2903318-1-alexander.stein@ew.tq-group.com
Patches: [v2,1/3] dt-bindings: media: amphion: Fix subnode pattern
[v2,2/3] dt-bindings: spi: lpspi: Add power-domains
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-24 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-24 18: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 module for StarFive JH7110 SoC
Submitter: William Qiu <william.qiu@starfivetech.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=768830
Lore link: https://lore.kernel.org/r/20230724101054.25268-1-william.qiu@starfivetech.com
Patches: [v3,1/2] dt-bindings: spi: add reference file to YAML
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-20 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-20 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: [1/1] spi: use devm_clk_get_enabled() in mcfqspi_probe()
Submitter: Yuanjun Gong <ruc_gongyuanjun@163.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=767849
Lore link: https://lore.kernel.org/r/20230720140909.34084-1-ruc_gongyuanjun@163.com
Patch: [1/1] spi: fix return value check in bcm2835_spi_probe()
Submitter: Yuanjun Gong <ruc_gongyuanjun@163.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=767850
Lore link: https://lore.kernel.org/r/20230720140859.33883-1-ruc_gongyuanjun@163.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-19 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-19 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: spi: rzv2m-csi: Code refactoring
Submitter: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=767032
Lore link: https://lore.kernel.org/r/20230718192453.543549-1-fabrizio.castro.jz@renesas.com
Patches: [v2,1/4] spi: rzv2m-csi: Squash timing settings into one statement
[v2,2/4] spi: rzv2m-csi: Improve data types, casting and alignment
[v2,3/4] spi: rzv2m-csi: Get rid of the x_trg{_words} tables
[v2,4/4] spi: rzv2m-csi: Make use of device_set_node
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-18 18:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-18 18: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: [v2,1/3] spi: spi-fsl-lpspi: Remove num_cs from device struct
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=766395
Lore link: https://lore.kernel.org/r/20230717085934.409476-1-alexander.stein@ew.tq-group.com
Patches: [v2,1/3] spi: spi-fsl-lpspi: Remove num_cs from device struct
[v2,2/3] spi: spi-fsl-lpspi: Move controller initialization further down
[v2,3/3] spi: spi-fsl-lpspi: Read chip-select amount from hardware for i.MX93
Series: spi: rzv2m-csi: Code refactoring
Submitter: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=766084
Lore link: https://lore.kernel.org/r/20230715010407.1751715-1-fabrizio.castro.jz@renesas.com
Patches: [01/10] spi: rzv2m-csi: Add missing include
[02/10] spi: rzv2m-csi: Adopt HZ_PER_MHZ for max spi clock
[03/10] spi: rzv2m-csi: Rework CSI_CKS_MAX definition
[04/10] spi: rzv2m-csi: Leave readl_poll_timeout calls for last
[05/10] spi: rzv2m-csi: Replace unnecessary ternary operators
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-18 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-18 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: [v2,1/3] spi: spi-fsl-lpspi: Remove num_cs from device struct
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=766395
Lore link: https://lore.kernel.org/r/20230717085934.409476-1-alexander.stein@ew.tq-group.com
Patches: [v2,1/3] spi: spi-fsl-lpspi: Remove num_cs from device struct
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-14 22:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-14 22: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: Explicitly include correct DT includes
Submitter: Rob Herring <robh@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=765998
Lore link: https://lore.kernel.org/r/20230714174955.4064174-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-14 20:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-14 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):
Series: spi: Header and core clean up and refactoring
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=765647
Lore link: https://lore.kernel.org/r/20230714091748.89681-1-andriy.shevchenko@linux.intel.com
Patches: [v4,1/4] spi: Remove code duplication in spi_add_device*()
[v4,2/4] spi: Kill spi_add_device_locked()
[v4,3/4] spi: Use BITS_TO_BYTES()
[v4,4/4] spi: Use struct_size() helper
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-12 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-12 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: [v2,1/2] MAINTAINERS: add myself for spi-bcm63xx
Submitter: Jonas Gorski <jonas.gorski@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=763660
Lore link: https://lore.kernel.org/r/20230708195309.72767-1-jonas.gorski@gmail.com
Patches: [v2,1/2] MAINTAINERS: add myself for spi-bcm63xx
[v2,2/2] mailmap: add entry for Jonas Gorski
Patch: spi: s3c64xx: clear loopback bit after loopback test
Submitter: Jaewon Kim <jaewon02.kim@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=764314
Lore link: https://lore.kernel.org/r/20230711082020.138165-1-jaewon02.kim@samsung.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-12 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-12 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: spi: spi-cadence: Delete unmatched comments
Submitter: Yangtao Li <frank.li@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=764671
Lore link: https://lore.kernel.org/r/20230712064832.67091-1-frank.li@vivo.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-12 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-12 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: Header and core clean up and refactoring
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=764528
Lore link: https://lore.kernel.org/r/20230711171756.86736-1-andriy.shevchenko@linux.intel.com
Patches: [v3,01/14] spi: Remove unneeded OF node NULL checks
[v3,06/14] spi: Use sysfs_emit() to instead of s*printf()
[v3,10/14] spi: Get rid of old SPI_MASTER_NO_TX & SPI_MASTER_NO_RX
[v3,11/14] spi: Get rid of old SPI_MASTER_MUST_TX & SPI_MASTER_MUST_RX
[v3,12/14] spi: Rename SPI_MASTER_GPIO_SS to SPI_CONTROLLER_GPIO_SS
[v3,13/14] spi: Convert to SPI_CONTROLLER_HALF_DUPLEX
Series: spi: amlogic-spifc-a1: fixes and improvements for amlogic-spifc-a1
Submitter: Martin Kurbanov <mmkurbanov@sberdevices.ru>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=763047
Lore link: https://lore.kernel.org/r/20230706110331.19794-1-mmkurbanov@sberdevices.ru
Patches: [v2,1/2] spi: amlogic-spifc-a1: implement adjust_op_size()
[v2,2/2] spi: amlogic-spifc-a1: add support for max_speed_hz
Series: Allwinner R329/D1/R528/T113s Dual/Quad SPI modes support
Submitter: Maksim Kiselev <bigunclemax@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759986
Lore link: https://lore.kernel.org/r/20230624131632.2972546-1-bigunclemax@gmail.com
Patches: [v1,1/3] spi: sun6i: add quirk for dual and quad SPI modes support
[v1,2/3] spi: sun6i: add dual and quad SPI modes support for R329/D1/R528/T113s
Total patches: 10
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-12 10:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-12 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):
Patch: spi: bcm63xx: fix max prepend length
Submitter: Jonas Gorski <jonas.gorski@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=761125
Lore link: https://lore.kernel.org/r/20230629071453.62024-1-jonas.gorski@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-11 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-11 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: [1/7] spi: atmel: Use devm_platform_get_and_ioremap_resource()
Submitter: Yangtao Li <frank.li@vivo.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762911
Lore link: https://lore.kernel.org/r/20230706032727.9180-1-frank.li@vivo.com
Patches: [1/7] spi: atmel: Use devm_platform_get_and_ioremap_resource()
[2/7] spi: davinci: Use devm_platform_get_and_ioremap_resource()
[3/7] spi: ep93xx: Use devm_platform_get_and_ioremap_resource()
[4/7] spi: spi-nxp-fspi: Convert to devm_platform_ioremap_resource() and devm_platform_ioremap_resource_byname()
[5/7] spi: rspi: Use devm_platform_get_and_ioremap_resource()
[6/7] spi: tegra20-slink: Use devm_platform_get_and_ioremap_resource()
[7/7] spi: s3c64xx: Use devm_platform_get_and_ioremap_resource()
Patch: [v3] spi: stm32: disable device mode with st,stm32f4-spi compatible
Submitter: Valentin Caron <valentin.caron@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762980
Lore link: https://lore.kernel.org/r/20230706081342.468090-1-valentin.caron@foss.st.com
Series: [1/3] dt-bindings: spi: tegra-slink: Convert to json-schema
Submitter: Thierry Reding <thierry.reding@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=762757
Lore link: https://lore.kernel.org/r/20230705152603.2514235-1-thierry.reding@gmail.com
Patches: [1/3] dt-bindings: spi: tegra-slink: Convert to json-schema
[2/3] dt-bindings: spi: tegra-sflash: Convert to json-schema
[3/3] dt-bindings: spi: Convert Tegra114 SPI to json-schema
Patch: spi: Increase imx51 ecspi burst length based on transfer length
Submitter: Stefan Moring <stefan.moring@technolution.nl>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=760937
Lore link: https://lore.kernel.org/r/20230628125406.237949-1-stefan.moring@technolution.nl
Patch: spi: rzv2m-csi: Convert to platform remove callback returning 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=763335
Lore link: https://lore.kernel.org/r/20230707071119.3394198-1-u.kleine-koenig@pengutronix.de
Total patches: 13
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-11 21:53 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-11 21:53 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-bindings: restrict node name suffixes
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Vinod Koul <vkoul@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752283
Lore link: https://lore.kernel.org/r/20230530144851.92059-1-krzysztof.kozlowski@linaro.org
Patches: [1/7] dt-bindings: phy: intel,combo-phy: restrict node name suffixes
[2/7] dt-bindings: pwm: restrict node name suffixes
[3/7] dt-bindings: rtc: restrict node name suffixes
[4/7] dt-bindings: slimbus: restrict node name suffixes
[6/7] dt-bindings: timestamp: restrict node name suffixes
[7/7] dt-bindings: watchdog: restrict node name suffixes
Series: spi: Add DMA mode support to spi-qcom-qspi
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=742649
Lore link: https://lore.kernel.org/r/1682328761-17517-1-git-send-email-quic_vnivarth@quicinc.com
Patches: [v5,1/5] spi: dt-bindings: qcom,spi-qcom-qspi: Add iommus
[v5,2/5] arm64: dts: qcom: sc7180: Add stream-id of qspi to iommus
[v5,3/5] arm64: dts: qcom: sc7280: Add stream-id of qspi to iommus
[v5,4/5] arm64: dts: qcom: sdm845: Add stream-id of qspi to iommus
Series: Fix up Nokia 770 regression
Submitter: Linus Walleij <linus.walleij@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=745924
Lore link: https://lore.kernel.org/r/20230430-nokia770-regression-v4-0-9b6dc5536b17@linaro.org
Patches: [v4,1/4] Input: ads7846 - Convert to use software nodes
[v4,4/4] ARM: dts: Fix erroneous ADS touchscreen polarities
Patch: arm64: defconfig: Enable UBIFS
Submitter: Dhruva Gole <d-gole@ti.com>
Committer: Vignesh Raghavendra <vigneshr@ti.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=740401
Lore link: https://lore.kernel.org/r/20230417092243.967871-1-d-gole@ti.com
Series: spi-geni-qcom: Add new interfaces and utilise them to do map/unmap in framework for SE DMA
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748416
Lore link: https://lore.kernel.org/r/1684325894-30252-1-git-send-email-quic_vnivarth@quicinc.com
Patches: [v2,1/2] soc: qcom: geni-se: Add interfaces geni_se_tx_init_dma() and geni_se_rx_init_dma()
[v2,2/2] spi: spi-geni-qcom: Do not do DMA map/unmap inside driver, use framework instead
Series: Allwinner R329/D1/R528/T113s SPI support
Submitter: Maksim Kiselev <bigunclemax@gmail.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=746344
Lore link: https://lore.kernel.org/r/20230510081121.3463710-1-bigunclemax@gmail.com
Patches: [v5,1/5] dt-bindings: spi: sun6i: add DT bindings for Allwinner R329/D1/R528/T113s SPI
[v5,5/5] riscv: dts: allwinner: d1: Add SPI controllers node
Patch: dt-bindings: xilinx: Switch xilinx.com emails to amd.com
Submitter: Michal Simek <michal.simek@amd.com>
Committer: Michal Simek <michal.simek@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748030
Lore link: https://lore.kernel.org/r/f5b2bd1e78407e4128fc8f0b5874ba723e710a88.1684245058.git.michal.simek@amd.com
Total patches: 18
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-04 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-04 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):
Patch: None
Submitter: Jonas Gorski <jonas.gorski@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=761671
Lore link: https://lore.kernel.org/r/20230630202257.8449-2-jonas.gorski@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-07-03 15:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-07-03 15: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: spi: rzv2m-csi: Fix SoC product name
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=761951
Lore link: https://lore.kernel.org/r/89e9870a2c510387e4d7a863025f4d3639d4a261.1688375020.git.geert+renesas@glider.be
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-30 17:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-30 17: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: bcm-qspi: return error if neither hif_mspi nor mspi is available
Submitter: Jonas Gorski <jonas.gorski@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=761242
Lore link: https://lore.kernel.org/r/20230629134306.95823-1-jonas.gorski@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-29 12:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-29 12: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: spi-geni-qcom: enable SPI_CONTROLLER_MUST_TX for GPI DMA mode
Submitter: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=761201
Lore link: https://lore.kernel.org/r/20230629110039.3659309-1-dmitry.baryshkov@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-24 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-24 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: spi: dt-bindings: atmel,at91rm9200-spi: fix broken sam9x7 compatible
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759968
Lore link: https://lore.kernel.org/r/20230624082054.37697-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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-24 1:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-24 1: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: Add support for sam9x7 SoC family
Submitter: Varshini Rajendran <varshini.rajendran@microchip.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759897
Lore link: https://lore.kernel.org/r/20230623203056.689705-1-varshini.rajendran@microchip.com
Patches: [v2,01/45] dt-bindings: microchip: atmel,at91rm9200-tcb: add sam9x60, sam9x7 compatible
[v2,32/45] spi: dt-bindings: atmel,at91rm9200-spi: add sam9x7 compatible
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-23 0:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-23 0: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: stm32: disable spi device mode for stm32f4-f7
Submitter: Valentin Caron <valentin.caron@foss.st.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759096
Lore link: https://lore.kernel.org/r/20230621115523.923176-1-valentin.caron@foss.st.com
Patches: [1/2] spi: stm32: disable device mode with st,stm32f4-spi compatible
[2/2] spi: dt-bindings: stm32: do not disable spi-slave property for stm32f4-f7
Series: spi: Helper for deriving timeout values
Submitter: Miquel Raynal <miquel.raynal@bootlin.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759425
Lore link: https://lore.kernel.org/r/20230622090634.3411468-1-miquel.raynal@bootlin.com
Patches: [v3,1/3] spi: Create a helper to derive adaptive timeouts
[v3,2/3] spi: atmel: Prevent false timeouts on long transfers
[v3,3/3] spi: sun6i: Use the new helper to derive the xfer timeout value
Series: spi: Add CSI support for Renesas RZ/V2M
Submitter: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759475
Lore link: https://lore.kernel.org/r/20230622113341.657842-1-fabrizio.castro.jz@renesas.com
Patches: [v2,1/5] spi: dt-bindings: Add bindings for RZ/V2M CSI
[v2,3/5] spi: Add support for Renesas CSI
Series: spi: Add CSI support for Renesas RZ/V2M
Submitter: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759147
Lore link: https://lore.kernel.org/r/20230621140944.257352-1-fabrizio.castro.jz@renesas.com
Patches: [1/5] spi: dt-bindings: Add bindings for RZ/V2M CSI
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-22 21:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-22 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):
Patch: spi: zynqmp-gqspi: fix clock imbalance on probe failure
Submitter: Johan Hovold <johan+linaro@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=759390
Lore link: https://lore.kernel.org/r/20230622082435.7873-1-johan+linaro@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-15 15:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-15 15: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: [v2] spi: spi-geni-qcom: correctly handle -EPROBE_DEFER from dma_request_chan()
Submitter: Neil Armstrong <neil.armstrong@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=757479
Lore link: https://lore.kernel.org/r/20230615-topic-sm8550-upstream-fix-spi-geni-qcom-probe-v2-1-670c3d9e8c9c@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-15 13:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-15 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: spi: stm32: add spi slave mode
Submitter: Valentin Caron <valentin.caron@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=757057
Lore link: https://lore.kernel.org/r/20230614102628.202936-1-valentin.caron@foss.st.com
Patches: [v2,1/4] spi: stm32: renaming of spi_master into spi_controller
[v2,2/4] spi: stm32: use dmaengine_terminate_{a}sync instead of _all
[v2,3/4] dt-bindings: spi: stm32: disable spi-slave property for stm32f4-f7
Series: spi: stm32: add spi device mode
Submitter: Valentin Caron <valentin.caron@foss.st.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=757363
Lore link: https://lore.kernel.org/r/20230615075815.310261-1-valentin.caron@foss.st.com
Patches: [v3,1/4] spi: stm32: renaming of spi_master into spi_controller
[v3,2/4] spi: stm32: use dmaengine_terminate_{a}sync instead of _all
[v3,3/4] dt-bindings: spi: stm32: disable spi-slave property for stm32f4-f7
[v3,4/4] spi: stm32: introduction of stm32h7 SPI device mode support
Total patches: 7
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-13 20:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-13 20: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: spi: dw: Replace incorrect spi_get_chipselect with set
Submitter: Abe Kohandel <abe.kohandel@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=756813
Lore link: https://lore.kernel.org/r/20230613162103.569812-1-abe.kohandel@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-07 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-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 (for-next):
Series: spi: s3c64xx: Cleanups
Submitter: Andi Shyti <andi.shyti@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=754228
Lore link: https://lore.kernel.org/r/20230606012051.2139333-1-andi.shyti@kernel.org
Patches: [1/2] spi: s3c64xx: Use the managed spi master allocation function
[2/2] spi: s3c64xx: Use dev_err_probe()
Patch: spi: dw: Remove misleading comment for Mount Evans SoC
Submitter: Abe Kohandel <abe.kohandel@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=754661
Lore link: https://lore.kernel.org/r/20230606231844.726272-1-abe.kohandel@intel.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-07 12:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-07 12: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: spi: fsl-dspi: avoid SCK glitches with continuous transfers
Submitter: Vladimir Oltean <vladimir.oltean@nxp.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=751959
Lore link: https://lore.kernel.org/r/20230529223402.1199503-1-vladimir.oltean@nxp.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-06 16:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-06 16: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: dw: Add compatible for Intel Mount Evans SoC
Submitter: Abe Kohandel <abe.kohandel@intel.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=754506
Lore link: https://lore.kernel.org/r/20230606145402.474866-1-abe.kohandel@intel.com
Patches: [1/2] spi: dw: Add compatible for Intel Mount Evans SoC
[2/2] dt-bindings: spi: snps,dw-apb-ssi: Add compatible for Intel Mount Evans SoC
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-06 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-06 14: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: cadence-quadspi: Add missing check for dma_set_mask
Submitter: Jiasheng Jiang <jiasheng@iscas.ac.cn>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=754367
Lore link: https://lore.kernel.org/r/20230606093859.27818-1-jiasheng@iscas.ac.cn
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-05 15:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-05 15: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: [v2] spi: spl022: Probe defer is no error
Submitter: Mårten Lindahl <marten.lindahl@axis.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=753630
Lore link: https://lore.kernel.org/r/20230602-pl022-defer-fix-v2-1-383f6bc2293a@axis.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-02 15:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-02 15: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: spi-imx: fix mixing of native and gpio chipselects for imx51/imx53/imx6 variants
Submitter: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=753515
Lore link: https://lore.kernel.org/r/20230602115731.708883-1-linux@rasmusvillemoes.dk
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-02 12:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-02 12: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/3] spi: dt-bindings: allwinner: simplify with unevaluatedProperties
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=753023
Lore link: https://lore.kernel.org/r/20230601095908.563865-1-krzysztof.kozlowski@linaro.org
Patches: [1/3] spi: dt-bindings: allwinner: simplify with unevaluatedProperties
[2/3] spi: dt-bindings: samsung: drop cs-gpios
[3/3] spi: dt-bindings: socionext,uniphier: drop address/size-cells
Patch: spi: s3c64xx: Use devm_clk_get_enabled()
Submitter: Andi Shyti <andi.shyti@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752938
Lore link: https://lore.kernel.org/r/20230531205550.568340-1-andi.shyti@kernel.org
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-06-01 16:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-06-01 16: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: spi: dw: Drop empty line from DebugFS init function
Submitter: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752461
Lore link: https://lore.kernel.org/r/20230530221725.26319-1-Sergey.Semin@baikalelectronics.ru
Patch: [1/1] spi: spi-fsl-lpspi: downgrade log level for pio mode
Submitter: Alexander Stein <alexander.stein@ew.tq-group.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752587
Lore link: https://lore.kernel.org/r/20230531072850.739021-1-alexander.stein@ew.tq-group.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-30 19:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-30 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):
Patch: spi: spi-qcom-qspi: Add newline to PIO fallback warning
Submitter: Douglas Anderson <dianders@chromium.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752412
Lore link: https://lore.kernel.org/r/20230530111348.1.Ibd1f4827e18a26dc802cd6e5ac300d83dc1bc41c@changeid
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-30 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-30 18: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: dt-bindings: restrict node name suffixes
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752283
Lore link: https://lore.kernel.org/r/20230530144851.92059-1-krzysztof.kozlowski@linaro.org
Patches: [1/7] dt-bindings: phy: intel,combo-phy: restrict node name suffixes
[5/7] spi: dt-bindings: restrict node name suffixes
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-30 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-30 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: add SPI_MOSI_IDLE_LOW mode bit
Submitter: Boerge Struempfel <boerge.struempfel@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=752264
Lore link: https://lore.kernel.org/r/20230530141641.1155691-1-boerge.struempfel@gmail.com
Patches: [v7,1/5] spi: add SPI_MOSI_IDLE_LOW mode bit
[v7,2/5] spi: spi-imx: add support for SPI_MOSI_IDLE_LOW mode bit
[v7,3/5] spi: spidev: add two new spi mode bits
[v7,4/5] spi: spidev_test: Sorted the options into logical groups
[v7,5/5] spi: spidev_test Add three missing spi mode bits
Patch: [v1] spi-dw-core.c: Fix error checking for debugfs_create_dir
Submitter: Osama Muhammad <osmtendev@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=749515
Lore link: https://lore.kernel.org/r/20230520224025.14928-1-osmtendev@gmail.com
Series: [1/3] spi: spi-sn-f-ospi: Use devm_clk_get_enabled()
Submitter: Lars-Peter Clausen <lars@metafoo.de>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=751709
Lore link: https://lore.kernel.org/r/20230528195830.164669-1-lars@metafoo.de
Patches: [1/3] spi: spi-sn-f-ospi: Use devm_clk_get_enabled()
[2/3] spi: spi-sn-f-ospi: Use min_t instead of opencoding it
[3/3] spi: spi-sn-f-ospi: Make read-only array `width_available` static const
Series: spi: mt65xx: Convert to platform remove callback returning 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=752079
Lore link: https://lore.kernel.org/r/20230530081648.2199419-1-u.kleine-koenig@pengutronix.de
Patches: [v2,1/3] spi: mt65xx: Properly handle failures in .remove()
[v2,2/3] spi: mt65xx: Convert to platform remove callback returning void
[v2,3/3] spi: mt65xx: Don't disguise a "return 0" as "return ret"
Total patches: 12
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-30 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-30 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: spi: qup: Request DMA before enabling clocks
Submitter: Stephan Gerhold <stephan@gerhold.net>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748910
Lore link: https://lore.kernel.org/r/20230518-spi-qup-clk-defer-v1-1-f49fc9ca4e02@gerhold.net
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-26 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-26 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):
Patch: spi: Switch i2c drivers back to use .probe()
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=751106
Lore link: https://lore.kernel.org/r/20230525211047.735789-1-u.kleine-koenig@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-25 15:58 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-25 15:58 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: advertise the availability of Dual and Quad mode
Submitter: Qii Wang (王琪) <qii.wang@mediatek.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=750207
Lore link: https://lore.kernel.org/r/20230523112608.10298-1-qii.wang@mediatek.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-24 11:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-24 11: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: mt65xx: make sure operations completed before unloading
Submitter: Daniel Golle <daniel@makrotopia.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=744210
Lore link: https://lore.kernel.org/r/ZFAF6pJxMu1z6k4w@makrotopia.org
Patch: spi: lpspi: disable lpspi module irq in DMA mode
Submitter: Clark Wang <xiaoning.wang@nxp.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=745180
Lore link: https://lore.kernel.org/r/20230505063557.3962220-1-xiaoning.wang@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-23 21:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-23 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):
Series: spi: spi-imx: fix use of more than four chip selects
Submitter: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=743063
Lore link: https://lore.kernel.org/r/20230425134527.483607-1-linux@rasmusvillemoes.dk
Patches: [1/3] spi: spi-imx: use "controller" variable consistently in spi_imx_probe()
[2/3] spi: spi-imx: set max_native_cs for imx51/imx53/imx6 variants
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-23 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-23 14: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: spi-cadence: Interleave write of TX and read of RX FIFO
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748822
Lore link: https://lore.kernel.org/r/20230518093927.711358-1-ckeepax@opensource.cirrus.com
Patches: [v2,1/2] spi: spi-cadence: Interleave write of TX and read of RX FIFO
[2/2] spi: spi-cadence: Add missing kernel doc for clk_rate in cdns_spi
Patch: [v3] spi: spi-cadence: Add missing kernel doc for clk_rate in cdns_spi
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=750155
Lore link: https://lore.kernel.org/r/20230523090124.3132-1-ckeepax@opensource.cirrus.com
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-22 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-22 14: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: spi-cadence: Interleave write of TX and read of RX FIFO
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748822
Lore link: https://lore.kernel.org/r/20230518093927.711358-1-ckeepax@opensource.cirrus.com
Patches: [v2,1/2] spi: spi-cadence: Interleave write of TX and read of RX FIFO
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-18 22:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-18 22: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: hisi-kunpeng: Fix error checking
Submitter: Yeqi Fu <asuk4.q@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=748753
Lore link: https://lore.kernel.org/r/20230518052515.368978-1-asuk4.q@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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-17 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-17 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):
Patch: None
Submitter: Brad Larson <blarson@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=741122
Lore link: https://lore.kernel.org/r/20230418214945.54690-1-blarson@amd.com
Series: Support AMD Pensando Elba SoC
Submitter: Brad Larson <blarson@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=747721
Lore link: https://lore.kernel.org/r/20230515181606.65953-1-blarson@amd.com
Patches: [v14,1/8] dt-bindings: arm: add AMD Pensando boards
[v14,2/8] dt-bindings: spi: cdns: Add compatible for AMD Pensando Elba SoC
[v14,7/8] spi: cadence-quadspi: Add compatible for AMD Pensando Elba SoC
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-16 11:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-16 11: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: dw: Replace spi->chip_select references with function calls
Submitter: Mahapatra, Amit Kumar <amit.kumar-mahapatra@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=747573
Lore link: https://lore.kernel.org/r/20230515130343.63770-1-amit.kumar-mahapatra@amd.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-15 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-15 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: spi: dw: DW SPI DMA Driver updates
Submitter: Joy Chakraborty <joychakr@google.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=747064
Lore link: https://lore.kernel.org/r/20230512104746.1797865-1-joychakr@google.com
Patches: [v11,1/3] spi: dw: Add DMA directional capability check
[v11,2/3] spi: dw: Add DMA address widths capability check
[v11,3/3] spi: dw: Round of n_bytes to power of 2
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-15 11:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-15 11: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: [1/2] spi: spi-cadence: Avoid read of RX FIFO before its ready
Submitter: Charles Keepax <ckeepax@opensource.cirrus.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=746194
Lore link: https://lore.kernel.org/r/20230509164153.3907694-1-ckeepax@opensource.cirrus.com
Patches: [1/2] spi: spi-cadence: Avoid read of RX FIFO before its ready
[2/2] spi: spi-cadence: Only overlap FIFO transactions in slave mode
Patch: spi: MAINTAINERS: drop Krzysztof Kozlowski from Samsung SPI
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=747282
Lore link: https://lore.kernel.org/r/20230513173646.4306-1-krzysztof.kozlowski@linaro.org
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-12 5:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-12 5: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: Allwinner R329/D1/R528/T113s SPI support
Submitter: Maxim Kiselev <bigunclemax@gmail.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=746344
Lore link: https://lore.kernel.org/r/20230510081121.3463710-1-bigunclemax@gmail.com
Patches: [v5,1/5] dt-bindings: spi: sun6i: add DT bindings for Allwinner R329/D1/R528/T113s SPI
[v5,2/5] spi: sun6i: change OF match data to a struct
[v5,3/5] spi: sun6i: add quirk for in-controller clock divider
[v5,4/5] spi: sun6i: add support for R329/D1/R528/T113s SPI controllers
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-11 6:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-11 6: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: spi-geni-qcom: Select FIFO mode for chip select
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=746067
Lore link: https://lore.kernel.org/r/1683626496-9685-1-git-send-email-quic_vnivarth@quicinc.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-11 5:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-11 5: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: s3c64xx: Disable IRQ mode when using DMA
Submitter: Jaewon Kim <jaewon02.kim@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=746413
Lore link: https://lore.kernel.org/r/20230510113942.89994-1-jaewon02.kim@samsung.com
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-05-08 14:28 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-05-08 14: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):
Series: [v3,1/3] spi: s3c64xx: change polling mode to optional
Submitter: Jaewon Kim <jaewon02.kim@samsung.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=744312
Lore link: https://lore.kernel.org/r/20230502062813.112434-2-jaewon02.kim@samsung.com
Patches: [v3,1/3] spi: s3c64xx: change polling mode to optional
[v3,2/3] spi: s3c64xx: add sleep during transfer
[v3,3/3] spi: s3c64xx: support interrupt based pio mode
Series: Control Quad SPI pinctrl better on Qualcomm Chromebooks
Submitter: Doug Anderson <dianders@chromium.org>
Committer: Bjorn Andersson <andersson@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=733261
Lore link: https://lore.kernel.org/r/20230323173019.3706069-1-dianders@chromium.org
Patches: [01/14] arm64: dts: sc7180: Rename qspi data12 as data23
[02/14] arm64: dts: sc7280: Rename qspi data12 as data23
[03/14] arm64: dts: sdm845: Rename qspi data12 as data23
[04/14] arm64: dts: qcom: sc7180: Annotate l13a on trogdor to always-on
[06/14] dt-bindings: pinctrl: qcom: tlmm should use output-disable, not input-enable
[07/14] dt-bindings: pinctrl: qcom: Add output-enable
[08/14] pinctrl: qcom: Support OUTPUT_ENABLE; deprecate INPUT_ENABLE
[09/14] arm64: dts: qcom: sc7180: Remove superfluous "input-enable"s from trogdor
[10/14] arm64: dts: qcom: sc7280: Remove superfluous "input-enable"s from idp-ec-h1
[11/14] arm64: dts: qcom: sdm845: Remove superfluous "input-enable"s from cheza
[12/14] arm64: dts: qcom: sc7180: Fix trogdor qspi pin config
[13/14] arm64: dts: qcom: sc7280: Fix qspi pin config
[14/14] arm64: dts: qcom: sdm845: Fix cheza qspi pin config
Series: spi: Add DMA mode support to spi-qcom-qspi
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=742649
Lore link: https://lore.kernel.org/r/1682328761-17517-1-git-send-email-quic_vnivarth@quicinc.com
Patches: [v5,1/5] spi: dt-bindings: qcom,spi-qcom-qspi: Add iommus
[v5,5/5] spi: spi-qcom-qspi: Add DMA mode support
Patch: spi: lpspi: run transfer speed_hz sanity check
Submitter: Clark Wang <xiaoning.wang@nxp.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=745183
Lore link: https://lore.kernel.org/r/20230505064159.3964473-1-xiaoning.wang@nxp.com
Patch: spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG
Submitter: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=742981
Lore link: https://lore.kernel.org/r/1682412128-1913-1-git-send-email-quic_vnivarth@quicinc.com
Series: spi: dw: DW SPI DMA Driver updates
Submitter: Joy Chakraborty <joychakr@google.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=743589
Lore link: https://lore.kernel.org/r/20230427123314.1997152-1-joychakr@google.com
Patches: [v9,1/5] spi: dw: Add 32 bpw support to SPI DW DMA driver
[v9,2/5] spi: dw: Move dw_spi_can_dma()
Series: Support AMD Pensando Elba SoC
Submitter: Brad Larson <blarson@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=738525
Lore link: https://lore.kernel.org/r/20230410184526.15990-1-blarson@amd.com
Patches: [v13,01/15] dt-bindings: arm: add AMD Pensando boards
[v13,02/15] dt-bindings: mmc: cdns: Add AMD Pensando Elba SoC
[v13,11/15] mmc: sdhci-cadence: Enable device specific override of writel()
[v13,12/15] mmc: sdhci-cadence: Support device specific init during probe
[v13,13/15] mmc: sdhci-cadence: Add AMD Pensando Elba SoC support
[v13,14/15] mmc: sdhci-cadence: Support mmc hardware reset
Series: [01/16] spi: armada-3700: Drop of_match_ptr for ID table
Submitter: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=728934
Lore link: https://lore.kernel.org/r/20230310222857.315629-1-krzysztof.kozlowski@linaro.org
Patches: [01/16] spi: armada-3700: Drop of_match_ptr for ID table
[02/16] spi: mtk-pmif: Drop of_match_ptr for ID table
Series: spi: struct spi_device constification
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Committer: Lee Jones <lee@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=729398
Lore link: https://lore.kernel.org/r/cover.1678704562.git.geert+renesas@glider.be
Patches: [1/6] mfd: rsmu_spi: Remove unneeded casts of void *
Series: spi: bcm63xx-hsspi: driver and doc updates
Submitter: William Zhang <william.zhang@broadcom.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=720455
Lore link: https://lore.kernel.org/r/20230209200246.141520-1-william.zhang@broadcom.com
Patches: [v4,01/15] dt-bindings: spi: Convert bcm63xx-hsspi bindings to json-schema
[v4,03/15] ARM: dts: broadcom: bcmbca: Add spi controller node
[v4,04/15] arm64: dts: broadcom: bcmbca: Add spi controller node
Patch: dt-bindings: yamllint: Require a space after a comment '#'
Submitter: Rob Herring <robh@kernel.org>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=726556
Lore link: https://lore.kernel.org/r/20230303214223.49451-1-robh@kernel.org
Patch: [v2] dt-bindings: spi: zynqmp-qspi: Add power-domains and iommus properties
Submitter: Michal Simek <michal.simek@amd.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=744610
Lore link: https://lore.kernel.org/r/2afed7285061abbb5d9ad3b1e795b737dcff9693.1683102032.git.michal.simek@amd.com
Patch: [v3] treewide: Fix probing of devices in DT overlays
Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
Committer: Rob Herring <robh@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=735412
Lore link: https://lore.kernel.org/r/e1fa546682ea4c8474ff997ab6244c5e11b6f8bc.1680182615.git.geert+renesas@glider.be
Total patches: 37
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-04-24 13:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-04-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: Tegra TPM driver with HW flow control
Submitter: Krishna Yarlagadda <kyarlagadda@nvidia.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=742029
Lore link: https://lore.kernel.org/r/20230421091309.2672-1-kyarlagadda@nvidia.com
Patches: [V10,1/3] spi: Add TPM HW flow flag
[V10,3/3] spi: tegra210-quad: Enable TPM wait polling
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-04-18 16:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-04-18 16: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: spi-cadence: Add Slave mode support
Submitter: Srinivas Goud <srinivas.goud@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=740979
Lore link: https://lore.kernel.org/r/1681825625-10265-1-git-send-email-srinivas.goud@amd.com
Patches: [v2,1/2] spi: spi-cadence: Switch to spi_controller structure
[v2,2/2] spi: spi-cadence: Add support for Slave mode
Series: Fix PM Hooks in the Cadence Quad SPI Driver
Submitter: Gole, Dhruva <d-gole@ti.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=740396
Lore link: https://lore.kernel.org/r/20230417091027.966146-1-d-gole@ti.com
Patches: [1/2] spi: cadence-quadspi: use macro SIMPLE_DEV_PM_OPS
[2/2] spi: cadence-quadspi: fix suspend-resume implementations
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-04-17 19:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-04-17 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: Support AMD Pensando Elba SoC
Submitter: Brad Larson <blarson@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=738525
Lore link: https://lore.kernel.org/r/20230410184526.15990-1-blarson@amd.com
Patches: [v13,01/15] dt-bindings: arm: add AMD Pensando boards
[v13,04/15] dt-bindings: spi: dw: Add AMD Pensando Elba SoC SPI Controller
[v13,10/15] spi: dw: Add support for AMD Pensando Elba SoC
Total patches: 3
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-04-11 14:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-04-11 14: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: add support for Amlogic A1 SPI Flash Controller
Submitter: Martin Kurbanov <mmkurbanov@sberdevices.ru>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=736499
Lore link: https://lore.kernel.org/r/20230403183217.13280-1-mmkurbanov@sberdevices.ru
Patches: [v3,1/2] dt-bindings: spi: add Amlogic A1 SPI controller
[v3,2/2] spi: add support for Amlogic A1 SPI Flash Controller
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-03-11 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-03-11 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: Add support for stacked/parallel memories
Submitter: Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=727018
Lore link: https://lore.kernel.org/r/20230306172109.595464-1-amit.kumar-mahapatra@amd.com
Patches: [V5,01/15] spi: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,02/15] net: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,03/15] iio: imu: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,04/15] mtd: devices: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,05/15] staging: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,06/15] platform/x86: serial-multi-instantiate: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V5,07/15] powerpc/83xx/mpc832x_rdb: Replace all spi->chip_select references with function call
[V5,08/15] ALSA: hda: cs35l41: Replace all spi->chip_select references with function call
Series: Add support for stacked/parallel memories
Submitter: Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=728825
Lore link: https://lore.kernel.org/r/20230310173217.3429788-1-amit.kumar-mahapatra@amd.com
Patches: [V6,01/15] spi: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,02/15] net: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,03/15] iio: imu: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,04/15] mtd: devices: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,05/15] staging: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,06/15] platform/x86: serial-multi-instantiate: Replace all spi->chip_select and spi->cs_gpiod references with function call
[V6,07/15] powerpc/83xx/mpc832x_rdb: Replace all spi->chip_select references with function call
[V6,08/15] ALSA: hda: cs35l41: Replace all spi->chip_select references with function call
Total patches: 16
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-03-11 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-03-11 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):
Patch: spi: fsi: restore CONFIG_FSI dependency
Submitter: Arnd Bergmann <arnd@kernel.org>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=728626
Lore link: https://lore.kernel.org/r/20230310140605.569363-1-arnd@kernel.org
Patch: Revert "spi: fsi: Make available for build test"
Submitter: Tom Rix <trix@redhat.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=728888
Lore link: https://lore.kernel.org/r/20230310202848.437655-1-trix@redhat.com
Total patches: 2
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-03-06 13:17 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-03-06 13:17 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>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=716758
Lore link: https://lore.kernel.org/r/20230130030656.12127-1-xiangsheng.hou@mediatek.com
Patches: [RESEND,v5,01/10] spi: mtk-snfi: Change default page format to setup default setting
[RESEND,v5,03/10] mtd: nand: ecc-mtk: Add ECC support fot MT7986 IC
[RESEND,v5,10/10] dt-bindings: mtd: mediatek,nand-ecc-engine: Add compatible for MT7986
Patch: [v1] drivers/spi-rockchip.c : Remove redundant variable slave
Submitter: Lizhe <sensor1010@163.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=724903
Lore link: https://lore.kernel.org/r/20230226063334.7489-1-sensor1010@163.com
Series: Support AMD Pensando Elba SoC
Submitter: Brad Larson <brad@pensando.io>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=713500
Lore link: https://lore.kernel.org/r/20230119033918.44117-1-blarson@amd.com
Patches: [v9,01/15] dt-bindings: arm: add AMD Pensando boards
[v9,05/15] dt-bindings: mfd: syscon: Add amd,pensando-elba-syscon compatible
Patch: [v2] MAINTAINERS: Update email of Tudor Ambarus
Submitter: Tudor Ambarus <tudor.ambarus@linaro.org>
Committer: Miquel Raynal <miquel.raynal@bootlin.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=707029
Lore link: https://lore.kernel.org/r/20221226144043.367706-1-tudor.ambarus@linaro.org
Patch: soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
Submitter: Elliot Berman <quic_eberman@quicinc.com>
Committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=718716
Lore link: https://lore.kernel.org/r/20230203210133.3552796-1-quic_eberman@quicinc.com
Series: [01/22] gpu/drm: remove the shmobile drm driver
Submitter: Christoph Hellwig <hch@lst.de>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=711612
Lore link: https://lore.kernel.org/r/20230113062339.1909087-2-hch@lst.de
Patches: [01/22] gpu/drm: remove the shmobile drm driver
[02/22] usb: remove the dead USB_OHCI_SH option
Total patches: 10
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-02-14 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-02-14 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):
Patch: [v2] dt-bindings: spi: spi-st-ssc: convert to DT schema
Submitter: Alain Volmat <avolmat@me.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=721403
Lore link: https://lore.kernel.org/r/20230213192349.17101-1-avolmat@me.com
Series: spi: cqspi: Fix register reads in STIG Mode
Submitter: Gole, Dhruva <d-gole@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=708669
Lore link: https://lore.kernel.org/r/20230104062604.1556763-1-d-gole@ti.com
Patches: [1/2] spi: cadence-quadspi: setup ADDR Bits in cmd reads
Series: STIG Mode Fixes for spi-cadence-qspi driver
Submitter: Gole, Dhruva <d-gole@ti.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=715383
Lore link: https://lore.kernel.org/r/20230125081023.1573712-1-d-gole@ti.com
Patches: [v2,1/4] spi: cadence-quadspi: Reset CMD_CTRL Reg on cmd r/w completion
[v2,2/4] spi: cadence-quadspi: Add flag for direct mode writes
[v2,3/4] spi: cadence-quadspi: setup ADDR Bits in cmd reads
Total patches: 5
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-02-11 1:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-02-11 1: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: bcm63xx-hsspi: driver and doc updates
Submitter: William Zhang <william.zhang@broadcom.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=720455
Lore link: https://lore.kernel.org/r/20230209200246.141520-1-william.zhang@broadcom.com
Patches: [v4,01/15] dt-bindings: spi: Convert bcm63xx-hsspi bindings to json-schema
[v4,09/15] spi: bcm63xx-hsspi: Handle cs_change correctly
[v4,10/15] spi: bcm63xx-hsspi: Fix multi-bit mode setting
[v4,11/15] spi: bcm63xx-hsspi: Add prepend mode support
[v4,12/15] spi: spi-mem: Allow controller supporting mem_ops without exec_op
[v4,13/15] spi: bcm63xx-hsspi: Disable spi mem dual io read op support
[v4,14/15] spi: bcmbca-hsspi: Add driver for newer HSSPI controller
[v4,15/15] MAINTAINERS: Add entry for Broadcom Broadband SoC HS SPI drivers
Total patches: 8
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-02-09 19:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-02-09 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: 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=716758
Lore link: https://lore.kernel.org/r/20230130030656.12127-1-xiangsheng.hou@mediatek.com
Patches: [RESEND,v5,01/10] spi: mtk-snfi: Change default page format to setup default setting
[RESEND,v5,02/10] spi: mtk-snfi: Add optional nfi_hclk which is needed for MT7986
[RESEND,v5,04/10] dt-bindings: spi: mtk-snfi: Add compatible for MT7986
[RESEND,v5,05/10] spi: mtk-snfi: Add snfi sample delay and read latency adjustment
[RESEND,v5,06/10] dt-bindings: spi: mtk-snfi: Add read latch latency property
Series: Add MediaTek MT7986 SPI NAND 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=717546
Lore link: https://lore.kernel.org/r/20230201020921.26712-1-xiangsheng.hou@mediatek.com
Patches: [v6,1/5] spi: mtk-snfi: Change default page format to setup default setting
[v6,2/5] spi: mtk-snfi: Add optional nfi_hclk which is needed for MT7986
[v6,3/5] dt-bindings: spi: mtk-snfi: Add compatible for MT7986
[v6,4/5] spi: mtk-snfi: Add snfi sample delay and read latency adjustment
[v6,5/5] dt-bindings: spi: mtk-snfi: Add read latch latency property
Total patches: 10
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-02-09 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-02-09 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: bcm63xx-hsspi: driver and doc updates
Submitter: William Zhang <william.zhang@broadcom.com>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=719372
Lore link: https://lore.kernel.org/r/20230207065826.285013-1-william.zhang@broadcom.com
Patches: [v3,01/15] dt-bindings: spi: Convert bcm63xx-hsspi bindings to json-schema
[v3,05/15] spi: bcm63xx-hsspi: Add new compatible string support
[v3,06/15] spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
[v3,07/15] spi: bcm63xx-hsspi: Add polling mode support
Total patches: 4
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-02-02 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ messages in thread
From: patchwork-bot+spi-devel-general @ 2023-02-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):
Series: spi: intel: PCI driver housekeeping
Submitter: Mauro Lima <mauro.lima@eclypsium.com>
Committer: Mark Brown <broonie@kernel.org>
Patchwork: https://patchwork.kernel.org/project/spi-devel-general/list/?series=717889
Lore link: https://lore.kernel.org/r/20230201205455.550308-1-mauro.lima@eclypsium.com
Patches: [v2,1/2] spi: intel: Fix device private data and PR_NUM for Broxton controllers
Total patches: 1
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-26 0:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-13 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2023-01-06 22:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-12-26 23:59 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-12-06 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-29 13:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-25 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-24 13:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-17 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-16 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-04 13:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-11-02 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-21 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-21 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-19 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-18 11:37 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-10-10 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-09-28 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-09-12 9:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-28 21:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-22 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-15 15:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-08-15 15:36 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-29 19:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-26 11:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-20 18:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-20 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-13 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-13 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-07-01 10:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-30 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-30 11:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-29 14:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-28 10:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-27 20:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-20 12:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-13 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-09 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-08 20:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-07 10:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-06-06 17:18 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-16 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-09 21:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-04 21:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-05-03 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-27 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-25 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-21 15:31 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-20 21:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-13 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-05 9:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-04-04 18:14 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-15 13:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-08 20:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-03-07 20:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-28 22:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-24 23:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-22 15:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-21 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-17 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-15 13:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-08 19:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-02-01 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-28 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-25 14:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-25 10:43 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-10 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2022-01-06 20:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-12-23 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-12-14 13:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-18 19:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-16 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-15 19:28 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-11-12 21:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-15 19:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-13 20:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-11 16:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-07 21:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-05 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-04 17:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-02 1:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-10-02 0:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-27 17:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-21 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-09-13 11:08 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-26 14:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-26 12:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-13 17:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-09 13:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-08-06 0:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-19 14:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-16 17:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-07-12 10:58 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-06-23 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-06-03 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-28 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-11 18:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-05-11 8:29 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-21 18:40 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-16 16:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-04-12 19:01 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-23 22:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-04 15:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-04 1:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-03-01 23:54 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-02-22 16:10 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-02-05 20:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-19 19:21 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-13 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2021-01-04 17:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-28 16:34 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-18 18:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-11 17:53 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-09 15:20 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-07 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-12-02 17:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-11-20 21:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-11-04 20:50 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-27 0:07 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-06 15:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-10-02 21:00 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-29 16:30 patchwork-bot+spi-devel-general
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-17 19:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-17 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-14 15:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-09 14:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-09-08 14:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-08-20 22:03 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-08-17 12:27 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-29 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-28 16:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-27 14:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-22 11:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-07-20 11:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-23 11:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-22 15:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-19 13:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-15 23:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-15 15:29 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-06-11 15:40 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-05-29 17:00 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-22 13:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-21 15:20 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ messages in thread
* Patchwork summary for: spi-devel-general
@ 2020-04-14 12:06 patchwork-bot+linux-spi
0 siblings, 0 replies; 279+ 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] 279+ 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-13 17:20 ` patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
0 siblings, 0 replies; 279+ 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] 279+ 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; 279+ 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] 279+ 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; 279+ 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] 279+ 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; 279+ 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] 279+ messages in thread
end of thread, other threads:[~2023-12-06 21:10 UTC | newest]
Thread overview: 279+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-11 22:37 [PATCH] spi: pxa2xx: Add CS control clock quirk Rajat Jain
2020-02-11 22:34 ` (unknown) Rajat Jain
[not found] ` <20200211223400.107604-1-rajatja-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2020-02-12 9:30 ` Jarkko Nikula
[not found] ` <b3397374-0cb8-cf6c-0555-34541a1c108c-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2020-02-12 10:24 ` Re: Andy Shevchenko
2020-02-26 19:00 ` Patchwork summary for: spi-devel-general patchwork-bot+linux-spi-DgEjT+Ai2ygdnm+yROfE0A
-- strict thread matches above, loose matches on Subject: below --
2023-12-06 21:10 patchwork-bot+spi-devel-general
2023-12-05 15:50 patchwork-bot+spi-devel-general
2023-12-04 15:50 patchwork-bot+spi-devel-general
2023-11-30 14:20 patchwork-bot+spi-devel-general
2023-11-27 16:50 patchwork-bot+spi-devel-general
2023-11-20 18:30 patchwork-bot+spi-devel-general
2023-11-20 17:00 patchwork-bot+spi-devel-general
2023-11-19 0:00 patchwork-bot+spi-devel-general
2023-11-17 0:20 patchwork-bot+spi-devel-general
2023-11-16 20:30 patchwork-bot+spi-devel-general
2023-11-13 19:40 patchwork-bot+spi-devel-general
2023-11-13 14:50 patchwork-bot+spi-devel-general
2023-11-08 17:40 patchwork-bot+spi-devel-general
2023-11-06 13:10 patchwork-bot+spi-devel-general
2023-10-23 17:10 patchwork-bot+spi-devel-general
2023-10-17 23:50 patchwork-bot+spi-devel-general
2023-10-16 17:20 patchwork-bot+spi-devel-general
2023-10-16 15:21 patchwork-bot+spi-devel-general
2023-10-11 18:50 patchwork-bot+spi-devel-general
2023-10-10 18:40 patchwork-bot+spi-devel-general
2023-10-09 16:50 patchwork-bot+spi-devel-general
2023-10-06 17:50 patchwork-bot+spi-devel-general
2023-10-06 14:50 patchwork-bot+spi-devel-general
2023-10-02 15:50 patchwork-bot+spi-devel-general
2023-09-28 8:40 patchwork-bot+spi-devel-general
2023-09-26 15:10 patchwork-bot+spi-devel-general
2023-09-26 13:00 patchwork-bot+spi-devel-general
2023-09-26 11:10 patchwork-bot+spi-devel-general
2023-09-26 9:30 patchwork-bot+spi-devel-general
2023-09-22 21:10 patchwork-bot+spi-devel-general
2023-09-22 19:30 patchwork-bot+spi-devel-general
2023-09-19 17:00 patchwork-bot+spi-devel-general
2023-09-18 15:50 patchwork-bot+spi-devel-general
2023-09-16 1:20 patchwork-bot+spi-devel-general
2023-09-12 11:40 patchwork-bot+spi-devel-general
2023-09-11 15:50 patchwork-bot+spi-devel-general
2023-09-04 19:09 patchwork-bot+spi-devel-general
2023-08-22 16:41 patchwork-bot+spi-devel-general
2023-08-21 21:10 patchwork-bot+spi-devel-general
2023-08-18 22:50 patchwork-bot+spi-devel-general
2023-08-16 16:20 patchwork-bot+spi-devel-general
2023-08-15 22:30 patchwork-bot+spi-devel-general
2023-08-14 22:10 patchwork-bot+spi-devel-general
2023-08-14 21:00 patchwork-bot+spi-devel-general
2023-08-09 16:30 patchwork-bot+spi-devel-general
2023-08-08 15:40 patchwork-bot+spi-devel-general
2023-08-07 22:00 patchwork-bot+spi-devel-general
2023-08-07 17:40 patchwork-bot+spi-devel-general
2023-08-04 19:10 patchwork-bot+spi-devel-general
2023-08-03 18:30 patchwork-bot+spi-devel-general
2023-08-03 16:10 patchwork-bot+spi-devel-general
2023-07-31 21:20 patchwork-bot+spi-devel-general
2023-07-31 20:00 patchwork-bot+spi-devel-general
2023-07-31 14:30 patchwork-bot+spi-devel-general
2023-07-28 20:10 patchwork-bot+spi-devel-general
2023-07-27 19:40 patchwork-bot+spi-devel-general
2023-07-27 16:40 patchwork-bot+spi-devel-general
2023-07-26 19:10 patchwork-bot+spi-devel-general
2023-07-26 16:00 patchwork-bot+spi-devel-general
2023-07-25 20:40 patchwork-bot+spi-devel-general
2023-07-25 19:00 patchwork-bot+spi-devel-general
2023-07-25 16:50 patchwork-bot+spi-devel-general
2023-07-24 20:20 patchwork-bot+spi-devel-general
2023-07-24 18:30 patchwork-bot+spi-devel-general
2023-07-20 18:40 patchwork-bot+spi-devel-general
2023-07-19 16:10 patchwork-bot+spi-devel-general
2023-07-18 18:50 patchwork-bot+spi-devel-general
2023-07-18 11:50 patchwork-bot+spi-devel-general
2023-07-14 22:40 patchwork-bot+spi-devel-general
2023-07-14 20:00 patchwork-bot+spi-devel-general
2023-07-12 15:40 patchwork-bot+spi-devel-general
2023-07-12 15:10 patchwork-bot+spi-devel-general
2023-07-12 11:50 patchwork-bot+spi-devel-general
2023-07-12 10:40 patchwork-bot+spi-devel-general
2023-07-11 22:10 patchwork-bot+spi-devel-general
2023-07-11 21:53 patchwork-bot+spi-devel-general
2023-07-04 15:50 patchwork-bot+spi-devel-general
2023-07-03 15:20 patchwork-bot+spi-devel-general
2023-06-30 17:10 patchwork-bot+spi-devel-general
2023-06-29 12:20 patchwork-bot+spi-devel-general
2023-06-24 17:50 patchwork-bot+spi-devel-general
2023-06-24 1:00 patchwork-bot+spi-devel-general
2023-06-23 0:40 patchwork-bot+spi-devel-general
2023-06-22 21:50 patchwork-bot+spi-devel-general
2023-06-15 15:00 patchwork-bot+spi-devel-general
2023-06-15 13:20 patchwork-bot+spi-devel-general
2023-06-13 20:20 patchwork-bot+spi-devel-general
2023-06-07 17:30 patchwork-bot+spi-devel-general
2023-06-07 12:20 patchwork-bot+spi-devel-general
2023-06-06 16:30 patchwork-bot+spi-devel-general
2023-06-06 14:30 patchwork-bot+spi-devel-general
2023-06-05 15:00 patchwork-bot+spi-devel-general
2023-06-02 15:20 patchwork-bot+spi-devel-general
2023-06-02 12:40 patchwork-bot+spi-devel-general
2023-06-01 16:20 patchwork-bot+spi-devel-general
2023-05-30 19:30 patchwork-bot+spi-devel-general
2023-05-30 18:30 patchwork-bot+spi-devel-general
2023-05-30 17:50 patchwork-bot+spi-devel-general
2023-05-30 14:20 patchwork-bot+spi-devel-general
2023-05-26 16:50 patchwork-bot+spi-devel-general
2023-05-25 15:58 patchwork-bot+spi-devel-general
2023-05-24 11:10 patchwork-bot+spi-devel-general
2023-05-23 21:30 patchwork-bot+spi-devel-general
2023-05-23 14:30 patchwork-bot+spi-devel-general
2023-05-22 14:30 patchwork-bot+spi-devel-general
2023-05-18 22:30 patchwork-bot+spi-devel-general
2023-05-17 14:50 patchwork-bot+spi-devel-general
2023-05-16 11:40 patchwork-bot+spi-devel-general
2023-05-15 15:30 patchwork-bot+spi-devel-general
2023-05-15 11:10 patchwork-bot+spi-devel-general
2023-05-12 5:30 patchwork-bot+spi-devel-general
2023-05-11 6:10 patchwork-bot+spi-devel-general
2023-05-11 5:50 patchwork-bot+spi-devel-general
2023-05-08 14:28 patchwork-bot+spi-devel-general
2023-04-24 13:30 patchwork-bot+spi-devel-general
2023-04-18 16:30 patchwork-bot+spi-devel-general
2023-04-17 19:30 patchwork-bot+spi-devel-general
2023-04-11 14:00 patchwork-bot+spi-devel-general
2023-03-11 21:20 patchwork-bot+spi-devel-general
2023-03-11 17:20 patchwork-bot+spi-devel-general
2023-03-06 13:17 patchwork-bot+spi-devel-general
2023-02-14 21:20 patchwork-bot+spi-devel-general
2023-02-11 1:00 patchwork-bot+spi-devel-general
2023-02-09 19:20 patchwork-bot+spi-devel-general
2023-02-09 17:20 patchwork-bot+spi-devel-general
2023-02-02 15:10 patchwork-bot+spi-devel-general
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-03-06 8:50 [PATCH v3 0/2] spi: dt-bindings: spi-controller: Slave mode fixes Geert Uytterhoeven
2020-03-13 17:20 ` 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-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).