Skip to content

Commit f7519d8

Browse files
jkrzyszttmlind
authored andcommitted
ARM: OMAP1: ams-delta: register latch dependent devices later
In preparation to converting Amstrad Delta on-board latches to basic_mmio_gpio devices, registration of platform devices which depend on latches and will require initialization of their GPIO pins first, should be moved out of .machine_init down to late_initcall level, as the gpio-generic driver is not available until device_initcall time. The latch reset operation, which will be replaced with GPIO initialization, must also be moved to late_initcall for the same reason. Since there was already another, separate arch_initcall function for setting up one of those latch dependent devices, the on-board modem device, reuse that function, i.e., rename it to a name that matches the new purpose, extend with other device setup relocated from .machine_init, and move down to the late_initcall level. While being at it, add missing gpio_free() in case the modem platform device registration fails. Thanks to Tony Lindgren <tony@atomide.com> who suggested this approach instead of shifting up the gpio-generic driver initialization. In addition, defer registration of the Amstrad Delta ASoC and serio devices, done from their device driver files, until late_initcall time, as those drivers will depend on their GPIO pins already requested from the board late_init() function until updated to register their GPIO pins themselves. Signed-off-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
1 parent c116abc commit f7519d8

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

arch/arm/mach-omap1/board-ams-delta.c

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,14 @@ static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
275275
};
276276

277277
static struct platform_device *ams_delta_devices[] __initdata = {
278-
&ams_delta_nand_device,
279278
&ams_delta_kp_device,
279+
&ams_delta_camera_device,
280+
};
281+
282+
static struct platform_device *late_devices[] __initdata = {
283+
&ams_delta_nand_device,
280284
&ams_delta_lcd_device,
281285
&ams_delta_led_device,
282-
&ams_delta_camera_device,
283286
};
284287

285288
static void __init ams_delta_init(void)
@@ -307,9 +310,6 @@ static void __init ams_delta_init(void)
307310
omap_serial_init();
308311
omap_register_i2c_bus(1, 100, NULL, 0);
309312

310-
/* Clear latch2 (NAND, LCD, modem enable) */
311-
ams_delta_latch2_write(~0, 0);
312-
313313
omap1_usb_init(&ams_delta_usb_config);
314314
omap1_set_camera_info(&ams_delta_camera_platform_data);
315315
#ifdef CONFIG_LEDS_TRIGGERS
@@ -345,13 +345,18 @@ static struct platform_device ams_delta_modem_device = {
345345
},
346346
};
347347

348-
static int __init ams_delta_modem_init(void)
348+
static int __init late_init(void)
349349
{
350350
int err;
351351

352352
if (!machine_is_ams_delta())
353353
return -ENODEV;
354354

355+
/* Clear latch2 (NAND, LCD, modem enable) */
356+
ams_delta_latch2_write(~0, 0);
357+
358+
platform_add_devices(late_devices, ARRAY_SIZE(late_devices));
359+
355360
omap_cfg_reg(M14_1510_GPIO2);
356361
ams_delta_modem_ports[0].irq =
357362
gpio_to_irq(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
@@ -367,9 +372,16 @@ static int __init ams_delta_modem_init(void)
367372
AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC,
368373
AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC);
369374

370-
return platform_device_register(&ams_delta_modem_device);
375+
err = platform_device_register(&ams_delta_modem_device);
376+
if (err)
377+
goto gpio_free;
378+
return 0;
379+
380+
gpio_free:
381+
gpio_free(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
382+
return err;
371383
}
372-
arch_initcall(ams_delta_modem_init);
384+
late_initcall(late_init);
373385

374386
static void __init ams_delta_map_io(void)
375387
{

drivers/input/serio/ams_delta_serio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static int __init ams_delta_serio_init(void)
165165
kfree(ams_delta_serio);
166166
return err;
167167
}
168-
module_init(ams_delta_serio_init);
168+
late_initcall(ams_delta_serio_init);
169169

170170
static void __exit ams_delta_serio_exit(void)
171171
{

sound/soc/omap/ams-delta.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ static int __init ams_delta_module_init(void)
636636
platform_device_put(ams_delta_audio_platform_device);
637637
return ret;
638638
}
639-
module_init(ams_delta_module_init);
639+
late_initcall(ams_delta_module_init);
640640

641641
static void __exit ams_delta_module_exit(void)
642642
{

0 commit comments

Comments
 (0)