[RFC 08/21] drm: rcar-du: Add DPLL support

2016-05-30 Thread Dirk Behme
On 30.05.2016 18:00, Ulrich Hecht wrote: > From: Koji Matsuoka > > Signed-off-by: Koji Matsuoka > Signed-off-by: Geert Uytterhoeven > --- > drivers/gpu/drm/rcar-du/rcar_du_crtc.c | 97 > - > drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 8 +++ > drivers/gpu/drm

Re: [PATCH 3/6] staging: drm/imx: add i.MX IPUv3 base driver

2012-09-15 Thread Dirk Behme
On 12.09.2012 12:31, Sascha Hauer wrote: The IPU is the Image Processing Unit found on i.MX51/53/6 SoCs. It features several units for image processing, this patch adds support for the units needed for Framebuffer support, namely: - Display Controller (dc) - Display Interface (di) - Display Mult

Re: [PATCH, RFC] i.MX DRM support

2012-07-02 Thread Dirk Behme
/drm_edid.c:1466: warning: array subscript is above array bounds drivers/gpu/drm/drm_edid.c:1466: warning: array subscript is above array bounds but these seems to be compiler specific and not related to Sacha's patches. [1] From: Dirk Behme Subject: [PATCH 1/2] DRM i.MX: ldb: Fix compi

[PATCH, RFC] i.MX DRM support

2012-07-02 Thread Dirk Behme
rm_edid.c:1466: warning: array subscript is above array bounds drivers/gpu/drm/drm_edid.c: In function 'drm_add_edid_modes': drivers/gpu/drm/drm_edid.c:1466: warning: array subscript is above array bounds drivers/gpu/drm/drm_edid.c:1466: warning: array subscript is above array bounds but thes

[PATCH 3/6] staging: drm/imx: add i.MX IPUv3 base driver

2012-09-14 Thread Dirk Behme
On 12.09.2012 12:31, Sascha Hauer wrote: > The IPU is the Image Processing Unit found on i.MX51/53/6 SoCs. It > features several units for image processing, this patch adds support > for the units needed for Framebuffer support, namely: > > - Display Controller (dc) > - Display Interface (di) > -

Re: [PATCH RFC 1/3] rust: add useful ops for u64

2025-02-19 Thread Dirk Behme
On 17/02/2025 15:04, Alexandre Courbot wrote: > It is common to build a u64 from its high and low parts obtained from > two 32-bit registers. Conversely, it is also common to split a u64 into > two u32s to write them into registers. Add an extension trait for u64 > that implement these methods in a

Re: [PATCH RFC 1/3] rust: add useful ops for u64

2025-02-20 Thread Dirk Behme
On 18/02/2025 14:07, Alexandre Courbot wrote: > On Tue Feb 18, 2025 at 7:07 PM JST, Dirk Behme wrote: >> On 17/02/2025 15:04, Alexandre Courbot wrote: >>> It is common to build a u64 from its high and low parts obtained from >>> two 32-bit registers. Conversely, it is