From: "Luis R. Rodriguez" <mcgrof@xxxxxxxxxxxxxxxx> Grant added the ability to the driver core to return EPROBE_DEFER at device driver probe time and for that to trigger a later deferred probe through a workqueue. It seems we could in theory backport this functionality but that requires quite a bit of work. For now just pass on the EPROBE_DEFER definition safely and for older kernels than 3.4 the EPROBE_DEFER would be treated as a regular probe error. mcgrof@frijol ~/linux-stable (git::master)$ git describe --contains d1c3414c v3.4-rc1~187^2~10 commit d1c3414c2a9d10ef7f0f7665f5d2947cd088c093 Author: Grant Likely <grant.likely@xxxxxxxxxxxx> Date: Mon Mar 5 08:47:41 2012 -0700 drivercore: Add driver probe deferral mechanism Allow drivers to report at probe time that they cannot get all the resources required by the device, and should be retried at a later time. This should completely solve the problem of getting devices initialized in the right order. Right now this is mostly handled by mucking about with initcall ordering which is a complete hack, and doesn't even remotely handle the case where device drivers are in modules. This approach completely sidesteps the issues by allowing driver registration to occur in any order, and any driver can request to be retried after a few more other drivers get probed. v4: - Integrate Manjunath's addition of a separate workqueue - Change -EAGAIN to -EPROBE_DEFER for drivers to trigger deferral - Update comment blocks to reflect how the code really works v3: - Hold off workqueue scheduling until late_initcall so that the bulk of driver probes are complete before we start retrying deferred devices. - Tested with simple use cases. Still needs more testing though. Using it to get rid of the gpio early_initcall madness, or to replace the ASoC internal probe deferral code would be ideal. v2: - added locking so it should no longer be utterly broken in that regard - remove device from deferred list at device_del time. - Still completely untested with any real use case, but has been boot tested. Signed-off-by: Grant Likely <grant.likely@xxxxxxxxxxxx> Cc: Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Dilan Lee <dilee@xxxxxxxxxx> Cc: Manjunath GKondaiah <manjunath.gkondaiah@xxxxxxxxxx> Cc: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Cc: Tony Lindgren <tony@xxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Reviewed-by: Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx> Acked-by: David Daney <david.daney@xxxxxxxxxx> Reviewed-by: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Luis R. Rodriguez <mcgrof@xxxxxxxxxxxxxxxx> --- backport/include/linux/compat-3.4.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backport/include/linux/compat-3.4.h b/backport/include/linux/compat-3.4.h index 01a72b7..2a53cef 100644 --- a/backport/include/linux/compat-3.4.h +++ b/backport/include/linux/compat-3.4.h @@ -11,6 +11,8 @@ #include <linux/kconfig.h> #endif +#define EPROBE_DEFER 517 /* Driver requests probe retry */ + /* * defined here to allow things to compile but technically * using this for memory regions will yield in a no-op on newer -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html