فهرست منبع

dmaengine: qcom_hidma: pause the channel on shutdown

We need to ensure that all DMAs and interrupts are cleared during
shutdown operation in order for kexec to start the next kernel clearly.

Otherwise, HW could be performing a DMA into random addresses in the
middle of second kernel start.

Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Sinan Kaya 8 سال پیش
والد
کامیت
dc7c733acb
1فایلهای تغییر یافته به همراه15 افزوده شده و 0 حذف شده
  1. 15 0
      drivers/dma/qcom/hidma.c

+ 15 - 0
drivers/dma/qcom/hidma.c

@@ -865,6 +865,20 @@ bailout:
 	return rc;
 	return rc;
 }
 }
 
 
+static void hidma_shutdown(struct platform_device *pdev)
+{
+	struct hidma_dev *dmadev = platform_get_drvdata(pdev);
+
+	dev_info(dmadev->ddev.dev, "HI-DMA engine shutdown\n");
+
+	pm_runtime_get_sync(dmadev->ddev.dev);
+	if (hidma_ll_disable(dmadev->lldev))
+		dev_warn(dmadev->ddev.dev, "channel did not stop\n");
+	pm_runtime_mark_last_busy(dmadev->ddev.dev);
+	pm_runtime_put_autosuspend(dmadev->ddev.dev);
+
+}
+
 static int hidma_remove(struct platform_device *pdev)
 static int hidma_remove(struct platform_device *pdev)
 {
 {
 	struct hidma_dev *dmadev = platform_get_drvdata(pdev);
 	struct hidma_dev *dmadev = platform_get_drvdata(pdev);
@@ -908,6 +922,7 @@ MODULE_DEVICE_TABLE(of, hidma_match);
 static struct platform_driver hidma_driver = {
 static struct platform_driver hidma_driver = {
 	.probe = hidma_probe,
 	.probe = hidma_probe,
 	.remove = hidma_remove,
 	.remove = hidma_remove,
+	.shutdown = hidma_shutdown,
 	.driver = {
 	.driver = {
 		   .name = "hidma",
 		   .name = "hidma",
 		   .of_match_table = hidma_match,
 		   .of_match_table = hidma_match,