* [PATCH] i2c: mux: Use subsys_initcall for the i2c-arb-gpio-challenge
@ 2014-04-24 15:05 Naveen Krishna Chatradhi
2014-05-21 10:26 ` Wolfram Sang
0 siblings, 1 reply; 2+ messages in thread
From: Naveen Krishna Chatradhi @ 2014-04-24 15:05 UTC (permalink / raw)
To: linux-i2c
Cc: naveenkrishna.ch, linux-arm-kernel, linux-samsung-soc, sjg,
grundler, linux-kernel, wsa, cpgs, broonie, Doug Anderson
From: Doug Anderson <dianders@chromium.org>
Since many drivers rely on FETs that live behind this arbitrator, they
can't successfully probe until after the arbitrator comes up. They
ought to handle things properly with EPROBE_DEFER and still work, but
that has some downsides:
1. Those drivers don't come up till later in the boot process. That
really not so nice for the LCD--we want that to init early.
2. Some drivers have bugs and don't handle EPROBE_DEFER. Those
drivers should be fixed but not all of them have been fixed yet.
HDMI is one example since DRM doesn't really have good support for
deferring probes.
With this change We end up using the same init level as the main i2c bus.
Signed-off-by: Doug Anderson <dianders@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/57007
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
---
drivers/i2c/muxes/i2c-arb-gpio-challenge.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/i2c/muxes/i2c-arb-gpio-challenge.c b/drivers/i2c/muxes/i2c-arb-gpio-challenge.c
index 69afffa..6cf52bb 100644
--- a/drivers/i2c/muxes/i2c-arb-gpio-challenge.c
+++ b/drivers/i2c/muxes/i2c-arb-gpio-challenge.c
@@ -241,7 +241,17 @@ static struct platform_driver i2c_arbitrator_driver = {
},
};
-module_platform_driver(i2c_arbitrator_driver);
+static int __init i2c_arbitrator_init(void)
+{
+ return platform_driver_register(&i2c_arbitrator_driver);
+}
+subsys_initcall(i2c_arbitrator_init);
+
+static void __exit i2c_arbitrator_exit(void)
+{
+ platform_driver_unregister(&i2c_arbitrator_driver);
+}
+module_exit(i2c_arbitrator_exit);
MODULE_DESCRIPTION("GPIO-based I2C Arbitration");
MODULE_AUTHOR("Doug Anderson <dianders@chromium.org>");
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] i2c: mux: Use subsys_initcall for the i2c-arb-gpio-challenge
2014-04-24 15:05 [PATCH] i2c: mux: Use subsys_initcall for the i2c-arb-gpio-challenge Naveen Krishna Chatradhi
@ 2014-05-21 10:26 ` Wolfram Sang
0 siblings, 0 replies; 2+ messages in thread
From: Wolfram Sang @ 2014-05-21 10:26 UTC (permalink / raw)
To: Naveen Krishna Chatradhi
Cc: linux-i2c, naveenkrishna.ch, linux-arm-kernel, linux-samsung-soc,
sjg, grundler, linux-kernel, cpgs, broonie, Doug Anderson
[-- Attachment #1: Type: text/plain, Size: 1207 bytes --]
On Thu, Apr 24, 2014 at 08:35:22PM +0530, Naveen Krishna Chatradhi wrote:
> From: Doug Anderson <dianders@chromium.org>
>
> Since many drivers rely on FETs that live behind this arbitrator, they
> can't successfully probe until after the arbitrator comes up. They
> ought to handle things properly with EPROBE_DEFER and still work, but
> that has some downsides:
>
> 1. Those drivers don't come up till later in the boot process. That
> really not so nice for the LCD--we want that to init early.
> 2. Some drivers have bugs and don't handle EPROBE_DEFER. Those
> drivers should be fixed but not all of them have been fixed yet.
> HDMI is one example since DRM doesn't really have good support for
> deferring probes.
>
> With this change We end up using the same init level as the main i2c bus.
>
> Signed-off-by: Doug Anderson <dianders@chromium.org>
> Reviewed-on: https://gerrit.chromium.org/gerrit/57007
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
Same here. Unless we have a clear understanding that this is the only
acceptable solution in mainline, this is really an out-of-tree patch.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-21 10:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-24 15:05 [PATCH] i2c: mux: Use subsys_initcall for the i2c-arb-gpio-challenge Naveen Krishna Chatradhi
2014-05-21 10:26 ` Wolfram Sang
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).