blob: 5fc5c579e35effc7532981871dfefeec1cfed907 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: generic.c,v 1.18 2001/12/21 04:56:15 davem Exp $
2 * generic.c: Generic Sparc mm routines that are not dependent upon
3 * MMU type but are Sparc specific.
4 *
5 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
6 */
7
8#include <linux/kernel.h>
9#include <linux/mm.h>
10#include <linux/swap.h>
11#include <linux/pagemap.h>
12
13#include <asm/pgalloc.h>
14#include <asm/pgtable.h>
15#include <asm/page.h>
16#include <asm/tlbflush.h>
17
18/* Remap IO memory, the same way as remap_pfn_range(), but use
19 * the obio memory space.
20 *
21 * They use a pgprot that sets PAGE_IO and does not check the
22 * mem_map table as this is independent of normal memory.
23 */
24static inline void io_remap_pte_range(struct mm_struct *mm, pte_t * pte,
25 unsigned long address,
26 unsigned long size,
27 unsigned long offset, pgprot_t prot,
28 int space)
29{
30 unsigned long end;
31
32 /* clear hack bit that was used as a write_combine side-effect flag */
33 offset &= ~0x1UL;
34 address &= ~PMD_MASK;
35 end = address + size;
36 if (end > PMD_SIZE)
37 end = PMD_SIZE;
38 do {
39 pte_t entry;
40 unsigned long curend = address + PAGE_SIZE;
41
David S. Millerc4bce902006-02-11 21:57:54 -080042 entry = mk_pte_io(offset, prot, space, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (!(address & 0xffff)) {
David S. Millerc4bce902006-02-11 21:57:54 -080044 if (PAGE_SIZE < (4 * 1024 * 1024) &&
45 !(address & 0x3fffff) &&
46 !(offset & 0x3ffffe) &&
47 end >= address + 0x400000) {
48 entry = mk_pte_io(offset, prot, space,
49 4 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 curend = address + 0x400000;
51 offset += 0x400000;
David S. Millerc4bce902006-02-11 21:57:54 -080052 } else if (PAGE_SIZE < (512 * 1024) &&
53 !(address & 0x7ffff) &&
54 !(offset & 0x7fffe) &&
55 end >= address + 0x80000) {
56 entry = mk_pte_io(offset, prot, space,
57 512 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 curend = address + 0x80000;
59 offset += 0x80000;
David S. Millerc4bce902006-02-11 21:57:54 -080060 } else if (PAGE_SIZE < (64 * 1024) &&
61 !(offset & 0xfffe) &&
62 end >= address + 0x10000) {
63 entry = mk_pte_io(offset, prot, space,
64 64 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 curend = address + 0x10000;
66 offset += 0x10000;
67 } else
68 offset += PAGE_SIZE;
69 } else
70 offset += PAGE_SIZE;
71
72 do {
73 BUG_ON(!pte_none(*pte));
74 set_pte_at(mm, address, pte, entry);
75 address += PAGE_SIZE;
David S. Millercab3f162005-11-29 13:59:03 -080076 pte_val(entry) += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 pte++;
78 } while (address < curend);
79 } while (address < end);
80}
81
82static inline int io_remap_pmd_range(struct mm_struct *mm, pmd_t * pmd, unsigned long address, unsigned long size,
83 unsigned long offset, pgprot_t prot, int space)
84{
85 unsigned long end;
86
87 address &= ~PGDIR_MASK;
88 end = address + size;
89 if (end > PGDIR_SIZE)
90 end = PGDIR_SIZE;
91 offset -= address;
92 do {
93 pte_t * pte = pte_alloc_map(mm, pmd, address);
94 if (!pte)
95 return -ENOMEM;
96 io_remap_pte_range(mm, pte, address, end - address, address + offset, prot, space);
97 pte_unmap(pte);
98 address = (address + PMD_SIZE) & PMD_MASK;
99 pmd++;
100 } while (address < end);
101 return 0;
102}
103
104static inline int io_remap_pud_range(struct mm_struct *mm, pud_t * pud, unsigned long address, unsigned long size,
105 unsigned long offset, pgprot_t prot, int space)
106{
107 unsigned long end;
108
109 address &= ~PUD_MASK;
110 end = address + size;
111 if (end > PUD_SIZE)
112 end = PUD_SIZE;
113 offset -= address;
114 do {
115 pmd_t *pmd = pmd_alloc(mm, pud, address);
116 if (!pud)
117 return -ENOMEM;
118 io_remap_pmd_range(mm, pmd, address, end - address, address + offset, prot, space);
119 address = (address + PUD_SIZE) & PUD_MASK;
120 pud++;
121 } while (address < end);
122 return 0;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125int io_remap_pfn_range(struct vm_area_struct *vma, unsigned long from,
126 unsigned long pfn, unsigned long size, pgprot_t prot)
127{
128 int error = 0;
129 pgd_t * dir;
130 unsigned long beg = from;
131 unsigned long end = from + size;
132 struct mm_struct *mm = vma->vm_mm;
133 int space = GET_IOSPACE(pfn);
134 unsigned long offset = GET_PFN(pfn) << PAGE_SHIFT;
David S. Miller5cd91942005-11-28 14:02:10 -0800135 unsigned long phys_base;
136
137 phys_base = offset | (((unsigned long) space) << 32UL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Nick Pigginb5810032005-10-29 18:16:12 -0700139 /* See comment in mm/memory.c remap_pfn_range */
David S. Miller5cd91942005-11-28 14:02:10 -0800140 vma->vm_flags |= VM_IO | VM_RESERVED | VM_PFNMAP;
141 vma->vm_pgoff = phys_base >> PAGE_SHIFT;
Nick Pigginb5810032005-10-29 18:16:12 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 prot = __pgprot(pg_iobits);
144 offset -= from;
145 dir = pgd_offset(mm, from);
146 flush_cache_range(vma, beg, end);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 while (from < end) {
Hugh Dickinsb4627052005-10-29 18:16:24 -0700149 pud_t *pud = pud_alloc(mm, dir, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 error = -ENOMEM;
151 if (!pud)
152 break;
153 error = io_remap_pud_range(mm, pud, from, end - from, offset + from, prot, space);
154 if (error)
155 break;
156 from = (from + PGDIR_SIZE) & PGDIR_MASK;
157 dir++;
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Hugh Dickinsb4627052005-10-29 18:16:24 -0700160 flush_tlb_range(vma, beg, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return error;
162}