Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 1 | /* |
| 2 | * (c) Copyright 2006 Hewlett-Packard Development Company, L.P. |
| 3 | * Bjorn Helgaas <bjorn.helgaas@hp.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/compiler.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/efi.h> |
| 13 | #include <asm/io.h> |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 14 | #include <asm/meminit.h> |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 15 | |
| 16 | static inline void __iomem * |
| 17 | __ioremap (unsigned long offset, unsigned long size) |
| 18 | { |
| 19 | return (void __iomem *) (__IA64_UNCACHED_OFFSET | offset); |
| 20 | } |
| 21 | |
| 22 | void __iomem * |
| 23 | ioremap (unsigned long offset, unsigned long size) |
| 24 | { |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 25 | u64 attr; |
| 26 | unsigned long gran_base, gran_size; |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 27 | |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 28 | /* |
| 29 | * For things in kern_memmap, we must use the same attribute |
| 30 | * as the rest of the kernel. For more details, see |
| 31 | * Documentation/ia64/aliasing.txt. |
| 32 | */ |
| 33 | attr = kern_mem_attribute(offset, size); |
| 34 | if (attr & EFI_MEMORY_WB) |
| 35 | return phys_to_virt(offset); |
| 36 | else if (attr & EFI_MEMORY_UC) |
Bjorn Helgaas | c1c57d7 | 2006-03-30 09:53:39 -0700 | [diff] [blame] | 37 | return __ioremap(offset, size); |
| 38 | |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 39 | /* |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 40 | * Some chipsets don't support UC access to memory. If |
| 41 | * WB is supported for the whole granule, we prefer that. |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 42 | */ |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 43 | gran_base = GRANULEROUNDDOWN(offset); |
| 44 | gran_size = GRANULEROUNDUP(offset + size) - gran_base; |
| 45 | if (efi_mem_attribute(gran_base, gran_size) & EFI_MEMORY_WB) |
| 46 | return phys_to_virt(offset); |
| 47 | |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 48 | return __ioremap(offset, size); |
| 49 | } |
| 50 | EXPORT_SYMBOL(ioremap); |
| 51 | |
| 52 | void __iomem * |
| 53 | ioremap_nocache (unsigned long offset, unsigned long size) |
| 54 | { |
Bjorn Helgaas | 32e62c6 | 2006-05-05 17:19:50 -0600 | [diff] [blame^] | 55 | if (kern_mem_attribute(offset, size) & EFI_MEMORY_WB) |
| 56 | return 0; |
| 57 | |
Bjorn Helgaas | e9b0a07 | 2006-03-26 01:37:06 -0800 | [diff] [blame] | 58 | return __ioremap(offset, size); |
| 59 | } |
| 60 | EXPORT_SYMBOL(ioremap_nocache); |