From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chen Gang Subject: Re: [PATCH] drivers/ptp/Kconfig: add "depends on HAS_IOMEM" for 'PTP_1588_CLOCK_PCH' Date: Mon, 01 Jul 2013 16:17:31 +0800 Message-ID: <51D13B1B.10605@asianux.com> References: <51CB8CB7.6010006@asianux.com> <20130628.212311.1348427834856668120.davem@davemloft.net> <51D0DCB5.5060106@asianux.com> <51D11661.7040604@nod.at> <51D11D14.8000706@asianux.com> <51D122F0.1000204@nod.at> <51D12545.4000108@asianux.com> <51D1341E.6090908@asianux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Richard Weinberger , David Miller , Richard Cochran , "netdev@vger.kernel.org" To: Geert Uytterhoeven Return-path: Received: from intranet.asianux.com ([58.214.24.6]:45262 "EHLO intranet.asianux.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752816Ab3GAISX (ORCPT ); Mon, 1 Jul 2013 04:18:23 -0400 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On 07/01/2013 03:56 PM, Geert Uytterhoeven wrote: > On Mon, Jul 1, 2013 at 9:47 AM, Chen Gang wrote: >> > On 07/01/2013 03:32 PM, Geert Uytterhoeven wrote: >>> >> On Mon, Jul 1, 2013 at 8:44 AM, Chen Gang wrote: >>>>> >>> > On 07/01/2013 02:34 PM, Richard Weinberger wrote: >>>>>>>>> >>>>> >>> config COMPILE_TEST >>>>>>>>>>> >>>>>> >>> > bool "Compile also drivers which will not load" >>>>>>>>>>> >>>>>> >>> > default n >>>>>>>>>>> >>>>>> >>> > help >>>>>>>>>>> >>>>>> >>> > Some drivers can be compiled on a different platform than they are >>>>>>>>>>> >>>>>> >>> > intended to be run on. Despite they cannot be loaded there (or even >>>>>>>>>>> >>>>>> >>> > when they load they cannot be used due to missing HW support), >>>>>>>>>>> >>>>>> >>> > developers still, opposing to distributors, might want to build such >>>>>>>>>>> >>>>>> >>> > drivers to compile-test them. >>>>>>>>>>> >>>>>> >>> > >>>>>>>>>>> >>>>>> >>> > If you are a developer and want to build everything available, say Y >>>>>>>>>>> >>>>>> >>> > here. If you are a user/distributor, say N here to exclude useless >>>>>>>>>>> >>>>>> >>> > drivers to be distributed. >>>>>>>>>>> >>>>>> >>> > >>>>>>>>>>> >>>>>> >>> > I guess, 'COMPILE_TEST' is really useful for UML. >>>>>>> >>>> >> No. >>>>>>> >>>> >> >>>>>>> >>>> >> We have explained you more than once what the deal and why UML does not >>>>>>> >>>> >> have ioremap() and friends. >>>>> >>> > >>>>> >>> > This time, it is not for UML, it is for 'COMPILE_TEST': the >>>>> >>> > 'asm-generic' whether need consider it. >>> >> COMPILE_TEST is only meant to be used as a dependency in Kconfig files, >>> >> to make drivers that cannot work due to missing hardware invisible when >>> >> configuring your kernel. >> > >> > Why "Despite they cannot be loaded there (or even when they load they >> > cannot be used due to missing HW support)" ? >> > >>> >> There should be no #ifdefs in actual code that check for (the lack of) >>> >> CONFIG_COMPILE_TEST. >> > >> > In ideal world, it should be no #ifdefs for all "CONFIG_*" in 'normal code'. >> > >> > But "asm-generic" are not belong to 'normal code', it is one of the main >> > place to process "CONFIG_*". >> > >> > If the platforms need support 'COMPILE_TEST', the asm-generic is the >> > main place for implementing it. >> > >> > So I think our focus is on "whether the platforms guys need support >> > 'COMPILE_TEST" for modules guys". > COMPILE_TEST is to be used as a dependency if the code would compile, > but would not run. Adding fixes in the code to make more code compile is not > the job of COMPILE_TEST. > But from the explanation of 'COMPILE_TEST' in its Kconig, it seems not like what you said. e.g."Despite they cannot be loaded there (or even when they load they cannot be used due to missing HW support)" Can we allow the module to 'COMPILE_TEST' under one platform which not support the related HW. > If we follow your reasoning, we can add dummy variants of all hardware support > that lives in arch/*/include/asm to asm-generic, so everything would compile > for all platforms. But that's now what we want. "If HW support, implement default one, else do nothing" is more like "default work", not "generic work". "asm-generic" has already added default implementation for all platforms, it also checked whether the HW support or not, that means at least more than 80% works has done. So if we still call it "asm-generic", I recommend to implement dummy one. Thanks. -- Chen Gang