Home | History | Annotate | Download | only in mtd

Lines Matching refs:virt

189 	void __iomem *virt;
370 r.x[0] = __raw_readb(map->virt + ofs);
372 r.x[0] = __raw_readw(map->virt + ofs);
374 r.x[0] = __raw_readl(map->virt + ofs);
377 r.x[0] = __raw_readq(map->virt + ofs);
380 memcpy_fromio(r.x, map->virt+ofs, map->bankwidth);
388 __raw_writeb(datum.x[0], map->virt + ofs);
390 __raw_writew(datum.x[0], map->virt + ofs);
392 __raw_writel(datum.x[0], map->virt + ofs);
395 __raw_writeq(datum.x[0], map->virt + ofs);
398 memcpy_toio(map->virt+ofs, datum.x, map->bankwidth);
407 memcpy_fromio(to, map->virt + from, len);
412 memcpy_toio(map->virt + to, from, len);