Commit 27cda223 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/fbcon: add module parameter to select bits-per-pixel

Useful for debugging.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 2c5ac5ba
...@@ -56,6 +56,10 @@ MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration"); ...@@ -56,6 +56,10 @@ MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
int nouveau_nofbaccel = 0; int nouveau_nofbaccel = 0;
module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400); module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
MODULE_PARM_DESC(fbcon_bpp, "fbcon bits-per-pixel (default: auto)");
static int nouveau_fbcon_bpp;
module_param_named(fbcon_bpp, nouveau_fbcon_bpp, int, 0400);
static void static void
nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
{ {
...@@ -488,7 +492,7 @@ nouveau_fbcon_init(struct drm_device *dev) ...@@ -488,7 +492,7 @@ nouveau_fbcon_init(struct drm_device *dev)
{ {
struct nouveau_drm *drm = nouveau_drm(dev); struct nouveau_drm *drm = nouveau_drm(dev);
struct nouveau_fbdev *fbcon; struct nouveau_fbdev *fbcon;
int preferred_bpp; int preferred_bpp = nouveau_fbcon_bpp;
int ret; int ret;
if (!dev->mode_config.num_crtc || if (!dev->mode_config.num_crtc ||
...@@ -512,13 +516,15 @@ nouveau_fbcon_init(struct drm_device *dev) ...@@ -512,13 +516,15 @@ nouveau_fbcon_init(struct drm_device *dev)
if (ret) if (ret)
goto fini; goto fini;
if (drm->client.device.info.ram_size <= 32 * 1024 * 1024) if (preferred_bpp != 8 && preferred_bpp != 16 && preferred_bpp != 32) {
preferred_bpp = 8; if (drm->client.device.info.ram_size <= 32 * 1024 * 1024)
else preferred_bpp = 8;
if (drm->client.device.info.ram_size <= 64 * 1024 * 1024) else
preferred_bpp = 16; if (drm->client.device.info.ram_size <= 64 * 1024 * 1024)
else preferred_bpp = 16;
preferred_bpp = 32; else
preferred_bpp = 32;
}
/* disable all the possible outputs/crtcs before entering KMS mode */ /* disable all the possible outputs/crtcs before entering KMS mode */
if (!drm_drv_uses_atomic_modeset(dev)) if (!drm_drv_uses_atomic_modeset(dev))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment