i.MX8M plus mmap() issue
02-21-2022
03:38 AM
1,262件の閲覧回数
Na-veen
Contributor II
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi,
Could it be possible to access DDR area from Linux user space with mmap() or related? I need a SHM- area between A53 process and am searching a minimum effort solution to realize that.
Thanks,
Nav
3 返答(返信)
02-21-2022
08:13 PM
1,254件の閲覧回数
b36401
NXP Employee
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Do you mean to communicate between A and M cores?
You can use rpmsg for such purposes.
02-22-2022
03:14 AM
1,247件の閲覧回数
Na-veen
Contributor II
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi,
For communication between a53. I am trying to secure memory area between the cores.
Thanks,
Nav
02-21-2022
03:45 AM
1,260件の閲覧回数
Na-veen
Contributor II
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Simple code example,
Trying to build simple application with below lines of code and it fails allocate memory with "No such device error"
char * region = mmap(NULL,4096, PROT_WRITE,MAP_PRIVATE,0,0);