From patchwork Thu Nov 18 11:15:23 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Inki Dae X-Patchwork-Id: 335651 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 oAIBEvKb018272 for ; Thu, 18 Nov 2010 11:14:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751936Ab0KRLO5 (ORCPT ); Thu, 18 Nov 2010 06:14:57 -0500 Received: from mailout2.samsung.com ([203.254.224.25]:28248 "EHLO mailout2.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751575Ab0KRLO4 (ORCPT ); Thu, 18 Nov 2010 06:14:56 -0500 Received: from epmmp2 (mailout2.samsung.com [203.254.224.25]) by mailout2.samsung.com (Oracle Communications Messaging Exchange Server 7u4-19.01 64bit (built Sep 7 2010)) with ESMTP id <0LC2007Z2V8V3A50@mailout2.samsung.com> for linux-fbdev@vger.kernel.org; Thu, 18 Nov 2010 20:14:55 +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 <0LC200919V8VAZ@mmp2.samsung.com> for linux-fbdev@vger.kernel.org; Thu, 18 Nov 2010 20:14:55 +0900 (KST) Received: from localhost.localdomain ([10.89.10.123]) by TNRNDGASPAPP1.tn.corp.samsungelectronics.net with Microsoft SMTPSVC(6.0.3790.4675); Thu, 18 Nov 2010 20:14:54 +0900 Date: Thu, 18 Nov 2010 20:15:23 +0900 From: Inki Dae Subject: [PATCH 1/3] S5PV210: added MIPI-DSI Driver. In-reply-to: <> To: linux-fbdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: kyoungmin.park@samsung.com, lethal@linux-sh.org, akpm@linux-foundation.org, Inki Dae Message-id: <1290078923-29055-1-git-send-email-inki.dae@samsung.com> X-Mailer: git-send-email 1.5.4.3 Content-transfer-encoding: 7BIT References: <> X-OriginalArrivalTime: 18 Nov 2010 11:14:54.0903 (UTC) FILETIME=[D3DF9470:01CB8711] 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]); Thu, 18 Nov 2010 11:14:58 +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[];