From patchwork Wed Nov 28 21:27:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Noralf_Tr=C3=B8nnes?= X-Patchwork-Id: 10703383 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 239BC13AD for ; Wed, 28 Nov 2018 21:27:32 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 154682DD17 for ; Wed, 28 Nov 2018 21:27:32 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 08F412DD64; Wed, 28 Nov 2018 21:27:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,SUBJ_OBFU_PUNCT_FEW,SUBJ_OBFU_PUNCT_MANY autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 73BF92DD17 for ; Wed, 28 Nov 2018 21:27:31 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 43ED76E3D2; Wed, 28 Nov 2018 21:27:29 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from smtp.domeneshop.no (smtp.domeneshop.no [IPv6:2a01:5b40:0:3005::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id DBF0A6E3D2 for ; Wed, 28 Nov 2018 21:27:27 +0000 (UTC) Received: from 211.81-166-168.customer.lyse.net ([81.166.168.211]:47184 helo=localhost.localdomain) by smtp.domeneshop.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.84_2) (envelope-from ) id 1gS7Mk-0002RK-49; Wed, 28 Nov 2018 22:27:26 +0100 From: =?utf-8?q?Noralf_Tr=C3=B8nnes?= To: dri-devel@lists.freedesktop.org Subject: [PATCH v3 0/5] drm/cma-helper drivers: Use drm_fbdev_generic_setup() Date: Wed, 28 Nov 2018 22:27:08 +0100 Message-Id: <20181128212713.43500-1-noralf@tronnes.org> X-Mailer: git-send-email 2.15.1 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Marek Vasut , Chen Feng , Xinliang Liu , Xinwei Kong , Laurent Pinchart , Rongrong Zou Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP This patchset moves the drivers using the CMA helper fully over to the generic fbdev emulation. Changes this time is to remove a stray include from the rcar patch and some more include cleanup in the cma-helper which required a change to drm_framebuffer.h. I'm still hoping to get driver maintainer ack's for the hisilicon and mxsfb patches. For context, here's part 1 of the generic fbdev emulation: drm: Add generic fbdev emulation https://patchwork.freedesktop.org/series/45848/ Noralf. Cc: Xinliang Liu Cc: Rongrong Zou Cc: Xinwei Kong Cc: Chen Feng Cc: Marek Vasut Cc: Laurent Pinchart Noralf Trønnes (5): drm/hisilicon/kirin: Use drm_fbdev_generic_setup() drm/mxsfb: Use drm_fbdev_generic_setup() drm/rcar-du: Use drm_fbdev_generic_setup() drm/framebuffer: Include linux/sched.h in header file drm/cma-helper: Remove unused fbdev code drivers/gpu/drm/Kconfig | 4 - drivers/gpu/drm/drm_fb_cma_helper.c | 137 +----------------------- drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 38 +------ drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.h | 4 - drivers/gpu/drm/mxsfb/mxsfb_drv.c | 26 +---- drivers/gpu/drm/mxsfb/mxsfb_drv.h | 1 - drivers/gpu/drm/rcar-du/rcar_du_drv.c | 14 +-- drivers/gpu/drm/rcar-du/rcar_du_drv.h | 2 - drivers/gpu/drm/rcar-du/rcar_du_kms.c | 21 ---- include/drm/drm_fb_cma_helper.h | 22 ---- include/drm/drm_framebuffer.h | 1 + 11 files changed, 11 insertions(+), 259 deletions(-)