lkml.org 
[lkml]   [2016]   [Sep]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v5 2/3] mfd: add support for Allwinner SoCs ADC
From
Date


On 12/09/2016 11:59, Lee Jones wrote:
> On Mon, 12 Sep 2016, Quentin Schulz wrote:
>
>> On 12/09/2016 11:18, Lee Jones wrote:
>>> On Thu, 08 Sep 2016, Quentin Schulz wrote:
>>>
>> [...]
>
> [...]
>
>>>> +++ b/drivers/mfd/sun4i-gpadc-mfd.c
>
> [...]
>
>>>> +static struct mfd_cell sun4i_gpadc_mfd_cells[] = {
>>>> + {
>>>> + .name = "sun4i-a10-gpadc-iio",
>>>> + .resources = adc_resources,
>>>> + .num_resources = ARRAY_SIZE(adc_resources),
>>>> + }, {
>>>> + .name = "iio_hwmon",
>>>> + }
>>>
>>> Single line please
>>>
>>> { .name = "iio_hwmon" }
>>>
>>
>> + {
>> + .name = "sun4i-a10-gpadc-iio",
>> + .resources = adc_resources,
>> + .num_resources = ARRAY_SIZE(adc_resources),
>> + }, { .name = "iio_hwmon" }
>>
>> or
>>
>> + {
>> + .name = "sun4i-a10-gpadc-iio",
>> + .resources = adc_resources,
>> + .num_resources = ARRAY_SIZE(adc_resources),
>> + },
>> + { .name = "iio_hwmon" }
>>
>> ?
>
> The latter.
>
> [...]
>
>>>> +static const struct of_device_id sun4i_gpadc_mfd_of_match[] = {
>>>> + {
>>>> + .compatible = "allwinner,sun4i-a10-ts",
>>>> + .data = &sun4i_gpadc_mfd_cells,
>>>> + }, {
>>>> + .compatible = "allwinner,sun5i-a13-ts",
>>>> + .data = &sun5i_gpadc_mfd_cells,
>>>> + }, {
>>>> + .compatible = "allwinner,sun6i-a31-ts",
>>>> + .data = &sun6i_gpadc_mfd_cells,
>>>> + }, { /* sentinel */ }
>>>> +};
>>>
>>> Don't mix OF and MFD functionality.
>>>
>>> Why don't you create a node for "iio_hwmon" and have
>>> platform_of_populate() do your bidding?
>>>
>>
>> We are using a stable binding which we cannot modify. This means, the DT
>> in its current state can only be modified to add features, which is not
>> the case of this driver (it is a rewriting of an existing driver which
>> uses the rtp node).
>
> Then use .data = <defined model ID> and set up a switch() in .probe().
>
>>>> +static int sun4i_gpadc_mfd_probe(struct platform_device *pdev)
>>>
>>> Remove all mention of "mfd" from this file.
>>>
>>> (Accept the calls to the MFD API of course).
>>>
>> [...]
>>>> +
>>>> +MODULE_DEVICE_TABLE(of, sun4i_gpadc_mfd_of_match);
>>>
>>> Place this directly under the table.
>>>
>>>> +static struct platform_driver sun4i_gpadc_mfd_driver = {
>>>> + .driver = {
>>>> + .name = "sun4i-adc-mfd",
>>>> + .of_match_table = of_match_ptr(sun4i_gpadc_mfd_of_match),
>>>> + },
>>>> + .probe = sun4i_gpadc_mfd_probe,
>>>
>>> No .remove?
>>>
>>
>> No, everything in probe is handled with devm functions.
>
> Don't you need to undo the register write you did?
>

The regmap_write I use is there to disable all interrupts on hardware
side before the irq_chip handles all interrupts by itself. The
interrupts are not used in the MFD driver.

Thus, I chose to disable the hardware interrupts in the remove function
of drivers using the interrupts (only the IIO yet but the touchscreen
driver later also which will be using a third interrupt). When the MFD
driver is removed, the MFD cells will all be removed, thus calling their
own remove functions, thus disabling hardware interrupts used in each
driver. So the hardware interrupts disabling would be called twice.

Quentin

[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2016-09-17 09:59    [W:0.075 / U:0.628 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site