int spi_set_cs_timing(struct spi_device *spi, struct spi_delay *setup,
                      struct spi_delay *hold, struct spi_delay *inactive)
 {
+       struct device *parent = spi->controller->dev.parent;
        size_t len;
+       int status;
+
+       if (spi->controller->set_cs_timing) {
+               if (spi->controller->auto_runtime_pm) {
+                       status = pm_runtime_get_sync(parent);
+                       if (status < 0) {
+                               pm_runtime_put_noidle(parent);
+                               dev_err(&spi->controller->dev, "Failed to power device: %d\n",
+                                       status);
+                               return status;
+                       }
 
-       if (spi->controller->set_cs_timing)
-               return spi->controller->set_cs_timing(spi, setup, hold,
-                                                     inactive);
+                       status = spi->controller->set_cs_timing(spi, setup,
+                                                               hold, inactive);
+                       pm_runtime_mark_last_busy(parent);
+                       pm_runtime_put_autosuspend(parent);
+                       return status;
+               } else {
+                       return spi->controller->set_cs_timing(spi, setup, hold,
+                                                             inactive);
+               }
+       }
 
        if ((setup && setup->unit == SPI_DELAY_UNIT_SCK) ||
            (hold && hold->unit == SPI_DELAY_UNIT_SCK) ||