From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756880AbbCMVgc (ORCPT ); Fri, 13 Mar 2015 17:36:32 -0400 Received: from mailgw1.uni-kl.de ([131.246.120.220]:59644 "EHLO mailgw1.uni-kl.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754533AbbCMVg3 convert rfc822-to-8bit (ORCPT ); Fri, 13 Mar 2015 17:36:29 -0400 Date: Fri, 13 Mar 2015 20:25:21 +0100 From: Thomas =?UTF-8?B?TmllZGVycHLDvG0=?= To: Tomi Valkeinen Cc: Maxime Ripard , , , Subject: Re: [PATCH 5/8] fbdev: ssd1307fb: Add module parameter bitsperpixel. Message-ID: <20150313202521.0a4607c3@maestro.intranet> In-Reply-To: <54FECB5D.1020908@ti.com> References: <1423261694-5939-1-git-send-email-niederp@physik.uni-kl.de> <1423261694-5939-6-git-send-email-niederp@physik.uni-kl.de> <20150207112043.GO2079@lukather> <20150207170503.045490aa@maestro.intranet> <20150214155415.GC25269@lukather> <54FECB5D.1020908@ti.com> Organization: TU Kaiserslautern X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.26; i686-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Tue, 10 Mar 2015 12:45:49 +0200 schrieb Tomi Valkeinen : > On 14/02/15 17:54, Maxime Ripard wrote: > > On Sat, Feb 07, 2015 at 05:05:03PM +0100, Thomas Niederprüm wrote: > >> Am Sat, 7 Feb 2015 12:20:43 +0100 > >> schrieb Maxime Ripard : > >> > >>> On Fri, Feb 06, 2015 at 11:28:11PM +0100, niederp@physik.uni-kl.de > >>> wrote: > >>>> From: Thomas Niederprüm > >>>> > >>>> This patch adds a module parameter 'bitsperpixel' to adjust the > >>>> colordepth of the framebuffer. All values >1 will result in > >>>> memory map of the requested color depth. However only the MSB of > >>>> each pixel will be sent to the device. The framebuffer > >>>> identifies itself as a grayscale display with the specified > >>>> depth. > >>> > >>> I'm not sure this is the right thing to do. > >>> > >>> The bits per pixel for this display is rightfully defined, used > >>> and reported to the userspace, why would you want to change that? > >> > >> You are right of course. The display is 1bpp and it reports to be 1 > >> bpp. The problem is that there is almost no userspace library that > >> can handle 1 bit framebuffers correctly. So it is nice if the > >> framebuffer (optionally) can expose itself as 8 bits per pixel > >> grayscale to the userspace program. As an example this allows to > >> run DirectFB on the framebuffer, which is not possible out of the > >> box for 1bpp. > >> > >> Also note that if do not set the module parameter at load time > >> the framebuffer will be 1bpp. So you have to actively set that > >> module parameter to make the framebuffer pretend to be more than > >> 1bpp. > >> > >> In any case I don't cling to that patch, I just thought it was a > >> nice feature. > > > > I'd say that the right fix would be to patch DirectFB, instead of > > faking that in the kernel. > > > > But again, that's probably Tomi's call, not mine. > > Right, I'm not thrilled =). I don't think it's a good idea to lie to > the userspace (except when fixing regressions). Ok, since Maxime and you agree that this is not desirable I will drop that patch in v4. Thomas