aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2006-03-26 04:37:05 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-26 11:56:54 -0500
commit136939a2b5aa4302281215745ccd567e1df2e8d4 (patch)
tree384841deada5b0ceb44c255e0474866bbc8d3354 /arch
parent3ed3bce846abc7ef460104b461cac793e41afe5e (diff)
[PATCH] EFI, /dev/mem: simplify efi_mem_attribute_range()
Pass the size, not a pointer to the size, to efi_mem_attribute_range(). This function validates memory regions for the /dev/mem read/write/mmap paths. The pointer allows arches to reduce the size of the range, but I think that's unnecessary complexity. Simplifying it will let me use efi_mem_attribute_range() to improve the ia64 ioremap() implementation. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Cc: Matt Domsch <Matt_Domsch@dell.com> Cc: "Tolentino, Matthew E" <matthew.e.tolentino@intel.com> Cc: "Brown, Len" <len.brown@intel.com> Cc: Andi Kleen <ak@muc.de> Acked-by: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/ia64/kernel/efi.c41
1 files changed, 20 insertions, 21 deletions
diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c
index 9990320b6f9a..2993748c13df 100644
--- a/arch/ia64/kernel/efi.c
+++ b/arch/ia64/kernel/efi.c
@@ -677,27 +677,34 @@ EXPORT_SYMBOL(efi_mem_attributes);
677/* 677/*
678 * Determines whether the memory at phys_addr supports the desired 678 * Determines whether the memory at phys_addr supports the desired
679 * attribute (WB, UC, etc). If this returns 1, the caller can safely 679 * attribute (WB, UC, etc). If this returns 1, the caller can safely
680 * access *size bytes at phys_addr with the specified attribute. 680 * access size bytes at phys_addr with the specified attribute.
681 */ 681 */
682static int 682int
683efi_mem_attribute_range (unsigned long phys_addr, unsigned long *size, u64 attr) 683efi_mem_attribute_range (unsigned long phys_addr, unsigned long size, u64 attr)
684{ 684{
685 unsigned long end = phys_addr + size;
685 efi_memory_desc_t *md = efi_memory_descriptor(phys_addr); 686 efi_memory_desc_t *md = efi_memory_descriptor(phys_addr);
686 unsigned long md_end;
687 687
688 if (!md || (md->attribute & attr) != attr) 688 /*
689 * Some firmware doesn't report MMIO regions in the EFI memory
690 * map. The Intel BigSur (a.k.a. HP i2000) has this problem.
691 * On those platforms, we have to assume UC is valid everywhere.
692 */
693 if (!md || (md->attribute & attr) != attr) {
694 if (attr == EFI_MEMORY_UC && !efi_memmap_has_mmio())
695 return 1;
689 return 0; 696 return 0;
697 }
690 698
691 do { 699 do {
692 md_end = efi_md_end(md); 700 unsigned long md_end = efi_md_end(md);
693 if (phys_addr + *size <= md_end) 701
702 if (end <= md_end)
694 return 1; 703 return 1;
695 704
696 md = efi_memory_descriptor(md_end); 705 md = efi_memory_descriptor(md_end);
697 if (!md || (md->attribute & attr) != attr) { 706 if (!md || (md->attribute & attr) != attr)
698 *size = md_end - phys_addr; 707 return 0;
699 return 1;
700 }
701 } while (md); 708 } while (md);
702 return 0; 709 return 0;
703} 710}
@@ -708,7 +715,7 @@ efi_mem_attribute_range (unsigned long phys_addr, unsigned long *size, u64 attr)
708 * control access size. 715 * control access size.
709 */ 716 */
710int 717int
711valid_phys_addr_range (unsigned long phys_addr, unsigned long *size) 718valid_phys_addr_range (unsigned long phys_addr, unsigned long size)
712{ 719{
713 return efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_WB); 720 return efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_WB);
714} 721}
@@ -723,7 +730,7 @@ valid_phys_addr_range (unsigned long phys_addr, unsigned long *size)
723 * because that doesn't appear in the boot-time EFI memory map. 730 * because that doesn't appear in the boot-time EFI memory map.
724 */ 731 */
725int 732int
726valid_mmap_phys_addr_range (unsigned long phys_addr, unsigned long *size) 733valid_mmap_phys_addr_range (unsigned long phys_addr, unsigned long size)
727{ 734{
728 if (efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_WB)) 735 if (efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_WB))
729 return 1; 736 return 1;
@@ -731,14 +738,6 @@ valid_mmap_phys_addr_range (unsigned long phys_addr, unsigned long *size)
731 if (efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_UC)) 738 if (efi_mem_attribute_range(phys_addr, size, EFI_MEMORY_UC))
732 return 1; 739 return 1;
733 740
734 /*
735 * Some firmware doesn't report MMIO regions in the EFI memory map.
736 * The Intel BigSur (a.k.a. HP i2000) has this problem. In this
737 * case, we can't use the EFI memory map to validate mmap requests.
738 */
739 if (!efi_memmap_has_mmio())
740 return 1;
741
742 return 0; 741 return 0;
743} 742}
744 743