msg->state = NULL;
        if (msg->complete)
                msg->complete(msg->context);
-       /* This message is completed, so let's turn off the clocks! */
+       /* This message is completed, so let's turn off the clocks & power */
        clk_disable(pl022->clk);
        amba_pclk_disable(pl022->adev);
+       amba_vcore_disable(pl022->adev);
 }
 
 /**
        /* Setup the SPI using the per chip configuration */
        pl022->cur_chip = spi_get_ctldata(pl022->cur_msg->spi);
        /*
-        * We enable the clocks here, then the clocks will be disabled when
-        * giveback() is called in each method (poll/interrupt/DMA)
+        * We enable the core voltage and clocks here, then the clocks
+        * and core will be disabled when giveback() is called in each method
+        * (poll/interrupt/DMA)
         */
+       amba_vcore_enable(pl022->adev);
        amba_pclk_enable(pl022->adev);
        clk_enable(pl022->clk);
        restore_state(pl022);
                goto err_spi_register;
        }
        dev_dbg(dev, "probe succeded\n");
-       /* Disable the silicon block pclk and clock it when needed */
+       /*
+        * Disable the silicon block pclk and any voltage domain and just
+        * power it up and clock it when it's needed
+        */
        amba_pclk_disable(adev);
+       amba_vcore_disable(adev);
        return 0;
 
  err_spi_register:
                return status;
        }
 
+       amba_vcore_enable(adev);
        amba_pclk_enable(adev);
        load_ssp_default_config(pl022);
        amba_pclk_disable(adev);
+       amba_vcore_disable(adev);
        dev_dbg(&adev->dev, "suspended\n");
        return 0;
 }