2 * Copyright (C) 2001-2006 Silicon Graphics, Inc. All rights
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License
7 * as published by the Free Software Foundation.
11 * SN Platform Special Memory (mspec) Support
13 * This driver exports the SN special memory (mspec) facility to user
15 * There are three types of memory made available thru this driver:
16 * fetchops, uncached and cached.
18 * Fetchops are atomic memory operations that are implemented in the
19 * memory controller on SGI SN hardware.
21 * Uncached are used for memory write combining feature of the ia64
24 * Cached are used for areas of memory that are used as cached addresses
25 * on our partition and used as uncached addresses from other partitions.
26 * Due to a design constraint of the SN2 Shub, you can not have processors
27 * on the same FSB perform both a cached and uncached reference to the
28 * same cache line. These special memory cached regions prevent the
29 * kernel from ever dropping in a TLB entry and therefore prevent the
30 * processor from ever speculating a cache line from this page.
33 #include <linux/types.h>
34 #include <linux/kernel.h>
35 #include <linux/module.h>
36 #include <linux/init.h>
37 #include <linux/errno.h>
38 #include <linux/miscdevice.h>
39 #include <linux/spinlock.h>
42 #include <linux/vmalloc.h>
43 #include <linux/string.h>
44 #include <linux/slab.h>
45 #include <linux/numa.h>
46 #include <linux/refcount.h>
48 #include <asm/pgtable.h>
49 #include <linux/atomic.h>
50 #include <asm/tlbflush.h>
51 #include <asm/uncached.h>
52 #include <asm/sn/addrs.h>
53 #include <asm/sn/arch.h>
54 #include <asm/sn/mspec.h>
55 #include <asm/sn/sn_cpuid.h>
56 #include <asm/sn/io.h>
57 #include <asm/sn/bte.h>
58 #include <asm/sn/shubio.h>
61 #define FETCHOP_ID "SGI Fetchop,"
62 #define CACHED_ID "Cached,"
63 #define UNCACHED_ID "Uncached"
64 #define REVISION "4.0"
65 #define MSPEC_BASENAME "mspec"
68 * Page types allocated by the device.
70 enum mspec_page_type
{
83 * One of these structures is allocated when an mspec region is mmaped. The
84 * structure is pointed to by the vma->vm_private_data field in the vma struct.
85 * This structure is used to record the addresses of the mspec pages.
86 * This structure is shared by all vma's that are split off from the
87 * original vma when split_vma()'s are done.
89 * The refcnt is incremented atomically because mm->mmap_sem does not
90 * protect in fork case where multiple tasks share the vma_data.
93 refcount_t refcnt
; /* Number of vmas sharing the data. */
94 spinlock_t lock
; /* Serialize access to this structure. */
95 int count
; /* Number of pages allocated. */
96 enum mspec_page_type type
; /* Type of pages allocated. */
97 unsigned long vm_start
; /* Original (unsplit) base. */
98 unsigned long vm_end
; /* Original (unsplit) end. */
99 unsigned long maddr
[0]; /* Array of MSPEC addresses. */
102 /* used on shub2 to clear FOP cache in the HUB */
103 static unsigned long scratch_page
[MAX_NUMNODES
];
104 #define SH2_AMO_CACHE_ENTRIES 4
107 mspec_zero_block(unsigned long addr
, int len
)
117 nid
= nasid_to_cnodeid(get_node_number(__pa(addr
)));
118 p
= (void *)TO_AMO(scratch_page
[nid
]);
120 for (i
=0; i
< SH2_AMO_CACHE_ENTRIES
; i
++) {
121 FETCHOP_LOAD_OP(p
, FETCHOP_LOAD
);
122 p
+= FETCHOP_VAR_SIZE
;
126 status
= bte_copy(0, addr
& ~__IA64_UNCACHED_OFFSET
, len
,
127 BTE_WACQUIRE
| BTE_ZERO_FILL
, NULL
);
129 memset((char *) addr
, 0, len
);
138 * Called when a device mapping is created by a means other than mmap
139 * (via fork, munmap, etc.). Increments the reference count on the
140 * underlying mspec data so it is not freed prematurely.
143 mspec_open(struct vm_area_struct
*vma
)
145 struct vma_data
*vdata
;
147 vdata
= vma
->vm_private_data
;
148 refcount_inc(&vdata
->refcnt
);
154 * Called when unmapping a device mapping. Frees all mspec pages
155 * belonging to all the vma's sharing this vma_data structure.
158 mspec_close(struct vm_area_struct
*vma
)
160 struct vma_data
*vdata
;
161 int index
, last_index
;
162 unsigned long my_page
;
164 vdata
= vma
->vm_private_data
;
166 if (!refcount_dec_and_test(&vdata
->refcnt
))
169 last_index
= (vdata
->vm_end
- vdata
->vm_start
) >> PAGE_SHIFT
;
170 for (index
= 0; index
< last_index
; index
++) {
171 if (vdata
->maddr
[index
] == 0)
174 * Clear the page before sticking it back
177 my_page
= vdata
->maddr
[index
];
178 vdata
->maddr
[index
] = 0;
179 if (!mspec_zero_block(my_page
, PAGE_SIZE
))
180 uncached_free_page(my_page
, 1);
182 printk(KERN_WARNING
"mspec_close(): "
183 "failed to zero page %ld\n", my_page
);
192 * Creates a mspec page and maps it to user space.
195 mspec_fault(struct vm_fault
*vmf
)
197 unsigned long paddr
, maddr
;
199 pgoff_t index
= vmf
->pgoff
;
200 struct vma_data
*vdata
= vmf
->vma
->vm_private_data
;
202 maddr
= (volatile unsigned long) vdata
->maddr
[index
];
204 maddr
= uncached_alloc_page(numa_node_id(), 1);
208 spin_lock(&vdata
->lock
);
209 if (vdata
->maddr
[index
] == 0) {
211 vdata
->maddr
[index
] = maddr
;
213 uncached_free_page(maddr
, 1);
214 maddr
= vdata
->maddr
[index
];
216 spin_unlock(&vdata
->lock
);
219 if (vdata
->type
== MSPEC_FETCHOP
)
220 paddr
= TO_AMO(maddr
);
222 paddr
= maddr
& ~__IA64_UNCACHED_OFFSET
;
224 pfn
= paddr
>> PAGE_SHIFT
;
227 * vm_insert_pfn can fail with -EBUSY, but in that case it will
228 * be because another thread has installed the pte first, so it
231 vm_insert_pfn(vmf
->vma
, vmf
->address
, pfn
);
233 return VM_FAULT_NOPAGE
;
236 static const struct vm_operations_struct mspec_vm_ops
= {
238 .close
= mspec_close
,
239 .fault
= mspec_fault
,
245 * Called when mmapping the device. Initializes the vma with a fault handler
246 * and private data structure necessary to allocate, track, and free the
250 mspec_mmap(struct file
*file
, struct vm_area_struct
*vma
,
251 enum mspec_page_type type
)
253 struct vma_data
*vdata
;
254 int pages
, vdata_size
;
256 if (vma
->vm_pgoff
!= 0)
259 if ((vma
->vm_flags
& VM_SHARED
) == 0)
262 if ((vma
->vm_flags
& VM_WRITE
) == 0)
265 pages
= vma_pages(vma
);
266 vdata_size
= sizeof(struct vma_data
) + pages
* sizeof(long);
267 if (vdata_size
<= PAGE_SIZE
)
268 vdata
= kzalloc(vdata_size
, GFP_KERNEL
);
270 vdata
= vzalloc(vdata_size
);
274 vdata
->vm_start
= vma
->vm_start
;
275 vdata
->vm_end
= vma
->vm_end
;
277 spin_lock_init(&vdata
->lock
);
278 refcount_set(&vdata
->refcnt
, 1);
279 vma
->vm_private_data
= vdata
;
281 vma
->vm_flags
|= VM_IO
| VM_PFNMAP
| VM_DONTEXPAND
| VM_DONTDUMP
;
282 if (vdata
->type
== MSPEC_FETCHOP
|| vdata
->type
== MSPEC_UNCACHED
)
283 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
284 vma
->vm_ops
= &mspec_vm_ops
;
290 fetchop_mmap(struct file
*file
, struct vm_area_struct
*vma
)
292 return mspec_mmap(file
, vma
, MSPEC_FETCHOP
);
296 cached_mmap(struct file
*file
, struct vm_area_struct
*vma
)
298 return mspec_mmap(file
, vma
, MSPEC_CACHED
);
302 uncached_mmap(struct file
*file
, struct vm_area_struct
*vma
)
304 return mspec_mmap(file
, vma
, MSPEC_UNCACHED
);
307 static const struct file_operations fetchop_fops
= {
308 .owner
= THIS_MODULE
,
309 .mmap
= fetchop_mmap
,
310 .llseek
= noop_llseek
,
313 static struct miscdevice fetchop_miscdev
= {
314 .minor
= MISC_DYNAMIC_MINOR
,
315 .name
= "sgi_fetchop",
316 .fops
= &fetchop_fops
319 static const struct file_operations cached_fops
= {
320 .owner
= THIS_MODULE
,
322 .llseek
= noop_llseek
,
325 static struct miscdevice cached_miscdev
= {
326 .minor
= MISC_DYNAMIC_MINOR
,
327 .name
= "mspec_cached",
331 static const struct file_operations uncached_fops
= {
332 .owner
= THIS_MODULE
,
333 .mmap
= uncached_mmap
,
334 .llseek
= noop_llseek
,
337 static struct miscdevice uncached_miscdev
= {
338 .minor
= MISC_DYNAMIC_MINOR
,
339 .name
= "mspec_uncached",
340 .fops
= &uncached_fops
346 * Called at boot time to initialize the mspec facility.
355 * The fetchop device only works on SN2 hardware, uncached and cached
356 * memory drivers should both be valid on all ia64 hardware
359 if (ia64_platform_is("sn2")) {
363 for_each_node_state(nid
, N_ONLINE
) {
368 scratch_page
[nid
] = uncached_alloc_page(nid
, 1);
369 if (scratch_page
[nid
] == 0)
370 goto free_scratch_pages
;
371 phys
= __pa(scratch_page
[nid
]);
372 nasid
= get_node_number(phys
);
373 actual_nid
= nasid_to_cnodeid(nasid
);
374 if (actual_nid
!= nid
)
375 goto free_scratch_pages
;
379 ret
= misc_register(&fetchop_miscdev
);
382 "%s: failed to register device %i\n",
384 goto free_scratch_pages
;
388 ret
= misc_register(&cached_miscdev
);
390 printk(KERN_ERR
"%s: failed to register device %i\n",
393 misc_deregister(&fetchop_miscdev
);
394 goto free_scratch_pages
;
396 ret
= misc_register(&uncached_miscdev
);
398 printk(KERN_ERR
"%s: failed to register device %i\n",
400 misc_deregister(&cached_miscdev
);
402 misc_deregister(&fetchop_miscdev
);
403 goto free_scratch_pages
;
406 printk(KERN_INFO
"%s %s initialized devices: %s %s %s\n",
407 MSPEC_BASENAME
, REVISION
, is_sn2
? FETCHOP_ID
: "",
408 CACHED_ID
, UNCACHED_ID
);
414 if (scratch_page
[nid
] != 0)
415 uncached_free_page(scratch_page
[nid
], 1);
425 misc_deregister(&uncached_miscdev
);
426 misc_deregister(&cached_miscdev
);
428 misc_deregister(&fetchop_miscdev
);
431 if (scratch_page
[nid
] != 0)
432 uncached_free_page(scratch_page
[nid
], 1);
437 module_init(mspec_init
);
438 module_exit(mspec_exit
);
440 MODULE_AUTHOR("Silicon Graphics, Inc. <linux-altix@sgi.com>");
441 MODULE_DESCRIPTION("Driver for SGI SN special memory operations");
442 MODULE_LICENSE("GPL");