summaryrefslogtreecommitdiff
path: root/include/phys2bus.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/phys2bus.h')
-rw-r--r--include/phys2bus.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/include/phys2bus.h b/include/phys2bus.h
index 866b8b51a8c..80fa88adae1 100644
--- a/include/phys2bus.h
+++ b/include/phys2bus.h
@@ -21,17 +21,23 @@ static inline unsigned long bus_to_phys(unsigned long bus)
}
#endif
-#if CONFIG_IS_ENABLED(DM)
+#if CONFIG_IS_ENABLED(DM_DMA)
#include <dm/device.h>
static inline dma_addr_t dev_phys_to_bus(struct udevice *dev, phys_addr_t phys)
{
- return phys - dev_get_dma_offset(dev);
+ /* If the PA is in the remap range, apply remap. */
+ if (phys >= dev->dma_cpu && phys < dev->dma_cpu + dev->dma_size)
+ phys -= dev->dma_cpu - dev->dma_bus;
+ return phys;
}
static inline phys_addr_t dev_bus_to_phys(struct udevice *dev, dma_addr_t bus)
{
- return bus + dev_get_dma_offset(dev);
+ /* If the DA is in the remap range, apply remap. */
+ if (bus >= dev->dma_bus && bus < dev->dma_bus + dev->dma_size)
+ bus += dev->dma_cpu - dev->dma_bus;
+ return bus;
}
#else
#define dev_phys_to_bus(_, _addr) _addr