From: "Alexey Shinkin" <alexshinkin@hotmail.com>
To: linux-mips@linux-mips.org
Subject: Question on Au1550 ...
Date: Mon, 18 Oct 2004 19:01:30 +0700 [thread overview]
Message-ID: <BAY15-F37yRLVbNDN4C0000d65e@hotmail.com> (raw)
Hi , All !
I am porting a linux driver for PCI device and some applications form x86
platform to AMD Au1550 MIPS , running MontaVista Linux 2.4.20-mvl31.1550.
I got the following problem :
The driver allocates some memory (SharedMemory) for communication with PCI
card , using function pci_alloc_consistent(). PCI card can write to this
memory using DMA . On kernel level driver correctly reads values, written
by the board , and the board correctly reads values, written by driver.
The goal is to make this memoty visible from user level application. The
following approach is used on õ86 and works :
1. Application calls mmap( 0, Size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0
) ;
2. driver implements mmap() function that just prepares some vma
structure fields for nopage operetions :
vma->vm_flags |= VM_RESERVED; // no swapping
vma->vm_ops = &device_vmops; // contains nopage func
vma->vm_file = filp;
3. Application gets pointer and accesses all mapped pages (reads a byte
from each page) - this causes call of nopage function in driver .
The nopage function calculates VirtualAddress from SharedMemory address
(received after pci_alloc_consistent()),
then does KernelPage= virt_to_page(VirtualAddress) ,
get_page(KernelPage)
and returns KernelPage.
4. Now Application reads from SharedMemory , using a pointer , given by
mmap() .
This works fine on x86 platform , but on MIPS application cannot see
expected contents of the memory - it reads garbage .
What I have tried :
- to insert vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot)
in drivers implementation of mmap() ;
- to use remap_page_range() instead of vm_ops .
Result is the same application reads garbage . If application write some
values into the memory - it reads garbage . The values written by
application are not seen from kernel level .
I am new to MIPS so maybe I missed something obvious ? Is this right
approach on this platform at all ?
Thank you in advance!
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.com/
next reply other threads:[~2004-10-18 12:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-18 12:01 Alexey Shinkin [this message]
2004-10-18 12:26 ` Question on Au1550 Ladislav Michl
2004-10-18 16:09 ` Dan Malek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=BAY15-F37yRLVbNDN4C0000d65e@hotmail.com \
--to=alexshinkin@hotmail.com \
--cc=linux-mips@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox