Lines Matching refs:aperture

55  * voffset - framebuffer offset in MiB from aperture start address.  In order for
1634 par->fb.physical = par->aperture.physical+(par->fb.offset << 12);
1635 par->fb.virtual = par->aperture.virtual+(par->fb.offset << 12);
1636 par->iring.physical = par->aperture.physical +
1638 par->iring.virtual = par->aperture.virtual +
1640 par->cursor_heap.virtual = par->aperture.virtual+
1646 if (vram + 1 > par->aperture.size >> 20)
1647 vram = (par->aperture.size >> 20) - 1;
1648 if (v_offset_default > (par->aperture.size >> 20))
1649 v_offset_default = (par->aperture.size >> 20);
1650 if (vram + v_offset_default + 1 > par->aperture.size >> 20)
1651 v_offset_default = (par->aperture.size >> 20) - (vram + 1);
1765 else if (par->aperture.size > 32 * 1024 * 1024)
1821 par->wc_cookie= arch_phys_wc_add((u32) par->aperture.physical,
1822 par->aperture.size);
1850 par->aperture.physical = pci_resource_start(par->dev, 0);
1851 par->aperture.size = pci_resource_len(par->dev, 0);
1854 par->aperture.physical = pci_resource_start(par->dev, 1);
1855 par->aperture.size = pci_resource_len(par->dev, 1);
1858 if (!par->aperture.size) {
1863 if (!request_mem_region(par->aperture.physical,
1864 par->aperture.size,
1871 par->aperture.virtual = ioremap_wc(par->aperture.physical,
1872 par->aperture.size);
1873 if (!par->aperture.virtual) {
2113 if (par->aperture.virtual)
2114 iounmap(par->aperture.virtual);
2117 release_mem_region(par->aperture.physical,
2118 par->aperture.size);
2168 "memory (0 to maximum aperture size), in MiB (default = 48)");