Lines Matching refs:mapped
31 void *mapped; member
53 if (channel->mapped) { in visorchannel_destroy()
54 memunmap(channel->mapped); in visorchannel_destroy()
117 memcpy(dest, channel->mapped + offset, nbytes); in visorchannel_read()
135 memcpy(channel->mapped + offset, dest, nbytes); in visorchannel_write()
375 channel->mapped = memremap(physaddr, size, MEMREMAP_WB); in visorchannel_create()
376 if (!channel->mapped) { in visorchannel_create()
386 memunmap(channel->mapped); in visorchannel_create()
389 channel->mapped = NULL; in visorchannel_create()
395 channel->mapped = memremap(channel->physaddr, size, MEMREMAP_WB); in visorchannel_create()
396 if (!channel->mapped) { in visorchannel_create()