From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Dooks Date: Fri, 11 Jun 2010 05:32:34 +0000 Subject: Re: [PATCH 0/6] Various s3c-fb updates Message-Id: <20100611053234.GE14272@trinity.fluff.org> List-Id: References: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> In-Reply-To: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-arm-kernel@lists.infradead.org On Mon, May 31, 2010 at 11:08:49AM +0200, Pawel Osciak wrote: > Hello, > > This series is rebased onto Ben Dook's framebuffer branch available at: > git://git.fluff.org/bjdooks/linux.git dev/s3c-fb I'll look at updating this series once I am back in the uk, it mostly looks good but I have yet to do any testing or give it a thorough review. > The main changes are the addition of an ability to wait for VSYNC and > display panning. > > The first patch attempts to fix some NULL pointer dereferences in case > of a failed framebuffer memory allocation attempt. This is a quick > fix, so please treat it more as an indication of what may be wrong > with the code in the probe function and not as something to merge. > > Patches 3-4 add "new style" device name initialization for various > S3C/S5P devices. The 4th patch also separates S5PC100 and S5PV210 as > their framebuffer registers sets differ. > > > [PATCH 1/6] s3c-fb: Fix various null references on framebuffer memory alloc failure > [PATCH 2/6] s3c-fb: Correct FRAMESEL1 bitfield defines for VIDINTCON0 register > [PATCH 3/6] s3c-fb: Add device name initialization. > [PATCH 4/6] s3c-fb: Separate S5PC100 and S5PV210 framebuffer driver data structures > [PATCH 5/6] s3c-fb: Add support for display panning > [PATCH 6/6] s3c-fb: Add wait for VSYNC ioctl > > Best regards > -- > Pawel Osciak > Linux Platform Group > Samsung Poland R&D Center > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- -- Ben Q: What's a light-year? A: One-third less calories than a regular year. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Dooks Subject: Re: [PATCH 0/6] Various s3c-fb updates Date: Fri, 11 Jun 2010 06:32:34 +0100 Message-ID: <20100611053234.GE14272@trinity.fluff.org> References: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from trinity.fluff.org ([89.16.178.74]:49990 "EHLO trinity.fluff.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752673Ab0FKFcg (ORCPT ); Fri, 11 Jun 2010 01:32:36 -0400 Content-Disposition: inline In-Reply-To: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: Pawel Osciak Cc: linux-fbdev@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kyungmin.park@samsung.com, ben-linux@fluff.org On Mon, May 31, 2010 at 11:08:49AM +0200, Pawel Osciak wrote: > Hello, > > This series is rebased onto Ben Dook's framebuffer branch available at: > git://git.fluff.org/bjdooks/linux.git dev/s3c-fb I'll look at updating this series once I am back in the uk, it mostly looks good but I have yet to do any testing or give it a thorough review. > The main changes are the addition of an ability to wait for VSYNC and > display panning. > > The first patch attempts to fix some NULL pointer dereferences in case > of a failed framebuffer memory allocation attempt. This is a quick > fix, so please treat it more as an indication of what may be wrong > with the code in the probe function and not as something to merge. > > Patches 3-4 add "new style" device name initialization for various > S3C/S5P devices. The 4th patch also separates S5PC100 and S5PV210 as > their framebuffer registers sets differ. > > > [PATCH 1/6] s3c-fb: Fix various null references on framebuffer memory alloc failure > [PATCH 2/6] s3c-fb: Correct FRAMESEL1 bitfield defines for VIDINTCON0 register > [PATCH 3/6] s3c-fb: Add device name initialization. > [PATCH 4/6] s3c-fb: Separate S5PC100 and S5PV210 framebuffer driver data structures > [PATCH 5/6] s3c-fb: Add support for display panning > [PATCH 6/6] s3c-fb: Add wait for VSYNC ioctl > > Best regards > -- > Pawel Osciak > Linux Platform Group > Samsung Poland R&D Center > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- -- Ben Q: What's a light-year? A: One-third less calories than a regular year. From mboxrd@z Thu Jan 1 00:00:00 1970 From: ben-linux@fluff.org (Ben Dooks) Date: Fri, 11 Jun 2010 06:32:34 +0100 Subject: [PATCH 0/6] Various s3c-fb updates In-Reply-To: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> References: <1275296935-2693-1-git-send-email-p.osciak@samsung.com> Message-ID: <20100611053234.GE14272@trinity.fluff.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, May 31, 2010 at 11:08:49AM +0200, Pawel Osciak wrote: > Hello, > > This series is rebased onto Ben Dook's framebuffer branch available at: > git://git.fluff.org/bjdooks/linux.git dev/s3c-fb I'll look at updating this series once I am back in the uk, it mostly looks good but I have yet to do any testing or give it a thorough review. > The main changes are the addition of an ability to wait for VSYNC and > display panning. > > The first patch attempts to fix some NULL pointer dereferences in case > of a failed framebuffer memory allocation attempt. This is a quick > fix, so please treat it more as an indication of what may be wrong > with the code in the probe function and not as something to merge. > > Patches 3-4 add "new style" device name initialization for various > S3C/S5P devices. The 4th patch also separates S5PC100 and S5PV210 as > their framebuffer registers sets differ. > > > [PATCH 1/6] s3c-fb: Fix various null references on framebuffer memory alloc failure > [PATCH 2/6] s3c-fb: Correct FRAMESEL1 bitfield defines for VIDINTCON0 register > [PATCH 3/6] s3c-fb: Add device name initialization. > [PATCH 4/6] s3c-fb: Separate S5PC100 and S5PV210 framebuffer driver data structures > [PATCH 5/6] s3c-fb: Add support for display panning > [PATCH 6/6] s3c-fb: Add wait for VSYNC ioctl > > Best regards > -- > Pawel Osciak > Linux Platform Group > Samsung Poland R&D Center > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- -- Ben Q: What's a light-year? A: One-third less calories than a regular year.