spi: spi-uclass: Add support to manually relocate spi memory ops
authorT Karthik Reddy <t.karthik.reddy@xilinx.com>
Wed, 17 Mar 2021 11:31:30 +0000 (12:31 +0100)
committerSimon Glass <sjg@chromium.org>
Sat, 27 Mar 2021 03:26:48 +0000 (16:26 +1300)
Add spi memory operations to relocate manually when
CONFIG_NEEDS_MANUAL_RELOC is enabled.

Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Acked-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Pratyush Yadav <p.yadav@ti.com>
drivers/spi/spi-uclass.c

index 7155d4a..ee30110 100644 (file)
@@ -11,6 +11,7 @@
 #include <log.h>
 #include <malloc.h>
 #include <spi.h>
+#include <spi-mem.h>
 #include <dm/device_compat.h>
 #include <asm/global_data.h>
 #include <dm/device-internal.h>
@@ -199,6 +200,16 @@ static int spi_post_probe(struct udevice *bus)
                        ops->set_mode += gd->reloc_off;
                if (ops->cs_info)
                        ops->cs_info += gd->reloc_off;
+               if (ops->mem_ops) {
+                       struct spi_controller_mem_ops *mem_ops =
+                               (struct spi_controller_mem_ops *)ops->mem_ops;
+                       if (mem_ops->adjust_op_size)
+                               mem_ops->adjust_op_size += gd->reloc_off;
+                       if (mem_ops->supports_op)
+                               mem_ops->supports_op += gd->reloc_off;
+                       if (mem_ops->exec_op)
+                               mem_ops->exec_op += gd->reloc_off;
+               }
                reloc_done++;
        }
 #endif