summaryrefslogtreecommitdiff
path: root/include/dm/device.h
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2026-03-16 00:57:23 +0100
committerTom Rini <[email protected]>2026-04-07 15:27:22 -0600
commita383c9689282269bb9687ec6c115de094c27fa67 (patch)
tree26f961e89b7a5583b91a9c14a60c4b9551663b0b /include/dm/device.h
parent6201fd7c1ffa134f8ba229b434e6f14a3fd5bb14 (diff)
dm: Respect dma-ranges size
Rework dev_phys_to_bus() and dev_bus_to_phys() to respect the size of the area specified in dma-ranges DT property. The area outside of ranges is remapped 1:1, while the area in the ranges is remapped according to the description in the dma-ranges property. Adjust the test to test the area within the remapped range, not area outside the remapped range, which was incorrect. Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Markus Schneider-Pargmann <[email protected]>
Diffstat (limited to 'include/dm/device.h')
-rw-r--r--include/dm/device.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/include/dm/device.h b/include/dm/device.h
index 678cd83c271..7bcf6df2892 100644
--- a/include/dm/device.h
+++ b/include/dm/device.h
@@ -166,8 +166,9 @@ enum {
* When CONFIG_DEVRES is enabled, devm_kmalloc() and friends will
* add to this list. Memory so-allocated will be freed
* automatically when the device is removed / unbound
- * @dma_offset: Offset between the physical address space (CPU's) and the
- * device's bus address space
+ * @dma_cpu: DMA physical address space (CPU's)
+ * @dma_bus: DMA device's bus address space
+ * @dma_size: DMA window size
* @iommu: IOMMU device associated with this device
*/
struct udevice {
@@ -196,7 +197,9 @@ struct udevice {
struct list_head devres_head;
#endif
#if CONFIG_IS_ENABLED(DM_DMA)
- ulong dma_offset;
+ phys_addr_t dma_cpu;
+ dma_addr_t dma_bus;
+ u64 dma_size;
#endif
#if CONFIG_IS_ENABLED(IOMMU)
struct udevice *iommu;
@@ -272,14 +275,6 @@ static inline __attribute_const__ ofnode dev_ofnode(const struct udevice *dev)
/* Returns non-zero if the device is active (probed and not removed) */
#define device_active(dev) (dev_get_flags(dev) & DM_FLAG_ACTIVATED)
-#if CONFIG_IS_ENABLED(DM_DMA)
-#define dev_set_dma_offset(_dev, _offset) _dev->dma_offset = _offset
-#define dev_get_dma_offset(_dev) _dev->dma_offset
-#else
-#define dev_set_dma_offset(_dev, _offset)
-#define dev_get_dma_offset(_dev) 0
-#endif
-
static inline __attribute_const__ int dev_of_offset(const struct udevice *dev)
{
#if CONFIG_IS_ENABLED(OF_REAL)