Re: [PATCH v2 1/2] drm: Add a drm_drv_enabled() to check if drivers should be enabled

2021-11-04 Thread Javier Martinez Canillas
Hello Sam, On 11/4/21 18:57, Jani Nikula wrote: > On Thu, 04 Nov 2021, Sam Ravnborg wrote: >> Hi Javier, >> >> On Thu, Nov 04, 2021 at 05:07:06PM +0100, Javier Martinez Canillas wrote: >>> Some DRM drivers check the vgacon_text_force() function return value as an

Re: [PATCH v2 1/2] drm: Add a drm_drv_enabled() to check if drivers should be enabled

2021-11-04 Thread Javier Martinez Canillas
Hello Jani, On 11/4/21 20:57, Jani Nikula wrote: > On Thu, 04 Nov 2021, Javier Martinez Canillas wrote: >> +/** >> + * drm_drv_enabled - Checks if a DRM driver can be enabled >> + * @driver: DRM driver to check >> + * >> + * Checks whether a DRM driver can be ena

Re: [PATCH v2 1/2] drm: Add a drm_drv_enabled() to check if drivers should be enabled

2021-11-05 Thread Javier Martinez Canillas
Hello Thomas, On 11/5/21 09:43, Thomas Zimmermann wrote: > Hi > > Am 04.11.21 um 21:09 schrieb Javier Martinez Canillas: >> Hello Jani, >> >> On 11/4/21 20:57, Jani Nikula wrote: >>> On Thu, 04 Nov 2021, Javier Martinez Canillas wrote: >>>> +/** &

Re: [PATCH v2 2/2] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-05 Thread Javier Martinez Canillas
pu/drm/i915/i915_module.c >> b/drivers/gpu/drm/i915/i915_module.c >> index 45cb3e540eff..c890c1ca20c4 100644 >> --- a/drivers/gpu/drm/i915/i915_module.c >> +++ b/drivers/gpu/drm/i915/i915_module.c >> @@ -4,8 +4,6 @@ >>* Copyright © 2021 Intel Corporation >>

Re: [PATCH v2 2/2] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-05 Thread Javier Martinez Canillas
_VGA_CONSOLE guard in the header. > We want to make this work on ARM systems. I even have a request to > replace offb on Power architecture by simpledrm. So the final config has > to be system agnostic. > Same, since we want to drop the fbdev drivers in Fedora, for all arches. > Best regards > Thomas > Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [PATCH v2 1/2] drm: Add a drm_drv_enabled() to check if drivers should be enabled

2021-11-05 Thread Javier Martinez Canillas
On 11/5/21 11:04, Jani Nikula wrote: > On Fri, 05 Nov 2021, Javier Martinez Canillas wrote: [snip] >> >> Do you envision other condition that could be added later to disable a >> DRM driver ? Or do you think that just from a code readability point of >> view makes wo

[PATCH v3 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-08 Thread Javier Martinez Canillas
ages in drivers. Javier Martinez Canillas (6): drm: Don't print messages if drivers are disabled due nomodeset drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force() drm: Move nomodeset kernel parameter to the DRM subsystem drm: Decouple nomodeset from CONFIG_VGA_CON

[PATCH v3 1/6] drm: Don't print messages if drivers are disabled due nomodeset

2021-11-08 Thread Javier Martinez Canillas
The nomodeset kernel parameter handler already prints a message that the DRM drivers will be disabled, so there's no need for drivers to do that. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas --- (no changes since v1) drivers/gpu/drm/amd/amdgpu/amdgpu_drv.

[PATCH v3 2/6] drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force()

2021-11-08 Thread Javier Martinez Canillas
It is already handled by the console.h macro since a stub inline function is defined for vgacon_text_force() if CONFIG_VGA_CONSOLE is not set. There's no need to have ifdefery in the driver when calling the function. Signed-off-by: Javier Martinez Canillas --- (no changes since v1) dr

[PATCH v3 4/6] drm: Decouple nomodeset from CONFIG_VGA_CONSOLE

2021-11-08 Thread Javier Martinez Canillas
This relationship was only for historical reasons and the nomodeset option should be available even on platforms that don't enable CONFIG_VGA_CONSOLE. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas --- (no changes since v1) drivers/gpu/drm/Kconfig

[PATCH v3 3/6] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-08 Thread Javier Martinez Canillas
Signed-off-by: Javier Martinez Canillas --- Changes in v3: - Drop the drm_drv_enabled() function and just call to drm_get_modeset(). - Make drm_get_modeset() just a getter function and don't return an error. - Move independent cleanups in drivers as separate preparatory patches. Changes in

[PATCH v3 5/6] Documentation/admin-guide: Document nomodeset kernel parameter

2021-11-08 Thread Javier Martinez Canillas
igned-off-by: Javier Martinez Canillas --- (no changes since v1) Documentation/admin-guide/kernel-parameters.txt | 4 1 file changed, 4 insertions(+) diff --git Documentation/admin-guide/kernel-parameters.txt Documentation/admin-guide/kernel-parameters.txt index 91ba391f9b32..ed9859fd0734 1

[PATCH v3 6/6] drm: Make the nomodeset message less sensational

2021-11-08 Thread Javier Martinez Canillas
ained. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas --- (no changes since v1) drivers/gpu/drm/drm_nomodeset.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git drivers/gpu/drm/drm_nomodeset.c drivers/gpu/drm/drm_nomodeset.c index fc3acf3ab2e2..45e50b3

Re: [PATCH v3 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-08 Thread Javier Martinez Canillas
Hello Thomas, On 11/8/21 13:50, Thomas Zimmermann wrote: > Hi > > Am 08.11.21 um 13:15 schrieb Javier Martinez Canillas: >> There is a lot of historical baggage on this parameter. It is defined in >> the vgacon driver as nomodeset, but its set function is called text_mo

[PATCH v4 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-08 Thread Javier Martinez Canillas
eck_modeset() and make it return -ENODEV. - Squash patch to add drm_drv_enabled() and make drivers use it. - Make the drivers changes before moving nomodeset logic to DRM. - Make drm_drv_enabled() return an errno and -ENODEV if nomodeset. - Remove debug and error messages in drivers. Javier Mar

[PATCH v4 2/6] drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force()

2021-11-08 Thread Javier Martinez Canillas
It is already handled by the console.h macro since a stub inline function is defined for vgacon_text_force() if CONFIG_VGA_CONSOLE is not set. There's no need to have ifdefery in the driver when calling the function. Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann ---

[PATCH v4 1/6] drm: Don't print messages if drivers are disabled due nomodeset

2021-11-08 Thread Javier Martinez Canillas
The nomodeset kernel parameter handler already prints a message that the DRM drivers will be disabled, so there's no need for drivers to do that. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann --- (no changes since v1) drivers/gpu/dr

[PATCH v4 5/6] Documentation/admin-guide: Document nomodeset kernel parameter

2021-11-08 Thread Javier Martinez Canillas
igned-off-by: Javier Martinez Canillas --- Changes in v4: - Don't mention the simpledrm driver and instead explain in high level terms what the nomodeset option is about. Documentation/admin-guide/kernel-parameters.txt | 7 +++ 1 file changed, 7 insertions(+) diff --git Documentation/a

[PATCH v4 4/6] drm: Decouple nomodeset from CONFIG_VGA_CONSOLE

2021-11-08 Thread Javier Martinez Canillas
This relationship was only for historical reasons and the nomodeset option should be available even on platforms that don't enable CONFIG_VGA_CONSOLE. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann --- (no changes since v1) driver

[PATCH v4 6/6] drm: Make the nomodeset message less sensational

2021-11-08 Thread Javier Martinez Canillas
ained. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas --- Changes in v4: - Don't mention DRM drivers in the kernel message and instead explain that only the system framebuffer will be available. drivers/gpu/drm/drm_nomodeset.c | 4 +--- 1 file changed, 1 inser

[PATCH v4 3/6] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-08 Thread Javier Martinez Canillas
Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann --- (no changes since v3) Changes in v3: - Drop the drm_drv_enabled() function and just call to drm_get_modeset(). - Make drm_get_modeset() just a getter function and don't return an error. - Move independent cleanups in

Re: [REGRESSION]: drivers/firmware: move x86 Generic System Framebuffers support

2021-11-10 Thread Javier Martinez Canillas
PLE nor CONFIG_DRM_SIMPLEDRM are enabled in your kernel config, no device driver will match that device. This is just a guess though. Would be good if you could test following cases: 1) CONFIG_FB_EFI not set 2) CONFIG_FB_EFI=y and CONFIG_DRM_AMDGPU=m 3) CONFIG_SYSFB_SIMPLEFB=y and CONFIG_FB_SIMPLE=y And for each check /proc/fb, the kernel boot log, and if Suspend-to-RAM works. If the explanation above is correct, then I would expect (1) and (2) to work and (3) to also fail. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [REGRESSION]: drivers/firmware: move x86 Generic System Framebuffers support

2021-11-10 Thread Javier Martinez Canillas
t; And for each check /proc/fb, the kernel boot log, and if Suspend-to-RAM >> works. >> >> If the explanation above is correct, then I would expect (1) and (2) to work >> and >> (3) to also fail. >> Your testing confirms my assumptions. I'll check how this could be solved to prevent the efifb driver to be probed if there's already a framebuffer device. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

[PATCH] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-11 Thread Javier Martinez Canillas
r the display hardware is already present. Reported-by: Ilya Trukhanov Signed-off-by: Javier Martinez Canillas --- drivers/video/fbdev/efifb.c| 6 ++ drivers/video/fbdev/simplefb.c | 6 ++ 2 files changed, 12 insertions(+) diff --git drivers/video/fbdev/efifb.c drivers/video/fbdev/ef

Re: [REGRESSION]: drivers/firmware: move x86 Generic System Framebuffers support

2021-11-11 Thread Javier Martinez Canillas
On 11/11/21 08:31, Javier Martinez Canillas wrote: [snip] >>> And for each check /proc/fb, the kernel boot log, and if Suspend-to-RAM >>> works. >>> >>> If the explanation above is correct, then I would expect (1) and (2) to >>> work and >>&g

[PATCH v2] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-11 Thread Javier Martinez Canillas
e. Link: https://lore.kernel.org/r/2020200253.rfudkt3edbd3nsyj@lahvuun/ Fixes: d391c5827107 ("drivers/firmware: move x86 Generic System Framebuffers support") Reported-by: Ilya Trukhanov Signed-off-by: Javier Martinez Canillas Reviewed-by: Daniel Vetter --- Changes in v2: - Add a Link: tag

Re: [REGRESSION]: drivers/firmware: move x86 Generic System Framebuffers support

2021-11-11 Thread Javier Martinez Canillas
Hello Ilya, On 11/11/21 11:52, Ilya Trukhanov wrote: > On Thu, Nov 11, 2021 at 10:24:56AM +0100, Javier Martinez Canillas wrote: >> On 11/11/21 08:31, Javier Martinez Canillas wrote: >> >> [snip] >> >>>>> And for each check /proc/fb, the kernel bo

Re: [PATCH] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-11 Thread Javier Martinez Canillas
Hello Daniel, On 11/11/21 10:54, Daniel Vetter wrote: > On Thu, Nov 11, 2021 at 10:20:53AM +0100, Javier Martinez Canillas wrote: >> The efifb and simplefb drivers just render to a pre-allocated frame buffer >> and rely on the display hardware being initialized before the kernel b

[PATCH v3] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-11 Thread Javier Martinez Canillas
e. Link: https://lore.kernel.org/r/2020200253.rfudkt3edbd3nsyj@lahvuun/ Fixes: d391c5827107 ("drivers/firmware: move x86 Generic System Framebuffers support") Reported-by: Ilya Trukhanov Cc: # 5.15.x Signed-off-by: Javier Martinez Canillas Reviewed-by: Daniel Vetter --- Changes in v3: -

Re: [PATCH v4 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-12 Thread Javier Martinez Canillas
g opinion and could use it if others agree. > Just a bikeshed, I'll leave it to actual kernel devs to say if this > would be more appropriate or worth it. > I think is worth it and better to do it now before the patches land, but we could wait for others to chime in. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [PATCH v4 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-12 Thread Javier Martinez Canillas
m as long as the hardware was already initialized and a struct screen_info filled with data. > loading. Is simpledrm like ndiswrapper in a sense? IIRC, simpledrm is > the driver that would not consult this function, right? > Correct. Or maybe just 'bool drm_modeset_enabled()' ? After all, that's really what the "nomodeset" kernel param disables. The fact that DRM drivers abuse that boolean semantics to also prevent the drivers to load is a different topic. > > Thanks, > pq > Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [PATCH v4 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-12 Thread Javier Martinez Canillas
> How about we invert the test function and use something like > > bool drm_firmware_drivers_only() > That name I think is more self explanatory, so it works for me. There was also another bikeshed about where to put the function declaration, I added to but with that name I believe that should be in instead. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

[PATCH v5 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-12 Thread Javier Martinez Canillas
turn an errno and -ENODEV if nomodeset. - Remove debug and error messages in drivers. Javier Martinez Canillas (6): drm: Don't print messages if drivers are disabled due nomodeset drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force() drm: Move nomodeset kernel

[PATCH v5 4/6] drm: Decouple nomodeset from CONFIG_VGA_CONSOLE

2021-11-12 Thread Javier Martinez Canillas
This relationship was only for historical reasons and the nomodeset option should be available even on platforms that don't enable CONFIG_VGA_CONSOLE. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Acked-by: Jani Nikula Acked-by:

[PATCH v5 2/6] drm/vboxvideo: Drop CONFIG_VGA_CONSOLE guard to call vgacon_text_force()

2021-11-12 Thread Javier Martinez Canillas
It is already handled by the console.h macro since a stub inline function is defined for vgacon_text_force() if CONFIG_VGA_CONSOLE is not set. There's no need to have ifdefery in the driver when calling the function. Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Ack

[PATCH v5 3/6] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-12 Thread Javier Martinez Canillas
iel Vetter Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Acked-by: Jani Nikula Acked-by: Pekka Paalanen --- Changes in v5: - Rename drm_get_modeset() to drm_firmware_drivers_only(). Changes in v3: - Drop the drm_drv_enabled() function and just call to drm_get_modeset(

[PATCH v5 5/6] Documentation/admin-guide: Document nomodeset kernel parameter

2021-11-12 Thread Javier Martinez Canillas
igned-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Acked-by: Jani Nikula Acked-by: Pekka Paalanen --- (no changes since v4) Changes in v4: - Don't mention the simpledrm driver and instead explain in high level terms what the nomodeset option is about. Documentation/a

[PATCH v5 1/6] drm: Don't print messages if drivers are disabled due nomodeset

2021-11-12 Thread Javier Martinez Canillas
The nomodeset kernel parameter handler already prints a message that the DRM drivers will be disabled, so there's no need for drivers to do that. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Acked-by: Jani Nikula Acked-by: Pekka Paa

[PATCH v5 6/6] drm: Make the nomodeset message less sensational

2021-11-12 Thread Javier Martinez Canillas
ained. Suggested-by: Thomas Zimmermann Signed-off-by: Javier Martinez Canillas Acked-by: Thomas Zimmermann Acked-by: Jani Nikula Acked-by: Pekka Paalanen --- (no changes since v4) Changes in v4: - Don't mention DRM drivers in the kernel message and instead explain that only the system f

Re: [PATCH v2] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-16 Thread Javier Martinez Canillas
he aperture base. But I'm unsure if that's worth it. After all, fbdev drivers are likely to be disabled by most distros soon now that we have the simpledrm driver. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [PATCH v2] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-16 Thread Javier Martinez Canillas
he aperture ranges overlap. There's an apertures_overlap() function in drivers/video/fbdev/core/fbmem.c that can be exported for fbdev drivers to use. Another option is to just say that DRM drivers should be built as a module if the {efi,simple}fb driver are built-in. Best regards, -- Javier Martinez Canillas Linux Engineering Red Hat

Re: [PATCH v2] fbdev: Prevent probing generic drivers if a FB is already registered

2021-11-16 Thread Javier Martinez Canillas
On 11/16/21 11:01, Javier Martinez Canillas wrote: > Hello Geert, > > On 11/16/21 10:43, Geert Uytterhoeven wrote: > > [snip] > >>> >>> So this is already a fragile solution and $SUBJECT doesn't make things worse >>> IMO. Since not having som

Re: [PATCH v5 3/6] drm: Move nomodeset kernel parameter to the DRM subsystem

2021-11-19 Thread Javier Martinez Canillas
[ adding gregkh to Cc list for drivers/video/console ] On 11/12/21 14:32, Javier Martinez Canillas wrote: > The "nomodeset" kernel cmdline parameter is handled by the vgacon driver > but the exported vgacon_text_force() symbol is only used by DRM drivers. > > It makes m

Re: [PATCH v5 0/6] Cleanups for the nomodeset kernel command line parameter logic

2021-11-27 Thread Javier Martinez Canillas
On 11/12/21 14:32, Javier Martinez Canillas wrote: > There is a lot of historical baggage on this parameter. It is defined in > the vgacon driver as nomodeset, but its set function is called text_mode() > and the value queried with a function named vgacon_text_force(). > > All th

[PATCH] drm: Fix build error caused by missing drm_nomodeset.o

2021-11-27 Thread Javier Martinez Canillas
robot: make[4]: *** No rule to make target 'drivers/gpu/drm/drm_nomodeset.o', needed by 'drivers/gpu/drm/built-in.a'. Fixes: ("6a2d2ddf2c34 drm: Move nomodeset kernel parameter to the DRM subsystem") Reported-by: kernel test robot Signed-off-by: Javier Mar

Re: [PATCH] drm: Fix build error caused by missing drm_nomodeset.o

2021-11-27 Thread Javier Martinez Canillas
On 11/27/21 20:26, Daniel Vetter wrote: > On Sat, Nov 27, 2021 at 08:19:10PM +0100, Javier Martinez Canillas wrote: >> The patch for commit ("6a2d2ddf2c34 drm: Move nomodeset kernel parameter >> to the DRM subsystem") was generated with config 'diff.noprefix true

Re: [PATCH 1/3] drm/simpledrm: Bind to OF framebuffers in /chosen

2021-11-29 Thread Javier Martinez Canillas
> > > > > > Simpledrm is just a driver, but this is platform setup code. Why is this > > > code located here and not under arch/ or drivers/firmware/? > > > Agreed. Creating platform devices is something for platform code and not really a DRM driver. > > > I know that other drivers do similar thi

Re: [PATCH 1/3] drm/simpledrm: Bind to OF framebuffers in /chosen

2021-11-30 Thread Javier Martinez Canillas
Hello Thomas, On Tue, Nov 30, 2021 at 9:31 AM Thomas Zimmermann wrote: > Am 30.11.21 um 07:44 schrieb Javier Martinez Canillas: [snip] > > > > I think that instead it could be done in the sysfb_create_simplefb() > > function [0], which already creates the "simple-f

Re: 5.15 regression: CONFIG_SYSFB_SIMPLEFB breaks console scrolling

2021-12-03 Thread Javier Martinez Canillas
one can clarify. > I don't think this is a regression since enabling CONFIG_SYSFB_SIMPLEFB will make the simpledrm driver to be bound while disabling the option makes the efifb driver to be bound instead. Yes, it seems to be a bug in the simpledrm driver but the solution if you have issues wi

Re: [PATCH v2] Revert "drm/fb-helper: improve DRM fbdev emulation device names"

2021-12-09 Thread Javier Martinez Canillas
Hello Johannes, Sorry for the late response. I was on holidays for a week and just came back. On 12/4/21 13:41, Johannes Stezenbach wrote: > Hi, > > On Wed, Oct 20, 2021 at 06:57:40PM +0200, Javier Martinez Canillas wrote: >> This reverts commit b3484d2b03e4c940a9598aa84

Re: [PATCH v3 1/3] of: Move simple-framebuffer device handling from simplefb to of

2021-12-13 Thread Javier Martinez Canillas
> > + node = of_get_compatible_child(of_chosen, "simple-framebuffer"); You have to check if the node variable is NULL here. > + of_platform_device_create(node, NULL, NULL); Otherwise this could lead to a NULL pointer dereference if debug output is enabled (the n

Re: [PATCH v3 1/3] of: Move simple-framebuffer device handling from simplefb to of

2021-12-13 Thread Javier Martinez Canillas
On Mon, Dec 13, 2021 at 11:46 AM Hector Martin wrote: > > On 13/12/2021 17.44, Javier Martinez Canillas wrote: > > Hello Hector, > > > > On Sun, Dec 12, 2021 at 7:24 AM Hector Martin wrote: > >> > >> This code is required for both simplefb and simpled

Re: [PATCH RESEND v4 v4 2/4] drm/vc4: Support nomodeset

2021-12-14 Thread Javier Martinez Canillas
but I'm OK with either way. Reviewed-by: Javier Martinez Canillas > In this case, let's just register the v3d driver. > I wonder if the v3d driver should be registered if nomodeset is present. Most (if not all?) drivers that currently check for this parameter disable both KMS an

Re: [PATCH v3 1/3] of: Move simple-framebuffer device handling from simplefb to of

2021-12-14 Thread Javier Martinez Canillas
On Mon, Dec 13, 2021 at 3:50 PM Rob Herring wrote: > > On Mon, Dec 13, 2021 at 5:30 AM Javier Martinez Canillas > wrote: [snip] > > > > You are right that passing NULL is a safe code path for now due the > > of_device_is_available(node) check, but that seems fragile

[PATCH 02/60] drm/arm/hdlcd: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/arm/hdlcd_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/arm/hdlcd_drv.c b/drivers/gpu/drm/arm

[PATCH 01/60] drm/komeda: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/arm/display/komeda/komeda_drv.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/gpu/drm/arm/display/komeda

[PATCH 03/60] drm/malidp: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/arm/malidp_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm

[PATCH 06/60] drm/atmel-hlcdc: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c b

[PATCH 08/60] drm/exynos: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/exynos/exynos_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu

[PATCH 05/60] drm/aspeed: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/aspeed/aspeed_gfx_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c b/drivers/gpu

[PATCH 04/60] drm/armada: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/armada/armada_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/armada/armada_drv.c b/drivers/gpu/drm

[PATCH 09/60] drm/fsl-dcu: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c b/drivers

[PATCH 00/60] drm: Make all drivers to honour the nomodeset parameter

2021-12-14 Thread Javier Martinez Canillas
r all the drivers would be highly appreciated. Best regards, Javier Javier Martinez Canillas (60): drm/komeda: Add support for the nomodeset kernel parameter drm/arm/hdlcd: Add support for the nomodeset kernel parameter drm/malidp: Add support for the nomodeset kernel parameter drm/arma

[PATCH 13/60] drm/hisilicon/kirin: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c

[PATCH 11/60] drm/gud: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/gud/gud_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/gud/gud_drv.c b/drivers/gpu/drm/gud/gud_drv.c

[PATCH 07/60] drm/etnaviv: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/etnaviv/etnaviv_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/etnaviv/etnaviv_drv.c b/drivers/gpu/drm

[PATCH 22/60] drm/mediatek: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/mediatek/mtk_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c b/drivers/gpu

[PATCH 12/60] drm/hisilicon/hibmc: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas Patch-cc:Tian Tao --- drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/hisilicon

[PATCH 17/60] drm/imx: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/imx/imx-drm-core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/imx/imx-drm-core.c b/drivers/gpu/drm/imx

[PATCH 14/60] drm/hyperv: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/hyperv/hyperv_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c b/drivers/gpu

[PATCH 20/60] drm/lima: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/lima/lima_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/lima/lima_drv.c b/drivers/gpu/drm/lima

[PATCH 16/60] drm/imx/dcss: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/imx/dcss/dcss-drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/imx/dcss/dcss-drv.c b/drivers/gpu/drm/imx

[PATCH 15/60] drm/i810: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/i810/i810_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/i810/i810_drv.c b/drivers/gpu/drm/i810

[PATCH 21/60] drm/mcde: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/mcde/mcde_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/mcde/mcde_drv.c b/drivers/gpu/drm/mcde

[PATCH 23/60] drm/meson: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/meson/meson_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson

[PATCH 10/60] drm/gma500: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/gma500/psb_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500

[PATCH 38/60] drm/sti: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/sti/sti_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/sti/sti_drv.c b/drivers/gpu/drm/sti/sti_drv.c

[PATCH 48/60] drm/ili9163: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/ili9163.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/ili9163.c b/drivers/gpu/drm/tiny/ili9163.c

[PATCH 37/60] drm/sprd: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/sprd/sprd_drm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/sprd/sprd_drm.c b/drivers/gpu/drm/sprd

[PATCH 42/60] drm/tegra: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tegra/drm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c index

[PATCH 35/60] drm/shmobile: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/shmobile/shmob_drm_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/shmobile/shmob_drm_drv.c b/drivers

[PATCH 31/60] drm/r128: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/r128/r128_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/r128/r128_drv.c b/drivers/gpu/drm/r128

[PATCH 34/60] drm/savage: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/savage/savage_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/savage/savage_drv.c b/drivers/gpu/drm

[PATCH 24/60] drm/mga: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/mga/mga_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/mga/mga_drv.c b/drivers/gpu/drm/mga/mga_drv.c

[PATCH 19/60] drm/kmb: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/kmb/kmb_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/kmb/kmb_drv.c b/drivers/gpu/drm/kmb/kmb_drv.c

[PATCH 39/60] drm/stm: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/stm/drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/stm/drv.c b/drivers/gpu/drm/stm/drv.c index

[PATCH 29/60] drm/panfrost: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/panfrost/panfrost_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/panfrost/panfrost_drv.c b/drivers/gpu

[PATCH 56/60] drm/tve200: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tve200/tve200_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tve200/tve200_drv.c b/drivers/gpu/drm

[PATCH 53/60] drm/repaper: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/repaper.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/repaper.c b/drivers/gpu/drm/tiny/repaper.c

[PATCH 43/60] drm/tidss: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tidss/tidss_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tidss/tidss_drv.c b/drivers/gpu/drm/tidss

[PATCH 30/60] drm/pl111: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/pl111/pl111_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/pl111/pl111_drv.c b/drivers/gpu/drm/pl111

[PATCH 55/60] drm/st7735r: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/st7735r.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/st7735r.c b/drivers/gpu/drm/tiny/st7735r.c

[PATCH 32/60] drm: rcar-du: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/rcar-du/rcar_du_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm

[PATCH 26/60] drm: mxsfb: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/mxsfb/mxsfb_drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/mxsfb/mxsfb_drv.c b/drivers/gpu/drm/mxsfb

[PATCH 59/60] drm/xen: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/xen/xen_drm_front.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/xen/xen_drm_front.c b/drivers/gpu/drm/xen

[PATCH 18/60] drm/ingenic: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c b/drivers

[PATCH 50/60] drm/ili9341: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/ili9341.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/ili9341.c b/drivers/gpu/drm/tiny/ili9341.c

[PATCH 49/60] drm/ili9225: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/ili9225.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/ili9225.c b/drivers/gpu/drm/tiny/ili9225.c

[PATCH 60/60] drm/xlnx: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/xlnx/zynqmp_dpsub.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/xlnx/zynqmp_dpsub.c b/drivers/gpu/drm/xlnx

[PATCH 54/60] drm/st7586: Add support for the nomodeset kernel parameter

2021-12-14 Thread Javier Martinez Canillas
DRM drivers currently check for nomodeset, make this driver to also support the command line parameter. Signed-off-by: Javier Martinez Canillas --- drivers/gpu/drm/tiny/st7586.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/tiny/st7586.c b/drivers/gpu/drm/tiny/st7586.c

<    1   2   3   4   5   6   7   8   9   10   >