From patchwork Tue Nov 23 07:15:04 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Inki Dae X-Patchwork-Id: 349001 X-Patchwork-Delegate: lethal@linux-sh.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAN7AdBh013219 for ; Tue, 23 Nov 2010 07:14:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751979Ab0KWHOb (ORCPT ); Tue, 23 Nov 2010 02:14:31 -0500 Received: from mailout3.samsung.com ([203.254.224.33]:37449 "EHLO mailout3.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751959Ab0KWHOb (ORCPT ); Tue, 23 Nov 2010 02:14:31 -0500 Received: from epmmp2 (mailout3.samsung.com [203.254.224.33]) by mailout3.samsung.com (Oracle Communications Messaging Exchange Server 7u4-19.01 64bit (built Sep 7 2010)) with ESMTP id <0LCB001NITG5MYE0@mailout3.samsung.com> for linux-fbdev@vger.kernel.org; Tue, 23 Nov 2010 16:14:29 +0900 (KST) Received: from TNRNDGASPAPP1.tn.corp.samsungelectronics.net ([165.213.149.150]) by mmp2.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTPA id <0LCB00E5ATG5TE@mmp2.samsung.com> for linux-fbdev@vger.kernel.org; Tue, 23 Nov 2010 16:14:29 +0900 (KST) Received: from localhost.localdomain ([10.89.10.123]) by TNRNDGASPAPP1.tn.corp.samsungelectronics.net with Microsoft SMTPSVC(6.0.3790.4675); Tue, 23 Nov 2010 16:14:29 +0900 Date: Tue, 23 Nov 2010 16:15:04 +0900 From: Inki Dae Subject: [PATCH 1/4] FB: added a structure for CPU interface to linux/fb.h In-reply-to: <> To: linux-fbdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: kyungmin.park@samsung.com, kgene.kim@samsung.com, lethal@linux-sh.org, akpm@linux-foundation.org, Inki Dae Message-id: <1290496504-4867-1-git-send-email-inki.dae@samsung.com> X-Mailer: git-send-email 1.5.4.3 Content-transfer-encoding: 7BIT References: <> X-OriginalArrivalTime: 23 Nov 2010 07:14:29.0443 (UTC) FILETIME=[11B1D130:01CB8ADE] Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 23 Nov 2010 07:14:32 +0000 (UTC) diff --git a/include/linux/fb.h b/include/linux/fb.h index 7fca3dc..9b9842c 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h @@ -1147,6 +1147,18 @@ struct fb_videomode { u32 flag; }; +struct fb_cpumode { + const char *name; /* optional */ + u32 refresh; /* optional */ + u32 xres; + u32 yres; + u32 pixclock; + u32 cs_setup; + u32 wr_setup; + u32 wr_act; + u32 wr_hold; +}; + extern const char *fb_mode_option; extern const struct fb_videomode vesa_modes[];