From: hdegoede@redhat.com (Hans de Goede)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC v3 08/13] ahci-platform: Allow specifying platform_data through of_device_id
Date: Mon, 20 Jan 2014 10:17:24 +0100 [thread overview]
Message-ID: <52DCE9A4.50901@redhat.com> (raw)
In-Reply-To: <20140120090950.GI16215@pengutronix.de>
Hi,
On 01/20/2014 10:09 AM, Sascha Hauer wrote:
> On Mon, Jan 20, 2014 at 09:35:06AM +0100, Hans de Goede wrote:
>> Hi,
>>
>> On 01/20/2014 09:24 AM, Sascha Hauer wrote:
>>>> +
>>>> +static const struct ahci_platform_data *ahci_get_pdata(struct device *dev)
>>>> +{
>>>> + struct ahci_platform_data *pdata;
>>>> + const struct of_device_id *of_id;
>>>> +
>>>> + pdata = dev_get_platdata(dev);
>>>> + if (pdata)
>>>> + return pdata;
>>>> +
>>>> + of_id = of_match_device(ahci_of_match, dev);
>>>> + if (of_id)
>>>> + return of_id->data;
>>>
>>> I don't think it's a good idea to force of_id->data to be of type struct
>>> struct ahci_platform_data *. With this we don't have a place to store
>>> SoC specific data anymore.
>>
>> ?? ahci_platform_data *is* soc specific data, it allows various soc
>> specific overrides.
>
> I know, but it might not be enough for encding the slight differences
> between i.MX53 and i.MX6. So you say then we would need to different
> instances of struct ahci_platform_data, one for i.MX53 and one for
> i.MX6. Ok, that works.
>
> Overall I must say that I'm not really happy with giving up control over
> the probe function and putting ahci_platform as a midlayer between the
> SoC and the ahci lib. Just my 2 cents, if I'm the only one feel free to
> ignore me, but maybe there are others that have the same feeling.
I'm currently working on a slightly different implementation of a more
generic ahci_platform.c where ahci_platform.c exports some standard platform
related functionality as library functions.
Drivers which need to override some of ahci_platform.c's behavior because of
non standard hw, will then export their own struct platform_driver and can
call into the exported functions for standard stuff to avoid code duplication
where appropriate, while still having 100% freedom to do things in a custom
way where necessary.
I hope to post a PATCH RFC v4 with these changes later today, which you will
hopefully like better. Input on v4, even just a "yep better" remark would be
much appreciated.
Regards,
Hans
next prev parent reply other threads:[~2014-01-20 9:17 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-18 23:48 [RFC v3 00/13] ahci: add sunxi driver and cleanup imx driver Hans de Goede
2014-01-18 23:48 ` [RFC v3 01/13] libahci: Allow drivers to override start_engine Hans de Goede
2014-01-19 4:46 ` Tejun Heo
2014-01-19 18:48 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 02/13] sata-highbank: Remove unnecessary ahci_platform.h include Hans de Goede
2014-01-19 11:15 ` Tejun Heo
2014-01-18 23:48 ` [RFC v3 03/13] ahci-platform: Fix clk enable/disable unbalance on suspend/resume Hans de Goede
2014-01-19 11:14 ` Tejun Heo
2014-01-19 18:47 ` Hans de Goede
2014-01-19 19:15 ` Tejun Heo
2014-01-19 19:52 ` Hans de Goede
2014-01-20 12:26 ` Tejun Heo
2014-01-18 23:48 ` [RFC v3 04/13] ahci-platform: Undo pdata->resume on resume failure Hans de Goede
2014-01-19 11:27 ` Tejun Heo
2014-01-19 18:40 ` Hans de Goede
2014-01-19 19:13 ` Tejun Heo
2014-01-19 19:34 ` Hans de Goede
2014-01-19 19:42 ` Tejun Heo
2014-01-19 19:53 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 05/13] ahci-platform: Pass ahci_host_priv ptr to ahci_platform_data init method Hans de Goede
2014-01-19 11:30 ` Tejun Heo
2014-01-19 18:51 ` Hans de Goede
2014-01-19 19:17 ` Tejun Heo
2014-01-19 19:56 ` Hans de Goede
2014-01-20 12:28 ` Tejun Heo
2014-01-18 23:48 ` [RFC v3 06/13] ahci-platform: Add support for devices with more then 1 clock Hans de Goede
2014-01-19 12:38 ` Russell King - ARM Linux
2014-01-19 19:20 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 07/13] ahci-platform: Add support for an optional regulator for sata-target power Hans de Goede
2014-01-18 23:48 ` [RFC v3 08/13] ahci-platform: Allow specifying platform_data through of_device_id Hans de Goede
2014-01-19 11:38 ` Tejun Heo
2014-01-19 12:30 ` Russell King - ARM Linux
2014-01-19 13:19 ` Tejun Heo
2014-01-19 18:56 ` Hans de Goede
2014-01-19 19:22 ` Tejun Heo
2014-01-20 8:24 ` Sascha Hauer
2014-01-20 8:35 ` Hans de Goede
2014-01-20 9:09 ` Sascha Hauer
2014-01-20 9:17 ` Hans de Goede [this message]
2014-01-20 9:57 ` Sascha Hauer
2014-01-18 23:48 ` [RFC v3 09/13] ARM: sunxi: Add support for Allwinner SUNXi SoCs sata to ahci_platform Hans de Goede
2014-01-19 12:22 ` Russell King - ARM Linux
2014-01-19 19:07 ` Hans de Goede
2014-01-19 19:56 ` Russell King - ARM Linux
2014-01-19 20:01 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 10/13] ahci_imx: Adjust for ahci_platform managing the clocks Hans de Goede
2014-01-19 12:41 ` Russell King - ARM Linux
2014-01-19 19:30 ` Hans de Goede
2014-01-19 19:32 ` Russell King - ARM Linux
2014-01-19 19:38 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 11/13] ahci-imx: Don't create a nested platform device from probe Hans de Goede
2014-01-19 12:25 ` Russell King - ARM Linux
2014-01-19 19:08 ` Hans de Goede
2014-01-18 23:48 ` [RFC v3 12/13] ARM: sun4i: dts: Add ahci / sata support Hans de Goede
2014-01-18 23:48 ` [RFC v3 13/13] ARM: sun7i: " Hans de Goede
2014-01-19 9:52 ` [RFC v3 00/13] ahci: add sunxi driver and cleanup imx driver Russell King - ARM Linux
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52DCE9A4.50901@redhat.com \
--to=hdegoede@redhat.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).