From patchwork Fri Apr 13 10:59:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tushar Behera X-Patchwork-Id: 7776 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 5135423E29 for ; Fri, 13 Apr 2012 11:08:10 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 101E1A18AD5 for ; Fri, 13 Apr 2012 11:08:09 +0000 (UTC) Received: by iage36 with SMTP id e36so5600484iag.11 for ; Fri, 13 Apr 2012 04:08:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=Yb9Vhdy5pzVcQPBm2a1ughRky0VkHGlQrRolxLYyCWQ=; b=EEfKFdmes84nIvCwMr/O1c+tUa4LP08WMr7mphDOH7qOApUjPuKKWNRvh2tc6XIy1J 9ak6N0WYfABAeJAW5MRngnV45xqpp2lqMj68vnp7K08V2ZTUbmuvIJ1v3JS8ntUk62YP x1xW370TwjoyeLA+Bqr245khZpl5xbzoKR/twQiiK9bqd8Si0s6LFTD6mSdv2sLzKbRF c3gEH4JN20hCbkuGLsZVfxYCPfrD3dQf9cmpaMk4aSzt7JxdB4Uq/7PxiAzy0kqn6/kR Dp/wCrppooT3EgyQVNTQkLOXz517yE0iqVL7ilpv4d/TvJ7NX6fj+TYUA0rVylczXNRl gqOA== Received: by 10.50.149.163 with SMTP id ub3mr1053571igb.30.1334315289489; Fri, 13 Apr 2012 04:08:09 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.70.69 with SMTP id c5csp20028ibj; Fri, 13 Apr 2012 04:08:09 -0700 (PDT) Received: by 10.68.221.35 with SMTP id qb3mr3880253pbc.136.1334315288579; Fri, 13 Apr 2012 04:08:08 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id qk10si1322622pbc.336.2012.04.13.04.08.07 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Apr 2012 04:08:08 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) smtp.mail=tushar.behera@linaro.org Received: by pbcxa12 with SMTP id xa12so4166688pbc.37 for ; Fri, 13 Apr 2012 04:08:07 -0700 (PDT) Received: by 10.68.135.226 with SMTP id pv2mr3860422pbb.148.1334315287602; Fri, 13 Apr 2012 04:08:07 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id or6sm8456539pbc.43.2012.04.13.04.08.04 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Apr 2012 04:08:06 -0700 (PDT) From: Tushar Behera To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Increase framebuffer virtual size for origen Date: Fri, 13 Apr 2012 16:29:31 +0530 Message-Id: <1334314771-10928-1-git-send-email-tushar.behera@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQkf4jO5Beeng8ziFiVajmR2pkU++rFJ8mhiPJA6/d0Ozh39/Wb+oo+IOIWoyUXeO/aeLTbF To support display panning, framebuffer virtual size needs to be increased. Signed-off-by: Tushar Behera --- arch/arm/mach-exynos/mach-origen.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/mach-origen.c b/arch/arm/mach-exynos/mach-origen.c index 878d4c9..4d80212 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c @@ -596,6 +596,8 @@ static struct s3c_fb_pd_win origen_fb_win0 = { }, .max_bpp = 32, .default_bpp = 24, + .virtual_x = 1024, + .virtual_y = 2 * 600, }; static struct s3c_fb_platdata origen_lcd_pdata __initdata = {