Home
last modified time | relevance | path

Searched refs:pg_start (Results 1 – 25 of 34) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/char/agp/
Di460-agp.c294 off_t pg_start, int type) in i460_insert_memory_small_io_page() argument
301 mem, pg_start, type, page_to_phys(mem->pages[0])); in i460_insert_memory_small_io_page()
306 io_pg_start = I460_IOPAGES_PER_KPAGE * pg_start; in i460_insert_memory_small_io_page()
337 off_t pg_start, int type) in i460_remove_memory_small_io_page() argument
342 mem, pg_start, type); in i460_remove_memory_small_io_page()
344 pg_start = I460_IOPAGES_PER_KPAGE * pg_start; in i460_remove_memory_small_io_page()
346 for (i = pg_start; i < (pg_start + I460_IOPAGES_PER_KPAGE * mem->page_count); i++) in i460_remove_memory_small_io_page()
401 off_t pg_start, int type) in i460_insert_memory_large_io_page() argument
414 start = &i460.lp_desc[pg_start / I460_KPAGES_PER_IOPAGE]; in i460_insert_memory_large_io_page()
415 end = &i460.lp_desc[(pg_start + mem->page_count - 1) / I460_KPAGES_PER_IOPAGE]; in i460_insert_memory_large_io_page()
[all …]
Defficeon-agp.c236 static int efficeon_insert_memory(struct agp_memory * mem, off_t pg_start, int type) in efficeon_insert_memory() argument
243 printk(KERN_DEBUG PFX "efficeon_insert_memory(%lx, %d)\n", pg_start, count); in efficeon_insert_memory()
246 if ((pg_start + mem->page_count) > num_entries) in efficeon_insert_memory()
258 int index = pg_start + i; in efficeon_insert_memory()
285 static int efficeon_remove_memory(struct agp_memory * mem, off_t pg_start, int type) in efficeon_remove_memory() argument
289 printk(KERN_DEBUG PFX "efficeon_remove_memory(%lx, %d)\n", pg_start, count); in efficeon_remove_memory()
293 if ((pg_start + mem->page_count) > num_entries) in efficeon_remove_memory()
299 int index = pg_start + i; in efficeon_remove_memory()
Dalpha-agp.c84 static int alpha_core_agp_insert_memory(struct agp_memory *mem, off_t pg_start, in alpha_core_agp_insert_memory() argument
96 if ((pg_start + mem->page_count) > num_entries) in alpha_core_agp_insert_memory()
99 status = agp->ops->bind(agp, pg_start, mem); in alpha_core_agp_insert_memory()
106 static int alpha_core_agp_remove_memory(struct agp_memory *mem, off_t pg_start, in alpha_core_agp_remove_memory() argument
112 status = agp->ops->unbind(agp, pg_start, mem); in alpha_core_agp_remove_memory()
Dgeneric.c408 int agp_bind_memory(struct agp_memory *curr, off_t pg_start) in agp_bind_memory() argument
424 ret_val = curr->bridge->driver->insert_memory(curr, pg_start, curr->type); in agp_bind_memory()
430 curr->pg_start = pg_start; in agp_bind_memory()
460 ret_val = curr->bridge->driver->remove_memory(curr, curr->pg_start, curr->type); in agp_unbind_memory()
466 curr->pg_start = 0; in agp_unbind_memory()
1025 int agp_generic_insert_memory(struct agp_memory * mem, off_t pg_start, int type) in agp_generic_insert_memory() argument
1076 if (((pg_start + mem->page_count) > num_entries) || in agp_generic_insert_memory()
1077 ((pg_start + mem->page_count) < pg_start)) in agp_generic_insert_memory()
1080 j = pg_start; in agp_generic_insert_memory()
1082 while (j < (pg_start + mem->page_count)) { in agp_generic_insert_memory()
[all …]
Dnvidia-agp.c201 static int nvidia_insert_memory(struct agp_memory *mem, off_t pg_start, int type) in nvidia_insert_memory() argument
213 if ((pg_start + mem->page_count) > in nvidia_insert_memory()
217 for (j = pg_start; j < (pg_start + mem->page_count); j++) { in nvidia_insert_memory()
226 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { in nvidia_insert_memory()
240 static int nvidia_remove_memory(struct agp_memory *mem, off_t pg_start, int type) in nvidia_remove_memory() argument
253 for (i = pg_start; i < (mem->page_count + pg_start); i++) in nvidia_remove_memory()
Dsworks-agp.c321 off_t pg_start, int type) in serverworks_insert_memory() argument
332 if ((pg_start + mem->page_count) > num_entries) { in serverworks_insert_memory()
336 j = pg_start; in serverworks_insert_memory()
337 while (j < (pg_start + mem->page_count)) { in serverworks_insert_memory()
350 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { in serverworks_insert_memory()
361 static int serverworks_remove_memory(struct agp_memory *mem, off_t pg_start, in serverworks_remove_memory() argument
375 for (i = pg_start; i < (mem->page_count + pg_start); i++) { in serverworks_remove_memory()
Dati-agp.c269 off_t pg_start, int type) in ati_insert_memory() argument
285 if ((pg_start + mem->page_count) > num_entries) in ati_insert_memory()
288 j = pg_start; in ati_insert_memory()
289 while (j < (pg_start + mem->page_count)) { in ati_insert_memory()
303 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { in ati_insert_memory()
316 static int ati_remove_memory(struct agp_memory * mem, off_t pg_start, in ati_remove_memory() argument
331 for (i = pg_start; i < (mem->page_count + pg_start); i++) { in ati_remove_memory()
Damd-k7-agp.c285 static int amd_insert_memory(struct agp_memory *mem, off_t pg_start, int type) in amd_insert_memory() argument
297 if ((pg_start + mem->page_count) > num_entries) in amd_insert_memory()
300 j = pg_start; in amd_insert_memory()
301 while (j < (pg_start + mem->page_count)) { in amd_insert_memory()
314 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { in amd_insert_memory()
327 static int amd_remove_memory(struct agp_memory *mem, off_t pg_start, int type) in amd_remove_memory() argument
337 for (i = pg_start; i < (mem->page_count + pg_start); i++) { in amd_remove_memory()
Dintel-gtt.c212 static int i810_insert_dcache_entries(struct agp_memory *mem, off_t pg_start, in i810_insert_dcache_entries() argument
217 if ((pg_start + mem->page_count) in i810_insert_dcache_entries()
224 for (i = pg_start; i < (pg_start + mem->page_count); i++) { in i810_insert_dcache_entries()
858 unsigned int pg_start, in intel_gtt_insert_sg_entries() argument
865 j = pg_start; in intel_gtt_insert_sg_entries()
900 off_t pg_start, int type) in intel_fake_agp_insert_entries() argument
912 return i810_insert_dcache_entries(mem, pg_start, type); in intel_fake_agp_insert_entries()
917 if (pg_start + mem->page_count > intel_private.gtt_total_entries) in intel_fake_agp_insert_entries()
936 intel_gtt_insert_sg_entries(&st, pg_start, type); in intel_fake_agp_insert_entries()
940 intel_gtt_insert_pages(pg_start, mem->page_count, mem->pages, in intel_fake_agp_insert_entries()
[all …]
Dcompat_ioctl.h59 compat_off_t pg_start; /* starting page to populate */ member
82 compat_off_t pg_start; /* starting page to populate */ member
Dparisc-agp.c121 parisc_agp_insert_memory(struct agp_memory *mem, off_t pg_start, int type) in parisc_agp_insert_memory() argument
133 io_pg_start = info->io_pages_per_kpage * pg_start; in parisc_agp_insert_memory()
170 parisc_agp_remove_memory(struct agp_memory *mem, off_t pg_start, int type) in parisc_agp_remove_memory() argument
180 io_pg_start = info->io_pages_per_kpage * pg_start; in parisc_agp_remove_memory()
Dcompat_ioctl.c123 ksegment[seg].pg_start = usegment[seg].pg_start; in compat_agpioc_reserve_wrap()
190 return agp_bind_memory(memory, bind_info.pg_start); in compat_agpioc_bind_wrap()
Duninorth-agp.c149 static int uninorth_insert_memory(struct agp_memory *mem, off_t pg_start, int type) in uninorth_insert_memory() argument
171 if ((pg_start + mem->page_count) > num_entries) in uninorth_insert_memory()
174 gp = (u32 *) &agp_bridge->gatt_table[pg_start]; in uninorth_insert_memory()
199 static int uninorth_remove_memory(struct agp_memory *mem, off_t pg_start, int type) in uninorth_remove_memory() argument
217 gp = (u32 *) &agp_bridge->gatt_table[pg_start]; in uninorth_remove_memory()
Dfrontend.c105 off_t pg_start; in agp_find_seg_in_client() local
108 pg_start = offset / 4096; in agp_find_seg_in_client()
113 if ((seg[i].pg_start == pg_start) && in agp_find_seg_in_client()
177 seg[i].pg_start = user_seg[i].pg_start; in agp_create_segment()
927 return agp_bind_memory(memory, bind_info.pg_start); in agpioc_bind_wrap()
Damd64-agp.c45 static int amd64_insert_memory(struct agp_memory *mem, off_t pg_start, int type) in amd64_insert_memory() argument
64 if (((unsigned long)pg_start + mem->page_count) > num_entries) in amd64_insert_memory()
67 j = pg_start; in amd64_insert_memory()
70 while (j < (pg_start + mem->page_count)) { in amd64_insert_memory()
81 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { in amd64_insert_memory()
/kernel/linux/linux-5.10/include/linux/
Dagpgart.h52 off_t pg_start; /* starting page to populate */ member
58 off_t pg_start; member
81 off_t pg_start; /* starting page to populate */ member
/kernel/linux/linux-5.10/arch/alpha/kernel/
Dcore_titan.c585 long pg_start; member
603 aper->pg_start = iommu_reserve(aper->arena, aper->pg_count, in titan_agp_setup()
605 if (aper->pg_start < 0) { in titan_agp_setup()
612 aper->arena->dma_base + aper->pg_start * PAGE_SIZE; in titan_agp_setup()
625 status = iommu_release(aper->arena, aper->pg_start, aper->pg_count); in titan_agp_cleanup()
629 iommu_unbind(aper->arena, aper->pg_start, aper->pg_count); in titan_agp_cleanup()
630 status = iommu_release(aper->arena, aper->pg_start, in titan_agp_cleanup()
683 titan_agp_bind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem) in titan_agp_bind_memory() argument
686 return iommu_bind(aper->arena, aper->pg_start + pg_start, in titan_agp_bind_memory()
691 titan_agp_unbind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem) in titan_agp_unbind_memory() argument
[all …]
Dcore_marvel.c902 long pg_start; member
919 aper->pg_start = iommu_reserve(aper->arena, aper->pg_count, in marvel_agp_setup()
922 if (aper->pg_start < 0) { in marvel_agp_setup()
929 aper->arena->dma_base + aper->pg_start * PAGE_SIZE; in marvel_agp_setup()
942 status = iommu_release(aper->arena, aper->pg_start, aper->pg_count); in marvel_agp_cleanup()
946 iommu_unbind(aper->arena, aper->pg_start, aper->pg_count); in marvel_agp_cleanup()
947 status = iommu_release(aper->arena, aper->pg_start, in marvel_agp_cleanup()
1022 marvel_agp_bind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem) in marvel_agp_bind_memory() argument
1025 return iommu_bind(aper->arena, aper->pg_start + pg_start, in marvel_agp_bind_memory()
1030 marvel_agp_unbind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem) in marvel_agp_unbind_memory() argument
[all …]
Dpci_iommu.c883 iommu_release(struct pci_iommu_arena *arena, long pg_start, long pg_count) in iommu_release() argument
893 for(i = pg_start; i < pg_start + pg_count; i++) in iommu_release()
897 iommu_arena_free(arena, pg_start, pg_count); in iommu_release()
902 iommu_bind(struct pci_iommu_arena *arena, long pg_start, long pg_count, in iommu_bind() argument
915 for(j = pg_start; j < pg_start + pg_count; j++) { in iommu_bind()
922 for(i = 0, j = pg_start; i < pg_count; i++, j++) in iommu_bind()
931 iommu_unbind(struct pci_iommu_arena *arena, long pg_start, long pg_count) in iommu_unbind() argument
938 p = arena->ptes + pg_start; in iommu_unbind()
/kernel/linux/linux-5.10/include/uapi/linux/
Dagpgart.h81 __kernel_off_t pg_start; /* starting page to populate */ member
104 __kernel_off_t pg_start;/* starting page to populate */ member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
Dagpgart.h60 __kernel_off_t pg_start; member
77 __kernel_off_t pg_start; member
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
Dagpgart.h48 __kernel_off_t pg_start; member
65 __kernel_off_t pg_start; member
/kernel/linux/linux-5.10/drivers/hv/
Dhv_balloon.c842 static unsigned long handle_pg_range(unsigned long pg_start, in handle_pg_range() argument
845 unsigned long start_pfn = pg_start; in handle_pg_range()
854 pg_start); in handle_pg_range()
925 static unsigned long process_hot_add(unsigned long pg_start, in process_hot_add() argument
938 covered = pfn_covered(pg_start, pfn_cnt); in process_hot_add()
960 ha_region->covered_start_pfn = pg_start; in process_hot_add()
961 ha_region->covered_end_pfn = pg_start; in process_hot_add()
974 return handle_pg_range(pg_start, pfn_cnt); in process_hot_add()
983 unsigned long pg_start, pfn_cnt; in hot_add_req() local
993 pg_start = dm->ha_wrk.ha_page_range.finfo.start_page; in hot_add_req()
[all …]
/kernel/linux/linux-5.10/arch/arc/include/asm/
Dptrace.h143 unsigned long pg_start = (sp & ~(THREAD_SIZE - 1)); \
144 (struct pt_regs *)(pg_start + THREAD_SIZE) - 1; \
/kernel/linux/linux-5.10/fs/f2fs/
Dfile.c1016 int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end) in f2fs_truncate_hole() argument
1020 while (pg_start < pg_end) { in f2fs_truncate_hole()
1025 err = f2fs_get_dnode_of_data(&dn, pg_start, LOOKUP_NODE); in f2fs_truncate_hole()
1028 pg_start = f2fs_get_next_page_offset(&dn, in f2fs_truncate_hole()
1029 pg_start); in f2fs_truncate_hole()
1036 count = min(end_offset - dn.ofs_in_node, pg_end - pg_start); in f2fs_truncate_hole()
1043 pg_start += count; in f2fs_truncate_hole()
1050 pgoff_t pg_start, pg_end; in punch_hole() local
1058 pg_start = ((unsigned long long) offset) >> PAGE_SHIFT; in punch_hole()
1064 if (pg_start == pg_end) { in punch_hole()
[all …]

12