Re: [PATCH 04/86] drm: Add client-agnostic setup helper

2024-08-20 Thread Thomas Zimmermann
Hi Am 20.08.24 um 09:40 schrieb Laurent Pinchart: The color format is really a user interface. I'd rather like to remove it from the implementation where possible. Do you mean the color mode ? If so I agree. Yeah, the "color mode". This number with inconsistent semantics. Best regards Thomas

Re: [PATCH 04/86] drm: Add client-agnostic setup helper

2024-08-20 Thread Laurent Pinchart
Hi Thomas, On Tue, Aug 20, 2024 at 09:22:36AM +0200, Thomas Zimmermann wrote: > Am 18.08.24 um 22:07 schrieb Laurent Pinchart: > > On Fri, Aug 16, 2024 at 02:22:30PM +0200, Thomas Zimmermann wrote: > >> DRM may support multiple in-kernel clients that run as soon as a DRM > >> driver has been regis

Re: [PATCH 04/86] drm: Add client-agnostic setup helper

2024-08-20 Thread Thomas Zimmermann
Hi Am 18.08.24 um 22:07 schrieb Laurent Pinchart: Hi Thomas, Thank you for the patch. On Fri, Aug 16, 2024 at 02:22:30PM +0200, Thomas Zimmermann wrote: DRM may support multiple in-kernel clients that run as soon as a DRM driver has been registered. To select the client(s) in a single place,

Re: [PATCH 04/86] drm: Add client-agnostic setup helper

2024-08-18 Thread Laurent Pinchart
Hi Thomas, Thank you for the patch. On Fri, Aug 16, 2024 at 02:22:30PM +0200, Thomas Zimmermann wrote: > DRM may support multiple in-kernel clients that run as soon as a DRM > driver has been registered. To select the client(s) in a single place, > introduce drm_client_setup(). > > Drivers that

[PATCH 04/86] drm: Add client-agnostic setup helper

2024-08-16 Thread Thomas Zimmermann
DRM may support multiple in-kernel clients that run as soon as a DRM driver has been registered. To select the client(s) in a single place, introduce drm_client_setup(). Drivers that call the new helper automatically instantiate the kernel's configured default clients. Only fbdev emulation is curr