Commit 919686458fabc67a13ffa412f9e5a8fed46d10b8

Authored by Shweta Gulati
Committed by Tony Lindgren
1 parent 26a064d524

OMAP4: Intialize IVA Device in addition to DSP device.

OMAP4 has two different Devices IVA and DSP. DSP is bound
with IVA for DVFS. The registration of IVA dev in API
'omap2_init_processor_devices' was missing. Init dev for
'iva_dev' is added.

This also fixes the following error seen during boot as
omap2_set_init_voltage can now find the iva device

	omap2_set_init_voltage: Invalid parameters!
	omap2_set_init_voltage: Unable to put vdd_iva to its init voltage

Signed-off-by: Shweta Gulati <shweta.gulati@ti.com>
Acked-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

arch/arm/mach-omap2/pm.c
... ... @@ -89,6 +89,7 @@
89 89 if (cpu_is_omap44xx()) {
90 90 _init_omap_device("l3_main_1", &l3_dev);
91 91 _init_omap_device("dsp", &dsp_dev);
  92 + _init_omap_device("iva", &iva_dev);
92 93 } else {
93 94 _init_omap_device("l3_main", &l3_dev);
94 95 }