• Home
  • Raw
  • Download

Lines Matching refs:start

26 	.start	= 0,
34 .start = 0,
86 width, (unsigned long long) r->start, in r_show()
93 .start = r_start,
146 resource_size_t start = new->start; in __request_resource() local
150 if (end < start) in __request_resource()
152 if (start < root->start) in __request_resource()
159 if (!tmp || tmp->start > end) { in __request_resource()
166 if (tmp->end < start) in __request_resource()
234 resource_size_t start, end; in find_next_system_ram() local
239 start = res->start; in find_next_system_ram()
241 BUG_ON(start >= end); in find_next_system_ram()
248 if (p->start > end) { in find_next_system_ram()
252 if ((p->end >= start) && (p->start < end)) in find_next_system_ram()
259 if (res->start < p->start) in find_next_system_ram()
260 res->start = p->start; in find_next_system_ram()
273 res.start = (u64) start_pfn << PAGE_SHIFT; in walk_memory_resource()
277 while ((res.start < res.end) && (find_next_system_ram(&res) >= 0)) { in walk_memory_resource()
278 pfn = (unsigned long)(res.start >> PAGE_SHIFT); in walk_memory_resource()
279 len = (unsigned long)((res.end + 1 - res.start) >> PAGE_SHIFT); in walk_memory_resource()
283 res.start = res.end + 1; in walk_memory_resource()
303 new->start = root->start; in find_resource()
308 if (this && this->start == 0) { in find_resource()
309 new->start = this->end + 1; in find_resource()
314 new->end = this->start - 1; in find_resource()
317 if (new->start < min) in find_resource()
318 new->start = min; in find_resource()
321 new->start = ALIGN(new->start, align); in find_resource()
324 if (new->start < new->end && new->end - new->start >= size - 1) { in find_resource()
325 new->end = new->start + size - 1; in find_resource()
330 new->start = this->end + 1; in find_resource()
382 if ((first->start > new->start) || (first->end < new->end)) in __insert_resource()
384 if ((first->start == new->start) && (first->end == new->end)) in __insert_resource()
390 if (next->start < new->start || next->end > new->end) in __insert_resource()
394 if (next->sibling->start > new->end) in __insert_resource()
464 if (conflict->start < new->start) in insert_resource_expand_to_fit()
465 new->start = conflict->start; in insert_resource_expand_to_fit()
484 int adjust_resource(struct resource *res, resource_size_t start, resource_size_t size) in adjust_resource() argument
487 resource_size_t end = start + size - 1; in adjust_resource()
492 if ((start < parent->start) || (end > parent->end)) in adjust_resource()
496 if ((tmp->start < start) || (tmp->end > end)) in adjust_resource()
500 if (res->sibling && (res->sibling->start <= end)) in adjust_resource()
507 if (start <= tmp->end) in adjust_resource()
511 res->start = start; in adjust_resource()
521 resource_size_t start, resource_size_t end, in __reserve_region_with_split() argument
532 res->start = start; in __reserve_region_with_split()
556 if (conflict->start <= start && conflict->end >= end) in __reserve_region_with_split()
559 if (conflict->start > start) in __reserve_region_with_split()
560 __reserve_region_with_split(root, start, conflict->start-1, name); in __reserve_region_with_split()
564 common_start = max(conflict->start, start); in __reserve_region_with_split()
576 resource_size_t start, resource_size_t end, in reserve_region_with_split() argument
580 __reserve_region_with_split(root, start, end, name); in reserve_region_with_split()
598 return res->start; in resource_alignment()
626 resource_size_t start, resource_size_t n, in __request_region() argument
635 res->start = start; in __request_region()
636 res->end = start + n - 1; in __request_region()
679 int __check_region(struct resource *parent, resource_size_t start, in __check_region() argument
684 res = __request_region(parent, start, n, "check-region", 0); in __check_region()
702 void __release_region(struct resource *parent, resource_size_t start, in __release_region() argument
709 end = start + n - 1; in __release_region()
718 if (res->start <= start && res->end >= end) { in __release_region()
723 if (res->start != start || res->end != end) in __release_region()
736 "<%016llx-%016llx>\n", (unsigned long long)start, in __release_region()
746 resource_size_t start; member
754 __release_region(this->parent, this->start, this->n); in devm_region_release()
762 this->start == match->start && this->n == match->n; in devm_region_match()
766 struct resource *parent, resource_size_t start, in __devm_request_region() argument
778 dr->start = start; in __devm_request_region()
781 res = __request_region(parent, start, n, name, 0); in __devm_request_region()
792 resource_size_t start, resource_size_t n) in __devm_release_region() argument
794 struct region_devres match_data = { parent, start, n }; in __devm_release_region()
796 __release_region(parent, start, n); in __devm_release_region()
822 res->start = io_start; in reserve_setup()
826 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0) in reserve_setup()
851 if (p->start >= addr + size) in iomem_map_sanity_check()
855 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) && in iomem_map_sanity_check()
871 (unsigned long long)p->start, in iomem_map_sanity_check()
910 if (p->start >= addr + size) in iomem_is_exclusive()