diff mbox series

HISI LPC: Add Kconfig MFD_CORE dependency

Message ID 1524138946-136701-1-git-send-email-john.garry@huawei.com
State Superseded
Headers show
Series HISI LPC: Add Kconfig MFD_CORE dependency | expand

Commit Message

John Garry April 19, 2018, 11:55 a.m. UTC
For ACPI support of the HiSilicon LPC driver we depend
on MFD_CORE config.

Currently the HiSi LPC Kconfig entry does not define this
dependency, so add it.

Fixes: e0aa1563f894 ("HISI LPC: Add ACPI support")
Reported-and-tested-by: Tan Xiaojun <tanxiaojun@huawei.com>
Signed-off-by: John Garry <john.garry@huawei.com>


-- 
1.9.1

Comments

Arnd Bergmann April 19, 2018, noon UTC | #1
On Thu, Apr 19, 2018 at 1:55 PM, John Garry <john.garry@huawei.com> wrote:
> For ACPI support of the HiSilicon LPC driver we depend

> on MFD_CORE config.

>

> Currently the HiSi LPC Kconfig entry does not define this

> dependency, so add it.

>

> Fixes: e0aa1563f894 ("HISI LPC: Add ACPI support")

> Reported-and-tested-by: Tan Xiaojun <tanxiaojun@huawei.com>

> Signed-off-by: John Garry <john.garry@huawei.com>


Can you explain the specific dependency? Normally MFD_CORE gets
selected by an MFD driver but not other drivers.

       Arnd
John Garry April 19, 2018, 1:08 p.m. UTC | #2
On 19/04/2018 13:00, Arnd Bergmann wrote:
> On Thu, Apr 19, 2018 at 1:55 PM, John Garry <john.garry@huawei.com> wrote:

>> For ACPI support of the HiSilicon LPC driver we depend

>> on MFD_CORE config.

>>

>> Currently the HiSi LPC Kconfig entry does not define this

>> dependency, so add it.

>>

>> Fixes: e0aa1563f894 ("HISI LPC: Add ACPI support")

>> Reported-and-tested-by: Tan Xiaojun <tanxiaojun@huawei.com>

>> Signed-off-by: John Garry <john.garry@huawei.com>

>

> Can you explain the specific dependency? Normally MFD_CORE gets

> selected by an MFD driver but not other drivers.

>


For each device on the LPC bus we create an MFD.

The reason we do this is that we need to set the resources of the 
derived MFD, as we should not modify the original ACPI device created in 
ACPI scan. Details are in the log for e0aa1563f894.

Shall I update commit message updated with this info? Or were you just 
interested in the motivation for using MFD?

Thanks,
John

>        Arnd

>

> .

>
Arnd Bergmann April 19, 2018, 1:29 p.m. UTC | #3
On Thu, Apr 19, 2018 at 3:08 PM, John Garry <john.garry@huawei.com> wrote:
> On 19/04/2018 13:00, Arnd Bergmann wrote:

>>

>> On Thu, Apr 19, 2018 at 1:55 PM, John Garry <john.garry@huawei.com> wrote:

>>>

>>> For ACPI support of the HiSilicon LPC driver we depend

>>> on MFD_CORE config.

>>>

>>> Currently the HiSi LPC Kconfig entry does not define this

>>> dependency, so add it.

>>>

>>> Fixes: e0aa1563f894 ("HISI LPC: Add ACPI support")

>>> Reported-and-tested-by: Tan Xiaojun <tanxiaojun@huawei.com>

>>> Signed-off-by: John Garry <john.garry@huawei.com>

>>

>>

>> Can you explain the specific dependency? Normally MFD_CORE gets

>> selected by an MFD driver but not other drivers.

>>

>

> For each device on the LPC bus we create an MFD.

>

> The reason we do this is that we need to set the resources of the derived

> MFD, as we should not modify the original ACPI device created in ACPI scan.

> Details are in the log for e0aa1563f894.

>

> Shall I update commit message updated with this info? Or were you just

> interested in the motivation for using MFD?


I think it would be good to update the description. I had missed the part
where an LPC device becomes a platform_device through an mfd_cell
rather than becoming a device with bus_type=&isa_bus_type as I think
was the case in earlier versions of your patch series.

     Arnd
John Garry April 19, 2018, 1:42 p.m. UTC | #4
On 19/04/2018 14:29, Arnd Bergmann wrote:
> On Thu, Apr 19, 2018 at 3:08 PM, John Garry <john.garry@huawei.com> wrote:

>> On 19/04/2018 13:00, Arnd Bergmann wrote:

>>>

>>> On Thu, Apr 19, 2018 at 1:55 PM, John Garry <john.garry@huawei.com> wrote:

>>>>

>>>> For ACPI support of the HiSilicon LPC driver we depend

>>>> on MFD_CORE config.

>>>>

>>>> Currently the HiSi LPC Kconfig entry does not define this

>>>> dependency, so add it.

>>>>

>>>> Fixes: e0aa1563f894 ("HISI LPC: Add ACPI support")

>>>> Reported-and-tested-by: Tan Xiaojun <tanxiaojun@huawei.com>

>>>> Signed-off-by: John Garry <john.garry@huawei.com>

>>>

>>>

>>> Can you explain the specific dependency? Normally MFD_CORE gets

>>> selected by an MFD driver but not other drivers.

>>>

>>

>> For each device on the LPC bus we create an MFD.

>>

>> The reason we do this is that we need to set the resources of the derived

>> MFD, as we should not modify the original ACPI device created in ACPI scan.

>> Details are in the log for e0aa1563f894.

>>

>> Shall I update commit message updated with this info? Or were you just

>> interested in the motivation for using MFD?

>

> I think it would be good to update the description. I had missed the part

> where an LPC device becomes a platform_device through an mfd_cell

> rather than becoming a device with bus_type=&isa_bus_type as I think

> was the case in earlier versions of your patch series.

>


OK, fine. FYI, this was originally discussed here: 
https://lkml.org/lkml/2017/6/13/602

BTW, as for merging patches for this driver, it would seem the right 
place for it to go through arm/soc tree (obviously depending on 
dependencies). Since xuwei is away this week, could you kindly pick up 
v2 for fixes?

Thanks,
John


>      Arnd

>

> .

>
diff mbox series

Patch

diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
index d1c0b60..6dc177b 100644
--- a/drivers/bus/Kconfig
+++ b/drivers/bus/Kconfig
@@ -33,6 +33,7 @@  config HISILICON_LPC
 	bool "Support for ISA I/O space on HiSilicon Hip06/7"
 	depends on ARM64 && (ARCH_HISI || COMPILE_TEST)
 	select INDIRECT_PIO
+	select MFD_CORE if ACPI
 	help
 	  Driver to enable I/O access to devices attached to the Low Pin
 	  Count bus on the HiSilicon Hip06/7 SoC.