From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3D0D9C433ED for ; Fri, 9 Apr 2021 08:07:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 157E7611C9 for ; Fri, 9 Apr 2021 08:07:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232601AbhDIIH3 (ORCPT ); Fri, 9 Apr 2021 04:07:29 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:39517 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232400AbhDIIHZ (ORCPT ); Fri, 9 Apr 2021 04:07:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1617955632; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=k2PTBL+nqzlKBelC7c/vISZYvaV01k6PixS2+D0BjW8=; b=CMMX+WmY7vM5QTBIFlYb5sYY79hyIrbWGTwSUtru79EJbr6I+203cmAEUcoPaZSIh59TeC GW/qkUP/aV3wT4eKvpM6GfQtV4i0Z2LFGp5YlzmHNKM/KHDzHyDaBln9RfohmQFygOKH6D 0hfEbg4m9f6zJLAv28F6IpHWk2Y/P5s= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-180-sYcaZKqyO02l33jnkyP5XA-1; Fri, 09 Apr 2021 04:07:10 -0400 X-MC-Unique: sYcaZKqyO02l33jnkyP5XA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 748496D246; Fri, 9 Apr 2021 08:07:08 +0000 (UTC) Received: from [10.36.115.11] (ovpn-115-11.ams2.redhat.com [10.36.115.11]) by smtp.corp.redhat.com (Postfix) with ESMTP id 701F75C1D5; Fri, 9 Apr 2021 08:07:02 +0000 (UTC) Subject: Re: [PATCH v1 2/2] drivers/gpu/drm: don't select DMA_CMA or CMA from aspeed or etnaviv To: Arnd Bergmann , Linus Walleij Cc: Linux Kernel Mailing List , Linux-MM , Joel Stanley , David Airlie , Daniel Vetter , Andrew Jeffery , Lucas Stach , Russell King , Christian Gmeiner , Mike Rapoport , Bartlomiej Zolnierkiewicz , Michal Simek , Masahiro Yamada , Randy Dunlap , Peter Collingbourne , linux-aspeed , dri-devel , Linux ARM , The etnaviv authors , Linux Fbdev development list References: <20210408092011.52763-1-david@redhat.com> <20210408092011.52763-3-david@redhat.com> <7496ac87-9676-1b4e-3444-c2a662ec376b@redhat.com> <3a2d64a7-8425-8daf-17ee-95b9f0c635f9@redhat.com> From: David Hildenbrand Organization: Red Hat GmbH Message-ID: Date: Fri, 9 Apr 2021 10:07:01 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08.04.21 15:19, Arnd Bergmann wrote: > On Thu, Apr 8, 2021 at 2:50 PM Linus Walleij wrote: >> >> On Thu, Apr 8, 2021 at 2:01 PM David Hildenbrand wrote: >> >>>> This is something you could do using a hidden helper symbol like >>>> >>>> config DRMA_ASPEED_GFX >>>> bool "Aspeed display driver" >>>> select DRM_WANT_CMA >>>> >>>> config DRM_WANT_CMA >>>> bool >>>> help >>>> Select this from any driver that benefits from CMA being enabled >>>> >>>> config DMA_CMA >>>> bool "Use CMA helpers for DRM" >>>> default DRM_WANT_CMA >>>> >>>> Arnd >>>> >>> >>> That's precisely what I had first, with an additional "WANT_CMA" -- but >>> looking at the number of such existing options (I was able to spot 1 !) >> >> If you do this it probably makes sense to fix a few other drivers >> Kconfig in the process. It's not just a problem with your driver. >> "my" drivers: >> >> drivers/gpu/drm/mcde/Kconfig >> drivers/gpu/drm/pl111/Kconfig >> drivers/gpu/drm/tve200/Kconfig >> >> certainly needs this as well, and pretty much anything that is >> selecting DRM_KMS_CMA_HELPER or >> DRM_GEM_CMA_HELPER "wants" DMA_CMA. > > Are there any that don't select either of the helpers and > still want CMA? If not, it would be easy to just add > > default DRM_KMS_CMA_HELPER || DRM_GEM_CMA_HELPER > > and skipt the extra symbol. That sounds like a reasonable thing to do. I'll look into that. -- Thanks, David / dhildenb From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1E249C433ED for ; Fri, 9 Apr 2021 08:09:43 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9C50C61028 for ; Fri, 9 Apr 2021 08:09:42 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9C50C61028 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:Cc:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=bv2MokQwtwzoKL1SiQb2pM4TKwS2nZQmEBjpJo1s5Qw=; b=oGx27h2r7YCUS1L8shfk7Lnu9 rI4V5VoF7IcM9IuhZ79Niho1X8IAhB57VCk/0kjlNT4iig/kygdLNJxaSV+oRwCERIwNx9d/9yQYW aA4cwlh/LNkUBkRf7XcCwMMnMS3WqcKqsdAO9egrbw0PugT+q4njXEVgH0ePoR+Emq5oHGqpx+MaC 69CpsurGCh5rPxNADQxKCmss/wz35KuBPKzF4EeJeN7SOxz20jVc6Ahmd32ZknjzJz47Y8lfYkBWA JF2KlV/rWwyeACMVzJIs+fRypeUGBfc3R/Y8BrFRdhzwVAJBGjJiFEJTGdfUfFh3VdDlnPuxZkGxi D2zg8+g8Q==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lUmBI-00AYFl-Ij; Fri, 09 Apr 2021 08:07:57 +0000 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lUmAe-00AY7i-6H for linux-arm-kernel@lists.infradead.org; Fri, 09 Apr 2021 08:07:24 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1617955634; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=k2PTBL+nqzlKBelC7c/vISZYvaV01k6PixS2+D0BjW8=; b=V+51ZP6VFT0bi9F+UlEgbg9fq3q0B782puEtIYb1CuSLMxbuHuCNg6xm8yvucAre7p1Clx mEu+NflWch2TSyyUdZ17O922jsIECJtGfSIpj6NOdua5N/mduD/cjQEEPg2uDegk3Oixbw p/Uas0oef3HO1ORR4owv8+vGDirMrik= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-180-sYcaZKqyO02l33jnkyP5XA-1; Fri, 09 Apr 2021 04:07:10 -0400 X-MC-Unique: sYcaZKqyO02l33jnkyP5XA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 748496D246; Fri, 9 Apr 2021 08:07:08 +0000 (UTC) Received: from [10.36.115.11] (ovpn-115-11.ams2.redhat.com [10.36.115.11]) by smtp.corp.redhat.com (Postfix) with ESMTP id 701F75C1D5; Fri, 9 Apr 2021 08:07:02 +0000 (UTC) Subject: Re: [PATCH v1 2/2] drivers/gpu/drm: don't select DMA_CMA or CMA from aspeed or etnaviv To: Arnd Bergmann , Linus Walleij Cc: Linux Kernel Mailing List , Linux-MM , Joel Stanley , David Airlie , Daniel Vetter , Andrew Jeffery , Lucas Stach , Russell King , Christian Gmeiner , Mike Rapoport , Bartlomiej Zolnierkiewicz , Michal Simek , Masahiro Yamada , Randy Dunlap , Peter Collingbourne , linux-aspeed , dri-devel , Linux ARM , The etnaviv authors , Linux Fbdev development list References: <20210408092011.52763-1-david@redhat.com> <20210408092011.52763-3-david@redhat.com> <7496ac87-9676-1b4e-3444-c2a662ec376b@redhat.com> <3a2d64a7-8425-8daf-17ee-95b9f0c635f9@redhat.com> From: David Hildenbrand Organization: Red Hat GmbH Message-ID: Date: Fri, 9 Apr 2021 10:07:01 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210409_090716_635853_4548A7BA X-CRM114-Status: GOOD ( 22.46 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 08.04.21 15:19, Arnd Bergmann wrote: > On Thu, Apr 8, 2021 at 2:50 PM Linus Walleij wrote: >> >> On Thu, Apr 8, 2021 at 2:01 PM David Hildenbrand wrote: >> >>>> This is something you could do using a hidden helper symbol like >>>> >>>> config DRMA_ASPEED_GFX >>>> bool "Aspeed display driver" >>>> select DRM_WANT_CMA >>>> >>>> config DRM_WANT_CMA >>>> bool >>>> help >>>> Select this from any driver that benefits from CMA being enabled >>>> >>>> config DMA_CMA >>>> bool "Use CMA helpers for DRM" >>>> default DRM_WANT_CMA >>>> >>>> Arnd >>>> >>> >>> That's precisely what I had first, with an additional "WANT_CMA" -- but >>> looking at the number of such existing options (I was able to spot 1 !) >> >> If you do this it probably makes sense to fix a few other drivers >> Kconfig in the process. It's not just a problem with your driver. >> "my" drivers: >> >> drivers/gpu/drm/mcde/Kconfig >> drivers/gpu/drm/pl111/Kconfig >> drivers/gpu/drm/tve200/Kconfig >> >> certainly needs this as well, and pretty much anything that is >> selecting DRM_KMS_CMA_HELPER or >> DRM_GEM_CMA_HELPER "wants" DMA_CMA. > > Are there any that don't select either of the helpers and > still want CMA? If not, it would be easy to just add > > default DRM_KMS_CMA_HELPER || DRM_GEM_CMA_HELPER > > and skipt the extra symbol. That sounds like a reasonable thing to do. I'll look into that. -- Thanks, David / dhildenb _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.1 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 443A8C43461 for ; Fri, 9 Apr 2021 08:07:17 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 08B0D611C1 for ; Fri, 9 Apr 2021 08:07:17 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 08B0D611C1 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7772E6EB8C; Fri, 9 Apr 2021 08:07:16 +0000 (UTC) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by gabe.freedesktop.org (Postfix) with ESMTPS id A13196EB8C for ; Fri, 9 Apr 2021 08:07:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1617955634; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=k2PTBL+nqzlKBelC7c/vISZYvaV01k6PixS2+D0BjW8=; b=V+51ZP6VFT0bi9F+UlEgbg9fq3q0B782puEtIYb1CuSLMxbuHuCNg6xm8yvucAre7p1Clx mEu+NflWch2TSyyUdZ17O922jsIECJtGfSIpj6NOdua5N/mduD/cjQEEPg2uDegk3Oixbw p/Uas0oef3HO1ORR4owv8+vGDirMrik= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-180-sYcaZKqyO02l33jnkyP5XA-1; Fri, 09 Apr 2021 04:07:10 -0400 X-MC-Unique: sYcaZKqyO02l33jnkyP5XA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 748496D246; Fri, 9 Apr 2021 08:07:08 +0000 (UTC) Received: from [10.36.115.11] (ovpn-115-11.ams2.redhat.com [10.36.115.11]) by smtp.corp.redhat.com (Postfix) with ESMTP id 701F75C1D5; Fri, 9 Apr 2021 08:07:02 +0000 (UTC) Subject: Re: [PATCH v1 2/2] drivers/gpu/drm: don't select DMA_CMA or CMA from aspeed or etnaviv To: Arnd Bergmann , Linus Walleij References: <20210408092011.52763-1-david@redhat.com> <20210408092011.52763-3-david@redhat.com> <7496ac87-9676-1b4e-3444-c2a662ec376b@redhat.com> <3a2d64a7-8425-8daf-17ee-95b9f0c635f9@redhat.com> From: David Hildenbrand Organization: Red Hat GmbH Message-ID: Date: Fri, 9 Apr 2021 10:07:01 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 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: Linux ARM , Linux Fbdev development list , linux-aspeed , Bartlomiej Zolnierkiewicz , David Airlie , Andrew Jeffery , Masahiro Yamada , Randy Dunlap , The etnaviv authors , Linux Kernel Mailing List , dri-devel , Michal Simek , Linux-MM , Joel Stanley , Russell King , Peter Collingbourne , Mike Rapoport Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 08.04.21 15:19, Arnd Bergmann wrote: > On Thu, Apr 8, 2021 at 2:50 PM Linus Walleij wrote: >> >> On Thu, Apr 8, 2021 at 2:01 PM David Hildenbrand wrote: >> >>>> This is something you could do using a hidden helper symbol like >>>> >>>> config DRMA_ASPEED_GFX >>>> bool "Aspeed display driver" >>>> select DRM_WANT_CMA >>>> >>>> config DRM_WANT_CMA >>>> bool >>>> help >>>> Select this from any driver that benefits from CMA being enabled >>>> >>>> config DMA_CMA >>>> bool "Use CMA helpers for DRM" >>>> default DRM_WANT_CMA >>>> >>>> Arnd >>>> >>> >>> That's precisely what I had first, with an additional "WANT_CMA" -- but >>> looking at the number of such existing options (I was able to spot 1 !) >> >> If you do this it probably makes sense to fix a few other drivers >> Kconfig in the process. It's not just a problem with your driver. >> "my" drivers: >> >> drivers/gpu/drm/mcde/Kconfig >> drivers/gpu/drm/pl111/Kconfig >> drivers/gpu/drm/tve200/Kconfig >> >> certainly needs this as well, and pretty much anything that is >> selecting DRM_KMS_CMA_HELPER or >> DRM_GEM_CMA_HELPER "wants" DMA_CMA. > > Are there any that don't select either of the helpers and > still want CMA? If not, it would be easy to just add > > default DRM_KMS_CMA_HELPER || DRM_GEM_CMA_HELPER > > and skipt the extra symbol. That sounds like a reasonable thing to do. I'll look into that. -- Thanks, David / dhildenb _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel