aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/include/asm/iomap.h5
-rw-r--r--arch/x86/mm/iomap_32.c42
-rw-r--r--include/linux/io-mapping.h6
3 files changed, 48 insertions, 5 deletions
diff --git a/arch/x86/include/asm/iomap.h b/arch/x86/include/asm/iomap.h
index 86af26091d6c..bd46495ff7de 100644
--- a/arch/x86/include/asm/iomap.h
+++ b/arch/x86/include/asm/iomap.h
@@ -24,7 +24,10 @@
24#include <asm/tlbflush.h> 24#include <asm/tlbflush.h>
25 25
26int 26int
27is_io_mapping_possible(resource_size_t base, unsigned long size); 27reserve_io_memtype_wc(u64 base, unsigned long size, pgprot_t *prot);
28
29void
30free_io_memtype(u64 base, unsigned long size);
28 31
29void * 32void *
30iomap_atomic_prot_pfn(unsigned long pfn, enum km_type type, pgprot_t prot); 33iomap_atomic_prot_pfn(unsigned long pfn, enum km_type type, pgprot_t prot);
diff --git a/arch/x86/mm/iomap_32.c b/arch/x86/mm/iomap_32.c
index 6c2b1af16926..94596f794b1b 100644
--- a/arch/x86/mm/iomap_32.c
+++ b/arch/x86/mm/iomap_32.c
@@ -21,13 +21,13 @@
21#include <linux/module.h> 21#include <linux/module.h>
22 22
23#ifdef CONFIG_X86_PAE 23#ifdef CONFIG_X86_PAE
24int 24static int
25is_io_mapping_possible(resource_size_t base, unsigned long size) 25is_io_mapping_possible(resource_size_t base, unsigned long size)
26{ 26{
27 return 1; 27 return 1;
28} 28}
29#else 29#else
30int 30static int
31is_io_mapping_possible(resource_size_t base, unsigned long size) 31is_io_mapping_possible(resource_size_t base, unsigned long size)
32{ 32{
33 /* There is no way to map greater than 1 << 32 address without PAE */ 33 /* There is no way to map greater than 1 << 32 address without PAE */
@@ -38,6 +38,44 @@ is_io_mapping_possible(resource_size_t base, unsigned long size)
38} 38}
39#endif 39#endif
40 40
41int
42reserve_io_memtype_wc(u64 base, unsigned long size, pgprot_t *prot)
43{
44 unsigned long ret_flag;
45
46 if (!is_io_mapping_possible(base, size))
47 goto out_err;
48
49 if (!pat_enabled) {
50 *prot = pgprot_noncached(PAGE_KERNEL);
51 return 0;
52 }
53
54 if (reserve_memtype(base, base + size, _PAGE_CACHE_WC, &ret_flag))
55 goto out_err;
56
57 if (ret_flag == _PAGE_CACHE_WB)
58 goto out_free;
59
60 if (kernel_map_sync_memtype(base, size, ret_flag))
61 goto out_free;
62
63 *prot = __pgprot(__PAGE_KERNEL | ret_flag);
64 return 0;
65
66out_free:
67 free_memtype(base, base + size);
68out_err:
69 return -EINVAL;
70}
71
72void
73free_io_memtype(u64 base, unsigned long size)
74{
75 if (pat_enabled)
76 free_memtype(base, base + size);
77}
78
41/* Map 'pfn' using fixed map 'type' and protections 'prot' 79/* Map 'pfn' using fixed map 'type' and protections 'prot'
42 */ 80 */
43void * 81void *
diff --git a/include/linux/io-mapping.h b/include/linux/io-mapping.h
index cbc2f0cd631b..f1ed66c43787 100644
--- a/include/linux/io-mapping.h
+++ b/include/linux/io-mapping.h
@@ -49,8 +49,9 @@ static inline struct io_mapping *
49io_mapping_create_wc(resource_size_t base, unsigned long size) 49io_mapping_create_wc(resource_size_t base, unsigned long size)
50{ 50{
51 struct io_mapping *iomap; 51 struct io_mapping *iomap;
52 pgprot_t prot;
52 53
53 if (!is_io_mapping_possible(base, size)) 54 if (!reserve_io_memtype_wc(base, size, &prot))
54 return NULL; 55 return NULL;
55 56
56 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL); 57 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
@@ -59,13 +60,14 @@ io_mapping_create_wc(resource_size_t base, unsigned long size)
59 60
60 iomap->base = base; 61 iomap->base = base;
61 iomap->size = size; 62 iomap->size = size;
62 iomap->prot = pgprot_writecombine(__pgprot(__PAGE_KERNEL)); 63 iomap->prot = prot;
63 return iomap; 64 return iomap;
64} 65}
65 66
66static inline void 67static inline void
67io_mapping_free(struct io_mapping *mapping) 68io_mapping_free(struct io_mapping *mapping)
68{ 69{
70 free_io_memtype(mapping->base, mapping->size);
69 kfree(mapping); 71 kfree(mapping);
70} 72}
71 73