Tom Cooksey wrote: > On Friday 10 October 2008 21:12:13 Robert Schwebel wrote: >> On Fri, Oct 10, 2008 at 06:15:05PM +0200, Tom Cooksey wrote: >>> Is there any way to get the physical address of mlock()'d memory from >>> userspace? >> What do you want to do? I don't really see a reason to do such strange >> things any more these days. > > It's quite an annoying problem actually. Basically I have binary drivers for Imagination Technologies's PowerVR graphics drivers. We have tried very hard to get the source code for these drivers and have failed. Eventually ImgTec allowed us to sign an NDA to get the headers for one of their user-space libraries. This library allows us to direct the graphics hardware to render to a specific physical memory region. The problem is that there's no way to find out what the physical addresses are which we need pass to the graphics hardware (via the user-space library). Allthough the library allows us to allocate emory, what I want to do is then blit that memory in a different process. So a client process renders into an off-screen buffer and the server process blits that buffer to the framebuffer. By allowing the server process to do the blit rather than the client process, we can get semi-transparent GL windows. > > The synchronisation we can do, it's the memory allocation I'm struggling with. If we ask the library to allocate the memory for us, we don't get the physical address to pass to the server process. Instead, we need to allocate memory ourselves and pass the physical address to the library. But like I say, I can't find a way to get the physical address from the kernel. > > I realise getting round closed-source drivers isn't exactly encoraged, but sadly, we really have no choice. :-( Not that this would help, but what if the blitting process was working with a shared memory area with the, er, main process? Could the allocation be done in the library, then? Reading your post carefully, it sounds like either the library in question is designed to run in kernel space (where you can get the physical address), isn't a Linux library, or there's some more code somewhere that can do the address translation--- you said that "This library allows us to direct the graphics hardware to render to a specific physical memory region". How are other users of the library getting the parameters that the library needs? What about writing a hacky little module that just does virtual-to-physical translation, and returns the result? Ugh, I think I need to shower. :) b.g. -- Bill Gatliff bgat@xxxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-embedded" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html