From patchwork Fri Sep 18 16:12:01 2015
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
X-Patchwork-Submitter: Philipp Zabel
X-Patchwork-Id: 7218721
Return-Path:
X-Original-To: patchwork-linux-mediatek@patchwork.kernel.org
Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org
Received: from mail.kernel.org (mail.kernel.org [198.145.29.136])
by patchwork2.web.kernel.org (Postfix) with ESMTP id 540E1BEEC1
for ;
Fri, 18 Sep 2015 16:13:08 +0000 (UTC)
Received: from mail.kernel.org (localhost [127.0.0.1])
by mail.kernel.org (Postfix) with ESMTP id 0A7472083C
for ;
Fri, 18 Sep 2015 16:13:06 +0000 (UTC)
Received: from bombadil.infradead.org (bombadil.infradead.org
[198.137.202.9])
(using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits))
(No client certificate requested)
by mail.kernel.org (Postfix) with ESMTPS id C5F172091C
for ;
Fri, 18 Sep 2015 16:13:02 +0000 (UTC)
Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org)
by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux))
id 1ZcyHW-0000Zi-GR; Fri, 18 Sep 2015 16:13:02 +0000
Received: from metis.ext.pengutronix.de
([2001:67c:670:201:290:27ff:fe1d:cc33])
by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat
Linux)) id 1ZcyHR-0000Oe-3N for linux-mediatek@lists.infradead.org;
Fri, 18 Sep 2015 16:13:00 +0000
Received: from dude.hi.4.pengutronix.de ([10.1.0.7]
helo=dude.pengutronix.de.)
by metis.ext.pengutronix.de with esmtp (Exim 4.80)
(envelope-from )
id 1ZcyGs-0003xQ-D4; Fri, 18 Sep 2015 18:12:22 +0200
From: Philipp Zabel
To: dri-devel@lists.freedesktop.org
Subject: [RFC v2 3/4] drm/mediatek: Add DSI sub driver
Date: Fri, 18 Sep 2015 18:12:01 +0200
Message-Id: <1442592722-29004-4-git-send-email-p.zabel@pengutronix.de>
X-Mailer: git-send-email 2.5.1
In-Reply-To: <1442592722-29004-1-git-send-email-p.zabel@pengutronix.de>
References: <1442592722-29004-1-git-send-email-p.zabel@pengutronix.de>
X-SA-Exim-Connect-IP: 10.1.0.7
X-SA-Exim-Mail-From: p.zabel@pengutronix.de
X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de);
SAEximRunCond expanded to false
X-PTX-Original-Recipient: linux-mediatek@lists.infradead.org
X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3
X-CRM114-CacheID: sfid-20150918_091257_654364_1E12788B
X-CRM114-Status: GOOD ( 18.03 )
X-Spam-Score: -1.9 (-)
X-BeenThere: linux-mediatek@lists.infradead.org
X-Mailman-Version: 2.1.20
Precedence: list
List-Id:
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
Cc: Mark Rutland , devicetree@vger.kernel.org,
Paul Bolle , YT Shen ,
Jitao Shi ,
Philipp Zabel , Pawel Moll ,
Ian Campbell ,
Cawa Cheng ,
Daniel Stone ,
CK Hu , Rob Herring ,
linux-mediatek@lists.infradead.org, kernel@pengutronix.de,
Kumar Gala ,
Matthias Brugger ,
Dave Airlie
MIME-Version: 1.0
Sender: "Linux-mediatek"
Errors-To:
linux-mediatek-bounces+patchwork-linux-mediatek=patchwork.kernel.org@lists.infradead.org
X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED,
T_RP_MATCHES_RCVD,
UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org
X-Virus-Scanned: ClamAV using ClamSMTP
From: CK Hu
Add a driver for the MIPI DSI function block of the Mediatek display
subsystem.
Signed-off-by: Jitao Shi
Signed-off-by: Philipp Zabel
---
drivers/gpu/drm/mediatek/Makefile | 1 +
drivers/gpu/drm/mediatek/mtk_drm_dsi.c | 1118 ++++++++++++++++++++++++++++++++
drivers/gpu/drm/mediatek/mtk_drm_dsi.h | 51 ++
3 files changed, 1170 insertions(+)
create mode 100644 drivers/gpu/drm/mediatek/mtk_drm_dsi.c
create mode 100644 drivers/gpu/drm/mediatek/mtk_drm_dsi.h
diff --git a/drivers/gpu/drm/mediatek/Makefile b/drivers/gpu/drm/mediatek/Makefile
index d801572..213450c 100644
--- a/drivers/gpu/drm/mediatek/Makefile
+++ b/drivers/gpu/drm/mediatek/Makefile
@@ -2,6 +2,7 @@ mediatek-drm-y := mtk_drm_drv.o \
mtk_drm_crtc.o \
mtk_drm_ddp.o \
mtk_drm_ddp_comp.o \
+ mtk_drm_dsi.o \
mtk_drm_fb.o \
mtk_drm_gem.o \
mtk_drm_plane.o
diff --git a/drivers/gpu/drm/mediatek/mtk_drm_dsi.c b/drivers/gpu/drm/mediatek/mtk_drm_dsi.c
new file mode 100644
index 0000000..44cab33
--- /dev/null
+++ b/drivers/gpu/drm/mediatek/mtk_drm_dsi.c
@@ -0,0 +1,1118 @@
+/*
+ * Copyright (c) 2015 MediaTek Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include
+#include
+#include
+#include
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include
+#include
+
+#include
+#include
+#include
+#include
+#include
+
+#include
+
+#include
+#include
+
+#include