From: "Christian König" <christian.koenig@amd.com>
To: Alex Deucher <alexdeucher@gmail.com>, Arnd Bergmann <arnd@kernel.org>
Cc: Harry Wentland <harry.wentland@amd.com>,
Leo Li <sunpeng.li@amd.com>,
Alex Deucher <alexander.deucher@amd.com>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
Nathan Chancellor <natechancellor@gmail.com>,
Nick Desaulniers <ndesaulniers@google.com>,
Luben Tuikov <luben.tuikov@amd.com>,
Arnd Bergmann <arnd@arndb.de>,
Mauro Rossi <issor.oruam@gmail.com>,
Randy Dunlap <rdunlap@infradead.org>, Roman Li <Roman.Li@amd.com>,
amd-gfx list <amd-gfx@lists.freedesktop.org>,
LKML <linux-kernel@vger.kernel.org>,
clang-built-linux <clang-built-linux@googlegroups.com>,
Maling list - DRI developers <dri-devel@lists.freedesktop.org>,
Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>,
Daniel Kolesa <daniel@octaforge.org>,
Timothy Pearson <tpearson@raptorengineering.com>
Subject: Re: [PATCH] drm/amdgpu: make DRM_AMD_DC x86-only again
Date: Mon, 7 Dec 2020 21:50:41 +0100 [thread overview]
Message-ID: <b9d7e33c-4dcd-0075-d0ca-d22b2488c354@amd.com> (raw)
In-Reply-To: <CADnq5_OmAVZGuz=xHRyST4hE4w1g10wNBQ6iMgfpQD16-9QSiQ@mail.gmail.com>
Am 07.12.20 um 21:47 schrieb Alex Deucher:
> On Fri, Dec 4, 2020 at 3:13 AM Arnd Bergmann <arnd@kernel.org> wrote:
>> From: Arnd Bergmann <arnd@arndb.de>
>>
>> As the DRM_AMD_DC_DCN3_0 code was x86-only and fails to build on
>> arm64, merging it into DRM_AMD_DC means that the top-level symbol
>> is now x86-only as well.
>>
>> Compilation fails on arm64 with clang-12 with
>>
>> drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn30/display_mode_vba_30.c:3641:6: error: stack frame size of 2416 bytes in function 'dml30_ModeSupportAndSystemConfigurationFull' [-Werror,-Wframe-larger-than=]
>> void dml30_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_lib)
>>
>> I tried to see if the stack usage can be reduced, but this is code
>> that is described as "This file is gcc-parsable HW gospel, coming
>> straight from HW engineers." and is written in a way that is inherently
>> nonportable and not meant to be understood by humans.
>>
>> There are probably no non-x86 users of this code, so simplify
>> the dependency list accordingly.
> + Daniel, Timothy
>
> Others contributed code to enable this on PPC64 and ARM64.
> Unfortunately, we don't have these platforms to test with within AMD.
> Does PPC64 have the same stack limitations as ARM64? Harry, Leo, can
> you take a look at fixing the stack usage?
This reminds me that I wanted to reply on this.
2416 is even to much on x86 if you add -Werror :)
So this needs to be fixed anyway.
Christian.
>
> Thanks,
>
> Alex
>
>> Fixes: 20f2ffe50472 ("drm/amdgpu: fold CONFIG_DRM_AMD_DC_DCN3* into CONFIG_DRM_AMD_DC_DCN (v3)")
>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>> ---
>> drivers/gpu/drm/amd/display/Kconfig | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/amd/display/Kconfig b/drivers/gpu/drm/amd/display/Kconfig
>> index 797b5d4b43e5..54aa50d4deba 100644
>> --- a/drivers/gpu/drm/amd/display/Kconfig
>> +++ b/drivers/gpu/drm/amd/display/Kconfig
>> @@ -6,7 +6,7 @@ config DRM_AMD_DC
>> bool "AMD DC - Enable new display engine"
>> default y
>> select SND_HDA_COMPONENT if SND_HDA_CORE
>> - select DRM_AMD_DC_DCN if (X86 || PPC64 || (ARM64 && KERNEL_MODE_NEON)) && !(KCOV_INSTRUMENT_ALL && KCOV_ENABLE_COMPARISONS)
>> + select DRM_AMD_DC_DCN if X86 && !(KCOV_INSTRUMENT_ALL && KCOV_ENABLE_COMPARISONS)
>> help
>> Choose this option if you want to use the new display engine
>> support for AMDGPU. This adds required support for Vega and
>> --
>> 2.27.0
>>
>> _______________________________________________
>> amd-gfx mailing list
>> amd-gfx@lists.freedesktop.org
>> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&data=04%7C01%7Cchristian.koenig%40amd.com%7Cba72f82a98a4443b0dd108d89af15c1e%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C1%7C637429708726258711%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=EU1LuB3uxSCrtAw%2BgwD%2FFWsYpZMp1FbffZvkerQ7WVs%3D&reserved=0
next prev parent reply other threads:[~2020-12-07 20:51 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-04 8:13 Arnd Bergmann
2020-12-07 20:47 ` Alex Deucher
2020-12-07 20:50 ` Christian König [this message]
2020-12-07 21:57 ` Arnd Bergmann
2020-12-07 22:07 ` Nick Desaulniers
2020-12-07 22:16 ` Arnd Bergmann
2020-12-07 22:28 ` Nick Desaulniers
2020-12-08 14:26 ` Arnd Bergmann
2020-12-08 18:21 ` Nick Desaulniers
2020-12-08 22:18 ` Arnd Bergmann
2020-12-10 22:52 ` Nick Desaulniers
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b9d7e33c-4dcd-0075-d0ca-d22b2488c354@amd.com \
--to=christian.koenig@amd.com \
--cc=Bhawanpreet.Lakha@amd.com \
--cc=Roman.Li@amd.com \
--cc=airlied@linux.ie \
--cc=alexander.deucher@amd.com \
--cc=alexdeucher@gmail.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=arnd@arndb.de \
--cc=arnd@kernel.org \
--cc=clang-built-linux@googlegroups.com \
--cc=daniel@ffwll.ch \
--cc=daniel@octaforge.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=harry.wentland@amd.com \
--cc=issor.oruam@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luben.tuikov@amd.com \
--cc=natechancellor@gmail.com \
--cc=ndesaulniers@google.com \
--cc=rdunlap@infradead.org \
--cc=sunpeng.li@amd.com \
--cc=tpearson@raptorengineering.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®