[COMMON] iommu/exynos: add dma-window property parsing
Each domain may need different dma ranges for client device's
requirement. 'dma-window' property specifies dma ranges
for each domain.
This property is optional, so if it doesn't exist,
default dma ranges from 0x10000000 to 0xD0000000 are used.
If this property is used, address and size cells should be described.
Below is an example.
iommu-domain_something {
compatible = "samsung,exynos-iommu-bus";
#dma-address-cells = <1>;
#dma-size-cells = <1>;
/* start address, size */
dma-window = <0x10000000 0xC0000000>;
domain-clients = <&something>;
};
Change-Id: I2765f8a4a6b142475c5de80aa73234bef0bd3248
Signed-off-by: Janghyuck Kim <janghyuck.kim@samsung.com>