[PATCH v9 5/7] ACPI: Translate the I/O range of non-MMIO devices before scanning
From: rafael@kernel.org (Rafael J. Wysocki)
Date: 2017-06-16 11:24:36
Also in:
linux-acpi, linux-pci, lkml
On Fri, Jun 16, 2017 at 10:33 AM, Mika Westerberg [off-list ref] wrote:
On Thu, Jun 15, 2017 at 06:01:02PM +0000, Gabriele Paoloni wrote:quoted
Hi Mikaquoted
-----Original Message----- From: linux-pci-owner at vger.kernel.org [mailto:linux-pci- owner at vger.kernel.org] On Behalf Of Mika Westerberg Sent: 13 June 2017 21:04 To: Gabriele Paoloni Cc: Lorenzo Pieralisi; rafael at kernel.org; Rafael J. Wysocki; catalin.marinas at arm.com; will.deacon at arm.com; robh+dt at kernel.org; frowand.list at gmail.com; bhelgaas at google.com; arnd at arndb.de; linux-arm- kernel at lists.infradead.org; mark.rutland at arm.com; brian.starkey at arm.com; olof at lixom.net; benh at kernel.crashing.org; linux- kernel at vger.kernel.org; linux-acpi at vger.kernel.org; Linuxarm; linux- pci at vger.kernel.org; minyard at acm.org; John Garry; xuwei (O) Subject: Re: [PATCH v9 5/7] ACPI: Translate the I/O range of non-MMIO devices before scanning On Tue, Jun 13, 2017 at 07:01:38PM +0000, Gabriele Paoloni wrote:quoted
I am not very familiar with Linux MFD however the main issue here isthatquoted
1) for IPMI we want to re-use the standard IPMI driver withouttouching it:quoted
see static const struct acpi_device_id acpi_ipmi_match[] = { { "IPI0001", 0 }, { }, }; in "drivers/char/ipmi/ipmi_si_intf.c" (and in general any standarddriverquoted
of an LPC child) 2) We need a way to guarantee that all LPC children are notenumeratedquoted
by acpi_default_enumeration() (so for example if an ipmi node isan LPC#quoted
child it should not be enumerated, otherwise it should be) Currently acpi_default_enumeration() skips spi/i2c slaves bychecking:quoted
1) if the acpi resource type is a serial bus 2) if the type of serial bus descriptor is I2C or SPI For LPC we cannot leverage on any ACPI property to "recognize"that ourquoted
devices are LPC children; hence before I proposed foracpi_default_enumeration()quoted
to skip devices that have already been enumerated (by calling acpi_device_enumerated() ). So in the current scenario, how do you think that MFD can help?If you look at Documentation/acpi/enumeration.txt there is a chapter "MFD devices". I think it pretty much maches what you have here. An LPC device (MFD device) and bunch of child devices. The driver for your LPC device can specify _HID for each child device. Those are then mached by the MFD ACPI code to the corresponding ACPI nodes from which platform devices are created including "IPI0001".So I guess here in the LPC driver I would have an MFD cell for IPMI. I.e.: static struct mfd_cell_acpi_match hisi_lpc_ipmi_acpi_match = { .pnpid = "IPI0001", }; correct?Yes.quoted
quoted
It causes acpi_default_enumeration() to be called but it should be fine as we are dealing with platform device anyway.I do not quite understand how declaring such MFD cell above would make sure that the LPC probe is called before the IPMI device is enumerated...In fact it may be that it is not sufficient in this case because the ACPI core might enumerate child devices before the LPC driver even gets a chance to probe so you would need to add also scan handler to the child devices and mark them already enumerated or something like that.
Or extend the special I2C/SPI handling to them. Thanks, Rafael