Home
last modified time | relevance | path

Searched refs:aper_base (Results 1 – 25 of 44) sorted by relevance

12

/openbmc/linux/arch/x86/kernel/
H A Daperture_64.c87 static void __init exclude_from_core(u64 aper_base, u32 aper_order) in exclude_from_core() argument
89 aperture_pfn_start = aper_base >> PAGE_SHIFT; in exclude_from_core()
99 static void exclude_from_core(u64 aper_base, u32 aper_order) in exclude_from_core() argument
304 u64 aper_base = 0, last_aper_base = 0; in early_gart_iommu_check() local
333 aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff; in early_gart_iommu_check()
334 aper_base <<= 25; in early_gart_iommu_check()
338 (aper_base != last_aper_base) || in early_gart_iommu_check()
346 last_aper_base = aper_base; in early_gart_iommu_check()
355 if (!aper_base || !aper_size || aper_base + aper_size > 0x100000000UL) in early_gart_iommu_check()
359 if (e820__mapped_any(aper_base, aper_base + aper_size, in early_gart_iommu_check()
[all …]
H A Damd_gart_64.c521 u64 aper_base; in read_aperture() local
527 aper_base = aper_base_32 & 0x7fff; in read_aperture()
528 aper_base <<= 25; in read_aperture()
531 if (aper_base + aper_size > 0x100000000UL || !aper_size) in read_aperture()
532 aper_base = 0; in read_aperture()
535 return aper_base; in read_aperture()
615 unsigned aper_base, new_aper_base; in init_amd_gatt() local
622 aper_size = aper_base = info->aper_size = 0; in init_amd_gatt()
630 if (!aper_base) { in init_amd_gatt()
632 aper_base = new_aper_base; in init_amd_gatt()
[all …]
/openbmc/linux/arch/x86/include/asm/
H A Dgart.h91 static inline int aperture_valid(u64 aper_base, u32 aper_size, u32 min_size) in aperture_valid() argument
93 if (!aper_base) in aperture_valid()
96 if (aper_base + aper_size > 0x100000000ULL) { in aperture_valid()
100 if (e820__mapped_any(aper_base, aper_base + aper_size, E820_TYPE_RAM)) { in aperture_valid()
/openbmc/linux/drivers/gpu/drm/radeon/
H A Dradeon_agp.c157 head->base = head->agp_info.aper_base; in radeon_agp_head_init()
209 info->aperture_base = kern->aper_base; in radeon_agp_head_info()
337 rdev->mc.agp_base = rdev->agp->agp_info.aper_base; in radeon_agp_init()
H A Dradeon_fbdev.c263 info->fix.smem_start = rdev->mc.aper_base + tmp; in radeon_fbdev_fb_helper_fb_probe()
273 DRM_INFO("vram apper at 0x%lX\n", (unsigned long)rdev->mc.aper_base); in radeon_fbdev_fb_helper_fb_probe()
H A Dradeon_object.c393 arch_io_reserve_memtype_wc(rdev->mc.aper_base, in radeon_bo_init()
398 rdev->mc.vram_mtrr = arch_phys_wc_add(rdev->mc.aper_base, in radeon_bo_init()
413 arch_io_free_memtype_wc(rdev->mc.aper_base, rdev->mc.aper_size); in radeon_bo_fini()
H A Drs690.c161 rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0); in rs690_mc_init()
192 (unsigned long long)rdev->mc.aper_base, k8_addr); in rs690_mc_init()
193 rdev->mc.aper_base = (resource_size_t)k8_addr; in rs690_mc_init()
/openbmc/linux/drivers/char/agp/
H A Dcompat_ioctl.c50 userinfo.aper_base = (compat_long_t)kerninfo.aper_base; in compat_agpioc_info_wrap()
H A Dcompat_ioctl.h48 compat_long_t aper_base; /* base of aperture */ member
H A Damd64-agp.c156 u64 aper_base; in amd64_configure() local
161 aper_base = (aperturebase & PCI_BASE_ADDRESS_MEM_MASK); in amd64_configure()
165 return aper_base; in amd64_configure()
H A Dfrontend.c604 (kerninfo.aper_base + offset) >> PAGE_SHIFT, in agp_mmap()
621 kerninfo.aper_base >> PAGE_SHIFT, in agp_mmap()
726 userinfo.aper_base = kerninfo.aper_base; in agpioc_info_wrap()
/openbmc/linux/include/linux/
H A Dagp_backend.h50 unsigned long aper_base; member
H A Dagpgart.h37 unsigned long aper_base;/* base of aperture */ member
/openbmc/linux/drivers/video/fbdev/aty/
H A Dradeon_base.c2021 u32 aper_base, aper_size; in fixup_memory_mappings() local
2036 aper_base = INREG(CNFG_APER_0_BASE); in fixup_memory_mappings()
2042 ((aper_base + aper_size - 1) & 0xffff0000) | (aper_base >> 16)); in fixup_memory_mappings()
2043 rinfo->fb_local_base = aper_base; in fixup_memory_mappings()
2048 agp_base = aper_base + aper_size; in fixup_memory_mappings()
2050 agp_base = (aper_base | 0x0fffffff) + 1; in fixup_memory_mappings()
2066 OUTREG(DISPLAY_BASE_ADDR, aper_base); in fixup_memory_mappings()
2068 OUTREG(CRTC2_DISPLAY_BASE_ADDR, aper_base); in fixup_memory_mappings()
2069 OUTREG(OV0_BASE_ADDR, aper_base); in fixup_memory_mappings()
2085 aper_base, in fixup_memory_mappings()
[all …]
/openbmc/linux/include/uapi/linux/
H A Dagpgart.h65 unsigned long aper_base;/* base of aperture */ member
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_agpsupport.c70 info->aperture_base = kern->aper_base; in drm_legacy_agp_info()
411 head->base = head->agp_info.aper_base; in drm_legacy_agp_init()
H A Ddrm_pci.c140 dev->agp->agp_info.aper_base, in drm_legacy_pci_agp_init()
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/pci/
H A Dagp.c133 pci->agp.base = info.aper_base; in nvkm_agp_ctor()
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_object.c1074 int r = arch_io_reserve_memtype_wc(adev->gmc.aper_base, in amdgpu_bo_init()
1083 adev->gmc.vram_mtrr = arch_phys_wc_add(adev->gmc.aper_base, in amdgpu_bo_init()
1110 arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size); in amdgpu_bo_fini()
H A Damdgpu_gmc.h207 resource_size_t aper_base; member
H A Dgmc_v11_0.c716 adev->gmc.aper_base = pci_resource_start(adev->pdev, 0); in gmc_v11_0_mc_init()
721 adev->gmc.aper_base = adev->mmhub.funcs->get_mc_fb_offset(adev); in gmc_v11_0_mc_init()
H A Dgmc_v10_0.c814 adev->gmc.aper_base = pci_resource_start(adev->pdev, 0); in gmc_v10_0_mc_init()
819 adev->gmc.aper_base = adev->gfxhub.funcs->get_mc_fb_offset(adev); in gmc_v10_0_mc_init()
H A Damdgpu_ttm.c600 mem->bus.offset += adev->gmc.aper_base; in amdgpu_ttm_io_mem_reserve()
627 return (adev->gmc.aper_base + cursor.start) >> PAGE_SHIFT; in amdgpu_ttm_io_mem_pfn()
1869 adev->mman.aper_base_kaddr = ioremap_cache(adev->gmc.aper_base, in amdgpu_ttm_init()
1877 adev->mman.aper_base_kaddr = ioremap_wc(adev->gmc.aper_base, in amdgpu_ttm_init()
H A Dgmc_v7_0.c373 adev->gmc.aper_base = pci_resource_start(adev->pdev, 0); in gmc_v7_0_mc_init()
380 adev->gmc.aper_base = ((u64)RREG32(mmMC_VM_FB_OFFSET)) << 22; in gmc_v7_0_mc_init()
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_migrate.c1032 pgmap->range.start = adev->gmc.aper_base; in kgd2kfd_init_zone_device()
1033 pgmap->range.end = adev->gmc.aper_base + adev->gmc.aper_size - 1; in kgd2kfd_init_zone_device()

12