]> Pileus Git - ~andy/linux/commitdiff
ARM: OMAP2+: Add support for legacy auxdata for twl
authorTony Lindgren <tony@atomide.com>
Fri, 6 Dec 2013 18:52:58 +0000 (10:52 -0800)
committerTony Lindgren <tony@atomide.com>
Sun, 8 Dec 2013 22:15:46 +0000 (14:15 -0800)
As we currently need to support a mix of legacy platform data and
device tree intialized data, let's make sure things keep working
for the TWL GPIOs.

Mostly the issue is caused by the fact that DSS does not yet have
device tree bindings, so we need to rely on the TWL GPIO callback
for setting up things like LCD backlight for some boards.

As of_platform_populate() for the TWL GPIO is called by twl-core
after the I2C bus has been initialized, we cannot pass the auxdata
table from the board init code to twl-core like we used to with
just legacy platform data.

So let's use the omap_device bus hook to patch in the platform
data for TWL GPIO until we have sorted out the issues with the
TWL GPIOs and device tree bindings.

The other option was be to initialize twl core using legacy
platform data, which seems like a step backwards as we're moving
to device tree only initialization.  And we really don't want to
add custom configuration functions to the TWL GPIO driver either
for this.

Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/common.h
arch/arm/mach-omap2/omap_device.c
arch/arm/mach-omap2/pdata-quirks.c

index e30ef6797c6311798cbb92b4521c56306b7fdc67..240db38f232c66226bca15be02aa144a8021acce 100644 (file)
@@ -293,6 +293,7 @@ static inline void omap4_cpu_resume(void)
 #endif
 
 void pdata_quirks_init(struct of_device_id *);
+void omap_auxdata_legacy_init(struct device *dev);
 void omap_pcs_legacy_init(int irq, void (*rearm)(void));
 
 struct omap_sdrc_params;
index 53f0735817bb7cf984f3fada24c7e8960941860c..828f538b1c4e7f75f5cd1525e671f5520c8b5403 100644 (file)
@@ -36,6 +36,7 @@
 #include <linux/of.h>
 #include <linux/notifier.h>
 
+#include "common.h"
 #include "soc.h"
 #include "omap_device.h"
 #include "omap_hwmod.h"
@@ -200,6 +201,7 @@ static int _omap_device_notifier_call(struct notifier_block *nb,
        case BUS_NOTIFY_ADD_DEVICE:
                if (pdev->dev.of_node)
                        omap_device_build_from_dt(pdev);
+               omap_auxdata_legacy_init(dev);
                /* fall through */
        default:
                od = to_omap_device(pdev);
index 6a7554515b6eca0cb61d702a37c92f3e01a29713..47afff3b9c379bb4aa254086b748720dbffd665f 100644 (file)
@@ -27,6 +27,7 @@ struct pdata_init {
 };
 
 struct of_dev_auxdata omap_auxdata_lookup[];
+static struct twl4030_gpio_platform_data twl_gpio_auxdata;
 
 /*
  * Create alias for USB host PHY clock.
@@ -136,6 +137,21 @@ void omap_pcs_legacy_init(int irq, void (*rearm)(void))
        pcs_pdata.rearm = rearm;
 }
 
+/*
+ * GPIOs for TWL are initialized by the I2C bus and need custom
+ * handing until DSS has device tree bindings.
+ */
+void omap_auxdata_legacy_init(struct device *dev)
+{
+       if (dev->platform_data)
+               return;
+
+       if (strcmp("twl4030-gpio", dev_name(dev)))
+               return;
+
+       dev->platform_data = &twl_gpio_auxdata;
+}
+
 /*
  * Few boards still need auxdata populated before we populate
  * the dev entries in of_platform_populate().