All of lore.kernel.org
 help / color / mirror / Atom feed
* [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode
@ 2009-11-20 13:16 Paulius Zaleckas
  2009-11-20 15:55 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Clemens Ladisch
                   ` (8 more replies)
  0 siblings, 9 replies; 84+ messages in thread
From: Paulius Zaleckas @ 2009-11-20 13:16 UTC (permalink / raw)
  To: linux-fbdev

Hi,

On drivers using drm_fb_helper's in fb_ops it is not possible to change
video mode, because of different var->pixclock evaluation:

int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
			    struct fb_info *info)
{
[...]
	if (var->pixclock = -1 || !var->pixclock)
		return -EINVAL;
[...]

int drm_fb_helper_set_par(struct fb_info *info)
{
[...]
	if (var->pixclock != -1) {
		DRM_ERROR("PIXEL CLCOK SET\n");
		return -EINVAL;
	}
[...]

One of these evaluations will fail regardless of pixclock value.

P.S. check CLCOK spelling :)

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Linux-fbdev-devel mailing list
Linux-fbdev-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-fbdev-devel

^ permalink raw reply	[flat|nested] 84+ messages in thread

end of thread, other threads:[~2010-03-25 12:30 UTC | newest]

Thread overview: 84+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-20 13:16 [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Paulius Zaleckas
2009-11-20 15:55 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Clemens Ladisch
2009-11-20 18:53 ` James Simmons
2009-11-20 19:05 ` Andrew Morton
2009-11-20 19:39 ` Paulius Zaleckas
2009-11-20 20:01 ` James Simmons
2009-11-20 20:13 ` Paulius Zaleckas
2009-11-20 20:48 ` James Simmons
2009-11-21  4:25 ` Dave Airlie
2009-11-21  4:27 ` Dave Airlie
2010-03-01  9:18   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Michal Suchanek
2010-03-01  9:18     ` Michal Suchanek
2010-03-03  5:02     ` Dave Airlie
2010-03-03  5:02       ` Dave Airlie
2010-03-03  8:23       ` Michal Suchanek
2010-03-03  8:23         ` Michal Suchanek
2010-03-03  9:23         ` Dave Airlie
2010-03-03  9:23           ` Dave Airlie
2010-03-03 10:32           ` Michal Suchanek
2010-03-03 10:32             ` Michal Suchanek
2010-03-10 18:11             ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-10 18:11               ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 21:04               ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Ville Syrjälä
2010-03-10 21:04                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Ville Syrjälä
2010-03-10 21:16                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Michal Suchanek
2010-03-10 21:16                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Michal Suchanek
2010-03-11  2:24                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-11  2:24                     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-11  2:22                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-11  2:22                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-11  5:03                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Ville Syrjälä
2010-03-11  5:03                     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Ville Syrjälä
2010-03-10 18:04           ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-10 18:04             ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 17:42       ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-10 17:42         ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 18:05         ` Alex Deucher
2010-03-10 18:05           ` Alex Deucher
2010-03-10 18:10           ` Alex Deucher
2010-03-10 18:10             ` Alex Deucher
2010-03-10 18:47             ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-10 18:47               ` drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 19:49               ` [Linux-fbdev-devel] " Michal Suchanek
2010-03-10 19:49                 ` Michal Suchanek
2010-03-10 20:06               ` Alex Deucher
2010-03-10 20:06                 ` Alex Deucher
2010-03-11 10:13             ` Michel Dänzer
2010-03-11 10:13               ` Michel Dänzer
2010-03-11 10:31               ` Pauli Nieminen
2010-03-11 10:31                 ` Pauli Nieminen
2010-03-11 15:12               ` Alex Deucher
2010-03-11 15:12                 ` Alex Deucher
2010-03-11 15:17                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-11 15:17                   ` drm_fb_helper: Impossible to change video mode James Simmons
2010-03-11 15:47                   ` [Linux-fbdev-devel] " Michal Suchanek
2010-03-11 15:47                     ` Michal Suchanek
2010-03-12 14:52                     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-12 14:52                       ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-12 20:51                       ` Dave Airlie
2010-03-12 20:51                         ` Dave Airlie
2010-03-13 14:40                         ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-13 14:40                           ` drm_fb_helper: Impossible to change video mode James Simmons
2010-03-13 21:01                           ` [Linux-fbdev-devel] " Dave Airlie
2010-03-13 21:01                             ` Dave Airlie
2010-03-14 11:41                             ` Michel Dänzer
2010-03-14 11:41                               ` Michel Dänzer
2010-03-15 18:38                               ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-15 18:38                                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-16 13:46                                 ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Michel Dänzer
2010-03-16 13:46                                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Michel Dänzer
2010-03-16 13:56                                   ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-16 13:56                                     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-16 14:00                                     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video Michel Dänzer
2010-03-16 14:00                                       ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode Michel Dänzer
2010-03-25 12:30                                       ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-25 12:30                                         ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons
2010-03-15 18:22                             ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-15 18:22                               ` drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 20:58         ` [Linux-fbdev-devel] " Michal Suchanek
2010-03-10 20:58           ` Michal Suchanek
2010-03-11  3:41           ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-11  3:41             ` drm_fb_helper: Impossible to change video mode James Simmons
2010-03-10 17:35     ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video James Simmons
2010-03-10 17:35       ` [Linux-fbdev-devel] drm_fb_helper: Impossible to change video mode James Simmons

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.