* [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
@ 2025-08-13 16:14 Wolfram Sang
2025-08-13 16:14 ` [PATCH 01/21] bus: " Wolfram Sang
` (25 more replies)
0 siblings, 26 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Adrian Hunter, Alexandre Belloni,
Alexandre Torgue, Alim Akhtar, Andrea della Porta,
Andreas Färber, Andrzej Hajda, Andy Shevchenko, Andy Yan,
Avi Fishman, Bartosz Golaszewski, Benjamin Fair, Bjorn Andersson,
Chen-Yu Tsai, Daniel Lezcano, David Airlie, David Lechner,
Dmitry Torokhov, Drew Fustini, dri-devel, Fabio Estevam,
Fabrice Gasnier, Fu Wei, Guo Ren, Hans Verkuil,
Heiko Stübner, imx, Iwona Winiarska, Jaroslav Kysela,
Jassi Brar, Jernej Skrabec, Jerome Brunet, Jonas Karlman,
Jonathan Cameron, Kevin Hilman, Kishon Vijay Abraham I,
Konrad Dybcio, Krzysztof Kozlowski, Laurent Pinchart, Lee Jones,
Liam Girdwood, Linus Walleij, linux-actions, linux-amlogic,
linux-arm-kernel, linux-arm-msm, linux-clk, linux-gpio, linux-iio,
linux-input, linux-media, linux-mmc, linux-phy, linux-pm,
linuxppc-dev, linux-pwm, linux-riscv, linux-rockchip, linux-rtc,
linux-samsung-soc, linux-sound, linux-spi, linux-stm32,
linux-sunxi, Liu Ying, Lukasz Luba, Maarten Lankhorst,
Manivannan Sadhasivam, Martin Blumenstingl, Mauro Carvalho Chehab,
Maxime Coquelin, Maxime Ripard, Michael Turquette, Miquel Raynal,
Nancy Yuen, Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick, Vinod Koul,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
While working on a driver using regmap with MMIO, I wondered if I need
to set 'fast_io' in the config. Turned out I don't need to, so I added
documentation for it with commit ffc72771ff6e ("regmap: Annotate that
MMIO implies fast IO").
This series fixes the existing users in the tree which needlessly set
the flag. They have been found using this coccinelle script:
===
@ match @
expression dev, clk, regs;
identifier config;
@@
(
regmap_init_mmio(dev, regs, &config)
|
devm_regmap_init_mmio(dev, regs, &config)
|
regmap_init_mmio_clk(dev, clk, regs, &config)
|
devm_regmap_init_mmio_clk(dev, clk, regs, &config)
)
@ fix depends on match @
identifier match.config;
@@
struct regmap_config config = {
- .fast_io = true,
};
===
It misses occasions where 'config' is an expression and not an
identifier. These are rare, though, I can fix them manually later. The
advantage of this approach is that it produces no false positives to the
best of my knowledge.
Please apply individually per subsystem. There are no dependencies and
buildbot is happy. Patches are based on 6.17-rc1
Happy hacking,
Wolfram
Wolfram Sang (21):
bus: remove unneeded 'fast_io' parameter in regmap_config
clk: remove unneeded 'fast_io' parameter in regmap_config
gpio: remove unneeded 'fast_io' parameter in regmap_config
drm: remove unneeded 'fast_io' parameter in regmap_config
iio: remove unneeded 'fast_io' parameter in regmap_config
Input: remove unneeded 'fast_io' parameter in regmap_config
mailbox: remove unneeded 'fast_io' parameter in regmap_config
media: remove unneeded 'fast_io' parameter in regmap_config
mfd: remove unneeded 'fast_io' parameter in regmap_config
mmc: remove unneeded 'fast_io' parameter in regmap_config
peci: remove unneeded 'fast_io' parameter in regmap_config
phy: remove unneeded 'fast_io' parameter in regmap_config
pinctrl: remove unneeded 'fast_io' parameter in regmap_config
pmdomain: remove unneeded 'fast_io' parameter in regmap_config
regulator: remove unneeded 'fast_io' parameter in regmap_config
reset: remove unneeded 'fast_io' parameter in regmap_config
rtc: remove unneeded 'fast_io' parameter in regmap_config
soc: remove unneeded 'fast_io' parameter in regmap_config
spi: remove unneeded 'fast_io' parameter in regmap_config
thermal: remove unneeded 'fast_io' parameter in regmap_config
ASoC: remove unneeded 'fast_io' parameter in regmap_config
drivers/bus/bt1-apb.c | 1 -
drivers/clk/actions/owl-common.c | 1 -
drivers/clk/clk-axm5516.c | 1 -
drivers/clk/nxp/clk-lpc32xx.c | 1 -
drivers/clk/qcom/a53-pll.c | 1 -
drivers/clk/qcom/a7-pll.c | 1 -
drivers/clk/qcom/apss-ipq-pll.c | 1 -
drivers/clk/qcom/clk-cbf-8996.c | 1 -
drivers/clk/qcom/clk-cpu-8996.c | 1 -
drivers/clk/qcom/hfpll.c | 1 -
drivers/clk/qcom/ipq-cmn-pll.c | 1 -
drivers/clk/thead/clk-th1520-ap.c | 1 -
drivers/gpio/gpio-mvebu.c | 1 -
drivers/gpio/gpio-sifive.c | 1 -
drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c | 1 -
drivers/gpu/drm/imx/dc/dc-cf.c | 1 -
drivers/gpu/drm/imx/dc/dc-de.c | 1 -
drivers/gpu/drm/imx/dc/dc-ed.c | 2 --
drivers/gpu/drm/imx/dc/dc-fg.c | 1 -
drivers/gpu/drm/imx/dc/dc-fl.c | 1 -
drivers/gpu/drm/imx/dc/dc-fw.c | 2 --
drivers/gpu/drm/imx/dc/dc-ic.c | 1 -
drivers/gpu/drm/imx/dc/dc-lb.c | 2 --
drivers/gpu/drm/imx/dc/dc-tc.c | 1 -
drivers/gpu/drm/imx/ipuv3/imx-tve.c | 2 --
drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c | 1 -
drivers/iio/adc/sun4i-gpadc-iio.c | 1 -
drivers/input/touchscreen/fsl-imx25-tcq.c | 1 -
drivers/mailbox/qcom-apcs-ipc-mailbox.c | 1 -
drivers/media/cec/platform/stm32/stm32-cec.c | 1 -
drivers/mfd/exynos-lpass.c | 1 -
drivers/mfd/fsl-imx25-tsadc.c | 1 -
drivers/mfd/stm32-lptimer.c | 1 -
drivers/mfd/sun4i-gpadc.c | 1 -
drivers/mmc/host/sdhci_am654.c | 1 -
drivers/peci/controller/peci-npcm.c | 1 -
drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c | 1 -
drivers/phy/rockchip/phy-rockchip-usbdp.c | 1 -
drivers/phy/ti/phy-am654-serdes.c | 1 -
drivers/phy/ti/phy-j721e-wiz.c | 1 -
drivers/pinctrl/pinctrl-rp1.c | 1 -
drivers/pmdomain/imx/gpc.c | 1 -
drivers/regulator/qcom-refgen-regulator.c | 1 -
drivers/reset/reset-intel-gw.c | 1 -
drivers/reset/reset-qcom-pdc.c | 1 -
drivers/reset/reset-th1520.c | 1 -
drivers/rtc/rtc-meson.c | 1 -
drivers/soc/qcom/llcc-qcom.c | 1 -
drivers/soc/qcom/ramp_controller.c | 1 -
drivers/spi/spi-altera-platform.c | 1 -
drivers/thermal/armada_thermal.c | 1 -
drivers/thermal/sun8i_thermal.c | 1 -
sound/soc/fsl/fsl_sai.c | 1 -
53 files changed, 57 deletions(-)
--
2.47.2
^ permalink raw reply [flat|nested] 46+ messages in thread
* [PATCH 01/21] bus: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 16:14 ` [PATCH 02/21] clk: " Wolfram Sang
` (24 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel; +Cc: Mark Brown, Wolfram Sang
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/bus/bt1-apb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c
index 7463124b6dd9..0ac7d09c9b95 100644
--- a/drivers/bus/bt1-apb.c
+++ b/drivers/bus/bt1-apb.c
@@ -64,7 +64,6 @@ static const struct regmap_config bt1_apb_regmap_cfg = {
.val_bits = 32,
.reg_stride = 4,
.max_register = APB_EHB_TIMEOUT,
- .fast_io = true
};
static inline unsigned long bt1_apb_n_to_timeout_us(struct bt1_apb *apb, u32 n)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 02/21] clk: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
2025-08-13 16:14 ` [PATCH 01/21] bus: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-21 21:46 ` Brian Masney
2025-08-13 16:14 ` [PATCH 03/21] gpio: " Wolfram Sang
` (23 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Michael Turquette, Stephen Boyd,
Andreas Färber, Manivannan Sadhasivam, Vladimir Zapolskiy,
Piotr Wojtaszczyk, Bjorn Andersson, Drew Fustini, Guo Ren, Fu Wei,
linux-clk, linux-arm-kernel, linux-actions, linux-arm-msm,
linux-riscv
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/clk/actions/owl-common.c | 1 -
drivers/clk/clk-axm5516.c | 1 -
drivers/clk/nxp/clk-lpc32xx.c | 1 -
drivers/clk/qcom/a53-pll.c | 1 -
drivers/clk/qcom/a7-pll.c | 1 -
drivers/clk/qcom/apss-ipq-pll.c | 1 -
drivers/clk/qcom/clk-cbf-8996.c | 1 -
drivers/clk/qcom/clk-cpu-8996.c | 1 -
drivers/clk/qcom/hfpll.c | 1 -
drivers/clk/qcom/ipq-cmn-pll.c | 1 -
drivers/clk/thead/clk-th1520-ap.c | 1 -
11 files changed, 11 deletions(-)
diff --git a/drivers/clk/actions/owl-common.c b/drivers/clk/actions/owl-common.c
index c62024b7c737..b3dded204dc5 100644
--- a/drivers/clk/actions/owl-common.c
+++ b/drivers/clk/actions/owl-common.c
@@ -18,7 +18,6 @@ static const struct regmap_config owl_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x00cc,
- .fast_io = true,
};
static void owl_clk_set_regmap(const struct owl_clk_desc *desc,
diff --git a/drivers/clk/clk-axm5516.c b/drivers/clk/clk-axm5516.c
index 4a3462ee8f3e..3823383f3fa6 100644
--- a/drivers/clk/clk-axm5516.c
+++ b/drivers/clk/clk-axm5516.c
@@ -529,7 +529,6 @@ static const struct regmap_config axmclk_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x1fffc,
- .fast_io = true,
};
static const struct of_device_id axmclk_match_table[] = {
diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
index e00f270bc6aa..96a1a527b380 100644
--- a/drivers/clk/nxp/clk-lpc32xx.c
+++ b/drivers/clk/nxp/clk-lpc32xx.c
@@ -68,7 +68,6 @@ static const struct regmap_config lpc32xx_scb_regmap_config = {
.reg_stride = 4,
.val_format_endian = REGMAP_ENDIAN_LITTLE,
.max_register = 0x114,
- .fast_io = true,
};
static struct regmap *clk_regmap;
diff --git a/drivers/clk/qcom/a53-pll.c b/drivers/clk/qcom/a53-pll.c
index f43d455ab4b8..724a642311e5 100644
--- a/drivers/clk/qcom/a53-pll.c
+++ b/drivers/clk/qcom/a53-pll.c
@@ -33,7 +33,6 @@ static const struct regmap_config a53pll_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x40,
- .fast_io = true,
};
static struct pll_freq_tbl *qcom_a53pll_get_freq_tbl(struct device *dev)
diff --git a/drivers/clk/qcom/a7-pll.c b/drivers/clk/qcom/a7-pll.c
index c4a53e5db229..f95aefc43119 100644
--- a/drivers/clk/qcom/a7-pll.c
+++ b/drivers/clk/qcom/a7-pll.c
@@ -50,7 +50,6 @@ static const struct regmap_config a7pll_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x1000,
- .fast_io = true,
};
static int qcom_a7pll_probe(struct platform_device *pdev)
diff --git a/drivers/clk/qcom/apss-ipq-pll.c b/drivers/clk/qcom/apss-ipq-pll.c
index d6c1aea7e9e1..3a8987fe7008 100644
--- a/drivers/clk/qcom/apss-ipq-pll.c
+++ b/drivers/clk/qcom/apss-ipq-pll.c
@@ -169,7 +169,6 @@ static const struct regmap_config ipq_pll_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x40,
- .fast_io = true,
};
static int apss_ipq_pll_probe(struct platform_device *pdev)
diff --git a/drivers/clk/qcom/clk-cbf-8996.c b/drivers/clk/qcom/clk-cbf-8996.c
index ce4efcd995ea..0b40ed601f9a 100644
--- a/drivers/clk/qcom/clk-cbf-8996.c
+++ b/drivers/clk/qcom/clk-cbf-8996.c
@@ -212,7 +212,6 @@ static const struct regmap_config cbf_msm8996_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x10000,
- .fast_io = true,
.val_format_endian = REGMAP_ENDIAN_LITTLE,
};
diff --git a/drivers/clk/qcom/clk-cpu-8996.c b/drivers/clk/qcom/clk-cpu-8996.c
index 72689448a653..21d13c0841ed 100644
--- a/drivers/clk/qcom/clk-cpu-8996.c
+++ b/drivers/clk/qcom/clk-cpu-8996.c
@@ -411,7 +411,6 @@ static const struct regmap_config cpu_msm8996_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x80210,
- .fast_io = true,
.val_format_endian = REGMAP_ENDIAN_LITTLE,
};
diff --git a/drivers/clk/qcom/hfpll.c b/drivers/clk/qcom/hfpll.c
index b0b0cb074b4a..385964196185 100644
--- a/drivers/clk/qcom/hfpll.c
+++ b/drivers/clk/qcom/hfpll.c
@@ -99,7 +99,6 @@ static const struct regmap_config hfpll_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x30,
- .fast_io = true,
};
static int qcom_hfpll_probe(struct platform_device *pdev)
diff --git a/drivers/clk/qcom/ipq-cmn-pll.c b/drivers/clk/qcom/ipq-cmn-pll.c
index b3d7169c63e5..dafbf5732048 100644
--- a/drivers/clk/qcom/ipq-cmn-pll.c
+++ b/drivers/clk/qcom/ipq-cmn-pll.c
@@ -108,7 +108,6 @@ static const struct regmap_config ipq_cmn_pll_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x7fc,
- .fast_io = true,
};
static const struct cmn_pll_fixed_output_clk ipq5018_output_clks[] = {
diff --git a/drivers/clk/thead/clk-th1520-ap.c b/drivers/clk/thead/clk-th1520-ap.c
index cf1bba58f641..cff4f014bddb 100644
--- a/drivers/clk/thead/clk-th1520-ap.c
+++ b/drivers/clk/thead/clk-th1520-ap.c
@@ -1056,7 +1056,6 @@ static const struct regmap_config th1520_clk_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
struct th1520_plat_data {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 03/21] gpio: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
2025-08-13 16:14 ` [PATCH 01/21] bus: " Wolfram Sang
2025-08-13 16:14 ` [PATCH 02/21] clk: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-14 7:20 ` Bartosz Golaszewski
2025-08-13 16:14 ` [PATCH 04/21] drm: " Wolfram Sang
` (22 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Uwe Kleine-König, Linus Walleij,
Bartosz Golaszewski, Paul Walmsley, Samuel Holland, linux-pwm,
linux-gpio, linux-riscv
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/gpio/gpio-mvebu.c | 1 -
drivers/gpio/gpio-sifive.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/drivers/gpio/gpio-mvebu.c b/drivers/gpio/gpio-mvebu.c
index 5e3f54cb8bc4..261ffd0c614b 100644
--- a/drivers/gpio/gpio-mvebu.c
+++ b/drivers/gpio/gpio-mvebu.c
@@ -602,7 +602,6 @@ static const struct regmap_config mvebu_gpio_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
/*
diff --git a/drivers/gpio/gpio-sifive.c b/drivers/gpio/gpio-sifive.c
index 067c8edb62e2..98ef975c44d9 100644
--- a/drivers/gpio/gpio-sifive.c
+++ b/drivers/gpio/gpio-sifive.c
@@ -174,7 +174,6 @@ static const struct regmap_config sifive_gpio_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.disable_locking = true,
};
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 04/21] drm: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (2 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 03/21] gpio: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-15 15:06 ` Philipp Zabel
2025-08-18 2:03 ` Liu Ying
2025-08-13 16:14 ` [PATCH 05/21] iio: " Wolfram Sang
` (21 subsequent siblings)
25 siblings, 2 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Andrzej Hajda, Neil Armstrong,
Robert Foss, Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Liu Ying, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, Philipp Zabel,
Sandy Huang, Heiko Stübner, Andy Yan, dri-devel, imx,
linux-arm-kernel, linux-rockchip
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c | 1 -
drivers/gpu/drm/imx/dc/dc-cf.c | 1 -
drivers/gpu/drm/imx/dc/dc-de.c | 1 -
drivers/gpu/drm/imx/dc/dc-ed.c | 2 --
drivers/gpu/drm/imx/dc/dc-fg.c | 1 -
drivers/gpu/drm/imx/dc/dc-fl.c | 1 -
drivers/gpu/drm/imx/dc/dc-fw.c | 2 --
drivers/gpu/drm/imx/dc/dc-ic.c | 1 -
drivers/gpu/drm/imx/dc/dc-lb.c | 2 --
drivers/gpu/drm/imx/dc/dc-tc.c | 1 -
drivers/gpu/drm/imx/ipuv3/imx-tve.c | 2 --
drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c | 1 -
12 files changed, 16 deletions(-)
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c b/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c
index 5926a3a05d79..d046740a1d57 100644
--- a/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c
+++ b/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c
@@ -903,7 +903,6 @@ static const struct regmap_config dw_mipi_dsi2_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static struct dw_mipi_dsi2 *
diff --git a/drivers/gpu/drm/imx/dc/dc-cf.c b/drivers/gpu/drm/imx/dc/dc-cf.c
index 2f077161e912..6431ecd442c9 100644
--- a/drivers/gpu/drm/imx/dc/dc-cf.c
+++ b/drivers/gpu/drm/imx/dc/dc-cf.c
@@ -45,7 +45,6 @@ static const struct regmap_config dc_cf_cfg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_cf_regmap_access_table,
.rd_table = &dc_cf_regmap_access_table,
.max_register = CONSTANTCOLOR,
diff --git a/drivers/gpu/drm/imx/dc/dc-de.c b/drivers/gpu/drm/imx/dc/dc-de.c
index 5a3125596fdf..7a93dda20c59 100644
--- a/drivers/gpu/drm/imx/dc/dc-de.c
+++ b/drivers/gpu/drm/imx/dc/dc-de.c
@@ -37,7 +37,6 @@ static const struct regmap_config dc_de_top_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_de_regmap_access_table,
.rd_table = &dc_de_regmap_access_table,
.max_register = POLARITYCTRL,
diff --git a/drivers/gpu/drm/imx/dc/dc-ed.c b/drivers/gpu/drm/imx/dc/dc-ed.c
index 86ecc22d0a55..4d86a886d47e 100644
--- a/drivers/gpu/drm/imx/dc/dc-ed.c
+++ b/drivers/gpu/drm/imx/dc/dc-ed.c
@@ -77,7 +77,6 @@ static const struct regmap_config dc_ed_pec_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_ed_pec_regmap_write_table,
.rd_table = &dc_ed_pec_regmap_read_table,
.volatile_table = &dc_ed_pec_regmap_volatile_table,
@@ -99,7 +98,6 @@ static const struct regmap_config dc_ed_cfg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_ed_regmap_access_table,
.rd_table = &dc_ed_regmap_access_table,
.max_register = CONTROL,
diff --git a/drivers/gpu/drm/imx/dc/dc-fg.c b/drivers/gpu/drm/imx/dc/dc-fg.c
index 7f6c1852bf72..24826d676c5c 100644
--- a/drivers/gpu/drm/imx/dc/dc-fg.c
+++ b/drivers/gpu/drm/imx/dc/dc-fg.c
@@ -122,7 +122,6 @@ static const struct regmap_config dc_fg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_fg_regmap_write_table,
.rd_table = &dc_fg_regmap_read_table,
.max_register = FGCHSTATCLR,
diff --git a/drivers/gpu/drm/imx/dc/dc-fl.c b/drivers/gpu/drm/imx/dc/dc-fl.c
index 3ce24c72aa13..003476ac2fa1 100644
--- a/drivers/gpu/drm/imx/dc/dc-fl.c
+++ b/drivers/gpu/drm/imx/dc/dc-fl.c
@@ -49,7 +49,6 @@ static const struct regmap_config dc_fl_cfg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_fl_regmap_access_table,
.rd_table = &dc_fl_regmap_access_table,
.max_register = FRAMEDIMENSIONS,
diff --git a/drivers/gpu/drm/imx/dc/dc-fw.c b/drivers/gpu/drm/imx/dc/dc-fw.c
index acb2d4d9e2ec..96bc3c7c8f9b 100644
--- a/drivers/gpu/drm/imx/dc/dc-fw.c
+++ b/drivers/gpu/drm/imx/dc/dc-fw.c
@@ -51,7 +51,6 @@ static const struct regmap_config dc_fw_pec_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_fw_pec_regmap_access_table,
.rd_table = &dc_fw_pec_regmap_access_table,
.max_register = PIXENGCFG_DYNAMIC,
@@ -72,7 +71,6 @@ static const struct regmap_config dc_fw_cfg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_fw_regmap_access_table,
.rd_table = &dc_fw_regmap_access_table,
.max_register = CONTROL,
diff --git a/drivers/gpu/drm/imx/dc/dc-ic.c b/drivers/gpu/drm/imx/dc/dc-ic.c
index a270ae4030cd..f1c371a95cae 100644
--- a/drivers/gpu/drm/imx/dc/dc-ic.c
+++ b/drivers/gpu/drm/imx/dc/dc-ic.c
@@ -76,7 +76,6 @@ static const struct regmap_config dc_ic_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_ic_regmap_write_table,
.rd_table = &dc_ic_regmap_read_table,
.volatile_table = &dc_ic_regmap_volatile_table,
diff --git a/drivers/gpu/drm/imx/dc/dc-lb.c b/drivers/gpu/drm/imx/dc/dc-lb.c
index 38f966625d38..9fd39f824f11 100644
--- a/drivers/gpu/drm/imx/dc/dc-lb.c
+++ b/drivers/gpu/drm/imx/dc/dc-lb.c
@@ -92,7 +92,6 @@ static const struct regmap_config dc_lb_pec_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_lb_pec_regmap_access_table,
.rd_table = &dc_lb_pec_regmap_access_table,
.max_register = PIXENGCFG_DYNAMIC,
@@ -112,7 +111,6 @@ static const struct regmap_config dc_lb_cfg_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_lb_regmap_access_table,
.rd_table = &dc_lb_regmap_access_table,
.max_register = POSITION,
diff --git a/drivers/gpu/drm/imx/dc/dc-tc.c b/drivers/gpu/drm/imx/dc/dc-tc.c
index 0bfd381b2cea..54b56dadbe36 100644
--- a/drivers/gpu/drm/imx/dc/dc-tc.c
+++ b/drivers/gpu/drm/imx/dc/dc-tc.c
@@ -44,7 +44,6 @@ static const struct regmap_config dc_tc_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.wr_table = &dc_tc_regmap_access_table,
.rd_table = &dc_tc_regmap_access_table,
.max_register = MAPBIT31_28,
diff --git a/drivers/gpu/drm/imx/ipuv3/imx-tve.c b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
index c5629e155d25..b34037d0d7a8 100644
--- a/drivers/gpu/drm/imx/ipuv3/imx-tve.c
+++ b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
@@ -457,8 +457,6 @@ static struct regmap_config tve_regmap_config = {
.readable_reg = imx_tve_readable_reg,
- .fast_io = true,
-
.max_register = 0xdc,
};
diff --git a/drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c b/drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c
index cdd490778756..a30d973f925f 100644
--- a/drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c
+++ b/drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c
@@ -368,7 +368,6 @@ static const struct regmap_config dw_mipi_dsi2_rockchip_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static int dw_mipi_dsi2_rockchip_probe(struct platform_device *pdev)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 05/21] iio: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (3 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 04/21] drm: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-16 12:34 ` Jonathan Cameron
2025-08-13 16:14 ` [PATCH 06/21] Input: " Wolfram Sang
` (20 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Jonathan Cameron, David Lechner,
Nuno Sá, Andy Shevchenko, Chen-Yu Tsai, Jernej Skrabec,
Samuel Holland, linux-iio, linux-arm-kernel, linux-sunxi
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/iio/adc/sun4i-gpadc-iio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/iio/adc/sun4i-gpadc-iio.c b/drivers/iio/adc/sun4i-gpadc-iio.c
index 6b8d6bee1873..e4bc2e199a07 100644
--- a/drivers/iio/adc/sun4i-gpadc-iio.c
+++ b/drivers/iio/adc/sun4i-gpadc-iio.c
@@ -154,7 +154,6 @@ static const struct regmap_config sun4i_gpadc_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static int sun4i_prepare_for_irq(struct iio_dev *indio_dev, int channel,
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 06/21] Input: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (4 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 05/21] iio: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 21:47 ` Dmitry Torokhov
2025-08-13 16:14 ` [PATCH 07/21] mailbox: " Wolfram Sang
` (19 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Dmitry Torokhov, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, linux-input,
imx, linux-arm-kernel
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/input/touchscreen/fsl-imx25-tcq.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/input/touchscreen/fsl-imx25-tcq.c b/drivers/input/touchscreen/fsl-imx25-tcq.c
index a32708652d10..ff270b3b8572 100644
--- a/drivers/input/touchscreen/fsl-imx25-tcq.c
+++ b/drivers/input/touchscreen/fsl-imx25-tcq.c
@@ -39,7 +39,6 @@ struct mx25_tcq_priv {
};
static const struct regmap_config mx25_tcq_regconfig = {
- .fast_io = true,
.max_register = 0x5c,
.reg_bits = 32,
.val_bits = 32,
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 07/21] mailbox: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (5 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 06/21] Input: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 16:14 ` [PATCH 08/21] media: " Wolfram Sang
` (18 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel; +Cc: Mark Brown, Wolfram Sang, Jassi Brar, linux-arm-msm
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/mailbox/qcom-apcs-ipc-mailbox.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/mailbox/qcom-apcs-ipc-mailbox.c b/drivers/mailbox/qcom-apcs-ipc-mailbox.c
index 8b24ec0fa191..d3a8f6b4a03b 100644
--- a/drivers/mailbox/qcom-apcs-ipc-mailbox.c
+++ b/drivers/mailbox/qcom-apcs-ipc-mailbox.c
@@ -58,7 +58,6 @@ static const struct regmap_config apcs_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x1008,
- .fast_io = true,
};
static int qcom_apcs_ipc_send_data(struct mbox_chan *chan, void *data)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 08/21] media: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (6 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 07/21] mailbox: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 16:14 ` [PATCH 09/21] mfd: " Wolfram Sang
` (17 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Hans Verkuil, Mauro Carvalho Chehab,
Maxime Coquelin, Alexandre Torgue, linux-media, linux-stm32,
linux-arm-kernel
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/media/cec/platform/stm32/stm32-cec.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/media/cec/platform/stm32/stm32-cec.c b/drivers/media/cec/platform/stm32/stm32-cec.c
index fea2d65acffc..1ec0cece0a5b 100644
--- a/drivers/media/cec/platform/stm32/stm32-cec.c
+++ b/drivers/media/cec/platform/stm32/stm32-cec.c
@@ -248,7 +248,6 @@ static const struct regmap_config stm32_cec_regmap_cfg = {
.val_bits = 32,
.reg_stride = sizeof(u32),
.max_register = 0x14,
- .fast_io = true,
};
static int stm32_cec_probe(struct platform_device *pdev)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 09/21] mfd: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (7 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 08/21] media: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-09-02 13:33 ` (subset) " Lee Jones
2025-08-13 16:14 ` [PATCH 10/21] mmc: " Wolfram Sang
` (16 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Lee Jones, Krzysztof Kozlowski,
Alim Akhtar, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam, Fabrice Gasnier, Maxime Coquelin, Alexandre Torgue,
Chen-Yu Tsai, Jernej Skrabec, Samuel Holland, linux-arm-kernel,
linux-samsung-soc, imx, linux-stm32, linux-sunxi
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/mfd/exynos-lpass.c | 1 -
drivers/mfd/fsl-imx25-tsadc.c | 1 -
drivers/mfd/stm32-lptimer.c | 1 -
drivers/mfd/sun4i-gpadc.c | 1 -
4 files changed, 4 deletions(-)
diff --git a/drivers/mfd/exynos-lpass.c b/drivers/mfd/exynos-lpass.c
index 44797001a432..9bb2687c2835 100644
--- a/drivers/mfd/exynos-lpass.c
+++ b/drivers/mfd/exynos-lpass.c
@@ -101,7 +101,6 @@ static const struct regmap_config exynos_lpass_reg_conf = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0xfc,
- .fast_io = true,
};
static void exynos_lpass_disable_lpass(void *data)
diff --git a/drivers/mfd/fsl-imx25-tsadc.c b/drivers/mfd/fsl-imx25-tsadc.c
index 0aab6428e042..467b1a23faeb 100644
--- a/drivers/mfd/fsl-imx25-tsadc.c
+++ b/drivers/mfd/fsl-imx25-tsadc.c
@@ -17,7 +17,6 @@
#include <linux/regmap.h>
static const struct regmap_config mx25_tsadc_regmap_config = {
- .fast_io = true,
.max_register = 8,
.reg_bits = 32,
.val_bits = 32,
diff --git a/drivers/mfd/stm32-lptimer.c b/drivers/mfd/stm32-lptimer.c
index 09073dbc9c80..123659178cc2 100644
--- a/drivers/mfd/stm32-lptimer.c
+++ b/drivers/mfd/stm32-lptimer.c
@@ -19,7 +19,6 @@ static const struct regmap_config stm32_lptimer_regmap_cfg = {
.val_bits = 32,
.reg_stride = sizeof(u32),
.max_register = STM32_LPTIM_MAX_REGISTER,
- .fast_io = true,
};
static int stm32_lptimer_detect_encoder(struct stm32_lptimer *ddata)
diff --git a/drivers/mfd/sun4i-gpadc.c b/drivers/mfd/sun4i-gpadc.c
index 3029d48e982c..bf2f6fdaf8bf 100644
--- a/drivers/mfd/sun4i-gpadc.c
+++ b/drivers/mfd/sun4i-gpadc.c
@@ -72,7 +72,6 @@ static const struct regmap_config sun4i_gpadc_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static const struct of_device_id sun4i_gpadc_of_match[] = {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 10/21] mmc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (8 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 09/21] mfd: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-18 10:55 ` Ulf Hansson
2025-08-13 16:14 ` [PATCH 11/21] peci: " Wolfram Sang
` (15 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Adrian Hunter, Ulf Hansson, linux-mmc
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/mmc/host/sdhci_am654.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/mmc/host/sdhci_am654.c b/drivers/mmc/host/sdhci_am654.c
index e4fc345be7e5..8a099508b939 100644
--- a/drivers/mmc/host/sdhci_am654.c
+++ b/drivers/mmc/host/sdhci_am654.c
@@ -95,7 +95,6 @@ static const struct regmap_config sdhci_am654_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
struct timing_data {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 11/21] peci: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (9 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 10/21] mmc: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-14 5:11 ` Paul Menzel
2025-08-13 16:14 ` [PATCH 12/21] phy: " Wolfram Sang
` (14 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Avi Fishman, Tomer Maimon, Tali Perry,
Patrick Venture, Nancy Yuen, Benjamin Fair, Iwona Winiarska,
openbmc
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/peci/controller/peci-npcm.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/peci/controller/peci-npcm.c b/drivers/peci/controller/peci-npcm.c
index c77591ca583d..931868991241 100644
--- a/drivers/peci/controller/peci-npcm.c
+++ b/drivers/peci/controller/peci-npcm.c
@@ -221,7 +221,6 @@ static const struct regmap_config npcm_peci_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = NPCM_PECI_MAX_REG,
- .fast_io = true,
};
static const struct peci_controller_ops npcm_ops = {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 12/21] phy: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (10 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 11/21] peci: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 16:14 ` [PATCH 13/21] pinctrl: " Wolfram Sang
` (13 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Vinod Koul, Kishon Vijay Abraham I,
Heiko Stuebner, linux-phy, linux-arm-kernel, linux-rockchip
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c | 1 -
drivers/phy/rockchip/phy-rockchip-usbdp.c | 1 -
drivers/phy/ti/phy-am654-serdes.c | 1 -
drivers/phy/ti/phy-j721e-wiz.c | 1 -
4 files changed, 4 deletions(-)
diff --git a/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c b/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c
index 79db57ee90d1..01bbf668e05e 100644
--- a/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c
+++ b/drivers/phy/rockchip/phy-rockchip-samsung-hdptx.c
@@ -795,7 +795,6 @@ static const struct regmap_config rk_hdptx_phy_regmap_config = {
.val_bits = 32,
.writeable_reg = rk_hdptx_phy_is_rw_reg,
.readable_reg = rk_hdptx_phy_is_rw_reg,
- .fast_io = true,
.max_register = 0x18b4,
};
diff --git a/drivers/phy/rockchip/phy-rockchip-usbdp.c b/drivers/phy/rockchip/phy-rockchip-usbdp.c
index c066cc0a7b4f..010e9d2d6fac 100644
--- a/drivers/phy/rockchip/phy-rockchip-usbdp.c
+++ b/drivers/phy/rockchip/phy-rockchip-usbdp.c
@@ -1430,7 +1430,6 @@ static const struct regmap_config rk_udphy_pma_regmap_cfg = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.max_register = 0x20dc,
};
diff --git a/drivers/phy/ti/phy-am654-serdes.c b/drivers/phy/ti/phy-am654-serdes.c
index 431b223996e0..5b6c27aa7e8b 100644
--- a/drivers/phy/ti/phy-am654-serdes.c
+++ b/drivers/phy/ti/phy-am654-serdes.c
@@ -99,7 +99,6 @@ static const struct regmap_config serdes_am654_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
.max_register = 0x1ffc,
};
diff --git a/drivers/phy/ti/phy-j721e-wiz.c b/drivers/phy/ti/phy-j721e-wiz.c
index ab2a4f2c0a5b..a8b440c6c46b 100644
--- a/drivers/phy/ti/phy-j721e-wiz.c
+++ b/drivers/phy/ti/phy-j721e-wiz.c
@@ -1319,7 +1319,6 @@ static const struct regmap_config wiz_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static struct wiz_data j721e_16g_data = {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (11 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 12/21] phy: " Wolfram Sang
@ 2025-08-13 16:14 ` Wolfram Sang
2025-08-13 19:42 ` Andrea della Porta
2025-08-19 12:02 ` Linus Walleij
2025-08-13 16:15 ` [PATCH 14/21] pmdomain: " Wolfram Sang
` (12 subsequent siblings)
25 siblings, 2 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:14 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Andrea della Porta, Linus Walleij,
linux-gpio
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/pinctrl/pinctrl-rp1.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/pinctrl/pinctrl-rp1.c b/drivers/pinctrl/pinctrl-rp1.c
index dadafc935dbb..6699b36349d0 100644
--- a/drivers/pinctrl/pinctrl-rp1.c
+++ b/drivers/pinctrl/pinctrl-rp1.c
@@ -1627,7 +1627,6 @@ static const struct regmap_config rp1_pinctrl_regmap_cfg = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
.name = "rp1-pinctrl",
};
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 14/21] pmdomain: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (12 preceding siblings ...)
2025-08-13 16:14 ` [PATCH 13/21] pinctrl: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-19 12:26 ` Ulf Hansson
2025-08-13 16:15 ` [PATCH 15/21] regulator: " Wolfram Sang
` (11 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Ulf Hansson, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, linux-pm, imx,
linux-arm-kernel
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/pmdomain/imx/gpc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/pmdomain/imx/gpc.c b/drivers/pmdomain/imx/gpc.c
index f18c7e6e75dd..33991f3c6b55 100644
--- a/drivers/pmdomain/imx/gpc.c
+++ b/drivers/pmdomain/imx/gpc.c
@@ -343,7 +343,6 @@ static const struct regmap_config imx_gpc_regmap_config = {
.rd_table = &access_table,
.wr_table = &access_table,
.max_register = 0x2ac,
- .fast_io = true,
};
static struct generic_pm_domain *imx_gpc_onecell_domains[] = {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 15/21] regulator: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (13 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 14/21] pmdomain: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-13 16:15 ` [PATCH 16/21] reset: " Wolfram Sang
` (10 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Mark Brown, Wolfram Sang, Liam Girdwood, linux-arm-msm
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/regulator/qcom-refgen-regulator.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/regulator/qcom-refgen-regulator.c b/drivers/regulator/qcom-refgen-regulator.c
index cfa72ce85bc8..299ac3c8c3bc 100644
--- a/drivers/regulator/qcom-refgen-regulator.c
+++ b/drivers/regulator/qcom-refgen-regulator.c
@@ -94,7 +94,6 @@ static const struct regmap_config qcom_refgen_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
static int qcom_refgen_probe(struct platform_device *pdev)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 16/21] reset: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (14 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 15/21] regulator: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-13 18:28 ` Drew Fustini
2025-08-14 10:56 ` Philipp Zabel
2025-08-13 16:15 ` [PATCH 17/21] rtc: " Wolfram Sang
` (9 subsequent siblings)
25 siblings, 2 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Philipp Zabel, Drew Fustini, Guo Ren,
Fu Wei, linux-arm-msm, linux-riscv
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/reset/reset-intel-gw.c | 1 -
drivers/reset/reset-qcom-pdc.c | 1 -
drivers/reset/reset-th1520.c | 1 -
3 files changed, 3 deletions(-)
diff --git a/drivers/reset/reset-intel-gw.c b/drivers/reset/reset-intel-gw.c
index a5a01388ae7f..a5ce3350cb5e 100644
--- a/drivers/reset/reset-intel-gw.c
+++ b/drivers/reset/reset-intel-gw.c
@@ -40,7 +40,6 @@ static const struct regmap_config intel_rcu_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
/*
diff --git a/drivers/reset/reset-qcom-pdc.c b/drivers/reset/reset-qcom-pdc.c
index dce1fc1a68ad..ae2b5aba7a59 100644
--- a/drivers/reset/reset-qcom-pdc.c
+++ b/drivers/reset/reset-qcom-pdc.c
@@ -36,7 +36,6 @@ static const struct regmap_config pdc_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x20000,
- .fast_io = true,
};
static const struct qcom_pdc_reset_map sdm845_pdc_resets[] = {
diff --git a/drivers/reset/reset-th1520.c b/drivers/reset/reset-th1520.c
index 7874f0693e1b..3ec22ae1fac1 100644
--- a/drivers/reset/reset-th1520.c
+++ b/drivers/reset/reset-th1520.c
@@ -78,7 +78,6 @@ static const struct regmap_config th1520_reset_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
};
static int th1520_reset_probe(struct platform_device *pdev)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 17/21] rtc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (15 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 16/21] reset: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-14 14:20 ` Neil Armstrong
2025-08-13 16:15 ` [PATCH 18/21] soc: " Wolfram Sang
` (8 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Alexandre Belloni, Neil Armstrong,
Kevin Hilman, Jerome Brunet, Martin Blumenstingl, linux-rtc,
linux-arm-kernel, linux-amlogic
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/rtc/rtc-meson.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c
index 47e9ebf58ffc..21eceb9e2e13 100644
--- a/drivers/rtc/rtc-meson.c
+++ b/drivers/rtc/rtc-meson.c
@@ -72,7 +72,6 @@ static const struct regmap_config meson_rtc_peripheral_regmap_config = {
.val_bits = 32,
.reg_stride = 4,
.max_register = RTC_REG4,
- .fast_io = true,
};
/* RTC front-end serialiser controls */
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 18/21] soc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (16 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 17/21] rtc: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-14 9:29 ` Konrad Dybcio
2025-08-13 16:15 ` [PATCH 19/21] spi: " Wolfram Sang
` (7 subsequent siblings)
25 siblings, 1 reply; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Bjorn Andersson, Konrad Dybcio,
linux-arm-msm
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/soc/qcom/llcc-qcom.c | 1 -
drivers/soc/qcom/ramp_controller.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
index 192edc3f64dc..857ead56b37d 100644
--- a/drivers/soc/qcom/llcc-qcom.c
+++ b/drivers/soc/qcom/llcc-qcom.c
@@ -4409,7 +4409,6 @@ static struct regmap *qcom_llcc_init_mmio(struct platform_device *pdev, u8 index
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
base = devm_platform_ioremap_resource(pdev, index);
diff --git a/drivers/soc/qcom/ramp_controller.c b/drivers/soc/qcom/ramp_controller.c
index 349bdfbc61ef..15782bed2925 100644
--- a/drivers/soc/qcom/ramp_controller.c
+++ b/drivers/soc/qcom/ramp_controller.c
@@ -229,7 +229,6 @@ static const struct regmap_config qrc_regmap_config = {
.reg_stride = 4,
.val_bits = 32,
.max_register = 0x68,
- .fast_io = true,
};
static const struct reg_sequence msm8976_cfg_dfs_sid[] = {
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 19/21] spi: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (17 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 18/21] soc: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-13 16:15 ` [PATCH 20/21] thermal: " Wolfram Sang
` (6 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Mark Brown, Wolfram Sang, linux-spi
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/spi/spi-altera-platform.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/spi/spi-altera-platform.c b/drivers/spi/spi-altera-platform.c
index 585393802e9f..e163774fd65b 100644
--- a/drivers/spi/spi-altera-platform.c
+++ b/drivers/spi/spi-altera-platform.c
@@ -30,7 +30,6 @@ static const struct regmap_config spi_altera_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
static int altera_spi_probe(struct platform_device *pdev)
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 20/21] thermal: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (18 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 19/21] spi: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-13 16:15 ` [PATCH 21/21] ASoC: " Wolfram Sang
` (5 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Miquel Raynal, Rafael J. Wysocki,
Daniel Lezcano, Zhang Rui, Lukasz Luba, Vasily Khoruzhick,
Yangtao Li, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
linux-pm, linux-arm-kernel, linux-sunxi
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
drivers/thermal/armada_thermal.c | 1 -
drivers/thermal/sun8i_thermal.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c
index c2fbdb534f61..252d5afecea1 100644
--- a/drivers/thermal/armada_thermal.c
+++ b/drivers/thermal/armada_thermal.c
@@ -722,7 +722,6 @@ static const struct regmap_config armada_thermal_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
static int armada_thermal_probe_legacy(struct platform_device *pdev,
diff --git a/drivers/thermal/sun8i_thermal.c b/drivers/thermal/sun8i_thermal.c
index 22674790629a..284684137c43 100644
--- a/drivers/thermal/sun8i_thermal.c
+++ b/drivers/thermal/sun8i_thermal.c
@@ -149,7 +149,6 @@ static const struct regmap_config config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
.max_register = 0xfc,
};
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [PATCH 21/21] ASoC: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (19 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 20/21] thermal: " Wolfram Sang
@ 2025-08-13 16:15 ` Wolfram Sang
2025-08-13 21:28 ` (subset) [PATCH 00/21] treewide: " Mark Brown
` (4 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-13 16:15 UTC (permalink / raw)
To: linux-kernel
Cc: Mark Brown, Wolfram Sang, Shengjiu Wang, Xiubo Li, Fabio Estevam,
Nicolin Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai,
linux-sound, linuxppc-dev
When using MMIO with regmap, fast_io is implied. No need to set it
again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
No dependencies, can be applied directly to the subsystem tree. Buildbot is
happy, too.
sound/soc/fsl/fsl_sai.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c
index c313b654236c..cf1915b93d78 100644
--- a/sound/soc/fsl/fsl_sai.c
+++ b/sound/soc/fsl/fsl_sai.c
@@ -1244,7 +1244,6 @@ static struct regmap_config fsl_sai_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
.max_register = FSL_SAI_RMR,
.reg_defaults = fsl_sai_reg_defaults_ofs0,
--
2.47.2
^ permalink raw reply related [flat|nested] 46+ messages in thread
* Re: [PATCH 16/21] reset: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:15 ` [PATCH 16/21] reset: " Wolfram Sang
@ 2025-08-13 18:28 ` Drew Fustini
2025-08-14 10:56 ` Philipp Zabel
1 sibling, 0 replies; 46+ messages in thread
From: Drew Fustini @ 2025-08-13 18:28 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Philipp Zabel, Guo Ren, Fu Wei,
linux-arm-msm, linux-riscv, Michal Wilczynski, Icenowy Zheng,
Yao Zi
On Wed, Aug 13, 2025 at 06:15:02PM +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/reset/reset-intel-gw.c | 1 -
> drivers/reset/reset-qcom-pdc.c | 1 -
> drivers/reset/reset-th1520.c | 1 -
> 3 files changed, 3 deletions(-)
[snip]
> diff --git a/drivers/reset/reset-th1520.c b/drivers/reset/reset-th1520.c
> index 7874f0693e1b..3ec22ae1fac1 100644
> --- a/drivers/reset/reset-th1520.c
> +++ b/drivers/reset/reset-th1520.c
> @@ -78,7 +78,6 @@ static const struct regmap_config th1520_reset_regmap_config = {
> .reg_bits = 32,
> .val_bits = 32,
> .reg_stride = 4,
> - .fast_io = true,
> };
>
> static int th1520_reset_probe(struct platform_device *pdev)
> --
> 2.47.2
Acked-by: Drew Fustini <fustini@kernel.org> # for reset-th1520.c
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 13/21] pinctrl: " Wolfram Sang
@ 2025-08-13 19:42 ` Andrea della Porta
2025-08-19 12:02 ` Linus Walleij
1 sibling, 0 replies; 46+ messages in thread
From: Andrea della Porta @ 2025-08-13 19:42 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Andrea della Porta, Linus Walleij,
linux-gpio
Hi Wolfram,
On 18:14 Wed 13 Aug , Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/pinctrl/pinctrl-rp1.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/pinctrl/pinctrl-rp1.c b/drivers/pinctrl/pinctrl-rp1.c
> index dadafc935dbb..6699b36349d0 100644
> --- a/drivers/pinctrl/pinctrl-rp1.c
> +++ b/drivers/pinctrl/pinctrl-rp1.c
> @@ -1627,7 +1627,6 @@ static const struct regmap_config rp1_pinctrl_regmap_cfg = {
> .reg_bits = 32,
> .val_bits = 32,
> .reg_stride = 4,
> - .fast_io = true,
> .name = "rp1-pinctrl",
> };
Looks fine to me, just a little heads up: the following patch
https://lore.kernel.org/all/20250812092618.14270-1-andrea.porta@suse.com/
adds other two regmap_config with fast_io set to true, so we can
get rid of them too. I can do it in my patch in case I have to send a
second revision, or you can amend yours to cope with my changes and set
my patch as a prerequisite. I guess that it's easier for me since
I have only a single patch, while yours is a big patchset so better
to avoid the noise of a second revision.
Many thanks,
Andrea
>
> --
> 2.47.2
>
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (20 preceding siblings ...)
2025-08-13 16:15 ` [PATCH 21/21] ASoC: " Wolfram Sang
@ 2025-08-13 21:28 ` Mark Brown
2025-08-14 11:13 ` Mark Brown
` (3 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Mark Brown @ 2025-08-13 21:28 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Adrian Hunter, Alexandre Belloni, Alexandre Torgue, Alim Akhtar,
Andrea della Porta, Andreas Färber, Andrzej Hajda,
Andy Shevchenko, Andy Yan, Avi Fishman, Bartosz Golaszewski,
Benjamin Fair, Bjorn Andersson, Chen-Yu Tsai, Daniel Lezcano,
David Airlie, David Lechner, Dmitry Torokhov, Drew Fustini,
dri-devel, Fabio Estevam, Fabrice Gasnier, Fu Wei, Guo Ren,
Hans Verkuil, Heiko Stübner, imx, Iwona Winiarska,
Jaroslav Kysela, Jassi Brar, Jernej Skrabec, Jerome Brunet,
Jonas Karlman, Jonathan Cameron, Kevin Hilman,
Kishon Vijay Abraham I, Konrad Dybcio, Krzysztof Kozlowski,
Laurent Pinchart, Lee Jones, Liam Girdwood, Linus Walleij,
linux-actions, linux-amlogic, linux-arm-kernel, linux-arm-msm,
linux-clk, linux-gpio, linux-iio, linux-input, linux-media,
linux-mmc, linux-phy, linux-pm, linuxppc-dev, linux-pwm,
linux-riscv, linux-rockchip, linux-rtc, linux-samsung-soc,
linux-sound, linux-spi, linux-stm32, linux-sunxi, Liu Ying,
Lukasz Luba, Maarten Lankhorst, Manivannan Sadhasivam,
Martin Blumenstingl, Mauro Carvalho Chehab, Maxime Coquelin,
Maxime Ripard, Michael Turquette, Miquel Raynal, Nancy Yuen,
Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick, Vinod Koul,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
On Wed, 13 Aug 2025 18:14:46 +0200, Wolfram Sang wrote:
> While working on a driver using regmap with MMIO, I wondered if I need
> to set 'fast_io' in the config. Turned out I don't need to, so I added
> documentation for it with commit ffc72771ff6e ("regmap: Annotate that
> MMIO implies fast IO").
>
> This series fixes the existing users in the tree which needlessly set
> the flag. They have been found using this coccinelle script:
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
Thanks!
[15/21] regulator: remove unneeded 'fast_io' parameter in regmap_config
commit: 37533933bfe92cd5a99ef4743f31dac62ccc8de0
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 06/21] Input: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 06/21] Input: " Wolfram Sang
@ 2025-08-13 21:47 ` Dmitry Torokhov
0 siblings, 0 replies; 46+ messages in thread
From: Dmitry Torokhov @ 2025-08-13 21:47 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, linux-input, imx,
linux-arm-kernel
On Wed, Aug 13, 2025 at 06:14:52PM +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Applied, thank you.
--
Dmitry
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 11/21] peci: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 11/21] peci: " Wolfram Sang
@ 2025-08-14 5:11 ` Paul Menzel
0 siblings, 0 replies; 46+ messages in thread
From: Paul Menzel @ 2025-08-14 5:11 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Avi Fishman, Tomer Maimon, Tali Perry,
Patrick Venture, Nancy Yuen, Benjamin Fair, Iwona Winiarska,
openbmc
Dear Wolfram,
Thank you for the patch.
Am 13.08.25 um 18:14 schrieb Wolfram Sang:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/peci/controller/peci-npcm.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/peci/controller/peci-npcm.c b/drivers/peci/controller/peci-npcm.c
> index c77591ca583d..931868991241 100644
> --- a/drivers/peci/controller/peci-npcm.c
> +++ b/drivers/peci/controller/peci-npcm.c
> @@ -221,7 +221,6 @@ static const struct regmap_config npcm_peci_regmap_config = {
> .reg_bits = 8,
> .val_bits = 8,
> .max_register = NPCM_PECI_MAX_REG,
> - .fast_io = true,
> };
>
> static const struct peci_controller_ops npcm_ops = {
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Kind regards,
Paul
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 03/21] gpio: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 03/21] gpio: " Wolfram Sang
@ 2025-08-14 7:20 ` Bartosz Golaszewski
0 siblings, 0 replies; 46+ messages in thread
From: Bartosz Golaszewski @ 2025-08-14 7:20 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Uwe Kleine-König, Linus Walleij,
Paul Walmsley, Samuel Holland, linux-pwm, linux-gpio, linux-riscv
On Wed, Aug 13, 2025 at 6:16 PM Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
>
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
Applied. b4 generates a super long list of recipients even if I only
apply this one patch and I can't send the automatic reply due to
gmail's limits. :(
Bart
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 18/21] soc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:15 ` [PATCH 18/21] soc: " Wolfram Sang
@ 2025-08-14 9:29 ` Konrad Dybcio
0 siblings, 0 replies; 46+ messages in thread
From: Konrad Dybcio @ 2025-08-14 9:29 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: Mark Brown, Bjorn Andersson, Konrad Dybcio, linux-arm-msm
On 8/13/25 6:15 PM, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 16/21] reset: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:15 ` [PATCH 16/21] reset: " Wolfram Sang
2025-08-13 18:28 ` Drew Fustini
@ 2025-08-14 10:56 ` Philipp Zabel
1 sibling, 0 replies; 46+ messages in thread
From: Philipp Zabel @ 2025-08-14 10:56 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: Mark Brown, Drew Fustini, Guo Ren, Fu Wei, linux-arm-msm,
linux-riscv
On Mi, 2025-08-13 at 18:15 +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
Applied patch 16 to reset/next, thanks!
[16/21] reset: remove unneeded 'fast_io' parameter in regmap_config
https://git.pengutronix.de/cgit/pza/linux/commit/?id=1527cd3b89f0
regards
Philipp
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (21 preceding siblings ...)
2025-08-13 21:28 ` (subset) [PATCH 00/21] treewide: " Mark Brown
@ 2025-08-14 11:13 ` Mark Brown
2025-08-14 14:18 ` Mark Brown
` (2 subsequent siblings)
25 siblings, 0 replies; 46+ messages in thread
From: Mark Brown @ 2025-08-14 11:13 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Adrian Hunter, Alexandre Belloni, Alexandre Torgue, Alim Akhtar,
Andrea della Porta, Andreas Färber, Andrzej Hajda,
Andy Shevchenko, Andy Yan, Avi Fishman, Bartosz Golaszewski,
Benjamin Fair, Bjorn Andersson, Chen-Yu Tsai, Daniel Lezcano,
David Airlie, David Lechner, Dmitry Torokhov, Drew Fustini,
dri-devel, Fabio Estevam, Fabrice Gasnier, Fu Wei, Guo Ren,
Hans Verkuil, Heiko Stübner, imx, Iwona Winiarska,
Jaroslav Kysela, Jassi Brar, Jernej Skrabec, Jerome Brunet,
Jonas Karlman, Jonathan Cameron, Kevin Hilman,
Kishon Vijay Abraham I, Konrad Dybcio, Krzysztof Kozlowski,
Laurent Pinchart, Lee Jones, Liam Girdwood, Linus Walleij,
linux-actions, linux-amlogic, linux-arm-kernel, linux-arm-msm,
linux-clk, linux-gpio, linux-iio, linux-input, linux-media,
linux-mmc, linux-phy, linux-pm, linuxppc-dev, linux-pwm,
linux-riscv, linux-rockchip, linux-rtc, linux-samsung-soc,
linux-sound, linux-spi, linux-stm32, linux-sunxi, Liu Ying,
Lukasz Luba, Maarten Lankhorst, Manivannan Sadhasivam,
Martin Blumenstingl, Mauro Carvalho Chehab, Maxime Coquelin,
Maxime Ripard, Michael Turquette, Miquel Raynal, Nancy Yuen,
Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick, Vinod Koul,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
On Wed, 13 Aug 2025 18:14:46 +0200, Wolfram Sang wrote:
> While working on a driver using regmap with MMIO, I wondered if I need
> to set 'fast_io' in the config. Turned out I don't need to, so I added
> documentation for it with commit ffc72771ff6e ("regmap: Annotate that
> MMIO implies fast IO").
>
> This series fixes the existing users in the tree which needlessly set
> the flag. They have been found using this coccinelle script:
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[19/21] spi: remove unneeded 'fast_io' parameter in regmap_config
commit: 48124569bbc6bfda1df3e9ee17b19d559f4b1aa3
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (22 preceding siblings ...)
2025-08-14 11:13 ` Mark Brown
@ 2025-08-14 14:18 ` Mark Brown
2025-08-15 14:42 ` Bjorn Andersson
2025-08-20 17:02 ` Vinod Koul
25 siblings, 0 replies; 46+ messages in thread
From: Mark Brown @ 2025-08-14 14:18 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Adrian Hunter, Alexandre Belloni, Alexandre Torgue, Alim Akhtar,
Andrea della Porta, Andreas Färber, Andrzej Hajda,
Andy Shevchenko, Andy Yan, Avi Fishman, Bartosz Golaszewski,
Benjamin Fair, Bjorn Andersson, Chen-Yu Tsai, Daniel Lezcano,
David Airlie, David Lechner, Dmitry Torokhov, Drew Fustini,
dri-devel, Fabio Estevam, Fabrice Gasnier, Fu Wei, Guo Ren,
Hans Verkuil, Heiko Stübner, imx, Iwona Winiarska,
Jaroslav Kysela, Jassi Brar, Jernej Skrabec, Jerome Brunet,
Jonas Karlman, Jonathan Cameron, Kevin Hilman,
Kishon Vijay Abraham I, Konrad Dybcio, Krzysztof Kozlowski,
Laurent Pinchart, Lee Jones, Liam Girdwood, Linus Walleij,
linux-actions, linux-amlogic, linux-arm-kernel, linux-arm-msm,
linux-clk, linux-gpio, linux-iio, linux-input, linux-media,
linux-mmc, linux-phy, linux-pm, linuxppc-dev, linux-pwm,
linux-riscv, linux-rockchip, linux-rtc, linux-samsung-soc,
linux-sound, linux-spi, linux-stm32, linux-sunxi, Liu Ying,
Lukasz Luba, Maarten Lankhorst, Manivannan Sadhasivam,
Martin Blumenstingl, Mauro Carvalho Chehab, Maxime Coquelin,
Maxime Ripard, Michael Turquette, Miquel Raynal, Nancy Yuen,
Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick, Vinod Koul,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
On Wed, 13 Aug 2025 18:14:46 +0200, Wolfram Sang wrote:
> While working on a driver using regmap with MMIO, I wondered if I need
> to set 'fast_io' in the config. Turned out I don't need to, so I added
> documentation for it with commit ffc72771ff6e ("regmap: Annotate that
> MMIO implies fast IO").
>
> This series fixes the existing users in the tree which needlessly set
> the flag. They have been found using this coccinelle script:
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[21/21] ASoC: remove unneeded 'fast_io' parameter in regmap_config
commit: d578faf7096affc036fd16333f1bfbe4991a22f7
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 17/21] rtc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:15 ` [PATCH 17/21] rtc: " Wolfram Sang
@ 2025-08-14 14:20 ` Neil Armstrong
0 siblings, 0 replies; 46+ messages in thread
From: Neil Armstrong @ 2025-08-14 14:20 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: Mark Brown, Alexandre Belloni, Kevin Hilman, Jerome Brunet,
Martin Blumenstingl, linux-rtc, linux-arm-kernel, linux-amlogic
On 13/08/2025 18:15, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/rtc/rtc-meson.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c
> index 47e9ebf58ffc..21eceb9e2e13 100644
> --- a/drivers/rtc/rtc-meson.c
> +++ b/drivers/rtc/rtc-meson.c
> @@ -72,7 +72,6 @@ static const struct regmap_config meson_rtc_peripheral_regmap_config = {
> .val_bits = 32,
> .reg_stride = 4,
> .max_register = RTC_REG4,
> - .fast_io = true,
> };
>
> /* RTC front-end serialiser controls */
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (23 preceding siblings ...)
2025-08-14 14:18 ` Mark Brown
@ 2025-08-15 14:42 ` Bjorn Andersson
2025-08-20 17:02 ` Vinod Koul
25 siblings, 0 replies; 46+ messages in thread
From: Bjorn Andersson @ 2025-08-15 14:42 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Mark Brown, Adrian Hunter, Alexandre Belloni, Alexandre Torgue,
Alim Akhtar, Andrea della Porta, Andreas Färber,
Andrzej Hajda, Andy Shevchenko, Andy Yan, Avi Fishman,
Bartosz Golaszewski, Benjamin Fair, Chen-Yu Tsai, Daniel Lezcano,
David Airlie, David Lechner, Dmitry Torokhov, Drew Fustini,
dri-devel, Fabio Estevam, Fabrice Gasnier, Fu Wei, Guo Ren,
Hans Verkuil, Heiko Stübner, imx, Iwona Winiarska,
Jaroslav Kysela, Jassi Brar, Jernej Skrabec, Jerome Brunet,
Jonas Karlman, Jonathan Cameron, Kevin Hilman,
Kishon Vijay Abraham I, Konrad Dybcio, Krzysztof Kozlowski,
Laurent Pinchart, Lee Jones, Liam Girdwood, Linus Walleij,
linux-actions, linux-amlogic, linux-arm-kernel, linux-arm-msm,
linux-clk, linux-gpio, linux-iio, linux-input, linux-media,
linux-mmc, linux-phy, linux-pm, linuxppc-dev, linux-pwm,
linux-riscv, linux-rockchip, linux-rtc, linux-samsung-soc,
linux-sound, linux-spi, linux-stm32, linux-sunxi, Liu Ying,
Lukasz Luba, Maarten Lankhorst, Manivannan Sadhasivam,
Martin Blumenstingl, Mauro Carvalho Chehab, Maxime Coquelin,
Maxime Ripard, Michael Turquette, Miquel Raynal, Nancy Yuen,
Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick, Vinod Koul,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
On Wed, 13 Aug 2025 18:14:46 +0200, Wolfram Sang wrote:
> While working on a driver using regmap with MMIO, I wondered if I need
> to set 'fast_io' in the config. Turned out I don't need to, so I added
> documentation for it with commit ffc72771ff6e ("regmap: Annotate that
> MMIO implies fast IO").
>
> This series fixes the existing users in the tree which needlessly set
> the flag. They have been found using this coccinelle script:
>
> [...]
Applied, thanks!
[18/21] soc: remove unneeded 'fast_io' parameter in regmap_config
commit: 5d8a9c8401648d338d072a488d455ed4611c5d4b
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 04/21] drm: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 04/21] drm: " Wolfram Sang
@ 2025-08-15 15:06 ` Philipp Zabel
2025-08-18 2:03 ` Liu Ying
1 sibling, 0 replies; 46+ messages in thread
From: Philipp Zabel @ 2025-08-15 15:06 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: Mark Brown, Andrzej Hajda, Neil Armstrong, Robert Foss,
Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Liu Ying, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, Sandy Huang,
Heiko Stübner, Andy Yan, dri-devel, imx, linux-arm-kernel,
linux-rockchip
On Mi, 2025-08-13 at 18:14 +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c | 1 -
> drivers/gpu/drm/imx/dc/dc-cf.c | 1 -
> drivers/gpu/drm/imx/dc/dc-de.c | 1 -
> drivers/gpu/drm/imx/dc/dc-ed.c | 2 --
> drivers/gpu/drm/imx/dc/dc-fg.c | 1 -
> drivers/gpu/drm/imx/dc/dc-fl.c | 1 -
> drivers/gpu/drm/imx/dc/dc-fw.c | 2 --
> drivers/gpu/drm/imx/dc/dc-ic.c | 1 -
> drivers/gpu/drm/imx/dc/dc-lb.c | 2 --
> drivers/gpu/drm/imx/dc/dc-tc.c | 1 -
> drivers/gpu/drm/imx/ipuv3/imx-tve.c | 2 --
> drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c | 1 -
> 12 files changed, 16 deletions(-)
>
[...]
> diff --git a/drivers/gpu/drm/imx/ipuv3/imx-tve.c b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
> index c5629e155d25..b34037d0d7a8 100644
> --- a/drivers/gpu/drm/imx/ipuv3/imx-tve.c
> +++ b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
> @@ -457,8 +457,6 @@ static struct regmap_config tve_regmap_config = {
>
> .readable_reg = imx_tve_readable_reg,
>
> - .fast_io = true,
> -
> .max_register = 0xdc,
> };
>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
regards
Philipp
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 05/21] iio: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 05/21] iio: " Wolfram Sang
@ 2025-08-16 12:34 ` Jonathan Cameron
0 siblings, 0 replies; 46+ messages in thread
From: Jonathan Cameron @ 2025-08-16 12:34 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, David Lechner, Nuno Sá,
Andy Shevchenko, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
linux-iio, linux-arm-kernel, linux-sunxi
On Wed, 13 Aug 2025 18:14:51 +0200
Wolfram Sang <wsa+renesas@sang-engineering.com> wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Applied. Thanks
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 04/21] drm: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 04/21] drm: " Wolfram Sang
2025-08-15 15:06 ` Philipp Zabel
@ 2025-08-18 2:03 ` Liu Ying
1 sibling, 0 replies; 46+ messages in thread
From: Liu Ying @ 2025-08-18 2:03 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: Mark Brown, Andrzej Hajda, Neil Armstrong, Robert Foss,
Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam, Philipp Zabel, Sandy Huang, Heiko Stübner,
Andy Yan, dri-devel, imx, linux-arm-kernel, linux-rockchip
On 08/13/2025, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi2.c | 1 -
> drivers/gpu/drm/imx/dc/dc-cf.c | 1 -
> drivers/gpu/drm/imx/dc/dc-de.c | 1 -
> drivers/gpu/drm/imx/dc/dc-ed.c | 2 --
> drivers/gpu/drm/imx/dc/dc-fg.c | 1 -
> drivers/gpu/drm/imx/dc/dc-fl.c | 1 -
> drivers/gpu/drm/imx/dc/dc-fw.c | 2 --
> drivers/gpu/drm/imx/dc/dc-ic.c | 1 -
> drivers/gpu/drm/imx/dc/dc-lb.c | 2 --
> drivers/gpu/drm/imx/dc/dc-tc.c | 1 -
> drivers/gpu/drm/imx/ipuv3/imx-tve.c | 2 --
> drivers/gpu/drm/rockchip/dw-mipi-dsi2-rockchip.c | 1 -
> 12 files changed, 16 deletions(-)
Reviewed-by: Liu Ying <victor.liu@nxp.com> # drivers/gpu/drm/imx/dc
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 10/21] mmc: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 10/21] mmc: " Wolfram Sang
@ 2025-08-18 10:55 ` Ulf Hansson
0 siblings, 0 replies; 46+ messages in thread
From: Ulf Hansson @ 2025-08-18 10:55 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-kernel, Mark Brown, Adrian Hunter, linux-mmc
On Wed, 13 Aug 2025 at 18:16, Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
>
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Applied for next, thanks!
Kind regards
Uffe
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/mmc/host/sdhci_am654.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci_am654.c b/drivers/mmc/host/sdhci_am654.c
> index e4fc345be7e5..8a099508b939 100644
> --- a/drivers/mmc/host/sdhci_am654.c
> +++ b/drivers/mmc/host/sdhci_am654.c
> @@ -95,7 +95,6 @@ static const struct regmap_config sdhci_am654_regmap_config = {
> .reg_bits = 32,
> .val_bits = 32,
> .reg_stride = 4,
> - .fast_io = true,
> };
>
> struct timing_data {
> --
> 2.47.2
>
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 13/21] pinctrl: " Wolfram Sang
2025-08-13 19:42 ` Andrea della Porta
@ 2025-08-19 12:02 ` Linus Walleij
2025-08-19 12:04 ` Wolfram Sang
2025-08-19 12:25 ` Andrea della Porta
1 sibling, 2 replies; 46+ messages in thread
From: Linus Walleij @ 2025-08-19 12:02 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-kernel, Mark Brown, Andrea della Porta, linux-gpio
On Wed, Aug 13, 2025 at 6:16 PM Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Patch applied, rebased on top of Adrea della Porta's changes
and fixed the two new instances as well.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config
2025-08-19 12:02 ` Linus Walleij
@ 2025-08-19 12:04 ` Wolfram Sang
2025-08-19 12:25 ` Andrea della Porta
1 sibling, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-19 12:04 UTC (permalink / raw)
To: Linus Walleij; +Cc: linux-kernel, Mark Brown, Andrea della Porta, linux-gpio
[-- Attachment #1: Type: text/plain, Size: 149 bytes --]
> Patch applied, rebased on top of Adrea della Porta's changes
> and fixed the two new instances as well.
Thanks, Linus, for the additional work.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config
2025-08-19 12:02 ` Linus Walleij
2025-08-19 12:04 ` Wolfram Sang
@ 2025-08-19 12:25 ` Andrea della Porta
1 sibling, 0 replies; 46+ messages in thread
From: Andrea della Porta @ 2025-08-19 12:25 UTC (permalink / raw)
To: Linus Walleij
Cc: Wolfram Sang, linux-kernel, Mark Brown, Andrea della Porta,
linux-gpio
Hi Linus,
On 14:02 Tue 19 Aug , Linus Walleij wrote:
> On Wed, Aug 13, 2025 at 6:16 PM Wolfram Sang
> <wsa+renesas@sang-engineering.com> wrote:
>
> > When using MMIO with regmap, fast_io is implied. No need to set it
> > again.
> >
> > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> Patch applied, rebased on top of Adrea della Porta's changes
> and fixed the two new instances as well.
Many thanks, really appreciated.
Andrea
>
> Yours,
> Linus Walleij
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 14/21] pmdomain: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:15 ` [PATCH 14/21] pmdomain: " Wolfram Sang
@ 2025-08-19 12:26 ` Ulf Hansson
0 siblings, 0 replies; 46+ messages in thread
From: Ulf Hansson @ 2025-08-19 12:26 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, linux-pm, imx,
linux-arm-kernel
On Wed, 13 Aug 2025 at 18:16, Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
>
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Applied for next, thanks!
Kind regards
Uffe
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/pmdomain/imx/gpc.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/pmdomain/imx/gpc.c b/drivers/pmdomain/imx/gpc.c
> index f18c7e6e75dd..33991f3c6b55 100644
> --- a/drivers/pmdomain/imx/gpc.c
> +++ b/drivers/pmdomain/imx/gpc.c
> @@ -343,7 +343,6 @@ static const struct regmap_config imx_gpc_regmap_config = {
> .rd_table = &access_table,
> .wr_table = &access_table,
> .max_register = 0x2ac,
> - .fast_io = true,
> };
>
> static struct generic_pm_domain *imx_gpc_onecell_domains[] = {
> --
> 2.47.2
>
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
` (24 preceding siblings ...)
2025-08-15 14:42 ` Bjorn Andersson
@ 2025-08-20 17:02 ` Vinod Koul
25 siblings, 0 replies; 46+ messages in thread
From: Vinod Koul @ 2025-08-20 17:02 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Mark Brown, Adrian Hunter, Alexandre Belloni, Alexandre Torgue,
Alim Akhtar, Andrea della Porta, Andreas Färber,
Andrzej Hajda, Andy Shevchenko, Andy Yan, Avi Fishman,
Bartosz Golaszewski, Benjamin Fair, Bjorn Andersson, Chen-Yu Tsai,
Daniel Lezcano, David Airlie, David Lechner, Dmitry Torokhov,
Drew Fustini, dri-devel, Fabio Estevam, Fabrice Gasnier, Fu Wei,
Guo Ren, Hans Verkuil, Heiko Stübner, imx, Iwona Winiarska,
Jaroslav Kysela, Jassi Brar, Jernej Skrabec, Jerome Brunet,
Jonas Karlman, Jonathan Cameron, Kevin Hilman,
Kishon Vijay Abraham I, Konrad Dybcio, Krzysztof Kozlowski,
Laurent Pinchart, Lee Jones, Liam Girdwood, Linus Walleij,
linux-actions, linux-amlogic, linux-arm-kernel, linux-arm-msm,
linux-clk, linux-gpio, linux-iio, linux-input, linux-media,
linux-mmc, linux-phy, linux-pm, linuxppc-dev, linux-pwm,
linux-riscv, linux-rockchip, linux-rtc, linux-samsung-soc,
linux-sound, linux-spi, linux-stm32, linux-sunxi, Liu Ying,
Lukasz Luba, Maarten Lankhorst, Manivannan Sadhasivam,
Martin Blumenstingl, Mauro Carvalho Chehab, Maxime Coquelin,
Maxime Ripard, Michael Turquette, Miquel Raynal, Nancy Yuen,
Neil Armstrong, Nicolin Chen, Nuno Sá, openbmc,
Patrick Venture, Paul Walmsley, Pengutronix Kernel Team,
Philipp Zabel, Piotr Wojtaszczyk, Rafael J. Wysocki, Robert Foss,
Samuel Holland, Samuel Holland, Sandy Huang, Sascha Hauer,
Shawn Guo, Shengjiu Wang, Simona Vetter, Stephen Boyd,
Takashi Iwai, Tali Perry, Thomas Zimmermann, Tomer Maimon,
Ulf Hansson, Uwe Kleine-König, Vasily Khoruzhick,
Vladimir Zapolskiy, Xiubo Li, Yangtao Li, Zhang Rui
On Wed, 13 Aug 2025 18:14:46 +0200, Wolfram Sang wrote:
> While working on a driver using regmap with MMIO, I wondered if I need
> to set 'fast_io' in the config. Turned out I don't need to, so I added
> documentation for it with commit ffc72771ff6e ("regmap: Annotate that
> MMIO implies fast IO").
>
> This series fixes the existing users in the tree which needlessly set
> the flag. They have been found using this coccinelle script:
>
> [...]
Applied, thanks!
[12/21] phy: remove unneeded 'fast_io' parameter in regmap_config
commit: e1e1e77f7df7cbee959ba024e5475907fe561c98
Best regards,
--
~Vinod
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 02/21] clk: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 02/21] clk: " Wolfram Sang
@ 2025-08-21 21:46 ` Brian Masney
2025-08-22 5:59 ` Wolfram Sang
0 siblings, 1 reply; 46+ messages in thread
From: Brian Masney @ 2025-08-21 21:46 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Mark Brown, Michael Turquette, Stephen Boyd,
Andreas Färber, Manivannan Sadhasivam, Vladimir Zapolskiy,
Piotr Wojtaszczyk, Bjorn Andersson, Drew Fustini, Guo Ren, Fu Wei,
linux-clk, linux-arm-kernel, linux-actions, linux-arm-msm,
linux-riscv
Hi Wolfram,
On Wed, Aug 13, 2025 at 06:14:48PM +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> No dependencies, can be applied directly to the subsystem tree. Buildbot is
> happy, too.
>
> drivers/clk/actions/owl-common.c | 1 -
> drivers/clk/clk-axm5516.c | 1 -
> drivers/clk/nxp/clk-lpc32xx.c | 1 -
> drivers/clk/qcom/a53-pll.c | 1 -
> drivers/clk/qcom/a7-pll.c | 1 -
> drivers/clk/qcom/apss-ipq-pll.c | 1 -
> drivers/clk/qcom/clk-cbf-8996.c | 1 -
> drivers/clk/qcom/clk-cpu-8996.c | 1 -
> drivers/clk/qcom/hfpll.c | 1 -
> drivers/clk/qcom/ipq-cmn-pll.c | 1 -
> drivers/clk/thead/clk-th1520-ap.c | 1 -
> 11 files changed, 11 deletions(-)
These all look good to me.
Reviewed-by: Brian Masney <bmasney@redhat.com>
Should drivers/clk/sprd/common.c also be updated as well?
Brian
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: [PATCH 02/21] clk: remove unneeded 'fast_io' parameter in regmap_config
2025-08-21 21:46 ` Brian Masney
@ 2025-08-22 5:59 ` Wolfram Sang
0 siblings, 0 replies; 46+ messages in thread
From: Wolfram Sang @ 2025-08-22 5:59 UTC (permalink / raw)
To: Brian Masney
Cc: linux-kernel, Mark Brown, Michael Turquette, Stephen Boyd,
Andreas Färber, Manivannan Sadhasivam, Vladimir Zapolskiy,
Piotr Wojtaszczyk, Bjorn Andersson, Drew Fustini, Guo Ren, Fu Wei,
linux-clk, linux-arm-kernel, linux-actions, linux-arm-msm,
linux-riscv
Hi Brian,
> These all look good to me.
>
> Reviewed-by: Brian Masney <bmasney@redhat.com>
Thank you!
> Should drivers/clk/sprd/common.c also be updated as well?
Yes. I wrote in the cover-letter that a few occasions couldn't be
automated with my coccinelle script because of the indirection. I will
fix the remaining few ones manually, but I didn't get to that until now.
Happy hacking,
Wolfram
^ permalink raw reply [flat|nested] 46+ messages in thread
* Re: (subset) [PATCH 09/21] mfd: remove unneeded 'fast_io' parameter in regmap_config
2025-08-13 16:14 ` [PATCH 09/21] mfd: " Wolfram Sang
@ 2025-09-02 13:33 ` Lee Jones
0 siblings, 0 replies; 46+ messages in thread
From: Lee Jones @ 2025-09-02 13:33 UTC (permalink / raw)
To: linux-kernel, Wolfram Sang
Cc: Mark Brown, Lee Jones, Krzysztof Kozlowski, Alim Akhtar,
Shawn Guo, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
Fabrice Gasnier, Maxime Coquelin, Alexandre Torgue, Chen-Yu Tsai,
Jernej Skrabec, Samuel Holland, linux-arm-kernel,
linux-samsung-soc, imx, linux-stm32, linux-sunxi
On Wed, 13 Aug 2025 18:14:55 +0200, Wolfram Sang wrote:
> When using MMIO with regmap, fast_io is implied. No need to set it
> again.
>
>
Applied, thanks!
[09/21] mfd: remove unneeded 'fast_io' parameter in regmap_config
commit: 8a7d550ceea258220e31982903b8a017351526ec
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 46+ messages in thread
end of thread, other threads:[~2025-09-02 13:33 UTC | newest]
Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-13 16:14 [PATCH 00/21] treewide: remove unneeded 'fast_io' parameter in regmap_config Wolfram Sang
2025-08-13 16:14 ` [PATCH 01/21] bus: " Wolfram Sang
2025-08-13 16:14 ` [PATCH 02/21] clk: " Wolfram Sang
2025-08-21 21:46 ` Brian Masney
2025-08-22 5:59 ` Wolfram Sang
2025-08-13 16:14 ` [PATCH 03/21] gpio: " Wolfram Sang
2025-08-14 7:20 ` Bartosz Golaszewski
2025-08-13 16:14 ` [PATCH 04/21] drm: " Wolfram Sang
2025-08-15 15:06 ` Philipp Zabel
2025-08-18 2:03 ` Liu Ying
2025-08-13 16:14 ` [PATCH 05/21] iio: " Wolfram Sang
2025-08-16 12:34 ` Jonathan Cameron
2025-08-13 16:14 ` [PATCH 06/21] Input: " Wolfram Sang
2025-08-13 21:47 ` Dmitry Torokhov
2025-08-13 16:14 ` [PATCH 07/21] mailbox: " Wolfram Sang
2025-08-13 16:14 ` [PATCH 08/21] media: " Wolfram Sang
2025-08-13 16:14 ` [PATCH 09/21] mfd: " Wolfram Sang
2025-09-02 13:33 ` (subset) " Lee Jones
2025-08-13 16:14 ` [PATCH 10/21] mmc: " Wolfram Sang
2025-08-18 10:55 ` Ulf Hansson
2025-08-13 16:14 ` [PATCH 11/21] peci: " Wolfram Sang
2025-08-14 5:11 ` Paul Menzel
2025-08-13 16:14 ` [PATCH 12/21] phy: " Wolfram Sang
2025-08-13 16:14 ` [PATCH 13/21] pinctrl: " Wolfram Sang
2025-08-13 19:42 ` Andrea della Porta
2025-08-19 12:02 ` Linus Walleij
2025-08-19 12:04 ` Wolfram Sang
2025-08-19 12:25 ` Andrea della Porta
2025-08-13 16:15 ` [PATCH 14/21] pmdomain: " Wolfram Sang
2025-08-19 12:26 ` Ulf Hansson
2025-08-13 16:15 ` [PATCH 15/21] regulator: " Wolfram Sang
2025-08-13 16:15 ` [PATCH 16/21] reset: " Wolfram Sang
2025-08-13 18:28 ` Drew Fustini
2025-08-14 10:56 ` Philipp Zabel
2025-08-13 16:15 ` [PATCH 17/21] rtc: " Wolfram Sang
2025-08-14 14:20 ` Neil Armstrong
2025-08-13 16:15 ` [PATCH 18/21] soc: " Wolfram Sang
2025-08-14 9:29 ` Konrad Dybcio
2025-08-13 16:15 ` [PATCH 19/21] spi: " Wolfram Sang
2025-08-13 16:15 ` [PATCH 20/21] thermal: " Wolfram Sang
2025-08-13 16:15 ` [PATCH 21/21] ASoC: " Wolfram Sang
2025-08-13 21:28 ` (subset) [PATCH 00/21] treewide: " Mark Brown
2025-08-14 11:13 ` Mark Brown
2025-08-14 14:18 ` Mark Brown
2025-08-15 14:42 ` Bjorn Andersson
2025-08-20 17:02 ` Vinod Koul
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).