From patchwork Tue Mar 26 17:55:30 2019 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: 10871797 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 B8F15922 for ; Tue, 26 Mar 2019 17:56:08 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A688428D63 for ; Tue, 26 Mar 2019 17:56:08 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9AC4128D6A; Tue, 26 Mar 2019 17:56:08 +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=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED 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 E583B28D63 for ; Tue, 26 Mar 2019 17:56:07 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C49F86E036; Tue, 26 Mar 2019 17:56:05 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@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 D933E6E036; Tue, 26 Mar 2019 17:56:04 +0000 (UTC) Received: from 211.81-166-168.customer.lyse.net ([81.166.168.211]:46322 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 1h8qIs-0006Mj-TN; Tue, 26 Mar 2019 18:56:02 +0100 From: =?utf-8?q?Noralf_Tr=C3=B8nnes?= To: dri-devel@lists.freedesktop.org Date: Tue, 26 Mar 2019 18:55:30 +0100 Message-Id: <20190326175546.18126-1-noralf@tronnes.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-Mailman-Original-DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tronnes.org; s=ds201810; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-Id:Date:Subject:Cc:To:From; bh=s8fvZpPi5ahTJgJD3gx/VzQ8cfDLZcrjSCSWy4g1AFA=; b=ggC0lf0GgAP+cNjVf4GWB0Ay5TMfB7RQpz1DZ3ox3K8kZjqRE7vQgDP69uBMqRIYaxNAFYHVhOXDYvOtTf0zxxyxT59KOT0c9+EU0OhkXE3eX6JO3JGQ+MIop3RC2spoi3OlDTaRrdFP9bSDXJY3gmHBBRGufeFHnAC2zvuYvoYoK0pPPDVW4UIjUhq9UuvCju5XTTFMxjQa3PL+DJZfcuKePcB9ZND3hU7OmoOncYb/zfYKSg21rQwwCwQKwyyVWUwFpxXkKrFf3xLOsYBsdNVnhY3eg/330qlacsFGQTj6UI8Rp2p3fGPaQRsP2MNjQ4fE0278QQdPhqgGyBDk4g==; Subject: [Intel-gfx] [PATCH 00/16] drm/fb-helper: Move modesetting code to drm_client X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx@lists.freedesktop.org, =?utf-8?q?Noralf_Tr=C3=B8nnes?= , mstaudt@suse.de Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP This moves the modesetting code from drm_fb_helper to drm_client so it can be shared by all internal clients. I have also added a client display abstraction and a bootsplash example client to show where this might be heading. Hopefully Max Staudt will be able to pick up his bootsplash work now. Noralf. Noralf Trønnes (16): drm/fb-helper: Remove unused gamma_size variable drm/fb-helper: dpms_legacy(): Only set on connectors in use drm/atomic: Move __drm_atomic_helper_disable_plane/set_config() drm/fb-helper: No need to cache rotation and sw_rotations drm/fb-helper: Remove drm_fb_helper_crtc->{x,y,desired_mode} drm/i915/fbdev: Move intel_fb_initial_config() to fbdev helper drm/fb-helper: Remove drm_fb_helper_crtc drm/fb-helper: Prepare to move out commit code drm/fb-helper: Move out commit code drm/fb-helper: Remove drm_fb_helper_connector drm/fb-helper: Prepare to move out modeset config code drm/fb-helper: Move out modeset config code drm/fb-helper: Avoid race with DRM userspace drm/client: Add display abstraction drm/client: Hack: Add bootsplash example drm/vc4: Call drm_dev_register() after all setup is done Documentation/gpu/todo.rst | 10 + drivers/gpu/drm/Kconfig | 5 + drivers/gpu/drm/Makefile | 1 + drivers/gpu/drm/drm_atomic.c | 168 ++++ drivers/gpu/drm/drm_atomic_helper.c | 164 --- drivers/gpu/drm/drm_auth.c | 20 + drivers/gpu/drm/drm_bootsplash.c | 216 ++++ drivers/gpu/drm/drm_client.c | 1449 +++++++++++++++++++++++++++ drivers/gpu/drm/drm_crtc_internal.h | 5 + drivers/gpu/drm/drm_drv.c | 4 + drivers/gpu/drm/drm_fb_helper.c | 1151 ++------------------- drivers/gpu/drm/drm_internal.h | 2 + drivers/gpu/drm/i915/intel_fbdev.c | 218 ---- drivers/gpu/drm/vc4/vc4_drv.c | 6 +- include/drm/drm_atomic_helper.h | 4 - include/drm/drm_client.h | 117 +++ include/drm/drm_fb_helper.h | 127 +-- 17 files changed, 2128 insertions(+), 1539 deletions(-) create mode 100644 drivers/gpu/drm/drm_bootsplash.c