| To: | linux-mips <linux-mips@linux-mips.org> |
|---|---|
| Subject: | Bus error after successful mmap of physical address |
| From: | "Alex Gonzalez" <langabe@gmail.com> |
| Date: | Wed, 22 Aug 2007 18:31:22 +0100 |
| Dkim-signature: | a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=J+//BiW1D9/jCzIqG4icz0zgvbTxsoDawk+AuS3pI5W0hFRlhOmQ1INtnMgrYSYDYPocKXqpYrJ7CTiRcQsChTIOb41TKC+9Z2TnrEw4n4Mg71lze3G7evUAKxApoB4gezta79P52xnJG648uLkGOKEjC9WmFIWfQn0KF482fU4= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=W05EPtUDfLe4EGe5+OzLa96tdmiVph+oMmffPrbc65fNzfFo1pkFbFEQ1ESGnhuSrDGdOUR3oHDxcoECpyMVQ8Badw5stEIP0Wrisz/yZrp3I6oAGMun2fuWIGmUV8/Gx28ejiNgrYVTJo6DgxTAoTFPEZ5lUzY3lp80gHJxaYg= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
Hi,
I am sure there is a basic reason why this is not working but I just
can't see it.
I am booting with mem=512MB and trying to access a memory region at
0xC0000000 mapped by a fixed TLB entry.
My driver does,
vma->vm_flags = vma->vm_flags | VM_IO | VM_RESERVED ;
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot) ;
// Map the whole physically contiguous area in one piece
if( (ret = io_remap_pfn_range(vma , vma->vm_start, vma->vm_pgoff ,
vma->vm_end - vma->vm_start , vma->vm_page_prot)) < 0 )
return ret;
return 0
And my user space app does:
// open device
vadr = mmap( NULL , 1024*1024 ,
PROT_WRITE|PROT_READ,MAP_NORESERVE|MAP_SHARED,device,0xC0000000);
if(vadr == MAP_FAILED)
{
perror("mmap failed.\n");
exit(-1);
}
That goes OK, but then if I try to read or write from vadr I get a "Bus error".
Isn't that the correct way to map a physical address region to user
space? I just need to make sure that this is the case before starting
to debug the issue.
Thank a lot,
Alex
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] IP22 console font patch, testing needed., Ralf Baechle |
|---|---|
| Next by Date: | [PATCH] A default configuration for LASAT targets., brm |
| Previous by Thread: | [PATCH] IP22 console font patch, testing needed., Ralf Baechle |
| Next by Thread: | Re: Bus error after successful mmap of physical address, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |