Re: [RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-06-11 Thread Rob Herring
On Sat, Jun 8, 2024 at 11:16 PM Asahi Lina wrote: > > > > On 5/22/24 6:23 AM, Rob Herring wrote: > > On Mon, May 20, 2024 at 07:20:50PM +0200, Danilo Krummrich wrote: > >> From: Asahi Lina > >> > >> Add abstractions for DRM drivers and devices. These go together in one > >> commit since both are

Re: [RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-06-09 Thread Danilo Krummrich
Hi Lina, Welcome back! On Sun, Jun 09, 2024 at 02:15:57PM +0900, Asahi Lina wrote: > > > On 5/22/24 6:23 AM, Rob Herring wrote: > > On Mon, May 20, 2024 at 07:20:50PM +0200, Danilo Krummrich wrote: > >> From: Asahi Lina > > This is missing an entry for DRIVER_GEM_GPUVA. And some others perhaps

Re: [RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-06-08 Thread Asahi Lina
On 5/22/24 6:23 AM, Rob Herring wrote: > On Mon, May 20, 2024 at 07:20:50PM +0200, Danilo Krummrich wrote: >> From: Asahi Lina >> >> Add abstractions for DRM drivers and devices. These go together in one >> commit since both are fairly tightly coupled types. >> >> A few things have been stubbed

Re: [RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-05-27 Thread Danilo Krummrich
On Tue, May 21, 2024 at 04:23:33PM -0500, Rob Herring wrote: > On Mon, May 20, 2024 at 07:20:50PM +0200, Danilo Krummrich wrote: > > From: Asahi Lina > > > > Add abstractions for DRM drivers and devices. These go together in one > > commit since both are fairly tightly coupled types. > > > > A f

Re: [RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-05-21 Thread Rob Herring
On Mon, May 20, 2024 at 07:20:50PM +0200, Danilo Krummrich wrote: > From: Asahi Lina > > Add abstractions for DRM drivers and devices. These go together in one > commit since both are fairly tightly coupled types. > > A few things have been stubbed out, to be implemented as further bits of > the

[RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions

2024-05-20 Thread Danilo Krummrich
From: Asahi Lina Add abstractions for DRM drivers and devices. These go together in one commit since both are fairly tightly coupled types. A few things have been stubbed out, to be implemented as further bits of the DRM subsystem are introduced. Signed-off-by: Asahi Lina Co-developed-by: Dani