From patchwork Fri Jul 8 20:54:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 12911885 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id AC291C433EF for ; Fri, 8 Jul 2022 20:54:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E577B10EADD; Fri, 8 Jul 2022 20:54:28 +0000 (UTC) Received: from aposti.net (aposti.net [89.234.176.197]) by gabe.freedesktop.org (Postfix) with ESMTPS id EEC2710EAD3 for ; Fri, 8 Jul 2022 20:54:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1657313659; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-transfer-encoding:content-transfer-encoding: in-reply-to:references; bh=gGn/JAlWhoA8iZTvGC0UpxYEbo4/opBKC6mgkgtoZZg=; b=dikaKTtrVfFhrGpuWBud1iEnvFCdCR0Lo/FEL/l9tXtz5jld3GUTyXsACSIMqRKppcTcMz 4OQjsJ24SK/Bqlfjqut4yRa3yCGQnFFM4qixAyH6D6p/H7lGWnYoLYqGvzQWZ63iu/ZHwv Q7QoFkGJyq/exJiipzNKgkB+sNip2ZY= From: Paul Cercueil To: David Airlie , Daniel Vetter Subject: [PATCH 0/6] drm/ingenic: JZ4760(B) support and random changes Date: Fri, 8 Jul 2022 21:54:00 +0100 Message-Id: <20220708205406.96473-1-paul@crapouillou.net> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Sam Ravnborg , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org, Paul Cercueil , list@opendingux.net, Christophe Branchereau Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi, A small set of changes to the ingenic-drm driver. The most notable thing is that ingenic-ipu is now its own platform driver. Cheers, -Paul Paul Cercueil (6): dt-bindings/display: ingenic: Add compatible string for the JZ4760(B) drm/ingenic: Fix MODULE_LICENSE() string drm/ingenic: Add support for the JZ4760(B) drm/ingenic: Don't request full modeset if property is not modified drm/ingenic: Make IPU driver its own module drm/ingenic: Use the new PM macros .../bindings/display/ingenic,lcd.yaml | 2 + drivers/gpu/drm/ingenic/Kconfig | 2 +- drivers/gpu/drm/ingenic/Makefile | 2 +- drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 72 +++++++++++-------- drivers/gpu/drm/ingenic/ingenic-drm.h | 3 - drivers/gpu/drm/ingenic/ingenic-ipu.c | 10 ++- 6 files changed, 53 insertions(+), 38 deletions(-) Acked-by: Sam Ravnborg