Re: [PATCH v6 0/3] Apple DWI backlight driver

2025-02-14 Thread Neal Gompa
vers/video/backlight/Makefile | 1 + > drivers/video/backlight/apple_dwi_bl.c| 123 ++ > 5 files changed, 194 insertions(+) > create mode 100644 > Documentation/devicetree/bindings/leds/backlight/apple,dwi-bl.yaml > create mode 100644 drivers/video/backlight/apple_dwi_bl.c > > > base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b > -- > 2.48.1 > > Series LGTM. Reviewed-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: On community influencing (was Re: [PATCH v8 2/2] rust: add dma coherent allocator abstraction.)

2025-02-14 Thread Neal Gompa
On Mon, Feb 10, 2025 at 12:28 PM Mark Brown wrote: > > On Sun, Feb 09, 2025 at 03:25:26AM -0500, Neal Gompa wrote: > > On Friday, February 7, 2025 1:16:11 PM Eastern Standard Time Konstantin > > Ryabitsev wrote: > > > > It is my goal to be able to give subsystems

Re: [PATCH v5 RESEND 0/3] Apple DWI backlight driver

2025-02-09 Thread Neal Gompa
4 > Documentation/devicetree/bindings/leds/backlight/apple,dwi-bl.yaml > create mode 100644 drivers/video/backlight/apple_dwi_bl.c > > > base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b > -- > 2.48.1 > > This series looks good to me. Reviewed-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: [PATCH v6 0/5] Driver for pre-DCP apple display controller.

2025-02-09 Thread Neal Gompa
panel/Kconfig | 9 + > drivers/gpu/drm/panel/Makefile | 1 + > drivers/gpu/drm/panel/panel-summit.c | 132 + > 17 files changed, 1489 insertions(+) > --- > base-commit: b62cef9a5c673f1b8083159f5dc03c1c5daced2f > change-id: 20241124-adpdrm-25fce3dd8a71 > Series LGTM. Reviewed-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: [PATCH v2] drm/simpledrm: Add support for multiple "power-domains"

2023-09-18 Thread Neal Gompa
sdev->dev, "failed to link power-domain > %d\n", i); > + } > + > + return devm_add_action_or_reset(dev, simpledrm_device_detach_genpd, > sdev); > +} > +#else > +static int simpledrm_device_attach_genpd(struct simpledrm_device *sdev) > +{ > + return 0; > +} > +#endif > + > /* > * Modesetting > */ > @@ -651,6 +753,9 @@ static struct simpledrm_device > *simpledrm_device_create(struct drm_driver *drv, > if (ret) > return ERR_PTR(ret); > ret = simpledrm_device_init_regulators(sdev); > + if (ret) > + return ERR_PTR(ret); > + ret = simpledrm_device_attach_genpd(sdev); > if (ret) > return ERR_PTR(ret); > > > --- > base-commit: 15d30b46573d75f5cb58cfacded8ebab9c76a2b0 > change-id: 20230910-simpledrm-multiple-power-domains-f41efa6ad9bc > > Best regards, > -- > Janne Grunau > > Reviewed-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth!

Re: [RFC PATCH] drm/aperture: Add param to disable conflicting framebuffers removal

2021-10-25 Thread Neal Gompa
On Mon, Oct 25, 2021 at 8:28 AM Javier Martinez Canillas wrote: > > Hello Michel, > > On 10/25/21 12:45, Michel Dänzer wrote: > > On 2021-10-24 22:32, Javier Martinez Canillas wrote: > >> Hello Ville, > >> > >> On 10/22/21 21:12, Ville Syrjälä wrote: > >>> On Fri, Oct 22, 2021 at 04:40:40PM +0200,

Re: [RFC PATCH] drm/aperture: Add param to disable conflicting framebuffers removal

2021-10-24 Thread Neal Gompa
On Sun, Oct 24, 2021 at 4:40 PM Javier Martinez Canillas wrote: > > Hello Thomas, > > Thanks a lot for your feedback. > > On 10/22/21 21:05, Thomas Zimmermann wrote: > > > There's still the question of the semantics of this parameter. It's a > > bit fuzzy. > > > > If you use 'disable_handover' (as

Re: [RFC PATCH] drm/aperture: Add param to disable conflicting framebuffers removal

2021-10-22 Thread Neal Gompa
On Fri, Oct 22, 2021 at 11:16 AM Javier Martinez Canillas wrote: > > Hello Neal, > > Thanks for your feedback. > > On 10/22/21 16:56, Neal Gompa wrote: > > On Fri, Oct 22, 2021 at 10:40 AM Javier Martinez Canillas > > wrote: > >> > >> The simpledr

Re: [RFC PATCH] drm/aperture: Add param to disable conflicting framebuffers removal

2021-10-22 Thread Neal Gompa
obe callback, this will cause the drivers' probe to fail. > > Thanks to Neal Gompa for the suggestion and Thomas Zimmermann for the idea > on how this could be implemented. > > Suggested-by: Neal Gompa > Signed-off-by: Javier Martinez Canillas > --- > Hello, > >