+linux-acpi, +Rafael for context
On 11/8/2017 12:51 PM, Robin Murphy wrote:
Apologies if I wasn't very clear, but what I meant to imply by dropping the of_device_get_match_data() hint was to follow one of the common patterns where you either just have some version token:
ÂÂÂÂenum foo_ver {
ÂÂÂÂÂÂÂ FOO_V1,
ÂÂÂÂÂÂÂ ...
ÂÂÂÂ}
ÂÂÂÂstruct acpi_device_id foo_acpi_ids[] = {
ÂÂÂÂÂÂÂ { "_FOO0001", FOO_V1 },
ÂÂÂÂÂÂÂ ...
ÂÂÂÂ}
ÂÂÂÂstruct of_device_id foo_of_match[] = {
ÂÂÂÂÂÂÂ { .compatible = "foo,v1", .data = (void *)FOO_V1 },
ÂÂÂÂÂÂÂ ...
ÂÂÂÂ}
ÂÂÂÂint foo_probe(struct device *dev) {
ÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂ foodev->version = (enum foo_ver)
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ of_device_get_match_data(&dev->of_node)
ÂÂÂÂÂÂÂ ...
ÂÂÂÂ}
ÂÂÂÂint foo_reset(struct foodev *foodev) {
ÂÂÂÂÂÂÂ if (foodev->version == FOO_V1)
ÂÂÂÂÂÂÂÂÂÂÂ writel(0, foodev->base + 0x20);
ÂÂÂÂÂÂÂ else
ÂÂÂÂÂÂÂÂÂÂÂ writel(0, foodev->base + 0x30);
ÂÂÂÂ}
I did post v3 with this approach. However, I could not really find a ACPI function that
returns the driver data very similar to of_device_get_match_data(). The only thing
that is closer is acpi_match_device().
I introduced this new function as part of the v3 series.v3 looks good, thanks for persevering - I'll leave the rest up to Vinod and Rafael.
Let me know if I'm missing something.