1 /* highmem.c: arch-specific highmem stuff
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #include <linux/highmem.h>
12 #include <linux/module.h>
14 void *kmap(struct page
*page
)
17 if (!PageHighMem(page
))
18 return page_address(page
);
19 return kmap_high(page
);
24 void kunmap(struct page
*page
)
28 if (!PageHighMem(page
))
33 EXPORT_SYMBOL(kunmap
);
35 struct page
*kmap_atomic_to_page(void *ptr
)
37 return virt_to_page(ptr
);
40 void *kmap_atomic(struct page
*page
)
47 type
= kmap_atomic_idx_push();
48 paddr
= page_to_phys(page
);
52 * The first 4 primary maps are reserved for architecture code
54 case 0: return __kmap_atomic_primary(0, paddr
, 6);
55 case 1: return __kmap_atomic_primary(0, paddr
, 7);
56 case 2: return __kmap_atomic_primary(0, paddr
, 8);
57 case 3: return __kmap_atomic_primary(0, paddr
, 9);
58 case 4: return __kmap_atomic_primary(0, paddr
, 10);
60 case 5 ... 5 + NR_TLB_LINES
- 1:
61 return __kmap_atomic_secondary(type
- 5, paddr
);
68 EXPORT_SYMBOL(kmap_atomic
);
70 void __kunmap_atomic(void *kvaddr
)
72 int type
= kmap_atomic_idx();
74 case 0: __kunmap_atomic_primary(0, 6); break;
75 case 1: __kunmap_atomic_primary(0, 7); break;
76 case 2: __kunmap_atomic_primary(0, 8); break;
77 case 3: __kunmap_atomic_primary(0, 9); break;
78 case 4: __kunmap_atomic_primary(0, 10); break;
80 case 5 ... 5 + NR_TLB_LINES
- 1:
81 __kunmap_atomic_secondary(type
- 5, kvaddr
);
87 kmap_atomic_idx_pop();
91 EXPORT_SYMBOL(__kunmap_atomic
);