Displaying 20 results from an estimated 37 matches for "canilla".
Did you mean:
vanilla
2022 Dec 19
1
[PATCH v3] drm: Only select I2C_ALGOBIT for drivers that actually need it
...c, keep the select for I2C for the
> next cleanup patch. Still prepare this already by also selecting I2C for
> the individual drivers.
>
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig at pengutronix.de>
> ---
Thanks for sending a v3 of this.
Reviewed-by: Javier Martinez Canillas <javierm at redhat.com>
--
Best regards,
Javier Martinez Canillas
Core Platforms
Red Hat
2023 Jan 10
1
[PATCH v2] drm/nouveau: Remove file nouveau_fbcon.c
...eedesktop.org/drm/drm-misc into drm-next")
I believe the fixes tag should be before the S-o-B ? At least that is
the case in most commits and Documentation/process/maintainer-tip.rst
example. But you could fix it just before applying.
The patch looks good to me.
Reviewed-by: Javier Martinez Canillas <javierm at redhat.com>
--
Best regards,
Javier Martinez Canillas
Core Platforms
Red Hat
2024 Sep 13
1
[PATCH v3 1/2] drm/panic: Add ABGR2101010 support
...010(color);
> + case DRM_FORMAT_ABGR2101010:
> + return convert_xrgb8888_to_abgr2101010(color);
> default:
> WARN_ONCE(1, "Can't convert to %p4cc\n", &format);
> return 0;
> --
> 2.46.0
>
The patch looks good to me.
Reviewed-by: Javier Martinez Canillas <javierm at redhat.com>
--
Best regards,
Javier Martinez Canillas
Core Platforms
Red Hat
2024 Sep 13
1
[PATCH v3 1/2] drm/panic: Add ABGR2101010 support
On 13/09/2024 09:22, Javier Martinez Canillas wrote:
> Jocelyn Falempe <jfalempe at redhat.com> writes:
>
> Hello Jocelyn,
>
>> Add support for ABGR2101010, used by the nouveau driver.
>>
>> Signed-off-by: Jocelyn Falempe <jfalempe at redhat.com>
>> ---
>> drivers/gpu/drm/drm_panic.c |...
2023 Mar 13
0
[PATCH] drm/virtio: Enable fb damage clips property for the primary plane
On Fri, Mar 10, 2023 at 01:59:42PM +0100, Javier Martinez Canillas wrote:
> Christian Hergert reports that the driver doesn't enable the property and
> that leads to always doing a full plane update, even when the driver does
> support damage clipping for the primary plane.
>
> Don't enable it for the cursor plane, because its .atomic_upda...
2023 Mar 17
0
[PATCH 5/6] drm/fb-helper: Consolidate CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM
Hi
Am 17.03.23 um 13:39 schrieb Javier Martinez Canillas:
> Thomas Zimmermann <tzimmermann at suse.de> writes:
>
>> Consolidate all handling of CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM by
>> making the module parameter optional in drm_fb_helper.c.
>>
>> Without the config option, modules can set smem_start in struct
>>...
2024 Sep 09
1
[PATCH v4 71/80] drm/vmwgfx: Run DRM default client setup
...gt; setup can start the common fbdev client.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
> Cc: Zack Rusin <zack.rusin at broadcom.com>
> Cc: Broadcom internal kernel review list <bcm-kernel-feedback-list at broadcom.com>
> Acked-by: Javier Martinez Canillas <javierm at redhat.com>
Quick note: I love what you did with drm client and drm fbdev. Thanks
a lot for that work!
Reviewed-by: Zack Rusin <zack.rusin at broadcom.com>
z
2024 Sep 13
1
[PATCH v3 1/2] drm/panic: Add ABGR2101010 support
Add support for ABGR2101010, used by the nouveau driver.
Signed-off-by: Jocelyn Falempe <jfalempe at redhat.com>
---
drivers/gpu/drm/drm_panic.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/drm_panic.c b/drivers/gpu/drm/drm_panic.c
index 74412b7bf936..0a9ecc1380d2 100644
--- a/drivers/gpu/drm/drm_panic.c
+++ b/drivers/gpu/drm/drm_panic.c
@@ -209,6 +209,14
2023 May 04
0
[PATCH v2 1/8] drm: Disable the cursor plane on atomic contexts with virtualized drivers
On Thu, 4 May 2023 01:50:25 +0000
Zack Rusin <zackr at vmware.com> wrote:
> On Wed, 2023-05-03 at 09:48 +0200, Javier Martinez Canillas wrote:
> > Zack Rusin <zackr at vmware.com> writes:
> >
> > > On Tue, 2023-05-02 at 11:32 +0200, Javier Martinez Canillas wrote:
> > > > AFAICT this is the only remaining thing to be addressed for this series ?
> > >
> > > No, there...
2023 May 04
0
[PATCH v2 1/8] drm: Disable the cursor plane on atomic contexts with virtualized drivers
...200
Jonas ?dahl <jadahl at gmail.com> wrote:
> On Thu, May 04, 2023 at 01:39:04PM +0300, Pekka Paalanen wrote:
> > On Thu, 4 May 2023 01:50:25 +0000
> > Zack Rusin <zackr at vmware.com> wrote:
> >
> > > On Wed, 2023-05-03 at 09:48 +0200, Javier Martinez Canillas wrote:
> > > > Zack Rusin <zackr at vmware.com> writes:
> > > >
> > > > > On Tue, 2023-05-02 at 11:32 +0200, Javier Martinez Canillas wrote:
> >
> > > > > > AFAICT this is the only remaining thing to be addressed fo...
2024 May 18
1
[PATCH v2] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...bled for the drm subsystem and since Werror is
enabled for test builds.
Rearrange arithmetic and use check_add_overflow() for validating the
allocation size to avoid the overflow.
Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
Cc: Javier Martinez Canillas <javierm at redhat.com>
Cc: Jani Nikula <jani.nikula at intel.com>
Cc: Thomas Zimmermann <tzimmermann at suse.de>
Cc: Danilo Krummrich <dakr at redhat.com>
Cc: Maxime Ripard <mripard at kernel.org>
Cc: Kees Cook <keescook at chromium.org>
Cc: Christophe JAILLET...
2022 Dec 19
1
[PATCH v3] drm: Only select I2C_ALGOBIT for drivers that actually need it
While working on a drm driver that doesn't need the i2c algobit stuff I
noticed that DRM selects this code even though only 8 drivers actually use
it. While also only some drivers use i2c, keep the select for I2C for the
next cleanup patch. Still prepare this already by also selecting I2C for
the individual drivers.
Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig at pengutronix.de>
---
2024 May 18
1
[PATCH] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...ng but an error since W=1
has been enabled for the drm subsystem and since Werror is enabled for test builds.
Rearrange arithmetic and add extra size checks to avoid the overflow.
Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
Cc: Javier Martinez Canillas <javierm at redhat.com>
Cc: Jani Nikula <jani.nikula at intel.com>
Cc: Thomas Zimmermann <tzimmermann at suse.de>
Cc: Danilo Krummrich <dakr at redhat.com>
Cc: Maxime Ripard <mripard at kernel.org>
Signed-off-by: Guenter Roeck <linux at roeck-us.net>
---
checkpa...
2024 May 18
1
[PATCH] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...has been enabled for the drm subsystem and since Werror is enabled for test builds.
>
> Rearrange arithmetic and add extra size checks to avoid the overflow.
>
> Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
> Cc: Javier Martinez Canillas <javierm-H+wXaHxf7aLQT0dZR+AlfA at public.gmane.org>
> Cc: Jani Nikula <jani.nikula-ral2JQCrhuEAvxtiuMwx3w at public.gmane.org>
> Cc: Thomas Zimmermann <tzimmermann-l3A5Bk7waGM at public.gmane.org>
> Cc: Danilo Krummrich <dakr-H+wXaHxf7aLQT0dZR+AlfA at public.gmane.or...
2024 May 18
1
[PATCH] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...drm subsystem and since Werror is enabled for test builds.
> >
> > Rearrange arithmetic and add extra size checks to avoid the overflow.
> >
> > Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
> > Cc: Javier Martinez Canillas <javierm-H+wXaHxf7aLQT0dZR+AlfA at public.gmane.org>
> > Cc: Jani Nikula <jani.nikula-ral2JQCrhuEAvxtiuMwx3w at public.gmane.org>
> > Cc: Thomas Zimmermann <tzimmermann-l3A5Bk7waGM at public.gmane.org>
> > Cc: Danilo Krummrich <dakr-H+wXaHxf7aLQT0dZR+AlfA at...
2023 Jan 10
1
[PATCH v2] drm/nouveau: Remove file nouveau_fbcon.c
...c-next-2022-11-10-1' of git://anongit.freedesktop.org/drm/drm-misc into drm-next")
Cc: Ben Skeggs <bskeggs at redhat.com>
Cc: Karol Herbst <kherbst at redhat.com>
Cc: Lyude Paul <lyude at redhat.com>
Cc: Thomas Zimmermann <tzimmermann at suse.de>
Cc: Javier Martinez Canillas <javierm at redhat.com>
Cc: Sam Ravnborg <sam at ravnborg.org>
Cc: Jani Nikula <jani.nikula at intel.com>
Cc: Dave Airlie <airlied at redhat.com>
Cc: dri-devel at lists.freedesktop.org
Cc: nouveau at lists.freedesktop.org
---
drivers/gpu/drm/nouveau/nouveau_fbcon.c | 613 -...
2024 Sep 26
1
[PATCH v5 79/80] drm/omapdrm: Remove struct drm_fb_helper from struct omap_fbdev.
...might rework the common fbdev client to allow for storing
> both, drm_fb_helper and omap_fbdev, together in the same place.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
> Cc: Tomi Valkeinen <tomi.valkeinen at ideasonboard.com>
> Acked-by: Javier Martinez Canillas <javierm at redhat.com>
> ---
> drivers/gpu/drm/omapdrm/omap_drv.h | 3 ++
> drivers/gpu/drm/omapdrm/omap_fbdev.c | 42 +++++++++++++++-------------
> 2 files changed, 26 insertions(+), 19 deletions(-)
The ywrap seems to be broken, but it's broken without this series...
2024 May 24
1
[PATCH v3] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...d for test builds.
Rearrange arithmetic and use check_add_overflow() for validating the
allocation size to avoid the overflow. While at it, split assignments
out of if conditions.
Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
Cc: Javier Martinez Canillas <javierm at redhat.com>
Cc: Jani Nikula <jani.nikula at intel.com>
Cc: Thomas Zimmermann <tzimmermann at suse.de>
Cc: Danilo Krummrich <dakr at redhat.com>
Cc: Maxime Ripard <mripard at kernel.org>
Cc: Kees Cook <keescook at chromium.org>
Cc: Christophe JAILLET...
2023 Jun 30
0
[PATCH v1 1/4] video/aperture: Add a helper to detect if an aperture contains firmware FB
...s that the
system has only one active firmware framebuffer driver at a time.
We don't use the global structure screen_info here, because PCI resource
may get reallocated(the VRAM BAR could be moved) at kernel boot stage.
Cc: Thomas Zimmermann <tzimmermann at suse.de>
Cc: Javier Martinez Canillas <javierm at redhat.com>
Cc: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
Cc: Maxime Ripard <mripard at kernel.org>
Cc: David Airlie <airlied at gmail.com>
Cc: Daniel Vetter <daniel at ffwll.ch>
Cc: Helge Deller <deller at gmx.de>
Signed-off-by: Sui J...
2024 May 18
1
[PATCH] drm/nouveau/nvif: Avoid build error due to potential integer overflows
...m and since Werror is enabled for test builds.
>>>
>>> Rearrange arithmetic and add extra size checks to avoid the overflow.
>>>
>>> Fixes: a61ddb4393ad ("drm: enable (most) W=1 warnings by default across the subsystem")
>>> Cc: Javier Martinez Canillas <javierm-H+wXaHxf7aLQT0dZR+AlfA at public.gmane.org>
>>> Cc: Jani Nikula <jani.nikula-ral2JQCrhuEAvxtiuMwx3w at public.gmane.org>
>>> Cc: Thomas Zimmermann <tzimmermann-l3A5Bk7waGM at public.gmane.org>
>>> Cc: Danilo Krummrich <dakr-H+wXaHxf7aLQT0dZR...