* [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked @ 2026-04-25 12:33 Hans de Goede 2026-04-25 12:44 ` Dmitry Baryshkov 2026-04-27 17:12 ` Bjorn Andersson 0 siblings, 2 replies; 8+ messages in thread From: Hans de Goede @ 2026-04-25 12:33 UTC (permalink / raw) To: Bjorn Andersson, Michael Turquette, Stephen Boyd Cc: Hans de Goede, linux-arm-msm, linux-clk, Dmitry Baryshkov Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer to stop functioning. The EFI GOP framebuffer should keep working until the msm display driver loads, to help with boot debugging and to ensure display output when the msm module is not in the initramfs. Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops to keep the EFI GOP working after binding the x1e80100-dispcc driver. Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> --- drivers/clk/qcom/dispcc-x1e80100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/qcom/dispcc-x1e80100.c b/drivers/clk/qcom/dispcc-x1e80100.c index aa7fd43969f9..cd45bedf2649 100644 --- a/drivers/clk/qcom/dispcc-x1e80100.c +++ b/drivers/clk/qcom/dispcc-x1e80100.c @@ -580,7 +580,7 @@ static struct clk_rcg2 disp_cc_mdss_mdp_clk_src = { .parent_data = disp_cc_parent_data_6, .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), .flags = CLK_SET_RATE_PARENT, - .ops = &clk_rcg2_shared_ops, + .ops = &clk_rcg2_shared_no_init_park_ops, }, }; -- 2.54.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-25 12:33 [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Hans de Goede @ 2026-04-25 12:44 ` Dmitry Baryshkov 2026-04-25 16:10 ` Val Packett 2026-04-27 17:12 ` Bjorn Andersson 1 sibling, 1 reply; 8+ messages in thread From: Dmitry Baryshkov @ 2026-04-25 12:44 UTC (permalink / raw) To: Hans de Goede Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk On Sat, 25 Apr 2026 at 15:33, Hans de Goede <johannes.goede@oss.qualcomm.com> wrote: > > Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer > to stop functioning. The EFI GOP framebuffer should keep working until > the msm display driver loads, to help with boot debugging and to ensure > display output when the msm module is not in the initramfs. > > Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops > to keep the EFI GOP working after binding the x1e80100-dispcc driver. > > Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Most likely we need this to be performed for all dispcc drivers. At least for all laptop usecases. -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-25 12:44 ` Dmitry Baryshkov @ 2026-04-25 16:10 ` Val Packett 2026-04-26 18:20 ` Hans de Goede 0 siblings, 1 reply; 8+ messages in thread From: Val Packett @ 2026-04-25 16:10 UTC (permalink / raw) To: Dmitry Baryshkov, Hans de Goede Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk On 4/25/26 9:44 AM, Dmitry Baryshkov wrote: > On Sat, 25 Apr 2026 at 15:33, Hans de Goede > <johannes.goede@oss.qualcomm.com> wrote: >> Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer >> to stop functioning. The EFI GOP framebuffer should keep working until >> the msm display driver loads, to help with boot debugging and to ensure >> display output when the msm module is not in the initramfs. >> >> Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops >> to keep the EFI GOP working after binding the x1e80100-dispcc driver. >> >> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> >> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Thanks for finding this!! > Most likely we need this to be performed for all dispcc drivers. At > least for all laptop usecases. This is relevant for phones (ex-Android) as well actually, though there have been attempts to fix that by adding stuff like clocks = <&gcc GCC_DISP_HF_AXI_CLK>, <&dispcc DISP_CC_MDSS_MDP_CLK>, <&dispcc DISP_CC_MDSS_BYTE0_CLK>, <&dispcc DISP_CC_MDSS_BYTE0_INTF_CLK>, <&dispcc DISP_CC_MDSS_PCLK0_CLK>, <&dispcc DISP_CC_MDSS_VSYNC_CLK>; power-domains = <&dispcc DISP_CC_MDSS_CORE_GDSC>; to the simple-framebuffer node. However there have also been some "random" issues with the handover to mdss drivers (even with the mdss reset) so some postmarketOS kernel builds completely disable the simplefb driver. ~val ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-25 16:10 ` Val Packett @ 2026-04-26 18:20 ` Hans de Goede 2026-04-27 16:00 ` Hans de Goede 0 siblings, 1 reply; 8+ messages in thread From: Hans de Goede @ 2026-04-26 18:20 UTC (permalink / raw) To: Val Packett, Dmitry Baryshkov Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk Hi Val, On 25-Apr-26 18:10, Val Packett wrote: > > On 4/25/26 9:44 AM, Dmitry Baryshkov wrote: >> On Sat, 25 Apr 2026 at 15:33, Hans de Goede >> <johannes.goede@oss.qualcomm.com> wrote: >>> Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer >>> to stop functioning. The EFI GOP framebuffer should keep working until >>> the msm display driver loads, to help with boot debugging and to ensure >>> display output when the msm module is not in the initramfs. >>> >>> Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops >>> to keep the EFI GOP working after binding the x1e80100-dispcc driver. >>> >>> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> >>> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> > Thanks for finding this!! >> Most likely we need this to be performed for all dispcc drivers. At >> least for all laptop usecases. > > This is relevant for phones (ex-Android) as well actually, though there have been attempts to fix that by adding stuff like > > clocks = <&gcc GCC_DISP_HF_AXI_CLK>, > <&dispcc DISP_CC_MDSS_MDP_CLK>, > <&dispcc DISP_CC_MDSS_BYTE0_CLK>, > <&dispcc DISP_CC_MDSS_BYTE0_INTF_CLK>, > <&dispcc DISP_CC_MDSS_PCLK0_CLK>, > <&dispcc DISP_CC_MDSS_VSYNC_CLK>; > power-domains = <&dispcc DISP_CC_MDSS_CORE_GDSC>; > > to the simple-framebuffer node. However there have also been some "random" issues with the handover to mdss drivers (even with the mdss reset) so some postmarketOS kernel builds completely disable the simplefb driver. Interesting. Note that just adding the clocks does not fully fix the parking issue. The clock gets parked as soon as the dispcc-x1e80100 driver binds and the simpledrm driver binds later, so the clock will still get parked for at least a while, leading at best to a display glitch and as worse to the hw being in a confused state. We do still need these clocks to have a chance for things to work without needing clk_ignore_unused. I've been having quite a bit of trouble with getting a simple-framebuffer with similar clocks listed to work on a Snapdragon X1E78100 based ThinkPad T14s too work. The problem is that every other boot or so once the msm driver loads the display goes black with the following errors: [ 2.980181] disp_cc_mdss_dptx3_pixel0_clk_src: rcg didn't update its configuration. [ 2.980272] WARNING: drivers/clk/qcom/clk-rcg2.c:136 at update_config+0xdc/0x100, CPU#8: kworker/8:1/138 I've tried putting a delay between the simpledrm driver turning off the clocks and the msm driver loading but that does not help. My conclusion is that the current simple-framebuffer resource handling code concept/design is broken. The intention of listing the resources in the simple-framebuffer DT node is to avoid them getting turned off, IOW leave them untouched. The turning them on at bind time of the driver is a no-op since all of them are already on and we also don't need to worry about power-sequencing because of the resources already being on. But on unbind of the simpledrm driver / removal of the sysfb platform-device we actually do start touching resources and turning them off causing these problems (and not knowing anything about the correct power-off sequence). So as said I believe the current design is broken, on unbind any usage counters like struct clk_core enable and prepare count should be decremented to allow the e.g. clk to turn off later; but at this point in time the hw-state should not be touched, so that the actual display driver inherits the hw in the exact state as setup by the firmware/bootloader. A first approach to stop simpledrm from turning off the clocks just before the msm driver loads is here: https://github.com/jwrdegoede/linux-sunxi/commits/efifb-simplefb-resources-wip and then specifically the last 2 commits, which switch to setting the CLK_IGNORE_UNUSED flag on the clocks instead of doing clk_prepare_enable() on probe() followed by a problematic clk_disable_unprepare() on remove() This works for my case and likely for more Qualcomm hw, but as the Self NACK in the commit messages explains: This will not work some other device/driver uses a clock with the same parent and then runtime-suspends. Because we don't increment the enable account, so the parent will then get disabled on the runtime-suspend of the other consumer. Instead I'm thinking about adding a clk_decrement_disable_unprepare_count() function which goes through all the normal clk_disable_unprepare() motions except for actually calling the clock-driver's disable() and unprepare() callbacks (for both the clock itself and its parents). I'll probably give that a shot tomorrow. Or since just setting CLK_IGNORE_UNUSED works for qcom (no shared parents, or at least none with runtime suspending other consumers?), just patch dispcc-x1e80100.c Regards, Hans ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-26 18:20 ` Hans de Goede @ 2026-04-27 16:00 ` Hans de Goede 0 siblings, 0 replies; 8+ messages in thread From: Hans de Goede @ 2026-04-27 16:00 UTC (permalink / raw) To: Val Packett, Dmitry Baryshkov Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk Hi, On 26-Apr-26 20:20, Hans de Goede wrote: > Hi Val, > > On 25-Apr-26 18:10, Val Packett wrote: >> >> On 4/25/26 9:44 AM, Dmitry Baryshkov wrote: >>> On Sat, 25 Apr 2026 at 15:33, Hans de Goede >>> <johannes.goede@oss.qualcomm.com> wrote: >>>> Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer >>>> to stop functioning. The EFI GOP framebuffer should keep working until >>>> the msm display driver loads, to help with boot debugging and to ensure >>>> display output when the msm module is not in the initramfs. >>>> >>>> Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops >>>> to keep the EFI GOP working after binding the x1e80100-dispcc driver. >>>> >>>> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> >>>> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> >> Thanks for finding this!! >>> Most likely we need this to be performed for all dispcc drivers. At >>> least for all laptop usecases. >> >> This is relevant for phones (ex-Android) as well actually, though there have been attempts to fix that by adding stuff like >> >> clocks = <&gcc GCC_DISP_HF_AXI_CLK>, >> <&dispcc DISP_CC_MDSS_MDP_CLK>, >> <&dispcc DISP_CC_MDSS_BYTE0_CLK>, >> <&dispcc DISP_CC_MDSS_BYTE0_INTF_CLK>, >> <&dispcc DISP_CC_MDSS_PCLK0_CLK>, >> <&dispcc DISP_CC_MDSS_VSYNC_CLK>; >> power-domains = <&dispcc DISP_CC_MDSS_CORE_GDSC>; >> >> to the simple-framebuffer node. However there have also been some "random" issues with the handover to mdss drivers (even with the mdss reset) so some postmarketOS kernel builds completely disable the simplefb driver. > > Interesting. Note that just adding the clocks does not fully fix > the parking issue. The clock gets parked as soon as the dispcc-x1e80100 > driver binds and the simpledrm driver binds later, so the clock will > still get parked for at least a while, leading at best to a display > glitch and as worse to the hw being in a confused state. > > We do still need these clocks to have a chance for things to work > without needing clk_ignore_unused. > > I've been having quite a bit of trouble with getting a > simple-framebuffer with similar clocks listed to work on a Snapdragon > X1E78100 based ThinkPad T14s too work. > > The problem is that every other boot or so once the msm driver > loads the display goes black with the following errors: > > [ 2.980181] disp_cc_mdss_dptx3_pixel0_clk_src: rcg didn't update its configuration. > [ 2.980272] WARNING: drivers/clk/qcom/clk-rcg2.c:136 at update_config+0xdc/0x100, CPU#8: kworker/8:1/138 > > I've tried putting a delay between the simpledrm driver turning > off the clocks and the msm driver loading but that does not help. > > My conclusion is that the current simple-framebuffer resource > handling code concept/design is broken. The intention of listing the > resources in the simple-framebuffer DT node is to avoid them getting > turned off, IOW leave them untouched. > > The turning them on at bind time of the driver is a no-op since all > of them are already on and we also don't need to worry about > power-sequencing because of the resources already being on. > > But on unbind of the simpledrm driver / removal of the sysfb > platform-device we actually do start touching resources and > turning them off causing these problems (and not knowing > anything about the correct power-off sequence). > > So as said I believe the current design is broken, on unbind any > usage counters like struct clk_core enable and prepare count > should be decremented to allow the e.g. clk to turn off later; > but at this point in time the hw-state should not be touched, > so that the actual display driver inherits the hw in the exact > state as setup by the firmware/bootloader. > > A first approach to stop simpledrm from turning off the clocks > just before the msm driver loads is here: > > https://github.com/jwrdegoede/linux-sunxi/commits/efifb-simplefb-resources-wip > > and then specifically the last 2 commits, which switch > to setting the CLK_IGNORE_UNUSED flag on the clocks > instead of doing clk_prepare_enable() on probe() followed > by a problematic clk_disable_unprepare() on remove() > > This works for my case and likely for more Qualcomm hw, but > as the Self NACK in the commit messages explains: > > This will not work some other device/driver uses a clock with > the same parent and then runtime-suspends. > > Because we don't increment the enable account, so the parent > will then get disabled on the runtime-suspend of the other > consumer. > > Instead I'm thinking about adding a clk_decrement_disable_unprepare_count() > function which goes through all the normal clk_disable_unprepare() motions > except for actually calling the clock-driver's disable() and unprepare() > callbacks (for both the clock itself and its parents). > > I'll probably give that a shot tomorrow. I've implemented this solution now and this seems to work nicely, see: https://github.com/jwrdegoede/linux-sunxi/commits/efifb-simplefb-resources-wip-v2 Regards, Hans ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-25 12:33 [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Hans de Goede 2026-04-25 12:44 ` Dmitry Baryshkov @ 2026-04-27 17:12 ` Bjorn Andersson 2026-04-28 8:39 ` Hans de Goede 1 sibling, 1 reply; 8+ messages in thread From: Bjorn Andersson @ 2026-04-27 17:12 UTC (permalink / raw) To: Hans de Goede Cc: Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk, Dmitry Baryshkov On Sat, Apr 25, 2026 at 02:33:51PM +0200, Hans de Goede wrote: > Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer > to stop functioning. The EFI GOP framebuffer should keep working until > the msm display driver loads, to help with boot debugging and to ensure > display output when the msm module is not in the initramfs. > > Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops > to keep the EFI GOP working after binding the x1e80100-dispcc driver. > Wonderful, thank you! > Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Could we attribute this to one of the commits that changed the parking behavior and get a Fixes: here, so that we could pick it for -rc? Regards, Bjorn > --- > drivers/clk/qcom/dispcc-x1e80100.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/clk/qcom/dispcc-x1e80100.c b/drivers/clk/qcom/dispcc-x1e80100.c > index aa7fd43969f9..cd45bedf2649 100644 > --- a/drivers/clk/qcom/dispcc-x1e80100.c > +++ b/drivers/clk/qcom/dispcc-x1e80100.c > @@ -580,7 +580,7 @@ static struct clk_rcg2 disp_cc_mdss_mdp_clk_src = { > .parent_data = disp_cc_parent_data_6, > .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), > .flags = CLK_SET_RATE_PARENT, > - .ops = &clk_rcg2_shared_ops, > + .ops = &clk_rcg2_shared_no_init_park_ops, > }, > }; > > -- > 2.54.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-27 17:12 ` Bjorn Andersson @ 2026-04-28 8:39 ` Hans de Goede 2026-04-28 11:37 ` Dmitry Baryshkov 0 siblings, 1 reply; 8+ messages in thread From: Hans de Goede @ 2026-04-28 8:39 UTC (permalink / raw) To: Bjorn Andersson Cc: Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk, Dmitry Baryshkov Hi, On 27-Apr-26 19:12, Bjorn Andersson wrote: > On Sat, Apr 25, 2026 at 02:33:51PM +0200, Hans de Goede wrote: >> Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer >> to stop functioning. The EFI GOP framebuffer should keep working until >> the msm display driver loads, to help with boot debugging and to ensure >> display output when the msm module is not in the initramfs. >> >> Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops >> to keep the EFI GOP working after binding the x1e80100-dispcc driver. >> > > Wonderful, thank you! > >> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> >> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> > > Could we attribute this to one of the commits that changed the parking > behavior and get a Fixes: here, so that we could pick it for -rc? Ok, looking at the clk-rcg2.c git log I think that should be: Fixes: 01a0a6cc8cfd ("clk: qcom: Park shared RCGs upon registration") Please let me know if you want a v2 with that tag added instead of having the tag separately in thread here. Regards, Hans >> --- >> drivers/clk/qcom/dispcc-x1e80100.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/clk/qcom/dispcc-x1e80100.c b/drivers/clk/qcom/dispcc-x1e80100.c >> index aa7fd43969f9..cd45bedf2649 100644 >> --- a/drivers/clk/qcom/dispcc-x1e80100.c >> +++ b/drivers/clk/qcom/dispcc-x1e80100.c >> @@ -580,7 +580,7 @@ static struct clk_rcg2 disp_cc_mdss_mdp_clk_src = { >> .parent_data = disp_cc_parent_data_6, >> .num_parents = ARRAY_SIZE(disp_cc_parent_data_6), >> .flags = CLK_SET_RATE_PARENT, >> - .ops = &clk_rcg2_shared_ops, >> + .ops = &clk_rcg2_shared_no_init_park_ops, >> }, >> }; >> >> -- >> 2.54.0 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked 2026-04-28 8:39 ` Hans de Goede @ 2026-04-28 11:37 ` Dmitry Baryshkov 0 siblings, 0 replies; 8+ messages in thread From: Dmitry Baryshkov @ 2026-04-28 11:37 UTC (permalink / raw) To: Hans de Goede Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, linux-arm-msm, linux-clk On Tue, Apr 28, 2026 at 10:39:24AM +0200, Hans de Goede wrote: > Hi, > > On 27-Apr-26 19:12, Bjorn Andersson wrote: > > On Sat, Apr 25, 2026 at 02:33:51PM +0200, Hans de Goede wrote: > >> Parking disp_cc_mdss_mdp_clk_src at 19.2MHz causing the EFI GOP framebuffer > >> to stop functioning. The EFI GOP framebuffer should keep working until > >> the msm display driver loads, to help with boot debugging and to ensure > >> display output when the msm module is not in the initramfs. > >> > >> Switch disp_cc_mdss_mdp_clk_src over to clk_rcg2_shared_no_init_park_ops > >> to keep the EFI GOP working after binding the x1e80100-dispcc driver. > >> > > > > Wonderful, thank you! > > > >> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > >> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com> > > > > Could we attribute this to one of the commits that changed the parking > > behavior and get a Fixes: here, so that we could pick it for -rc? > > Ok, looking at the clk-rcg2.c git log I think that should be: > > Fixes: 01a0a6cc8cfd ("clk: qcom: Park shared RCGs upon registration") > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > Please let me know if you want a v2 with that tag added instead > of having the tag separately in thread here. Usually patchwork and b4 will pick the Fixes tags from the replies -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-04-28 11:37 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-25 12:33 [PATCH] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Hans de Goede 2026-04-25 12:44 ` Dmitry Baryshkov 2026-04-25 16:10 ` Val Packett 2026-04-26 18:20 ` Hans de Goede 2026-04-27 16:00 ` Hans de Goede 2026-04-27 17:12 ` Bjorn Andersson 2026-04-28 8:39 ` Hans de Goede 2026-04-28 11:37 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox