Hi,
From keystone-k2g-evm.dts we can see that system memory starts from 0x800000000 which is beyond 32bit boundary.
memory@800000000 { device_type = "memory"; reg = <0x00000008 0x00000000 0x00000000 0x80000000>; };
We have a PCIe device and would like to access Memory to exchange data with K2G processor. As we know, PCIe is 32bit and unable to write to memory address beyond 32bit boundary.
So, I am asking if there is a way either to enable PCIe device to access 64bit address memory or if we can change memory space in device tree from 64bit to 32bit?
Tom