Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1629811

Re: [PATCH] drm/etnaviv: add thermal dependency

From Arnd Bergmann <arnd@arndb.de>
Newsgroups linux.kernel
Subject Re: [PATCH] drm/etnaviv: add thermal dependency
Date 2017-04-24 19:40 +0200
Message-ID <tzQ7T-1tV-1@gated-at.bofh.it> (permalink)
References <ty2mS-6JR-11@gated-at.bofh.it> <tzJJ8-5V5-29@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, Apr 24, 2017 at 12:44 PM, Lucas Stach <l.stach@pengutronix.de> wrote:
> Am Mittwoch, den 19.04.2017, 20:11 +0200 schrieb Arnd Bergmann:
>> When CONFIG_THERMAL is enabled as a loadable module, and etnaviv is
>> built-in, we get a link error:
>>
>> drivers/gpu/drm/etnaviv/etnaviv_gpu.o: In function `etnaviv_gpu_bind':
>> etnaviv_gpu.c:(.text.etnaviv_gpu_bind+0x34): undefined reference to `thermal_of_cooling_device_register'
>> etnaviv_gpu.c:(.text.etnaviv_gpu_bind+0xe0): undefined reference to `thermal_cooling_device_unregister'
>> drivers/gpu/drm/etnaviv/etnaviv_gpu.o: In function `etnaviv_gpu_unbind':
>> etnaviv_gpu.c:(.text.etnaviv_gpu_unbind+0xf0): undefined reference to `thermal_cooling_device_unregister'
>>
>> This adds a Kconfig dependency to prevent etnaviv from being built-in
>> with CONFIG_THERMAL=m, while still allowing the valid configurations.
>> Unfortunately, simply adding the dependency here breaks Kconfig through
>> a dependency loop involving lots of symbols all the way until ACPI_VIDEO,
>> which is the only video driver that explicitly selects 'THERMAL'. Turning
>> this into a 'depends on' addresses the problem.
>> For completeness, I'm also removing the redundant 'select THERMAL'
>> from INTEL_MENLOW, so no other driver uses that statement.
>>
>> Fixes: bcdfb5e56dc5 ("drm/etnaviv: add etnaviv cooling device")
>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
> This patch mixes a few things, so the subject doesn't really fit. I'm
> fine with taking the patch trough my tree, if I can get an ACK on the
> ACPI part.

Actually the ACPI part triggered a new warning that I haven't figured
out completely yet. Please disregard my patch for the moment.

I think we can just drop the dependency in ACPI_VIDEO, but I'm not
entirely sure yet if we could hit a broken configuration with THERMAL=m
and ACPI_VIDEO=y in that case. Unfortunately we cannot use the
same trick in ACPI_VIDEO that I used for ETNAVIV, because of
another circular dependency in ACPI.

        Arnd

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] drm/etnaviv: add thermal dependency Arnd Bergmann <arnd@arndb.de> - 2017-04-19 20:20 +0200
  Re: [PATCH] drm/etnaviv: add thermal dependency Andy Shevchenko <andy.shevchenko@gmail.com> - 2017-04-19 21:00 +0200
  Re: [PATCH] drm/etnaviv: add thermal dependency Eduardo Valentin <edubezval@gmail.com> - 2017-04-23 17:40 +0200
  Re: [PATCH] drm/etnaviv: add thermal dependency Lucas Stach <l.stach@pengutronix.de> - 2017-04-24 12:50 +0200
    Re: [PATCH] drm/etnaviv: add thermal dependency Arnd Bergmann <arnd@arndb.de> - 2017-04-24 19:40 +0200
      Re: [PATCH] drm/etnaviv: add thermal dependency Eduardo Valentin <edubezval@gmail.com> - 2017-04-25 00:10 +0200

csiph-web