* [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data
@ 2026-03-11 13:19 Antti Laakso
2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso
` (4 more replies)
0 siblings, 5 replies; 19+ messages in thread
From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw)
To: linux-media
Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus,
mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre,
hao.yao, jimmy.su, miguel.vadillo, kees, ribalda
This adds camera support for the MSI Prestige 14 AI EVO laptop, which uses
a TPS68470 PMIC to power an OV5675 sensor.
If ok, including a GPIO patch to this series. The GPIO patch enables the
TPS68470's I2C daisy chain functionality.
v2:
- Add lookup only for ov5675 reset GPIO and use GPIO_LOOKUP macro.
- Use software node for i2c daisy chain info instead of platform data.
- ov5675: fix error path in ov5675_get_hwcfg().
Antti Laakso (5):
media: i2c: ov5675: Wait for endpoint
media: ipu-bridge: Add ov5675 sensor
platform: int3472: Add gpio software node
gpio: tps68470: Add i2c daisy chain support
platform: int3472: Add MSI prestige board data
drivers/gpio/gpio-tps68470.c | 21 +++-
drivers/media/i2c/ov5675.c | 32 +++---
drivers/media/pci/intel/ipu-bridge.c | 2 +
drivers/platform/x86/intel/int3472/tps68470.c | 1 +
drivers/platform/x86/intel/int3472/tps68470.h | 1 +
.../x86/intel/int3472/tps68470_board_data.c | 101 ++++++++++++++++++
6 files changed, 141 insertions(+), 17 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 19+ messages in thread* [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso @ 2026-03-11 13:19 ` Antti Laakso 2026-03-11 14:31 ` Hans de Goede 2026-03-11 19:10 ` Dan Scally 2026-03-11 13:19 ` [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor Antti Laakso ` (3 subsequent siblings) 4 siblings, 2 replies; 19+ messages in thread From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw) To: linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Defer probe if endpoint is not yet available. And do it before acquiring clock, gpio and regulators. Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> --- drivers/media/i2c/ov5675.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/media/i2c/ov5675.c b/drivers/media/i2c/ov5675.c index ea26df328189..508149485248 100644 --- a/drivers/media/i2c/ov5675.c +++ b/drivers/media/i2c/ov5675.c @@ -1181,17 +1181,26 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) if (!fwnode) return -ENXIO; + ep = fwnode_graph_get_endpoint_by_id(fwnode, 0, 0, + FWNODE_GRAPH_ENDPOINT_NEXT); + ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); + fwnode_handle_put(ep); + if (ret) + return ret; + ov5675->xvclk = devm_v4l2_sensor_clk_get(dev, NULL); - if (IS_ERR(ov5675->xvclk)) - return dev_err_probe(dev, PTR_ERR(ov5675->xvclk), - "failed to get xvclk: %pe\n", - ov5675->xvclk); + if (IS_ERR(ov5675->xvclk)) { + ret = dev_err_probe(dev, PTR_ERR(ov5675->xvclk), + "failed to get xvclk\n"); + goto check_hwcfg_error; + } xvclk_rate = clk_get_rate(ov5675->xvclk); if (xvclk_rate != OV5675_XVCLK_19_2) { dev_err(dev, "external clock rate %u is unsupported", xvclk_rate); - return -EINVAL; + ret = -EINVAL; + goto check_hwcfg_error; } ov5675->reset_gpio = devm_gpiod_get_optional(dev, "reset", @@ -1199,7 +1208,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) if (IS_ERR(ov5675->reset_gpio)) { ret = PTR_ERR(ov5675->reset_gpio); dev_err(dev, "failed to get reset-gpios: %d\n", ret); - return ret; + goto check_hwcfg_error; } for (i = 0; i < OV5675_NUM_SUPPLIES; i++) @@ -1208,16 +1217,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) ret = devm_regulator_bulk_get(dev, OV5675_NUM_SUPPLIES, ov5675->supplies); if (ret) - return ret; - - ep = fwnode_graph_get_next_endpoint(fwnode, NULL); - if (!ep) - return -ENXIO; - - ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); - fwnode_handle_put(ep); - if (ret) - return ret; + goto check_hwcfg_error; if (bus_cfg.bus.mipi_csi2.num_data_lanes != OV5675_DATA_LANES) { dev_err(dev, "number of CSI2 data lanes %d is not supported", -- 2.53.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint 2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso @ 2026-03-11 14:31 ` Hans de Goede 2026-03-11 19:10 ` Dan Scally 1 sibling, 0 replies; 19+ messages in thread From: Hans de Goede @ 2026-03-11 14:31 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi, On 11-Mar-26 14:19, Antti Laakso wrote: > Defer probe if endpoint is not yet available. And do it before acquiring > clock, gpio and regulators. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> Thanks, patch looks good to me: Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Regards, Hans > --- > drivers/media/i2c/ov5675.c | 32 ++++++++++++++++---------------- > 1 file changed, 16 insertions(+), 16 deletions(-) > > diff --git a/drivers/media/i2c/ov5675.c b/drivers/media/i2c/ov5675.c > index ea26df328189..508149485248 100644 > --- a/drivers/media/i2c/ov5675.c > +++ b/drivers/media/i2c/ov5675.c > @@ -1181,17 +1181,26 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > if (!fwnode) > return -ENXIO; > > + ep = fwnode_graph_get_endpoint_by_id(fwnode, 0, 0, > + FWNODE_GRAPH_ENDPOINT_NEXT); > + ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); > + fwnode_handle_put(ep); > + if (ret) > + return ret; > + > ov5675->xvclk = devm_v4l2_sensor_clk_get(dev, NULL); > - if (IS_ERR(ov5675->xvclk)) > - return dev_err_probe(dev, PTR_ERR(ov5675->xvclk), > - "failed to get xvclk: %pe\n", > - ov5675->xvclk); > + if (IS_ERR(ov5675->xvclk)) { > + ret = dev_err_probe(dev, PTR_ERR(ov5675->xvclk), > + "failed to get xvclk\n"); > + goto check_hwcfg_error; > + } > > xvclk_rate = clk_get_rate(ov5675->xvclk); > if (xvclk_rate != OV5675_XVCLK_19_2) { > dev_err(dev, "external clock rate %u is unsupported", > xvclk_rate); > - return -EINVAL; > + ret = -EINVAL; > + goto check_hwcfg_error; > } > > ov5675->reset_gpio = devm_gpiod_get_optional(dev, "reset", > @@ -1199,7 +1208,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > if (IS_ERR(ov5675->reset_gpio)) { > ret = PTR_ERR(ov5675->reset_gpio); > dev_err(dev, "failed to get reset-gpios: %d\n", ret); > - return ret; > + goto check_hwcfg_error; > } > > for (i = 0; i < OV5675_NUM_SUPPLIES; i++) > @@ -1208,16 +1217,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > ret = devm_regulator_bulk_get(dev, OV5675_NUM_SUPPLIES, > ov5675->supplies); > if (ret) > - return ret; > - > - ep = fwnode_graph_get_next_endpoint(fwnode, NULL); > - if (!ep) > - return -ENXIO; > - > - ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); > - fwnode_handle_put(ep); > - if (ret) > - return ret; > + goto check_hwcfg_error; > > if (bus_cfg.bus.mipi_csi2.num_data_lanes != OV5675_DATA_LANES) { > dev_err(dev, "number of CSI2 data lanes %d is not supported", ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint 2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso 2026-03-11 14:31 ` Hans de Goede @ 2026-03-11 19:10 ` Dan Scally 1 sibling, 0 replies; 19+ messages in thread From: Dan Scally @ 2026-03-11 19:10 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi Antti, thanks for the v2 On 11/03/2026 13:19, Antti Laakso wrote: > Defer probe if endpoint is not yet available. And do it before acquiring > clock, gpio and regulators. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > --- Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > drivers/media/i2c/ov5675.c | 32 ++++++++++++++++---------------- > 1 file changed, 16 insertions(+), 16 deletions(-) > > diff --git a/drivers/media/i2c/ov5675.c b/drivers/media/i2c/ov5675.c > index ea26df328189..508149485248 100644 > --- a/drivers/media/i2c/ov5675.c > +++ b/drivers/media/i2c/ov5675.c > @@ -1181,17 +1181,26 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > if (!fwnode) > return -ENXIO; > > + ep = fwnode_graph_get_endpoint_by_id(fwnode, 0, 0, > + FWNODE_GRAPH_ENDPOINT_NEXT); > + ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); > + fwnode_handle_put(ep); > + if (ret) > + return ret; > + > ov5675->xvclk = devm_v4l2_sensor_clk_get(dev, NULL); > - if (IS_ERR(ov5675->xvclk)) > - return dev_err_probe(dev, PTR_ERR(ov5675->xvclk), > - "failed to get xvclk: %pe\n", > - ov5675->xvclk); > + if (IS_ERR(ov5675->xvclk)) { > + ret = dev_err_probe(dev, PTR_ERR(ov5675->xvclk), > + "failed to get xvclk\n"); > + goto check_hwcfg_error; > + } > > xvclk_rate = clk_get_rate(ov5675->xvclk); > if (xvclk_rate != OV5675_XVCLK_19_2) { > dev_err(dev, "external clock rate %u is unsupported", > xvclk_rate); > - return -EINVAL; > + ret = -EINVAL; > + goto check_hwcfg_error; > } > > ov5675->reset_gpio = devm_gpiod_get_optional(dev, "reset", > @@ -1199,7 +1208,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > if (IS_ERR(ov5675->reset_gpio)) { > ret = PTR_ERR(ov5675->reset_gpio); > dev_err(dev, "failed to get reset-gpios: %d\n", ret); > - return ret; > + goto check_hwcfg_error; > } > > for (i = 0; i < OV5675_NUM_SUPPLIES; i++) > @@ -1208,16 +1217,7 @@ static int ov5675_get_hwcfg(struct ov5675 *ov5675) > ret = devm_regulator_bulk_get(dev, OV5675_NUM_SUPPLIES, > ov5675->supplies); > if (ret) > - return ret; > - > - ep = fwnode_graph_get_next_endpoint(fwnode, NULL); > - if (!ep) > - return -ENXIO; > - > - ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); > - fwnode_handle_put(ep); > - if (ret) > - return ret; > + goto check_hwcfg_error; > > if (bus_cfg.bus.mipi_csi2.num_data_lanes != OV5675_DATA_LANES) { > dev_err(dev, "number of CSI2 data lanes %d is not supported", ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso 2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso @ 2026-03-11 13:19 ` Antti Laakso 2026-03-17 12:52 ` Sakari Ailus 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso ` (2 subsequent siblings) 4 siblings, 1 reply; 19+ messages in thread From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw) To: linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda The Omnivision ov5675 is found from MSI prestige 14 AI EVO laptop, for example. Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> --- drivers/media/pci/intel/ipu-bridge.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c index c895584e25a0..ee070d44d5f1 100644 --- a/drivers/media/pci/intel/ipu-bridge.c +++ b/drivers/media/pci/intel/ipu-bridge.c @@ -91,6 +91,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = { IPU_SENSOR_CONFIG("OVTIDB10", 1, 560000000), /* Omnivision OV2680 */ IPU_SENSOR_CONFIG("OVTI2680", 1, 331200000), + /* Omnivision OV5675 */ + IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000), /* Omnivision OV8856 */ IPU_SENSOR_CONFIG("OVTI8856", 3, 180000000, 360000000, 720000000), /* Sony IMX471 */ -- 2.53.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor 2026-03-11 13:19 ` [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor Antti Laakso @ 2026-03-17 12:52 ` Sakari Ailus 0 siblings, 0 replies; 19+ messages in thread From: Sakari Ailus @ 2026-03-17 12:52 UTC (permalink / raw) To: Antti Laakso Cc: linux-media, linux-gpio, platform-driver-x86, linusw, brgl, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi, On Wed, Mar 11, 2026 at 03:19:07PM +0200, Antti Laakso wrote: > The Omnivision ov5675 is found from MSI prestige > 14 AI EVO laptop, for example. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> > --- > drivers/media/pci/intel/ipu-bridge.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c > index c895584e25a0..ee070d44d5f1 100644 > --- a/drivers/media/pci/intel/ipu-bridge.c > +++ b/drivers/media/pci/intel/ipu-bridge.c > @@ -91,6 +91,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = { > IPU_SENSOR_CONFIG("OVTIDB10", 1, 560000000), > /* Omnivision OV2680 */ > IPU_SENSOR_CONFIG("OVTI2680", 1, 331200000), > + /* Omnivision OV5675 */ > + IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000), These exact lines have been already added by commit d6576b85d3fe75238e67d3e311222e7f69730b09 as Thinkpad X1 Fold 16 has the same sensor. I've taken the rest to my tree (int3472 branch). Thanks! > /* Omnivision OV8856 */ > IPU_SENSOR_CONFIG("OVTI8856", 3, 180000000, 360000000, 720000000), > /* Sony IMX471 */ -- Kind regards, Sakari Ailus ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/5] platform: int3472: Add gpio software node 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso 2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso 2026-03-11 13:19 ` [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor Antti Laakso @ 2026-03-11 13:19 ` Antti Laakso 2026-03-11 14:33 ` Hans de Goede ` (2 more replies) 2026-03-11 13:19 ` [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support Antti Laakso 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso 4 siblings, 3 replies; 19+ messages in thread From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw) To: linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda The tps68470 supports i2c daisy chain, which need to be configured by gpio-tps68470 driver. Add daisy chain information to software node. Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> --- drivers/platform/x86/intel/int3472/tps68470.c | 1 + drivers/platform/x86/intel/int3472/tps68470.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c index a496075c0d2a..a77ed32abe55 100644 --- a/drivers/platform/x86/intel/int3472/tps68470.c +++ b/drivers/platform/x86/intel/int3472/tps68470.c @@ -197,6 +197,7 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client) cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata; cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data); cells[2].name = "tps68470-gpio"; + cells[2].swnode = board_data->tps68470_gpio_swnode; for (i = 0; i < board_data->n_gpiod_lookups; i++) gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]); diff --git a/drivers/platform/x86/intel/int3472/tps68470.h b/drivers/platform/x86/intel/int3472/tps68470.h index 35915e701593..3bbaade96c57 100644 --- a/drivers/platform/x86/intel/int3472/tps68470.h +++ b/drivers/platform/x86/intel/int3472/tps68470.h @@ -17,6 +17,7 @@ struct tps68470_regulator_platform_data; struct int3472_tps68470_board_data { const char *dev_name; const struct tps68470_regulator_platform_data *tps68470_regulator_pdata; + const struct software_node *tps68470_gpio_swnode; unsigned int n_gpiod_lookups; struct gpiod_lookup_table *tps68470_gpio_lookup_tables[]; }; -- 2.53.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 3/5] platform: int3472: Add gpio software node 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso @ 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:43 ` Bartosz Golaszewski 2026-03-17 11:53 ` Ilpo Järvinen 2 siblings, 0 replies; 19+ messages in thread From: Hans de Goede @ 2026-03-11 14:33 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi, On 11-Mar-26 14:19, Antti Laakso wrote: > The tps68470 supports i2c daisy chain, which need to be configured by > gpio-tps68470 driver. Add daisy chain information to software node. Thanks, patch looks good to me: Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Regards, Hans > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > --- > drivers/platform/x86/intel/int3472/tps68470.c | 1 + > drivers/platform/x86/intel/int3472/tps68470.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c > index a496075c0d2a..a77ed32abe55 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.c > +++ b/drivers/platform/x86/intel/int3472/tps68470.c > @@ -197,6 +197,7 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client) > cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata; > cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data); > cells[2].name = "tps68470-gpio"; > + cells[2].swnode = board_data->tps68470_gpio_swnode; > > for (i = 0; i < board_data->n_gpiod_lookups; i++) > gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]); > diff --git a/drivers/platform/x86/intel/int3472/tps68470.h b/drivers/platform/x86/intel/int3472/tps68470.h > index 35915e701593..3bbaade96c57 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.h > +++ b/drivers/platform/x86/intel/int3472/tps68470.h > @@ -17,6 +17,7 @@ struct tps68470_regulator_platform_data; > struct int3472_tps68470_board_data { > const char *dev_name; > const struct tps68470_regulator_platform_data *tps68470_regulator_pdata; > + const struct software_node *tps68470_gpio_swnode; > unsigned int n_gpiod_lookups; > struct gpiod_lookup_table *tps68470_gpio_lookup_tables[]; > }; ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 3/5] platform: int3472: Add gpio software node 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso 2026-03-11 14:33 ` Hans de Goede @ 2026-03-11 14:43 ` Bartosz Golaszewski 2026-03-17 11:53 ` Ilpo Järvinen 2 siblings, 0 replies; 19+ messages in thread From: Bartosz Golaszewski @ 2026-03-11 14:43 UTC (permalink / raw) To: Antti Laakso Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda, linux-media On Wed, 11 Mar 2026 14:19:08 +0100, Antti Laakso <antti.laakso@linux.intel.com> said: > The tps68470 supports i2c daisy chain, which need to be configured by > gpio-tps68470 driver. Add daisy chain information to software node. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > --- > drivers/platform/x86/intel/int3472/tps68470.c | 1 + > drivers/platform/x86/intel/int3472/tps68470.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c > index a496075c0d2a..a77ed32abe55 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.c > +++ b/drivers/platform/x86/intel/int3472/tps68470.c > @@ -197,6 +197,7 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client) > cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata; > cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data); > cells[2].name = "tps68470-gpio"; > + cells[2].swnode = board_data->tps68470_gpio_swnode; > > for (i = 0; i < board_data->n_gpiod_lookups; i++) > gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]); > diff --git a/drivers/platform/x86/intel/int3472/tps68470.h b/drivers/platform/x86/intel/int3472/tps68470.h > index 35915e701593..3bbaade96c57 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.h > +++ b/drivers/platform/x86/intel/int3472/tps68470.h > @@ -17,6 +17,7 @@ struct tps68470_regulator_platform_data; > struct int3472_tps68470_board_data { > const char *dev_name; > const struct tps68470_regulator_platform_data *tps68470_regulator_pdata; > + const struct software_node *tps68470_gpio_swnode; > unsigned int n_gpiod_lookups; > struct gpiod_lookup_table *tps68470_gpio_lookup_tables[]; > }; > -- > 2.53.0 > > Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 3/5] platform: int3472: Add gpio software node 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:43 ` Bartosz Golaszewski @ 2026-03-17 11:53 ` Ilpo Järvinen 2 siblings, 0 replies; 19+ messages in thread From: Ilpo Järvinen @ 2026-03-17 11:53 UTC (permalink / raw) To: Antti Laakso Cc: linux-media, linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, Hans de Goede, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda [-- Attachment #1: Type: text/plain, Size: 1918 bytes --] On Wed, 11 Mar 2026, Antti Laakso wrote: > The tps68470 supports i2c daisy chain, which need to be configured by > gpio-tps68470 driver. Add daisy chain information to software node. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > --- > drivers/platform/x86/intel/int3472/tps68470.c | 1 + > drivers/platform/x86/intel/int3472/tps68470.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c > index a496075c0d2a..a77ed32abe55 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.c > +++ b/drivers/platform/x86/intel/int3472/tps68470.c > @@ -197,6 +197,7 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client) > cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata; > cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data); > cells[2].name = "tps68470-gpio"; > + cells[2].swnode = board_data->tps68470_gpio_swnode; > > for (i = 0; i < board_data->n_gpiod_lookups; i++) > gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]); > diff --git a/drivers/platform/x86/intel/int3472/tps68470.h b/drivers/platform/x86/intel/int3472/tps68470.h > index 35915e701593..3bbaade96c57 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470.h > +++ b/drivers/platform/x86/intel/int3472/tps68470.h > @@ -17,6 +17,7 @@ struct tps68470_regulator_platform_data; > struct int3472_tps68470_board_data { > const char *dev_name; > const struct tps68470_regulator_platform_data *tps68470_regulator_pdata; > + const struct software_node *tps68470_gpio_swnode; > unsigned int n_gpiod_lookups; > struct gpiod_lookup_table *tps68470_gpio_lookup_tables[]; > }; > Acked-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -- i. ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso ` (2 preceding siblings ...) 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso @ 2026-03-11 13:19 ` Antti Laakso 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:42 ` Bartosz Golaszewski 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso 4 siblings, 2 replies; 19+ messages in thread From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw) To: linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda The tps68470 daisy chain make use of gpio 1 and 2. When in use, these gpios must be configured as inputs without pull-up. Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> --- drivers/gpio/gpio-tps68470.c | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/drivers/gpio/gpio-tps68470.c b/drivers/gpio/gpio-tps68470.c index d4fbdf90e190..8541acecfbbe 100644 --- a/drivers/gpio/gpio-tps68470.c +++ b/drivers/gpio/gpio-tps68470.c @@ -120,6 +120,17 @@ static int tps68470_gpio_input(struct gpio_chip *gc, unsigned int offset) TPS68470_GPIO_MODE_MASK, 0x00); } +static int tps68470_enable_i2c_daisy_chain(struct gpio_chip *gc) +{ + int ret; + + ret = tps68470_gpio_input(gc, 1); + if (ret) + return ret; + + return tps68470_gpio_input(gc, 2); +} + static const char *tps68470_names[TPS68470_N_GPIO] = { "gpio.0", "gpio.1", "gpio.2", "gpio.3", "gpio.4", "gpio.5", "gpio.6", @@ -129,6 +140,7 @@ static const char *tps68470_names[TPS68470_N_GPIO] = { static int tps68470_gpio_probe(struct platform_device *pdev) { struct tps68470_gpio_data *tps68470_gpio; + int ret; tps68470_gpio = devm_kzalloc(&pdev->dev, sizeof(*tps68470_gpio), GFP_KERNEL); @@ -149,7 +161,14 @@ static int tps68470_gpio_probe(struct platform_device *pdev) tps68470_gpio->gc.base = -1; tps68470_gpio->gc.parent = &pdev->dev; - return devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc, tps68470_gpio); + ret = devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc, tps68470_gpio); + if (ret) + return ret; + + if (device_property_present(&pdev->dev, "daisy-chain-enable")) + ret = tps68470_enable_i2c_daisy_chain(&tps68470_gpio->gc); + + return ret; } static struct platform_driver tps68470_gpio_driver = { -- 2.53.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support 2026-03-11 13:19 ` [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support Antti Laakso @ 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:42 ` Bartosz Golaszewski 1 sibling, 0 replies; 19+ messages in thread From: Hans de Goede @ 2026-03-11 14:33 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi, On 11-Mar-26 14:19, Antti Laakso wrote: > The tps68470 daisy chain make use of gpio 1 and 2. When in use, these > gpios must be configured as inputs without pull-up. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Thanks, patch looks good to me: Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Regards, Hans > --- > drivers/gpio/gpio-tps68470.c | 21 ++++++++++++++++++++- > 1 file changed, 20 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpio/gpio-tps68470.c b/drivers/gpio/gpio-tps68470.c > index d4fbdf90e190..8541acecfbbe 100644 > --- a/drivers/gpio/gpio-tps68470.c > +++ b/drivers/gpio/gpio-tps68470.c > @@ -120,6 +120,17 @@ static int tps68470_gpio_input(struct gpio_chip *gc, unsigned int offset) > TPS68470_GPIO_MODE_MASK, 0x00); > } > > +static int tps68470_enable_i2c_daisy_chain(struct gpio_chip *gc) > +{ > + int ret; > + > + ret = tps68470_gpio_input(gc, 1); > + if (ret) > + return ret; > + > + return tps68470_gpio_input(gc, 2); > +} > + > static const char *tps68470_names[TPS68470_N_GPIO] = { > "gpio.0", "gpio.1", "gpio.2", "gpio.3", > "gpio.4", "gpio.5", "gpio.6", > @@ -129,6 +140,7 @@ static const char *tps68470_names[TPS68470_N_GPIO] = { > static int tps68470_gpio_probe(struct platform_device *pdev) > { > struct tps68470_gpio_data *tps68470_gpio; > + int ret; > > tps68470_gpio = devm_kzalloc(&pdev->dev, sizeof(*tps68470_gpio), > GFP_KERNEL); > @@ -149,7 +161,14 @@ static int tps68470_gpio_probe(struct platform_device *pdev) > tps68470_gpio->gc.base = -1; > tps68470_gpio->gc.parent = &pdev->dev; > > - return devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc, tps68470_gpio); > + ret = devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc, tps68470_gpio); > + if (ret) > + return ret; > + > + if (device_property_present(&pdev->dev, "daisy-chain-enable")) > + ret = tps68470_enable_i2c_daisy_chain(&tps68470_gpio->gc); > + > + return ret; > } > > static struct platform_driver tps68470_gpio_driver = { ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support 2026-03-11 13:19 ` [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support Antti Laakso 2026-03-11 14:33 ` Hans de Goede @ 2026-03-11 14:42 ` Bartosz Golaszewski 1 sibling, 0 replies; 19+ messages in thread From: Bartosz Golaszewski @ 2026-03-11 14:42 UTC (permalink / raw) To: Antti Laakso Cc: linux-media, linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda On Wed, 11 Mar 2026 14:19:09 +0100, Antti Laakso <antti.laakso@linux.intel.com> said: > The tps68470 daisy chain make use of gpio 1 and 2. When in use, these > gpios must be configured as inputs without pull-up. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > --- Acked-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso ` (3 preceding siblings ...) 2026-03-11 13:19 ` [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support Antti Laakso @ 2026-03-11 13:19 ` Antti Laakso 2026-03-11 14:35 ` Hans de Goede ` (3 more replies) 4 siblings, 4 replies; 19+ messages in thread From: Antti Laakso @ 2026-03-11 13:19 UTC (permalink / raw) To: linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Define regulators and gpio for ov5675 in MSI Prestige 14 AI EVO+ laptop. Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> --- .../x86/intel/int3472/tps68470_board_data.c | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/drivers/platform/x86/intel/int3472/tps68470_board_data.c b/drivers/platform/x86/intel/int3472/tps68470_board_data.c index 71357a036292..6892d6e98072 100644 --- a/drivers/platform/x86/intel/int3472/tps68470_board_data.c +++ b/drivers/platform/x86/intel/int3472/tps68470_board_data.c @@ -12,6 +12,7 @@ #include <linux/dmi.h> #include <linux/gpio/machine.h> #include <linux/platform_data/tps68470.h> +#include <linux/property.h> #include <linux/regulator/machine.h> #include "tps68470.h" @@ -232,6 +233,72 @@ static const struct tps68470_regulator_platform_data dell_7212_tps68470_pdata = }, }; +/* Settings for MSI Prestige 14 AI+ Evo C2VMG laptop. */ +static struct regulator_consumer_supply ovti5675_avdd_consumer_supplies[] = { + REGULATOR_SUPPLY("avdd", "i2c-OVTI5675:00"), +}; + +static struct regulator_consumer_supply ovti5675_dovdd_consumer_supplies[] = { + REGULATOR_SUPPLY("dovdd", "i2c-OVTI5675:00"), +}; + +static struct regulator_consumer_supply ovti5675_dvdd_consumer_supplies[] = { + REGULATOR_SUPPLY("dvdd", "i2c-OVTI5675:00"), +}; + +static const struct regulator_init_data msi_p14_ai_evo_tps68470_core_reg_init_data = { + .constraints = { + .min_uV = 1200000, + .max_uV = 1200000, + .apply_uV = 1, + .valid_ops_mask = REGULATOR_CHANGE_STATUS, + }, + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dvdd_consumer_supplies), + .consumer_supplies = ovti5675_dvdd_consumer_supplies, +}; + +static const struct regulator_init_data msi_p14_ai_evo_tps68470_ana_reg_init_data = { + .constraints = { + .min_uV = 2815200, + .max_uV = 2815200, + .apply_uV = 1, + .valid_ops_mask = REGULATOR_CHANGE_STATUS, + }, + .num_consumer_supplies = ARRAY_SIZE(ovti5675_avdd_consumer_supplies), + .consumer_supplies = ovti5675_avdd_consumer_supplies, +}; + +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vio_reg_init_data = { + .constraints = { + .min_uV = 1800600, + .max_uV = 1800600, + .apply_uV = 1, + .valid_ops_mask = REGULATOR_CHANGE_STATUS, + }, + .num_consumer_supplies = 0, + .consumer_supplies = NULL, +}; + +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vsio_reg_init_data = { + .constraints = { + .min_uV = 1800600, + .max_uV = 1800600, + .apply_uV = 1, + .valid_ops_mask = REGULATOR_CHANGE_STATUS, + }, + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dovdd_consumer_supplies), + .consumer_supplies = ovti5675_dovdd_consumer_supplies, +}; + +static const struct tps68470_regulator_platform_data msi_p14_ai_evo_tps68470_pdata = { + .reg_init_data = { + [TPS68470_CORE] = &msi_p14_ai_evo_tps68470_core_reg_init_data, + [TPS68470_ANA] = &msi_p14_ai_evo_tps68470_ana_reg_init_data, + [TPS68470_VIO] = &msi_p14_ai_evo_tps68470_vio_reg_init_data, + [TPS68470_VSIO] = &msi_p14_ai_evo_tps68470_vsio_reg_init_data, + }, +}; + static struct gpiod_lookup_table surface_go_int347a_gpios = { .dev_id = "i2c-INT347A:00", .table = { @@ -258,6 +325,23 @@ static struct gpiod_lookup_table dell_7212_int3479_gpios = { } }; +static struct gpiod_lookup_table msi_p14_ai_evo_ovti5675_gpios = { + .dev_id = "i2c-OVTI5675:00", + .table = { + GPIO_LOOKUP("tps68470-gpio", 9, "reset", GPIO_ACTIVE_LOW), + { } + } +}; + +static const struct property_entry msi_p14_ai_evo_gpio_props[] = { + PROPERTY_ENTRY_BOOL("daisy-chain-enable"), + { } +}; + +static const struct software_node msi_p14_ai_evo_tps68470_gpio_swnode = { + .properties = msi_p14_ai_evo_gpio_props, +}; + static const struct int3472_tps68470_board_data surface_go_tps68470_board_data = { .dev_name = "i2c-INT3472:05", .tps68470_regulator_pdata = &surface_go_tps68470_pdata, @@ -287,6 +371,16 @@ static const struct int3472_tps68470_board_data dell_7212_tps68470_board_data = }, }; +static const struct int3472_tps68470_board_data msi_p14_ai_evo_tps68470_board_data = { + .dev_name = "i2c-INT3472:06", + .tps68470_regulator_pdata = &msi_p14_ai_evo_tps68470_pdata, + .tps68470_gpio_swnode = &msi_p14_ai_evo_tps68470_gpio_swnode, + .n_gpiod_lookups = 1, + .tps68470_gpio_lookup_tables = { + &msi_p14_ai_evo_ovti5675_gpios, + }, +}; + static const struct dmi_system_id int3472_tps68470_board_data_table[] = { { .matches = { @@ -316,6 +410,13 @@ static const struct dmi_system_id int3472_tps68470_board_data_table[] = { }, .driver_data = (void *)&dell_7212_tps68470_board_data, }, + { + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Prestige 14 AI+ Evo C2VMG"), + }, + .driver_data = (void *)&msi_p14_ai_evo_tps68470_board_data, + }, { } }; -- 2.53.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso @ 2026-03-11 14:35 ` Hans de Goede 2026-03-12 21:00 ` Sakari Ailus 2026-03-11 14:43 ` Bartosz Golaszewski ` (2 subsequent siblings) 3 siblings, 1 reply; 19+ messages in thread From: Hans de Goede @ 2026-03-11 14:35 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi, On 11-Mar-26 14:19, Antti Laakso wrote: > Define regulators and gpio for ov5675 in MSI Prestige 14 AI EVO+ laptop. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > --- > .../x86/intel/int3472/tps68470_board_data.c | 101 ++++++++++++++++++ > 1 file changed, 101 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470_board_data.c b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > index 71357a036292..6892d6e98072 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470_board_data.c > +++ b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > @@ -12,6 +12,7 @@ > #include <linux/dmi.h> > #include <linux/gpio/machine.h> > #include <linux/platform_data/tps68470.h> > +#include <linux/property.h> > #include <linux/regulator/machine.h> > #include "tps68470.h" > > @@ -232,6 +233,72 @@ static const struct tps68470_regulator_platform_data dell_7212_tps68470_pdata = > }, > }; > > +/* Settings for MSI Prestige 14 AI+ Evo C2VMG laptop. */ > +static struct regulator_consumer_supply ovti5675_avdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("avdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dovdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dovdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dvdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dvdd", "i2c-OVTI5675:00"), > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_core_reg_init_data = { > + .constraints = { > + .min_uV = 1200000, > + .max_uV = 1200000, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dvdd_consumer_supplies), > + .consumer_supplies = ovti5675_dvdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_ana_reg_init_data = { > + .constraints = { > + .min_uV = 2815200, > + .max_uV = 2815200, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_avdd_consumer_supplies), > + .consumer_supplies = ovti5675_avdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = 0, > + .consumer_supplies = NULL, Nit (no need to fix unless you need to do a v3 for other reasons), these 2 explicit foo = 0 initializers are not necessary and can be dropped. Otherwise this looks good to me: Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Regards, Hans > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vsio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dovdd_consumer_supplies), > + .consumer_supplies = ovti5675_dovdd_consumer_supplies, > +}; > + > +static const struct tps68470_regulator_platform_data msi_p14_ai_evo_tps68470_pdata = { > + .reg_init_data = { > + [TPS68470_CORE] = &msi_p14_ai_evo_tps68470_core_reg_init_data, > + [TPS68470_ANA] = &msi_p14_ai_evo_tps68470_ana_reg_init_data, > + [TPS68470_VIO] = &msi_p14_ai_evo_tps68470_vio_reg_init_data, > + [TPS68470_VSIO] = &msi_p14_ai_evo_tps68470_vsio_reg_init_data, > + }, > +}; > + > static struct gpiod_lookup_table surface_go_int347a_gpios = { > .dev_id = "i2c-INT347A:00", > .table = { > @@ -258,6 +325,23 @@ static struct gpiod_lookup_table dell_7212_int3479_gpios = { > } > }; > > +static struct gpiod_lookup_table msi_p14_ai_evo_ovti5675_gpios = { > + .dev_id = "i2c-OVTI5675:00", > + .table = { > + GPIO_LOOKUP("tps68470-gpio", 9, "reset", GPIO_ACTIVE_LOW), > + { } > + } > +}; > + > +static const struct property_entry msi_p14_ai_evo_gpio_props[] = { > + PROPERTY_ENTRY_BOOL("daisy-chain-enable"), > + { } > +}; > + > +static const struct software_node msi_p14_ai_evo_tps68470_gpio_swnode = { > + .properties = msi_p14_ai_evo_gpio_props, > +}; > + > static const struct int3472_tps68470_board_data surface_go_tps68470_board_data = { > .dev_name = "i2c-INT3472:05", > .tps68470_regulator_pdata = &surface_go_tps68470_pdata, > @@ -287,6 +371,16 @@ static const struct int3472_tps68470_board_data dell_7212_tps68470_board_data = > }, > }; > > +static const struct int3472_tps68470_board_data msi_p14_ai_evo_tps68470_board_data = { > + .dev_name = "i2c-INT3472:06", > + .tps68470_regulator_pdata = &msi_p14_ai_evo_tps68470_pdata, > + .tps68470_gpio_swnode = &msi_p14_ai_evo_tps68470_gpio_swnode, > + .n_gpiod_lookups = 1, > + .tps68470_gpio_lookup_tables = { > + &msi_p14_ai_evo_ovti5675_gpios, > + }, > +}; > + > static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > { > .matches = { > @@ -316,6 +410,13 @@ static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > }, > .driver_data = (void *)&dell_7212_tps68470_board_data, > }, > + { > + .matches = { > + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."), > + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Prestige 14 AI+ Evo C2VMG"), > + }, > + .driver_data = (void *)&msi_p14_ai_evo_tps68470_board_data, > + }, > { } > }; > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 14:35 ` Hans de Goede @ 2026-03-12 21:00 ` Sakari Ailus 0 siblings, 0 replies; 19+ messages in thread From: Sakari Ailus @ 2026-03-12 21:00 UTC (permalink / raw) To: Hans de Goede Cc: Antti Laakso, linux-media, linux-gpio, platform-driver-x86, linusw, brgl, mchehab, dan.scally, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda Hi Hans, others, On Wed, Mar 11, 2026 at 03:35:28PM +0100, Hans de Goede wrote: > > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vio_reg_init_data = { > > + .constraints = { > > + .min_uV = 1800600, > > + .max_uV = 1800600, > > + .apply_uV = 1, > > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > > + }, > > > + .num_consumer_supplies = 0, > > + .consumer_supplies = NULL, > > Nit (no need to fix unless you need to do a v3 for other reasons), > these 2 explicit foo = 0 initializers are not necessary and can > be dropped. I can fix this while applying... > > Otherwise this looks good to me: > > Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> ...assuming everyone is fine with merging these via the media tree. Let me know if there are concerns. Thank you for the reviews. -- Kind regards, Sakari Ailus ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso 2026-03-11 14:35 ` Hans de Goede @ 2026-03-11 14:43 ` Bartosz Golaszewski 2026-03-11 19:27 ` Dan Scally 2026-03-17 11:52 ` Ilpo Järvinen 3 siblings, 0 replies; 19+ messages in thread From: Bartosz Golaszewski @ 2026-03-11 14:43 UTC (permalink / raw) To: Antti Laakso Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda, linux-media On Wed, 11 Mar 2026 14:19:10 +0100, Antti Laakso <antti.laakso@linux.intel.com> said: > Define regulators and gpio for ov5675 in MSI Prestige 14 AI EVO+ laptop. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > --- Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso 2026-03-11 14:35 ` Hans de Goede 2026-03-11 14:43 ` Bartosz Golaszewski @ 2026-03-11 19:27 ` Dan Scally 2026-03-17 11:52 ` Ilpo Järvinen 3 siblings, 0 replies; 19+ messages in thread From: Dan Scally @ 2026-03-11 19:27 UTC (permalink / raw) To: Antti Laakso, linux-media Cc: linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, hansg, ilpo.jarvinen, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda On 11/03/2026 13:19, Antti Laakso wrote: > Define regulators and gpio for ov5675 in MSI Prestige 14 AI EVO+ laptop. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > --- Looks good to me: Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> > .../x86/intel/int3472/tps68470_board_data.c | 101 ++++++++++++++++++ > 1 file changed, 101 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470_board_data.c b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > index 71357a036292..6892d6e98072 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470_board_data.c > +++ b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > @@ -12,6 +12,7 @@ > #include <linux/dmi.h> > #include <linux/gpio/machine.h> > #include <linux/platform_data/tps68470.h> > +#include <linux/property.h> > #include <linux/regulator/machine.h> > #include "tps68470.h" > > @@ -232,6 +233,72 @@ static const struct tps68470_regulator_platform_data dell_7212_tps68470_pdata = > }, > }; > > +/* Settings for MSI Prestige 14 AI+ Evo C2VMG laptop. */ > +static struct regulator_consumer_supply ovti5675_avdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("avdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dovdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dovdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dvdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dvdd", "i2c-OVTI5675:00"), > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_core_reg_init_data = { > + .constraints = { > + .min_uV = 1200000, > + .max_uV = 1200000, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dvdd_consumer_supplies), > + .consumer_supplies = ovti5675_dvdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_ana_reg_init_data = { > + .constraints = { > + .min_uV = 2815200, > + .max_uV = 2815200, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_avdd_consumer_supplies), > + .consumer_supplies = ovti5675_avdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = 0, > + .consumer_supplies = NULL, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vsio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dovdd_consumer_supplies), > + .consumer_supplies = ovti5675_dovdd_consumer_supplies, > +}; > + > +static const struct tps68470_regulator_platform_data msi_p14_ai_evo_tps68470_pdata = { > + .reg_init_data = { > + [TPS68470_CORE] = &msi_p14_ai_evo_tps68470_core_reg_init_data, > + [TPS68470_ANA] = &msi_p14_ai_evo_tps68470_ana_reg_init_data, > + [TPS68470_VIO] = &msi_p14_ai_evo_tps68470_vio_reg_init_data, > + [TPS68470_VSIO] = &msi_p14_ai_evo_tps68470_vsio_reg_init_data, > + }, > +}; > + > static struct gpiod_lookup_table surface_go_int347a_gpios = { > .dev_id = "i2c-INT347A:00", > .table = { > @@ -258,6 +325,23 @@ static struct gpiod_lookup_table dell_7212_int3479_gpios = { > } > }; > > +static struct gpiod_lookup_table msi_p14_ai_evo_ovti5675_gpios = { > + .dev_id = "i2c-OVTI5675:00", > + .table = { > + GPIO_LOOKUP("tps68470-gpio", 9, "reset", GPIO_ACTIVE_LOW), > + { } > + } > +}; > + > +static const struct property_entry msi_p14_ai_evo_gpio_props[] = { > + PROPERTY_ENTRY_BOOL("daisy-chain-enable"), > + { } > +}; > + > +static const struct software_node msi_p14_ai_evo_tps68470_gpio_swnode = { > + .properties = msi_p14_ai_evo_gpio_props, > +}; > + > static const struct int3472_tps68470_board_data surface_go_tps68470_board_data = { > .dev_name = "i2c-INT3472:05", > .tps68470_regulator_pdata = &surface_go_tps68470_pdata, > @@ -287,6 +371,16 @@ static const struct int3472_tps68470_board_data dell_7212_tps68470_board_data = > }, > }; > > +static const struct int3472_tps68470_board_data msi_p14_ai_evo_tps68470_board_data = { > + .dev_name = "i2c-INT3472:06", > + .tps68470_regulator_pdata = &msi_p14_ai_evo_tps68470_pdata, > + .tps68470_gpio_swnode = &msi_p14_ai_evo_tps68470_gpio_swnode, > + .n_gpiod_lookups = 1, > + .tps68470_gpio_lookup_tables = { > + &msi_p14_ai_evo_ovti5675_gpios, > + }, > +}; > + > static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > { > .matches = { > @@ -316,6 +410,13 @@ static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > }, > .driver_data = (void *)&dell_7212_tps68470_board_data, > }, > + { > + .matches = { > + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."), > + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Prestige 14 AI+ Evo C2VMG"), > + }, > + .driver_data = (void *)&msi_p14_ai_evo_tps68470_board_data, > + }, > { } > }; > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 5/5] platform: int3472: Add MSI prestige board data 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso ` (2 preceding siblings ...) 2026-03-11 19:27 ` Dan Scally @ 2026-03-17 11:52 ` Ilpo Järvinen 3 siblings, 0 replies; 19+ messages in thread From: Ilpo Järvinen @ 2026-03-17 11:52 UTC (permalink / raw) To: Antti Laakso Cc: linux-media, linux-gpio, platform-driver-x86, linusw, brgl, sakari.ailus, mchehab, dan.scally, Hans de Goede, hverkuil+cisco, sre, hao.yao, jimmy.su, miguel.vadillo, kees, ribalda [-- Attachment #1: Type: text/plain, Size: 5390 bytes --] On Wed, 11 Mar 2026, Antti Laakso wrote: > Define regulators and gpio for ov5675 in MSI Prestige 14 AI EVO+ laptop. > > Signed-off-by: Antti Laakso <antti.laakso@linux.intel.com> > --- > .../x86/intel/int3472/tps68470_board_data.c | 101 ++++++++++++++++++ > 1 file changed, 101 insertions(+) > > diff --git a/drivers/platform/x86/intel/int3472/tps68470_board_data.c b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > index 71357a036292..6892d6e98072 100644 > --- a/drivers/platform/x86/intel/int3472/tps68470_board_data.c > +++ b/drivers/platform/x86/intel/int3472/tps68470_board_data.c > @@ -12,6 +12,7 @@ > #include <linux/dmi.h> > #include <linux/gpio/machine.h> > #include <linux/platform_data/tps68470.h> > +#include <linux/property.h> > #include <linux/regulator/machine.h> > #include "tps68470.h" > > @@ -232,6 +233,72 @@ static const struct tps68470_regulator_platform_data dell_7212_tps68470_pdata = > }, > }; > > +/* Settings for MSI Prestige 14 AI+ Evo C2VMG laptop. */ > +static struct regulator_consumer_supply ovti5675_avdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("avdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dovdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dovdd", "i2c-OVTI5675:00"), > +}; > + > +static struct regulator_consumer_supply ovti5675_dvdd_consumer_supplies[] = { > + REGULATOR_SUPPLY("dvdd", "i2c-OVTI5675:00"), > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_core_reg_init_data = { > + .constraints = { > + .min_uV = 1200000, > + .max_uV = 1200000, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dvdd_consumer_supplies), > + .consumer_supplies = ovti5675_dvdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_ana_reg_init_data = { > + .constraints = { > + .min_uV = 2815200, > + .max_uV = 2815200, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_avdd_consumer_supplies), > + .consumer_supplies = ovti5675_avdd_consumer_supplies, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = 0, > + .consumer_supplies = NULL, > +}; > + > +static const struct regulator_init_data msi_p14_ai_evo_tps68470_vsio_reg_init_data = { > + .constraints = { > + .min_uV = 1800600, > + .max_uV = 1800600, > + .apply_uV = 1, > + .valid_ops_mask = REGULATOR_CHANGE_STATUS, > + }, > + .num_consumer_supplies = ARRAY_SIZE(ovti5675_dovdd_consumer_supplies), > + .consumer_supplies = ovti5675_dovdd_consumer_supplies, > +}; > + > +static const struct tps68470_regulator_platform_data msi_p14_ai_evo_tps68470_pdata = { > + .reg_init_data = { > + [TPS68470_CORE] = &msi_p14_ai_evo_tps68470_core_reg_init_data, > + [TPS68470_ANA] = &msi_p14_ai_evo_tps68470_ana_reg_init_data, > + [TPS68470_VIO] = &msi_p14_ai_evo_tps68470_vio_reg_init_data, > + [TPS68470_VSIO] = &msi_p14_ai_evo_tps68470_vsio_reg_init_data, > + }, > +}; > + > static struct gpiod_lookup_table surface_go_int347a_gpios = { > .dev_id = "i2c-INT347A:00", > .table = { > @@ -258,6 +325,23 @@ static struct gpiod_lookup_table dell_7212_int3479_gpios = { > } > }; > > +static struct gpiod_lookup_table msi_p14_ai_evo_ovti5675_gpios = { > + .dev_id = "i2c-OVTI5675:00", > + .table = { > + GPIO_LOOKUP("tps68470-gpio", 9, "reset", GPIO_ACTIVE_LOW), > + { } > + } > +}; > + > +static const struct property_entry msi_p14_ai_evo_gpio_props[] = { > + PROPERTY_ENTRY_BOOL("daisy-chain-enable"), > + { } > +}; > + > +static const struct software_node msi_p14_ai_evo_tps68470_gpio_swnode = { > + .properties = msi_p14_ai_evo_gpio_props, > +}; > + > static const struct int3472_tps68470_board_data surface_go_tps68470_board_data = { > .dev_name = "i2c-INT3472:05", > .tps68470_regulator_pdata = &surface_go_tps68470_pdata, > @@ -287,6 +371,16 @@ static const struct int3472_tps68470_board_data dell_7212_tps68470_board_data = > }, > }; > > +static const struct int3472_tps68470_board_data msi_p14_ai_evo_tps68470_board_data = { > + .dev_name = "i2c-INT3472:06", > + .tps68470_regulator_pdata = &msi_p14_ai_evo_tps68470_pdata, > + .tps68470_gpio_swnode = &msi_p14_ai_evo_tps68470_gpio_swnode, > + .n_gpiod_lookups = 1, > + .tps68470_gpio_lookup_tables = { > + &msi_p14_ai_evo_ovti5675_gpios, > + }, > +}; > + > static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > { > .matches = { > @@ -316,6 +410,13 @@ static const struct dmi_system_id int3472_tps68470_board_data_table[] = { > }, > .driver_data = (void *)&dell_7212_tps68470_board_data, > }, > + { > + .matches = { > + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."), > + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Prestige 14 AI+ Evo C2VMG"), > + }, > + .driver_data = (void *)&msi_p14_ai_evo_tps68470_board_data, > + }, > { } > }; > > Acked-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -- i. ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2026-03-17 12:52 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-11 13:19 [PATCH v2 0/5] platform: int3472: Add MSI prestige 14 AI EVO data Antti Laakso 2026-03-11 13:19 ` [PATCH v2 1/5] media: i2c: ov5675: Wait for endpoint Antti Laakso 2026-03-11 14:31 ` Hans de Goede 2026-03-11 19:10 ` Dan Scally 2026-03-11 13:19 ` [PATCH v2 2/5] media: ipu-bridge: Add ov5675 sensor Antti Laakso 2026-03-17 12:52 ` Sakari Ailus 2026-03-11 13:19 ` [PATCH v2 3/5] platform: int3472: Add gpio software node Antti Laakso 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:43 ` Bartosz Golaszewski 2026-03-17 11:53 ` Ilpo Järvinen 2026-03-11 13:19 ` [PATCH v2 4/5] gpio: tps68470: Add i2c daisy chain support Antti Laakso 2026-03-11 14:33 ` Hans de Goede 2026-03-11 14:42 ` Bartosz Golaszewski 2026-03-11 13:19 ` [PATCH v2 5/5] platform: int3472: Add MSI prestige board data Antti Laakso 2026-03-11 14:35 ` Hans de Goede 2026-03-12 21:00 ` Sakari Ailus 2026-03-11 14:43 ` Bartosz Golaszewski 2026-03-11 19:27 ` Dan Scally 2026-03-17 11:52 ` Ilpo Järvinen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox