From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752649AbdLEOZr (ORCPT ); Tue, 5 Dec 2017 09:25:47 -0500 Received: from mga05.intel.com ([192.55.52.43]:46007 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752242AbdLEOZp (ORCPT ); Tue, 5 Dec 2017 09:25:45 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,364,1508828400"; d="scan'208";a="1252126928" Subject: Re: [PATCH] ACPI / LPSS: Add device link for CHT SD card dependency on I2C To: "Rafael J. Wysocki" Cc: Hans de Goede , "Rafael J. Wysocki" , Mika Westerberg , Andy Shevchenko , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, Carlo Caione References: <1512390731-11171-1-git-send-email-adrian.hunter@intel.com> <626a88b4-cf71-fd94-d78f-3947bfc5f024@redhat.com> <2244973.KDCVUlUVYl@aspire.rjw.lan> From: Adrian Hunter Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Message-ID: Date: Tue, 5 Dec 2017 16:25:20 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <2244973.KDCVUlUVYl@aspire.rjw.lan> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/12/17 17:00, Rafael J. Wysocki wrote: > On Monday, December 4, 2017 3:41:45 PM CET Adrian Hunter wrote: >> On 04/12/17 16:33, Hans de Goede wrote: >>> Hi, >>> >>> On 04-12-17 15:30, Adrian Hunter wrote: >>>> On 04/12/17 15:48, Hans de Goede wrote: >>>>> Hi, >>>>> >>>>> Wouldn't it be easier to use the ACPI _DEP tracking for this, e.g. >>>> >>>> It is using _DEP, see acpi_lpss_dep() >>>> >>>>> add something like this to the the probe function: >>>>> >>>>> struct acpi_device = ACPI_COMPANION(device); >>>>> >>>>> if (acpi_device->dep_unmet) >>>>> return -EPROBE_DEFER; >>>>> >>>>> No idea if this will work, but if it does work, using the deps described >>>>> in the ACPI tables seems like a better solution then hardcoding this. >>>> >>>> That would not work because there are other devices listed in the _DEP >>>> method so dep_unmet is always true. So we are left checking _DEP but only >>>> for specific device dependencies. >>> >>> Ugh, understood thank you for explaining this. Perhaps it is a good idea >>> to mention in the commit message why acpi_dev->dep_unmet cannot be used >>> here? >> >> dep_unmet predates device links, but now we have device links, they are >> better anyway. > > Right (they cover PM too, for example), but it would be good to note why > it is necessary to hardcode the links information in the code. It isn't entirely necessary to hardcode the links information. For example, another possibility is to create device links for all LPSS devices with _DEP methods that point to other LPSS devices i.e. match against acpi_lpss_device_ids. The assumptions would be that all LPSS devices have drivers so it would be safe to create links between them, and that the nature of the dependency is correctly represented by a device link. An advantage of that approach would be that it might work for future dependencies between LPSS devices without having to add entries to a table. The disadvantage would be the possibility that creating a device link somehow turns out not to be the right thing to do.