blob: a9d1990643a17e18e7854a3631972328e252cc46 [file] [log] [blame]
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001/* drivers/android/pmem.c
2 *
3 * Copyright (C) 2007 Google, Inc.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07004 * Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07005 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/miscdevice.h>
18#include <linux/platform_device.h>
19#include <linux/fs.h>
20#include <linux/file.h>
21#include <linux/mm.h>
22#include <linux/list.h>
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070023#include <linux/debugfs.h>
24#include <linux/android_pmem.h>
25#include <linux/mempolicy.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070026#include <linux/kobject.h>
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070027#include <asm/io.h>
28#include <asm/uaccess.h>
29#include <asm/cacheflush.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070030#include <asm/sizes.h>
31#include <linux/pm_runtime.h>
32#include <linux/memory_alloc.h>
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070033
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070034#define PMEM_MAX_DEVICES (10)
35
36#define PMEM_MAX_ORDER (128)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070037#define PMEM_MIN_ALLOC PAGE_SIZE
38
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070039#define PMEM_INITIAL_NUM_BITMAP_ALLOCATIONS (64)
40
41#define PMEM_32BIT_WORD_ORDER (5)
42#define PMEM_BITS_PER_WORD_MASK (BITS_PER_LONG - 1)
43
44#ifdef CONFIG_ANDROID_PMEM_DEBUG
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070045#define PMEM_DEBUG 1
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070046#else
47#define PMEM_DEBUG 0
48#endif
49
50#define SYSTEM_ALLOC_RETRY 10
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070051
52/* indicates that a refernce to this file has been taken via get_pmem_file,
53 * the file should not be released until put_pmem_file is called */
54#define PMEM_FLAGS_BUSY 0x1
55/* indicates that this is a suballocation of a larger master range */
56#define PMEM_FLAGS_CONNECTED 0x1 << 1
57/* indicates this is a master and not a sub allocation and that it is mmaped */
58#define PMEM_FLAGS_MASTERMAP 0x1 << 2
59/* submap and unsubmap flags indicate:
60 * 00: subregion has never been mmaped
61 * 10: subregion has been mmaped, reference to the mm was taken
62 * 11: subretion has ben released, refernece to the mm still held
63 * 01: subretion has been released, reference to the mm has been released
64 */
65#define PMEM_FLAGS_SUBMAP 0x1 << 3
66#define PMEM_FLAGS_UNSUBMAP 0x1 << 4
67
Rebecca Schultza4ff0e82008-07-24 11:22:53 -070068struct pmem_data {
69 /* in alloc mode: an index into the bitmap
70 * in no_alloc mode: the size of the allocation */
71 int index;
72 /* see flags above for descriptions */
73 unsigned int flags;
74 /* protects this data field, if the mm_mmap sem will be held at the
75 * same time as this sem, the mm sem must be taken first (as this is
76 * the order for vma_open and vma_close ops */
77 struct rw_semaphore sem;
78 /* info about the mmaping process */
79 struct vm_area_struct *vma;
80 /* task struct of the mapping process */
81 struct task_struct *task;
82 /* process id of teh mapping process */
83 pid_t pid;
84 /* file descriptor of the master */
85 int master_fd;
86 /* file struct of the master */
87 struct file *master_file;
88 /* a list of currently available regions if this is a suballocation */
89 struct list_head region_list;
90 /* a linked list of data so we can access them for debugging */
91 struct list_head list;
92#if PMEM_DEBUG
93 int ref;
94#endif
95};
96
97struct pmem_bits {
98 unsigned allocated:1; /* 1 if allocated, 0 if free */
99 unsigned order:7; /* size of the region in pmem space */
100};
101
102struct pmem_region_node {
103 struct pmem_region region;
104 struct list_head list;
105};
106
107#define PMEM_DEBUG_MSGS 0
108#if PMEM_DEBUG_MSGS
109#define DLOG(fmt,args...) \
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700110 do { pr_debug("[%s:%s:%d] "fmt, __FILE__, __func__, __LINE__, \
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700111 ##args); } \
112 while (0)
113#else
114#define DLOG(x...) do {} while (0)
115#endif
116
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700117enum pmem_align {
118 PMEM_ALIGN_4K,
119 PMEM_ALIGN_1M,
120};
121
122#define PMEM_NAME_SIZE 16
123
124struct alloc_list {
125 void *addr; /* physical addr of allocation */
126 void *aaddr; /* aligned physical addr */
127 unsigned int size; /* total size of allocation */
128 unsigned char __iomem *vaddr; /* Virtual addr */
129 struct list_head allocs;
130};
131
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700132struct pmem_info {
133 struct miscdevice dev;
134 /* physical start address of the remaped pmem space */
135 unsigned long base;
136 /* vitual start address of the remaped pmem space */
137 unsigned char __iomem *vbase;
138 /* total size of the pmem space */
139 unsigned long size;
140 /* number of entries in the pmem space */
141 unsigned long num_entries;
142 /* pfn of the garbage page in memory */
143 unsigned long garbage_pfn;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700144 /* which memory type (i.e. SMI, EBI1) this PMEM device is backed by */
145 unsigned memory_type;
146
147 char name[PMEM_NAME_SIZE];
148
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700149 /* index of the garbage page in the pmem space */
150 int garbage_index;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700151
152 enum pmem_allocator_type allocator_type;
153
154 int (*allocate)(const int,
155 const unsigned long,
156 const unsigned int);
157 int (*free)(int, int);
158 int (*free_space)(int, struct pmem_freespace *);
159 unsigned long (*len)(int, struct pmem_data *);
160 unsigned long (*start_addr)(int, struct pmem_data *);
161
162 /* actual size of memory element, e.g.: (4 << 10) is 4K */
163 unsigned int quantum;
164
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700165 /* indicates maps of this region should be cached, if a mix of
166 * cached and uncached is desired, set this and open the device with
167 * O_SYNC to get an uncached region */
168 unsigned cached;
169 unsigned buffered;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700170 union {
171 struct {
172 /* in all_or_nothing allocator mode the first mapper
173 * gets the whole space and sets this flag */
174 unsigned allocated;
175 } all_or_nothing;
176
177 struct {
178 /* the buddy allocator bitmap for the region
179 * indicating which entries are allocated and which
180 * are free.
181 */
182
183 struct pmem_bits *buddy_bitmap;
184 } buddy_bestfit;
185
186 struct {
187 unsigned int bitmap_free; /* # of zero bits/quanta */
188 uint32_t *bitmap;
189 int32_t bitmap_allocs;
190 struct {
191 short bit;
192 unsigned short quanta;
193 } *bitm_alloc;
194 } bitmap;
195
196 struct {
197 unsigned long used; /* Bytes currently allocated */
198 struct list_head alist; /* List of allocations */
199 } system_mem;
200 } allocator;
201
202 int id;
203 struct kobject kobj;
204
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700205 /* for debugging, creates a list of pmem file structs, the
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700206 * data_list_mutex should be taken before pmem_data->sem if both are
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700207 * needed */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700208 struct mutex data_list_mutex;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700209 struct list_head data_list;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700210 /* arena_mutex protects the global allocation arena
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700211 *
212 * IF YOU TAKE BOTH LOCKS TAKE THEM IN THIS ORDER:
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700213 * down(pmem_data->sem) => mutex_lock(arena_mutex)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700214 */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700215 struct mutex arena_mutex;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700216
217 long (*ioctl)(struct file *, unsigned int, unsigned long);
218 int (*release)(struct inode *, struct file *);
Laura Abbott1e36a022011-06-22 17:08:13 -0700219 /* reference count of allocations */
220 atomic_t allocation_cnt;
221 /*
222 * request function for a region when the allocation count goes
223 * from 0 -> 1
224 */
225 void (*mem_request)(void *);
226 /*
227 * release function for a region when the allocation count goes
228 * from 1 -> 0
229 */
230 void (*mem_release)(void *);
231 /*
232 * private data for the request/release callback
233 */
234 void *region_data;
235 /*
236 * map and unmap as needed
237 */
238 int map_on_demand;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700239};
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700240#define to_pmem_info_id(a) (container_of(a, struct pmem_info, kobj)->id)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700241
Laura Abbott1e36a022011-06-22 17:08:13 -0700242static void ioremap_pmem(int id);
243static void pmem_put_region(int id);
244static int pmem_get_region(int id);
245
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700246static struct pmem_info pmem[PMEM_MAX_DEVICES];
247static int id_count;
248
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700249#define PMEM_SYSFS_DIR_NAME "pmem_regions" /* under /sys/kernel/ */
250static struct kset *pmem_kset;
251
252#define PMEM_IS_FREE_BUDDY(id, index) \
253 (!(pmem[id].allocator.buddy_bestfit.buddy_bitmap[index].allocated))
254#define PMEM_BUDDY_ORDER(id, index) \
255 (pmem[id].allocator.buddy_bestfit.buddy_bitmap[index].order)
256#define PMEM_BUDDY_INDEX(id, index) \
257 (index ^ (1 << PMEM_BUDDY_ORDER(id, index)))
258#define PMEM_BUDDY_NEXT_INDEX(id, index) \
259 (index + (1 << PMEM_BUDDY_ORDER(id, index)))
260#define PMEM_OFFSET(index) (index * pmem[id].quantum)
261#define PMEM_START_ADDR(id, index) \
262 (PMEM_OFFSET(index) + pmem[id].base)
263#define PMEM_BUDDY_LEN(id, index) \
264 ((1 << PMEM_BUDDY_ORDER(id, index)) * pmem[id].quantum)
265#define PMEM_END_ADDR(id, index) \
266 (PMEM_START_ADDR(id, index) + PMEM_LEN(id, index))
267#define PMEM_START_VADDR(id, index) \
268 (PMEM_OFFSET(id, index) + pmem[id].vbase)
269#define PMEM_END_VADDR(id, index) \
270 (PMEM_START_VADDR(id, index) + PMEM_LEN(id, index))
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700271#define PMEM_REVOKED(data) (data->flags & PMEM_FLAGS_REVOKED)
272#define PMEM_IS_PAGE_ALIGNED(addr) (!((addr) & (~PAGE_MASK)))
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700273#define PMEM_IS_SUBMAP(data) \
274 ((data->flags & PMEM_FLAGS_SUBMAP) && \
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700275 (!(data->flags & PMEM_FLAGS_UNSUBMAP)))
276
277static int pmem_release(struct inode *, struct file *);
278static int pmem_mmap(struct file *, struct vm_area_struct *);
279static int pmem_open(struct inode *, struct file *);
280static long pmem_ioctl(struct file *, unsigned int, unsigned long);
281
282struct file_operations pmem_fops = {
283 .release = pmem_release,
284 .mmap = pmem_mmap,
285 .open = pmem_open,
286 .unlocked_ioctl = pmem_ioctl,
287};
288
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700289#define PMEM_ATTR(_name, _mode, _show, _store) { \
290 .attr = {.name = __stringify(_name), .mode = _mode }, \
291 .show = _show, \
292 .store = _store, \
293}
294
295struct pmem_attr {
296 struct attribute attr;
297 ssize_t(*show) (const int id, char * const);
298 ssize_t(*store) (const int id, const char * const, const size_t count);
299};
300#define to_pmem_attr(a) container_of(a, struct pmem_attr, attr)
301
302#define RW_PMEM_ATTR(name) \
303static struct pmem_attr pmem_attr_## name = \
304 PMEM_ATTR(name, S_IRUGO | S_IWUSR, show_pmem_## name, store_pmem_## name)
305
306#define RO_PMEM_ATTR(name) \
307static struct pmem_attr pmem_attr_## name = \
308 PMEM_ATTR(name, S_IRUGO, show_pmem_## name, NULL)
309
310#define WO_PMEM_ATTR(name) \
311static struct pmem_attr pmem_attr_## name = \
312 PMEM_ATTR(name, S_IWUSR, NULL, store_pmem_## name)
313
314static ssize_t show_pmem(struct kobject *kobj,
315 struct attribute *attr,
316 char *buf)
317{
318 struct pmem_attr *a = to_pmem_attr(attr);
319 return a->show ? a->show(to_pmem_info_id(kobj), buf) : -EIO;
320}
321
322static ssize_t store_pmem(struct kobject *kobj, struct attribute *attr,
323 const char *buf, size_t count)
324{
325 struct pmem_attr *a = to_pmem_attr(attr);
326 return a->store ? a->store(to_pmem_info_id(kobj), buf, count) : -EIO;
327}
328
329static struct sysfs_ops pmem_ops = {
330 .show = show_pmem,
331 .store = store_pmem,
332};
333
334static ssize_t show_pmem_base(int id, char *buf)
335{
336 return scnprintf(buf, PAGE_SIZE, "%lu(%#lx)\n",
337 pmem[id].base, pmem[id].base);
338}
339RO_PMEM_ATTR(base);
340
341static ssize_t show_pmem_size(int id, char *buf)
342{
343 return scnprintf(buf, PAGE_SIZE, "%lu(%#lx)\n",
344 pmem[id].size, pmem[id].size);
345}
346RO_PMEM_ATTR(size);
347
348static ssize_t show_pmem_allocator_type(int id, char *buf)
349{
350 switch (pmem[id].allocator_type) {
351 case PMEM_ALLOCATORTYPE_ALLORNOTHING:
352 return scnprintf(buf, PAGE_SIZE, "%s\n", "All or Nothing");
353 case PMEM_ALLOCATORTYPE_BUDDYBESTFIT:
354 return scnprintf(buf, PAGE_SIZE, "%s\n", "Buddy Bestfit");
355 case PMEM_ALLOCATORTYPE_BITMAP:
356 return scnprintf(buf, PAGE_SIZE, "%s\n", "Bitmap");
357 case PMEM_ALLOCATORTYPE_SYSTEM:
358 return scnprintf(buf, PAGE_SIZE, "%s\n", "System heap");
359 default:
360 return scnprintf(buf, PAGE_SIZE,
361 "??? Invalid allocator type (%d) for this region! "
362 "Something isn't right.\n",
363 pmem[id].allocator_type);
364 }
365}
366RO_PMEM_ATTR(allocator_type);
367
368static ssize_t show_pmem_mapped_regions(int id, char *buf)
369{
370 struct list_head *elt;
371 int ret;
372
373 ret = scnprintf(buf, PAGE_SIZE,
374 "pid #: mapped regions (offset, len) (offset,len)...\n");
375
376 mutex_lock(&pmem[id].data_list_mutex);
377 list_for_each(elt, &pmem[id].data_list) {
378 struct pmem_data *data =
379 list_entry(elt, struct pmem_data, list);
380 struct list_head *elt2;
381
382 down_read(&data->sem);
383 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "pid %u:",
384 data->pid);
385 list_for_each(elt2, &data->region_list) {
386 struct pmem_region_node *region_node = list_entry(elt2,
387 struct pmem_region_node,
388 list);
389 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
390 "(%lx,%lx) ",
391 region_node->region.offset,
392 region_node->region.len);
393 }
394 up_read(&data->sem);
395 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
396 }
397 mutex_unlock(&pmem[id].data_list_mutex);
398 return ret;
399}
400RO_PMEM_ATTR(mapped_regions);
401
402#define PMEM_COMMON_SYSFS_ATTRS \
403 &pmem_attr_base.attr, \
404 &pmem_attr_size.attr, \
405 &pmem_attr_allocator_type.attr, \
406 &pmem_attr_mapped_regions.attr
407
408
409static ssize_t show_pmem_allocated(int id, char *buf)
410{
411 ssize_t ret;
412
413 mutex_lock(&pmem[id].arena_mutex);
414 ret = scnprintf(buf, PAGE_SIZE, "%s\n",
415 pmem[id].allocator.all_or_nothing.allocated ?
416 "is allocated" : "is NOT allocated");
417 mutex_unlock(&pmem[id].arena_mutex);
418 return ret;
419}
420RO_PMEM_ATTR(allocated);
421
422static struct attribute *pmem_allornothing_attrs[] = {
423 PMEM_COMMON_SYSFS_ATTRS,
424
425 &pmem_attr_allocated.attr,
426
427 NULL
428};
429
430static struct kobj_type pmem_allornothing_ktype = {
431 .sysfs_ops = &pmem_ops,
432 .default_attrs = pmem_allornothing_attrs,
433};
434
435static ssize_t show_pmem_total_entries(int id, char *buf)
436{
437 return scnprintf(buf, PAGE_SIZE, "%lu\n", pmem[id].num_entries);
438}
439RO_PMEM_ATTR(total_entries);
440
441static ssize_t show_pmem_quantum_size(int id, char *buf)
442{
443 return scnprintf(buf, PAGE_SIZE, "%u (%#x)\n",
444 pmem[id].quantum, pmem[id].quantum);
445}
446RO_PMEM_ATTR(quantum_size);
447
448static ssize_t show_pmem_buddy_bitmap_dump(int id, char *buf)
449{
450 int ret, i;
451
452 mutex_lock(&pmem[id].data_list_mutex);
453 ret = scnprintf(buf, PAGE_SIZE, "index\torder\tlength\tallocated\n");
454
455 for (i = 0; i < pmem[id].num_entries && (PAGE_SIZE - ret);
456 i = PMEM_BUDDY_NEXT_INDEX(id, i))
457 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%d\t%d\t%d\t%d\n",
458 i, PMEM_BUDDY_ORDER(id, i),
459 PMEM_BUDDY_LEN(id, i),
460 !PMEM_IS_FREE_BUDDY(id, i));
461
462 mutex_unlock(&pmem[id].data_list_mutex);
463 return ret;
464}
465RO_PMEM_ATTR(buddy_bitmap_dump);
466
467#define PMEM_BITMAP_BUDDY_BESTFIT_COMMON_SYSFS_ATTRS \
468 &pmem_attr_quantum_size.attr, \
469 &pmem_attr_total_entries.attr
470
471static struct attribute *pmem_buddy_bestfit_attrs[] = {
472 PMEM_COMMON_SYSFS_ATTRS,
473
474 PMEM_BITMAP_BUDDY_BESTFIT_COMMON_SYSFS_ATTRS,
475
476 &pmem_attr_buddy_bitmap_dump.attr,
477
478 NULL
479};
480
481static struct kobj_type pmem_buddy_bestfit_ktype = {
482 .sysfs_ops = &pmem_ops,
483 .default_attrs = pmem_buddy_bestfit_attrs,
484};
485
486static ssize_t show_pmem_free_quanta(int id, char *buf)
487{
488 ssize_t ret;
489
490 mutex_lock(&pmem[id].arena_mutex);
491 ret = scnprintf(buf, PAGE_SIZE, "%u\n",
492 pmem[id].allocator.bitmap.bitmap_free);
493 mutex_unlock(&pmem[id].arena_mutex);
494 return ret;
495}
496RO_PMEM_ATTR(free_quanta);
497
498static ssize_t show_pmem_bits_allocated(int id, char *buf)
499{
500 ssize_t ret;
501 unsigned int i;
502
503 mutex_lock(&pmem[id].arena_mutex);
504
505 ret = scnprintf(buf, PAGE_SIZE,
506 "id: %d\nbitnum\tindex\tquanta allocated\n", id);
507
508 for (i = 0; i < pmem[id].allocator.bitmap.bitmap_allocs; i++)
509 if (pmem[id].allocator.bitmap.bitm_alloc[i].bit != -1)
510 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
511 "%u\t%u\t%u\n",
512 i,
513 pmem[id].allocator.bitmap.bitm_alloc[i].bit,
514 pmem[id].allocator.bitmap.bitm_alloc[i].quanta
515 );
516
517 mutex_unlock(&pmem[id].arena_mutex);
518 return ret;
519}
520RO_PMEM_ATTR(bits_allocated);
521
522static struct attribute *pmem_bitmap_attrs[] = {
523 PMEM_COMMON_SYSFS_ATTRS,
524
525 PMEM_BITMAP_BUDDY_BESTFIT_COMMON_SYSFS_ATTRS,
526
527 &pmem_attr_free_quanta.attr,
528 &pmem_attr_bits_allocated.attr,
529
530 NULL
531};
532
533static struct attribute *pmem_system_attrs[] = {
534 PMEM_COMMON_SYSFS_ATTRS,
535
536 NULL
537};
538
539static struct kobj_type pmem_bitmap_ktype = {
540 .sysfs_ops = &pmem_ops,
541 .default_attrs = pmem_bitmap_attrs,
542};
543
544static struct kobj_type pmem_system_ktype = {
545 .sysfs_ops = &pmem_ops,
546 .default_attrs = pmem_system_attrs,
547};
548
Laura Abbott1e36a022011-06-22 17:08:13 -0700549static int pmem_allocate_from_id(const int id, const unsigned long size,
550 const unsigned int align)
551{
552 int ret;
553 ret = pmem_get_region(id);
554
555 if (ret)
556 return -1;
557
558 ret = pmem[id].allocate(id, size, align);
559
560 if (ret < 0)
561 pmem_put_region(id);
562
563 return ret;
564}
565
566static int pmem_free_from_id(const int id, const int index)
567{
568 pmem_put_region(id);
569 return pmem[id].free(id, index);
570}
571
572static int pmem_get_region(int id)
573{
574 /* Must be called with arena mutex locked */
575 atomic_inc(&pmem[id].allocation_cnt);
576 if (!pmem[id].vbase) {
577 DLOG("PMEMDEBUG: mapping for %s", pmem[id].name);
578 if (pmem[id].mem_request)
579 pmem[id].mem_request(pmem[id].region_data);
580 ioremap_pmem(id);
581 }
582
583 if (pmem[id].vbase) {
584 return 0;
585 } else {
586 if (pmem[id].mem_release)
587 pmem[id].mem_release(pmem[id].region_data);
588 atomic_dec(&pmem[id].allocation_cnt);
589 return 1;
590 }
591}
592
593static void pmem_put_region(int id)
594{
595 /* Must be called with arena mutex locked */
596 if (atomic_dec_and_test(&pmem[id].allocation_cnt)) {
597 DLOG("PMEMDEBUG: unmapping for %s", pmem[id].name);
598 BUG_ON(!pmem[id].vbase);
599 if (pmem[id].map_on_demand) {
600 iounmap(pmem[id].vbase);
601 pmem[id].vbase = NULL;
602 if (pmem[id].mem_release)
603 pmem[id].mem_release(pmem[id].region_data);
604
605 }
606 }
607}
608
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700609static int get_id(struct file *file)
610{
611 return MINOR(file->f_dentry->d_inode->i_rdev);
612}
613
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700614static char *get_name(struct file *file)
615{
616 int id = get_id(file);
617 return pmem[id].name;
618}
619
620static int is_pmem_file(struct file *file)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700621{
622 int id;
623
624 if (unlikely(!file || !file->f_dentry || !file->f_dentry->d_inode))
625 return 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700626
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700627 id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700628 return (unlikely(id >= PMEM_MAX_DEVICES ||
629 file->f_dentry->d_inode->i_rdev !=
630 MKDEV(MISC_MAJOR, pmem[id].dev.minor))) ? 0 : 1;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700631}
632
633static int has_allocation(struct file *file)
634{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700635 /* must be called with at least read lock held on
636 * ((struct pmem_data *)(file->private_data))->sem which
637 * means that file is guaranteed not to be NULL upon entry!!
638 * check is_pmem_file first if not accessed via pmem_file_ops */
639 struct pmem_data *pdata = file->private_data;
640 return pdata && pdata->index != -1;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700641}
642
643static int is_master_owner(struct file *file)
644{
645 struct file *master_file;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700646 struct pmem_data *data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700647 int put_needed, ret = 0;
648
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700649 if (!has_allocation(file))
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700650 return 0;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700651 if (PMEM_FLAGS_MASTERMAP & data->flags)
652 return 1;
653 master_file = fget_light(data->master_fd, &put_needed);
654 if (master_file && data->master_file == master_file)
655 ret = 1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700656 if (master_file)
657 fput_light(master_file, put_needed);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700658 return ret;
659}
660
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700661static int pmem_free_all_or_nothing(int id, int index)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700662{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700663 /* caller should hold the lock on arena_mutex! */
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700664 DLOG("index %d\n", index);
665
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700666 pmem[id].allocator.all_or_nothing.allocated = 0;
667 return 0;
668}
669
670static int pmem_free_space_all_or_nothing(int id,
671 struct pmem_freespace *fs)
672{
673 /* caller should hold the lock on arena_mutex! */
674 fs->total = (unsigned long)
675 pmem[id].allocator.all_or_nothing.allocated == 0 ?
676 pmem[id].size : 0;
677
678 fs->largest = fs->total;
679 return 0;
680}
681
682
683static int pmem_free_buddy_bestfit(int id, int index)
684{
685 /* caller should hold the lock on arena_mutex! */
686 int curr = index;
687 DLOG("index %d\n", index);
688
689
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700690 /* clean up the bitmap, merging any buddies */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700691 pmem[id].allocator.buddy_bestfit.buddy_bitmap[curr].allocated = 0;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700692 /* find a slots buddy Buddy# = Slot# ^ (1 << order)
693 * if the buddy is also free merge them
694 * repeat until the buddy is not free or end of the bitmap is reached
695 */
696 do {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700697 int buddy = PMEM_BUDDY_INDEX(id, curr);
698 if (buddy < pmem[id].num_entries &&
699 PMEM_IS_FREE_BUDDY(id, buddy) &&
700 PMEM_BUDDY_ORDER(id, buddy) ==
701 PMEM_BUDDY_ORDER(id, curr)) {
702 PMEM_BUDDY_ORDER(id, buddy)++;
703 PMEM_BUDDY_ORDER(id, curr)++;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700704 curr = min(buddy, curr);
705 } else {
706 break;
707 }
708 } while (curr < pmem[id].num_entries);
709
710 return 0;
711}
712
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700713
714static int pmem_free_space_buddy_bestfit(int id,
715 struct pmem_freespace *fs)
716{
717 /* caller should hold the lock on arena_mutex! */
718 int curr;
719 unsigned long size;
720 fs->total = 0;
721 fs->largest = 0;
722
723 for (curr = 0; curr < pmem[id].num_entries;
724 curr = PMEM_BUDDY_NEXT_INDEX(id, curr)) {
725 if (PMEM_IS_FREE_BUDDY(id, curr)) {
726 size = PMEM_BUDDY_LEN(id, curr);
727 if (size > fs->largest)
728 fs->largest = size;
729 fs->total += size;
730 }
731 }
732 return 0;
733}
734
735
736static inline uint32_t start_mask(int bit_start)
737{
738 return (uint32_t)(~0) << (bit_start & PMEM_BITS_PER_WORD_MASK);
739}
740
741static inline uint32_t end_mask(int bit_end)
742{
743 return (uint32_t)(~0) >>
744 ((BITS_PER_LONG - bit_end) & PMEM_BITS_PER_WORD_MASK);
745}
746
747static inline int compute_total_words(int bit_end, int word_index)
748{
749 return ((bit_end + BITS_PER_LONG - 1) >>
750 PMEM_32BIT_WORD_ORDER) - word_index;
751}
752
753static void bitmap_bits_clear_all(uint32_t *bitp, int bit_start, int bit_end)
754{
755 int word_index = bit_start >> PMEM_32BIT_WORD_ORDER, total_words;
756
757 total_words = compute_total_words(bit_end, word_index);
758 if (total_words > 0) {
759 if (total_words == 1) {
760 bitp[word_index] &=
761 ~(start_mask(bit_start) & end_mask(bit_end));
762 } else {
763 bitp[word_index++] &= ~start_mask(bit_start);
764 if (total_words > 2) {
765 int total_bytes;
766
767 total_words -= 2;
768 total_bytes = total_words << 2;
769
770 memset(&bitp[word_index], 0, total_bytes);
771 word_index += total_words;
772 }
773 bitp[word_index] &= ~end_mask(bit_end);
774 }
775 }
776}
777
778static int pmem_free_bitmap(int id, int bitnum)
779{
780 /* caller should hold the lock on arena_mutex! */
781 int i;
782 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
783
784 DLOG("bitnum %d\n", bitnum);
785
786 for (i = 0; i < pmem[id].allocator.bitmap.bitmap_allocs; i++) {
787 const int curr_bit =
788 pmem[id].allocator.bitmap.bitm_alloc[i].bit;
789
790 if (curr_bit == bitnum) {
791 const int curr_quanta =
792 pmem[id].allocator.bitmap.bitm_alloc[i].quanta;
793
794 bitmap_bits_clear_all(pmem[id].allocator.bitmap.bitmap,
795 curr_bit, curr_bit + curr_quanta);
796 pmem[id].allocator.bitmap.bitmap_free += curr_quanta;
797 pmem[id].allocator.bitmap.bitm_alloc[i].bit = -1;
798 pmem[id].allocator.bitmap.bitm_alloc[i].quanta = 0;
799 return 0;
800 }
801 }
802 printk(KERN_ALERT "pmem: %s: Attempt to free unallocated index %d, id"
803 " %d, pid %d(%s)\n", __func__, bitnum, id, current->pid,
804 get_task_comm(currtask_name, current));
805
806 return -1;
807}
808
809static int pmem_free_system(int id, int index)
810{
811 /* caller should hold the lock on arena_mutex! */
812 struct alloc_list *item;
813
814 DLOG("index %d\n", index);
815 if (index != 0)
816 item = (struct alloc_list *)index;
817 else
818 return 0;
819
820 if (item->vaddr != NULL) {
821 iounmap(item->vaddr);
822 kfree(__va(item->addr));
823 list_del(&item->allocs);
824 kfree(item);
825 }
826
827 return 0;
828}
829
830static int pmem_free_space_bitmap(int id, struct pmem_freespace *fs)
831{
832 int i, j;
833 int max_allocs = pmem[id].allocator.bitmap.bitmap_allocs;
834 int alloc_start = 0;
835 int next_alloc;
836 unsigned long size = 0;
837
838 fs->total = 0;
839 fs->largest = 0;
840
841 for (i = 0; i < max_allocs; i++) {
842
843 int alloc_quanta = 0;
844 int alloc_idx = 0;
845 next_alloc = pmem[id].num_entries;
846
847 /* Look for the lowest bit where next allocation starts */
848 for (j = 0; j < max_allocs; j++) {
849 const int curr_alloc = pmem[id].allocator.
850 bitmap.bitm_alloc[j].bit;
851 if (curr_alloc != -1) {
852 if (alloc_start == curr_alloc)
853 alloc_idx = j;
854 if (alloc_start >= curr_alloc)
855 continue;
856 if (curr_alloc < next_alloc)
857 next_alloc = curr_alloc;
858 }
859 }
860 alloc_quanta = pmem[id].allocator.bitmap.
861 bitm_alloc[alloc_idx].quanta;
862 size = (next_alloc - (alloc_start + alloc_quanta)) *
863 pmem[id].quantum;
864
865 if (size > fs->largest)
866 fs->largest = size;
867 fs->total += size;
868
869 if (next_alloc == pmem[id].num_entries)
870 break;
871 else
872 alloc_start = next_alloc;
873 }
874
875 return 0;
876}
877
878static int pmem_free_space_system(int id, struct pmem_freespace *fs)
879{
880 fs->total = pmem[id].size;
881 fs->largest = pmem[id].size;
882
883 return 0;
884}
885
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700886static void pmem_revoke(struct file *file, struct pmem_data *data);
887
888static int pmem_release(struct inode *inode, struct file *file)
889{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700890 struct pmem_data *data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700891 struct pmem_region_node *region_node;
892 struct list_head *elt, *elt2;
893 int id = get_id(file), ret = 0;
894
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700895#if PMEM_DEBUG_MSGS
896 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
897#endif
898 DLOG("releasing memory pid %u(%s) file %p(%ld) dev %s(id: %d)\n",
899 current->pid, get_task_comm(currtask_name, current),
900 file, file_count(file), get_name(file), id);
901 mutex_lock(&pmem[id].data_list_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700902 /* if this file is a master, revoke all the memory in the connected
903 * files */
904 if (PMEM_FLAGS_MASTERMAP & data->flags) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700905 list_for_each(elt, &pmem[id].data_list) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700906 struct pmem_data *sub_data =
907 list_entry(elt, struct pmem_data, list);
908 int is_master;
909
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700910 down_read(&sub_data->sem);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700911 is_master = (PMEM_IS_SUBMAP(sub_data) &&
912 file == sub_data->master_file);
913 up_read(&sub_data->sem);
914
915 if (is_master)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700916 pmem_revoke(file, sub_data);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700917 }
918 }
919 list_del(&data->list);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700920 mutex_unlock(&pmem[id].data_list_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700921
922 down_write(&data->sem);
923
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700924 /* if it is not a connected file and it has an allocation, free it */
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700925 if (!(PMEM_FLAGS_CONNECTED & data->flags) && has_allocation(file)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700926 mutex_lock(&pmem[id].arena_mutex);
Laura Abbott1e36a022011-06-22 17:08:13 -0700927 ret = pmem_free_from_id(id, data->index);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700928 mutex_unlock(&pmem[id].arena_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700929 }
930
931 /* if this file is a submap (mapped, connected file), downref the
932 * task struct */
933 if (PMEM_FLAGS_SUBMAP & data->flags)
934 if (data->task) {
935 put_task_struct(data->task);
936 data->task = NULL;
937 }
938
939 file->private_data = NULL;
940
941 list_for_each_safe(elt, elt2, &data->region_list) {
942 region_node = list_entry(elt, struct pmem_region_node, list);
943 list_del(elt);
944 kfree(region_node);
945 }
946 BUG_ON(!list_empty(&data->region_list));
947
948 up_write(&data->sem);
949 kfree(data);
950 if (pmem[id].release)
951 ret = pmem[id].release(inode, file);
952
953 return ret;
954}
955
956static int pmem_open(struct inode *inode, struct file *file)
957{
958 struct pmem_data *data;
959 int id = get_id(file);
960 int ret = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700961#if PMEM_DEBUG_MSGS
962 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
963#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700964
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700965 DLOG("pid %u(%s) file %p(%ld) dev %s(id: %d)\n",
966 current->pid, get_task_comm(currtask_name, current),
967 file, file_count(file), get_name(file), id);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700968 data = kmalloc(sizeof(struct pmem_data), GFP_KERNEL);
969 if (!data) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700970 printk(KERN_ALERT "pmem: %s: unable to allocate memory for "
971 "pmem metadata.", __func__);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700972 return -1;
973 }
974 data->flags = 0;
975 data->index = -1;
976 data->task = NULL;
977 data->vma = NULL;
978 data->pid = 0;
979 data->master_file = NULL;
980#if PMEM_DEBUG
981 data->ref = 0;
982#endif
983 INIT_LIST_HEAD(&data->region_list);
984 init_rwsem(&data->sem);
985
986 file->private_data = data;
987 INIT_LIST_HEAD(&data->list);
988
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700989 mutex_lock(&pmem[id].data_list_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700990 list_add(&data->list, &pmem[id].data_list);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700991 mutex_unlock(&pmem[id].data_list_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700992 return ret;
993}
994
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700995static unsigned long pmem_order(unsigned long len, int id)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -0700996{
997 int i;
998
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700999 len = (len + pmem[id].quantum - 1)/pmem[id].quantum;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001000 len--;
1001 for (i = 0; i < sizeof(len)*8; i++)
1002 if (len >> i == 0)
1003 break;
1004 return i;
1005}
1006
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001007static int pmem_allocator_all_or_nothing(const int id,
1008 const unsigned long len,
1009 const unsigned int align)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001010{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001011 /* caller should hold the lock on arena_mutex! */
1012 DLOG("all or nothing\n");
1013 if ((len > pmem[id].size) ||
1014 pmem[id].allocator.all_or_nothing.allocated)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001015 return -1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001016 pmem[id].allocator.all_or_nothing.allocated = 1;
1017 return len;
1018}
1019
1020static int pmem_allocator_buddy_bestfit(const int id,
1021 const unsigned long len,
1022 unsigned int align)
1023{
1024 /* caller should hold the lock on arena_mutex! */
1025 int curr;
1026 int best_fit = -1;
1027 unsigned long order;
1028
1029 DLOG("buddy bestfit\n");
1030 order = pmem_order(len, id);
1031 if (order > PMEM_MAX_ORDER)
1032 goto out;
1033
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001034 DLOG("order %lx\n", order);
1035
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001036 /* Look through the bitmap.
1037 * If a free slot of the correct order is found, use it.
1038 * Otherwise, use the best fit (smallest with size > order) slot.
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001039 */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001040 for (curr = 0;
1041 curr < pmem[id].num_entries;
1042 curr = PMEM_BUDDY_NEXT_INDEX(id, curr))
1043 if (PMEM_IS_FREE_BUDDY(id, curr)) {
1044 if (PMEM_BUDDY_ORDER(id, curr) ==
1045 (unsigned char)order) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001046 /* set the not free bit and clear others */
1047 best_fit = curr;
1048 break;
1049 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001050 if (PMEM_BUDDY_ORDER(id, curr) >
1051 (unsigned char)order &&
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001052 (best_fit < 0 ||
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001053 PMEM_BUDDY_ORDER(id, curr) <
1054 PMEM_BUDDY_ORDER(id, best_fit)))
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001055 best_fit = curr;
1056 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001057
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001058 /* if best_fit < 0, there are no suitable slots; return an error */
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001059 if (best_fit < 0) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001060#if PMEM_DEBUG
1061 printk(KERN_ALERT "pmem: %s: no space left to allocate!\n",
1062 __func__);
1063#endif
1064 goto out;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001065 }
1066
1067 /* now partition the best fit:
1068 * split the slot into 2 buddies of order - 1
1069 * repeat until the slot is of the correct order
1070 */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001071 while (PMEM_BUDDY_ORDER(id, best_fit) > (unsigned char)order) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001072 int buddy;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001073 PMEM_BUDDY_ORDER(id, best_fit) -= 1;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001074 buddy = PMEM_BUDDY_INDEX(id, best_fit);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001075 PMEM_BUDDY_ORDER(id, buddy) = PMEM_BUDDY_ORDER(id, best_fit);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001076 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001077 pmem[id].allocator.buddy_bestfit.buddy_bitmap[best_fit].allocated = 1;
1078out:
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001079 return best_fit;
1080}
1081
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001082
1083static inline unsigned long paddr_from_bit(const int id, const int bitnum)
1084{
1085 return pmem[id].base + pmem[id].quantum * bitnum;
1086}
1087
1088static inline unsigned long bit_from_paddr(const int id,
1089 const unsigned long paddr)
1090{
1091 return (paddr - pmem[id].base) / pmem[id].quantum;
1092}
1093
1094static void bitmap_bits_set_all(uint32_t *bitp, int bit_start, int bit_end)
1095{
1096 int word_index = bit_start >> PMEM_32BIT_WORD_ORDER, total_words;
1097
1098 total_words = compute_total_words(bit_end, word_index);
1099 if (total_words > 0) {
1100 if (total_words == 1) {
1101 bitp[word_index] |=
1102 (start_mask(bit_start) & end_mask(bit_end));
1103 } else {
1104 bitp[word_index++] |= start_mask(bit_start);
1105 if (total_words > 2) {
1106 int total_bytes;
1107
1108 total_words -= 2;
1109 total_bytes = total_words << 2;
1110
1111 memset(&bitp[word_index], ~0, total_bytes);
1112 word_index += total_words;
1113 }
1114 bitp[word_index] |= end_mask(bit_end);
1115 }
1116 }
1117}
1118
1119static int
1120bitmap_allocate_contiguous(uint32_t *bitp, int num_bits_to_alloc,
Laura Abbott6b3eb1a2011-06-12 13:29:08 -07001121 int total_bits, int spacing, int start_bit)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001122{
1123 int bit_start, last_bit, word_index;
1124
1125 if (num_bits_to_alloc <= 0)
1126 return -1;
1127
Laura Abbott6b3eb1a2011-06-12 13:29:08 -07001128 for (bit_start = start_bit; ;
1129 bit_start = ((last_bit +
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001130 (word_index << PMEM_32BIT_WORD_ORDER) + spacing - 1)
Laura Abbott6b3eb1a2011-06-12 13:29:08 -07001131 & ~(spacing - 1)) + start_bit) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001132 int bit_end = bit_start + num_bits_to_alloc, total_words;
1133
1134 if (bit_end > total_bits)
1135 return -1; /* out of contiguous memory */
1136
1137 word_index = bit_start >> PMEM_32BIT_WORD_ORDER;
1138 total_words = compute_total_words(bit_end, word_index);
1139
1140 if (total_words <= 0)
1141 return -1;
1142
1143 if (total_words == 1) {
1144 last_bit = fls(bitp[word_index] &
1145 (start_mask(bit_start) &
1146 end_mask(bit_end)));
1147 if (last_bit)
1148 continue;
1149 } else {
1150 int end_word = word_index + (total_words - 1);
1151 last_bit =
1152 fls(bitp[word_index] & start_mask(bit_start));
1153 if (last_bit)
1154 continue;
1155
1156 for (word_index++;
1157 word_index < end_word;
1158 word_index++) {
1159 last_bit = fls(bitp[word_index]);
1160 if (last_bit)
1161 break;
1162 }
1163 if (last_bit)
1164 continue;
1165
1166 last_bit = fls(bitp[word_index] & end_mask(bit_end));
1167 if (last_bit)
1168 continue;
1169 }
1170 bitmap_bits_set_all(bitp, bit_start, bit_end);
1171 return bit_start;
1172 }
1173 return -1;
1174}
1175
1176static int reserve_quanta(const unsigned int quanta_needed,
1177 const int id,
1178 unsigned int align)
1179{
1180 /* alignment should be a valid power of 2 */
1181 int ret = -1, start_bit = 0, spacing = 1;
1182
1183 /* Sanity check */
1184 if (quanta_needed > pmem[id].allocator.bitmap.bitmap_free) {
1185#if PMEM_DEBUG
1186 printk(KERN_ALERT "pmem: %s: request (%d) too big for"
1187 " available free (%d)\n", __func__, quanta_needed,
1188 pmem[id].allocator.bitmap.bitmap_free);
1189#endif
1190 return -1;
1191 }
1192
1193 start_bit = bit_from_paddr(id,
1194 (pmem[id].base + align - 1) & ~(align - 1));
1195 if (start_bit <= -1) {
1196#if PMEM_DEBUG
1197 printk(KERN_ALERT
1198 "pmem: %s: bit_from_paddr fails for"
1199 " %u alignment.\n", __func__, align);
1200#endif
1201 return -1;
1202 }
1203 spacing = align / pmem[id].quantum;
1204 spacing = spacing > 1 ? spacing : 1;
1205
1206 ret = bitmap_allocate_contiguous(pmem[id].allocator.bitmap.bitmap,
1207 quanta_needed,
1208 (pmem[id].size + pmem[id].quantum - 1) / pmem[id].quantum,
Laura Abbott6b3eb1a2011-06-12 13:29:08 -07001209 spacing,
1210 start_bit);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001211
1212#if PMEM_DEBUG
1213 if (ret < 0)
1214 printk(KERN_ALERT "pmem: %s: not enough contiguous bits free "
1215 "in bitmap! Region memory is either too fragmented or"
1216 " request is too large for available memory.\n",
1217 __func__);
1218#endif
1219
1220 return ret;
1221}
1222
1223static int pmem_allocator_bitmap(const int id,
1224 const unsigned long len,
1225 const unsigned int align)
1226{
1227 /* caller should hold the lock on arena_mutex! */
1228 int bitnum, i;
1229 unsigned int quanta_needed;
1230
1231 DLOG("bitmap id %d, len %ld, align %u\n", id, len, align);
1232 if (!pmem[id].allocator.bitmap.bitm_alloc) {
1233#if PMEM_DEBUG
1234 printk(KERN_ALERT "pmem: bitm_alloc not present! id: %d\n",
1235 id);
1236#endif
1237 return -1;
1238 }
1239
1240 quanta_needed = (len + pmem[id].quantum - 1) / pmem[id].quantum;
1241 DLOG("quantum size %u quanta needed %u free %u id %d\n",
1242 pmem[id].quantum, quanta_needed,
1243 pmem[id].allocator.bitmap.bitmap_free, id);
1244
1245 if (pmem[id].allocator.bitmap.bitmap_free < quanta_needed) {
1246#if PMEM_DEBUG
1247 printk(KERN_ALERT "pmem: memory allocation failure. "
1248 "PMEM memory region exhausted, id %d."
1249 " Unable to comply with allocation request.\n", id);
1250#endif
1251 return -1;
1252 }
1253
1254 bitnum = reserve_quanta(quanta_needed, id, align);
1255 if (bitnum == -1)
1256 goto leave;
1257
1258 for (i = 0;
1259 i < pmem[id].allocator.bitmap.bitmap_allocs &&
1260 pmem[id].allocator.bitmap.bitm_alloc[i].bit != -1;
1261 i++)
1262 ;
1263
1264 if (i >= pmem[id].allocator.bitmap.bitmap_allocs) {
1265 void *temp;
1266 int32_t new_bitmap_allocs =
1267 pmem[id].allocator.bitmap.bitmap_allocs << 1;
1268 int j;
1269
1270 if (!new_bitmap_allocs) { /* failed sanity check!! */
1271#if PMEM_DEBUG
1272 pr_alert("pmem: bitmap_allocs number"
1273 " wrapped around to zero! Something "
1274 "is VERY wrong.\n");
1275#endif
1276 return -1;
1277 }
1278
1279 if (new_bitmap_allocs > pmem[id].num_entries) {
1280 /* failed sanity check!! */
1281#if PMEM_DEBUG
1282 pr_alert("pmem: required bitmap_allocs"
1283 " number exceeds maximum entries possible"
1284 " for current quanta\n");
1285#endif
1286 return -1;
1287 }
1288
1289 temp = krealloc(pmem[id].allocator.bitmap.bitm_alloc,
1290 new_bitmap_allocs *
1291 sizeof(*pmem[id].allocator.bitmap.bitm_alloc),
1292 GFP_KERNEL);
1293 if (!temp) {
1294#if PMEM_DEBUG
1295 pr_alert("pmem: can't realloc bitmap_allocs,"
1296 "id %d, current num bitmap allocs %d\n",
1297 id, pmem[id].allocator.bitmap.bitmap_allocs);
1298#endif
1299 return -1;
1300 }
1301 pmem[id].allocator.bitmap.bitmap_allocs = new_bitmap_allocs;
1302 pmem[id].allocator.bitmap.bitm_alloc = temp;
1303
1304 for (j = i; j < new_bitmap_allocs; j++) {
1305 pmem[id].allocator.bitmap.bitm_alloc[j].bit = -1;
1306 pmem[id].allocator.bitmap.bitm_alloc[i].quanta = 0;
1307 }
1308
1309 DLOG("increased # of allocated regions to %d for id %d\n",
1310 pmem[id].allocator.bitmap.bitmap_allocs, id);
1311 }
1312
1313 DLOG("bitnum %d, bitm_alloc index %d\n", bitnum, i);
1314
1315 pmem[id].allocator.bitmap.bitmap_free -= quanta_needed;
1316 pmem[id].allocator.bitmap.bitm_alloc[i].bit = bitnum;
1317 pmem[id].allocator.bitmap.bitm_alloc[i].quanta = quanta_needed;
1318leave:
1319 return bitnum;
1320}
1321
1322static int pmem_allocator_system(const int id,
1323 const unsigned long len,
1324 const unsigned int align)
1325{
1326 /* caller should hold the lock on arena_mutex! */
1327 struct alloc_list *list;
1328 unsigned long aligned_len;
1329 int count = SYSTEM_ALLOC_RETRY;
1330 void *buf;
1331
1332 DLOG("system id %d, len %ld, align %u\n", id, len, align);
1333
1334 if ((pmem[id].allocator.system_mem.used + len) > pmem[id].size) {
1335 DLOG("requested size would be larger than quota\n");
1336 return -1;
1337 }
1338
1339 /* Handle alignment */
1340 aligned_len = len + align;
1341
1342 /* Attempt allocation */
1343 list = kmalloc(sizeof(struct alloc_list), GFP_KERNEL);
1344 if (list == NULL) {
1345 printk(KERN_ERR "pmem: failed to allocate system metadata\n");
1346 return -1;
1347 }
1348 list->vaddr = NULL;
1349
1350 buf = NULL;
1351 while ((buf == NULL) && count--) {
1352 buf = kmalloc((aligned_len), GFP_KERNEL);
1353 if (buf == NULL) {
1354 DLOG("pmem: kmalloc %d temporarily failed len= %ld\n",
1355 count, aligned_len);
1356 }
1357 }
1358 if (!buf) {
1359 printk(KERN_CRIT "pmem: kmalloc failed for id= %d len= %ld\n",
1360 id, aligned_len);
1361 kfree(list);
1362 return -1;
1363 }
1364 list->size = aligned_len;
1365 list->addr = (void *)__pa(buf);
1366 list->aaddr = (void *)(((unsigned int)(list->addr) + (align - 1)) &
1367 ~(align - 1));
1368
1369 if (!pmem[id].cached)
1370 list->vaddr = ioremap(__pa(buf), aligned_len);
1371 else
1372 list->vaddr = ioremap_cached(__pa(buf), aligned_len);
1373
1374 INIT_LIST_HEAD(&list->allocs);
1375 list_add(&list->allocs, &pmem[id].allocator.system_mem.alist);
1376
1377 return (int)list;
1378}
1379
1380static pgprot_t pmem_phys_mem_access_prot(struct file *file, pgprot_t vma_prot)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001381{
1382 int id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001383#ifdef pgprot_writecombine
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001384 if (pmem[id].cached == 0 || file->f_flags & O_SYNC)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001385 /* on ARMv6 and ARMv7 this expands to Normal Noncached */
1386 return pgprot_writecombine(vma_prot);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001387#endif
1388#ifdef pgprot_ext_buffered
1389 else if (pmem[id].buffered)
1390 return pgprot_ext_buffered(vma_prot);
1391#endif
1392 return vma_prot;
1393}
1394
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001395static unsigned long pmem_start_addr_all_or_nothing(int id,
1396 struct pmem_data *data)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001397{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001398 return PMEM_START_ADDR(id, 0);
1399}
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001400
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001401static unsigned long pmem_start_addr_buddy_bestfit(int id,
1402 struct pmem_data *data)
1403{
1404 return PMEM_START_ADDR(id, data->index);
1405}
1406
1407static unsigned long pmem_start_addr_bitmap(int id, struct pmem_data *data)
1408{
1409 return data->index * pmem[id].quantum + pmem[id].base;
1410}
1411
1412static unsigned long pmem_start_addr_system(int id, struct pmem_data *data)
1413{
1414 return (unsigned long)(((struct alloc_list *)(data->index))->aaddr);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001415}
1416
1417static void *pmem_start_vaddr(int id, struct pmem_data *data)
1418{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001419 if (pmem[id].allocator_type == PMEM_ALLOCATORTYPE_SYSTEM)
1420 return ((struct alloc_list *)(data->index))->vaddr;
1421 else
1422 return pmem[id].start_addr(id, data) - pmem[id].base + pmem[id].vbase;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001423}
1424
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001425static unsigned long pmem_len_all_or_nothing(int id, struct pmem_data *data)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001426{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001427 return data->index;
1428}
1429
1430static unsigned long pmem_len_buddy_bestfit(int id, struct pmem_data *data)
1431{
1432 return PMEM_BUDDY_LEN(id, data->index);
1433}
1434
1435static unsigned long pmem_len_bitmap(int id, struct pmem_data *data)
1436{
1437 int i;
1438 unsigned long ret = 0;
1439
1440 mutex_lock(&pmem[id].arena_mutex);
1441
1442 for (i = 0; i < pmem[id].allocator.bitmap.bitmap_allocs; i++)
1443 if (pmem[id].allocator.bitmap.bitm_alloc[i].bit ==
1444 data->index) {
1445 ret = pmem[id].allocator.bitmap.bitm_alloc[i].quanta *
1446 pmem[id].quantum;
1447 break;
1448 }
1449
1450 mutex_unlock(&pmem[id].arena_mutex);
1451#if PMEM_DEBUG
1452 if (i >= pmem[id].allocator.bitmap.bitmap_allocs)
1453 pr_alert("pmem: %s: can't find bitnum %d in "
1454 "alloc'd array!\n", __func__, data->index);
1455#endif
1456 return ret;
1457}
1458
1459static unsigned long pmem_len_system(int id, struct pmem_data *data)
1460{
1461 unsigned long ret = 0;
1462
1463 mutex_lock(&pmem[id].arena_mutex);
1464
1465 ret = ((struct alloc_list *)data->index)->size;
1466 mutex_unlock(&pmem[id].arena_mutex);
1467
1468 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001469}
1470
1471static int pmem_map_garbage(int id, struct vm_area_struct *vma,
1472 struct pmem_data *data, unsigned long offset,
1473 unsigned long len)
1474{
1475 int i, garbage_pages = len >> PAGE_SHIFT;
1476
1477 vma->vm_flags |= VM_IO | VM_RESERVED | VM_PFNMAP | VM_SHARED | VM_WRITE;
1478 for (i = 0; i < garbage_pages; i++) {
1479 if (vm_insert_pfn(vma, vma->vm_start + offset + (i * PAGE_SIZE),
1480 pmem[id].garbage_pfn))
1481 return -EAGAIN;
1482 }
1483 return 0;
1484}
1485
1486static int pmem_unmap_pfn_range(int id, struct vm_area_struct *vma,
1487 struct pmem_data *data, unsigned long offset,
1488 unsigned long len)
1489{
1490 int garbage_pages;
1491 DLOG("unmap offset %lx len %lx\n", offset, len);
1492
1493 BUG_ON(!PMEM_IS_PAGE_ALIGNED(len));
1494
1495 garbage_pages = len >> PAGE_SHIFT;
1496 zap_page_range(vma, vma->vm_start + offset, len, NULL);
1497 pmem_map_garbage(id, vma, data, offset, len);
1498 return 0;
1499}
1500
1501static int pmem_map_pfn_range(int id, struct vm_area_struct *vma,
1502 struct pmem_data *data, unsigned long offset,
1503 unsigned long len)
1504{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001505 int ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001506 DLOG("map offset %lx len %lx\n", offset, len);
1507 BUG_ON(!PMEM_IS_PAGE_ALIGNED(vma->vm_start));
1508 BUG_ON(!PMEM_IS_PAGE_ALIGNED(vma->vm_end));
1509 BUG_ON(!PMEM_IS_PAGE_ALIGNED(len));
1510 BUG_ON(!PMEM_IS_PAGE_ALIGNED(offset));
1511
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001512 ret = io_remap_pfn_range(vma, vma->vm_start + offset,
1513 (pmem[id].start_addr(id, data) + offset) >> PAGE_SHIFT,
1514 len, vma->vm_page_prot);
1515 if (ret) {
1516#if PMEM_DEBUG
1517 pr_alert("pmem: %s: io_remap_pfn_range fails with "
1518 "return value: %d!\n", __func__, ret);
1519#endif
1520
1521 ret = -EAGAIN;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001522 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001523 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001524}
1525
1526static int pmem_remap_pfn_range(int id, struct vm_area_struct *vma,
1527 struct pmem_data *data, unsigned long offset,
1528 unsigned long len)
1529{
1530 /* hold the mm semp for the vma you are modifying when you call this */
1531 BUG_ON(!vma);
1532 zap_page_range(vma, vma->vm_start + offset, len, NULL);
1533 return pmem_map_pfn_range(id, vma, data, offset, len);
1534}
1535
1536static void pmem_vma_open(struct vm_area_struct *vma)
1537{
1538 struct file *file = vma->vm_file;
1539 struct pmem_data *data = file->private_data;
1540 int id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001541
1542#if PMEM_DEBUG_MSGS
1543 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
1544#endif
1545 DLOG("Dev %s(id: %d) pid %u(%s) ppid %u file %p count %ld\n",
1546 get_name(file), id, current->pid,
1547 get_task_comm(currtask_name, current),
1548 current->parent->pid, file, file_count(file));
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001549 /* this should never be called as we don't support copying pmem
1550 * ranges via fork */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001551 down_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001552 BUG_ON(!has_allocation(file));
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001553 /* remap the garbage pages, forkers don't get access to the data */
1554 pmem_unmap_pfn_range(id, vma, data, 0, vma->vm_start - vma->vm_end);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001555 up_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001556}
1557
1558static void pmem_vma_close(struct vm_area_struct *vma)
1559{
1560 struct file *file = vma->vm_file;
1561 struct pmem_data *data = file->private_data;
1562
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001563#if PMEM_DEBUG_MSGS
1564 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
1565#endif
1566 DLOG("Dev %s(id: %d) pid %u(%s) ppid %u file %p count %ld\n",
1567 get_name(file), get_id(file), current->pid,
1568 get_task_comm(currtask_name, current),
1569 current->parent->pid, file, file_count(file));
1570
1571 if (unlikely(!is_pmem_file(file))) {
1572 pr_warning("pmem: something is very wrong, you are "
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001573 "closing a vm backing an allocation that doesn't "
1574 "exist!\n");
1575 return;
1576 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001577
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001578 down_write(&data->sem);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001579 if (unlikely(!has_allocation(file))) {
1580 up_write(&data->sem);
1581 pr_warning("pmem: something is very wrong, you are "
1582 "closing a vm backing an allocation that doesn't "
1583 "exist!\n");
1584 return;
1585 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001586 if (data->vma == vma) {
1587 data->vma = NULL;
1588 if ((data->flags & PMEM_FLAGS_CONNECTED) &&
1589 (data->flags & PMEM_FLAGS_SUBMAP))
1590 data->flags |= PMEM_FLAGS_UNSUBMAP;
1591 }
1592 /* the kernel is going to free this vma now anyway */
1593 up_write(&data->sem);
1594}
1595
1596static struct vm_operations_struct vm_ops = {
1597 .open = pmem_vma_open,
1598 .close = pmem_vma_close,
1599};
1600
1601static int pmem_mmap(struct file *file, struct vm_area_struct *vma)
1602{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001603 struct pmem_data *data = file->private_data;
Laura Abbott1e36a022011-06-22 17:08:13 -07001604 int index = -1;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001605 unsigned long vma_size = vma->vm_end - vma->vm_start;
1606 int ret = 0, id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001607#if PMEM_DEBUG_MSGS
1608 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
1609#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001610
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001611 if (!data) {
1612 pr_err("pmem: Invalid file descriptor, no private data\n");
1613 return -EINVAL;
1614 }
1615 DLOG("pid %u(%s) mmap vma_size %lu on dev %s(id: %d)\n", current->pid,
1616 get_task_comm(currtask_name, current), vma_size,
1617 get_name(file), id);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001618 if (vma->vm_pgoff || !PMEM_IS_PAGE_ALIGNED(vma_size)) {
1619#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001620 pr_err("pmem: mmaps must be at offset zero, aligned"
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001621 " and a multiple of pages_size.\n");
1622#endif
1623 return -EINVAL;
1624 }
1625
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001626 down_write(&data->sem);
1627 /* check this file isn't already mmaped, for submaps check this file
1628 * has never been mmaped */
1629 if ((data->flags & PMEM_FLAGS_SUBMAP) ||
1630 (data->flags & PMEM_FLAGS_UNSUBMAP)) {
1631#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001632 pr_err("pmem: you can only mmap a pmem file once, "
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001633 "this file is already mmaped. %x\n", data->flags);
1634#endif
1635 ret = -EINVAL;
1636 goto error;
1637 }
1638 /* if file->private_data == unalloced, alloc*/
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001639 if (data->index == -1) {
1640 mutex_lock(&pmem[id].arena_mutex);
Laura Abbott1e36a022011-06-22 17:08:13 -07001641 index = pmem_allocate_from_id(id,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001642 vma->vm_end - vma->vm_start,
1643 SZ_4K);
1644 mutex_unlock(&pmem[id].arena_mutex);
1645 /* either no space was available or an error occured */
1646 if (index == -1) {
1647 pr_err("pmem: mmap unable to allocate memory"
1648 "on %s\n", get_name(file));
1649 ret = -ENOMEM;
1650 goto error;
1651 }
1652 /* store the index of a successful allocation */
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001653 data->index = index;
1654 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001655
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001656 if (pmem[id].len(id, data) < vma_size) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001657#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001658 pr_err("pmem: mmap size [%lu] does not match"
1659 " size of backing region [%lu].\n", vma_size,
1660 pmem[id].len(id, data));
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001661#endif
1662 ret = -EINVAL;
1663 goto error;
1664 }
1665
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001666 vma->vm_pgoff = pmem[id].start_addr(id, data) >> PAGE_SHIFT;
1667
1668 vma->vm_page_prot = pmem_phys_mem_access_prot(file, vma->vm_page_prot);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001669
1670 if (data->flags & PMEM_FLAGS_CONNECTED) {
1671 struct pmem_region_node *region_node;
1672 struct list_head *elt;
1673 if (pmem_map_garbage(id, vma, data, 0, vma_size)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001674 pr_alert("pmem: mmap failed in kernel!\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001675 ret = -EAGAIN;
1676 goto error;
1677 }
1678 list_for_each(elt, &data->region_list) {
1679 region_node = list_entry(elt, struct pmem_region_node,
1680 list);
1681 DLOG("remapping file: %p %lx %lx\n", file,
1682 region_node->region.offset,
1683 region_node->region.len);
1684 if (pmem_remap_pfn_range(id, vma, data,
1685 region_node->region.offset,
1686 region_node->region.len)) {
1687 ret = -EAGAIN;
1688 goto error;
1689 }
1690 }
1691 data->flags |= PMEM_FLAGS_SUBMAP;
1692 get_task_struct(current->group_leader);
1693 data->task = current->group_leader;
1694 data->vma = vma;
1695#if PMEM_DEBUG
1696 data->pid = current->pid;
1697#endif
1698 DLOG("submmapped file %p vma %p pid %u\n", file, vma,
1699 current->pid);
1700 } else {
1701 if (pmem_map_pfn_range(id, vma, data, 0, vma_size)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001702 pr_err("pmem: mmap failed in kernel!\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001703 ret = -EAGAIN;
1704 goto error;
1705 }
1706 data->flags |= PMEM_FLAGS_MASTERMAP;
1707 data->pid = current->pid;
1708 }
1709 vma->vm_ops = &vm_ops;
1710error:
1711 up_write(&data->sem);
1712 return ret;
1713}
1714
1715/* the following are the api for accessing pmem regions by other drivers
1716 * from inside the kernel */
1717int get_pmem_user_addr(struct file *file, unsigned long *start,
1718 unsigned long *len)
1719{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001720 int ret = -1;
1721
1722 if (is_pmem_file(file)) {
1723 struct pmem_data *data = file->private_data;
1724
1725 down_read(&data->sem);
1726 if (has_allocation(file)) {
1727 if (data->vma) {
1728 *start = data->vma->vm_start;
1729 *len = data->vma->vm_end - data->vma->vm_start;
1730 } else {
1731 *start = *len = 0;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001732#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001733 pr_err("pmem: %s: no vma present.\n",
1734 __func__);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001735#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001736 }
1737 ret = 0;
1738 }
1739 up_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001740 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001741
1742#if PMEM_DEBUG
1743 if (ret)
1744 pr_err("pmem: %s: requested pmem data from invalid"
1745 "file.\n", __func__);
1746#endif
1747 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001748}
1749
1750int get_pmem_addr(struct file *file, unsigned long *start,
1751 unsigned long *vstart, unsigned long *len)
1752{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001753 int ret = -1;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001754
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001755 if (is_pmem_file(file)) {
1756 struct pmem_data *data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001757
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001758 down_read(&data->sem);
1759 if (has_allocation(file)) {
1760 int id = get_id(file);
1761
1762 *start = pmem[id].start_addr(id, data);
1763 *len = pmem[id].len(id, data);
1764 *vstart = (unsigned long)
1765 pmem_start_vaddr(id, data);
1766 up_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001767#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001768 down_write(&data->sem);
1769 data->ref++;
1770 up_write(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001771#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001772 DLOG("returning start %#lx len %lu "
1773 "vstart %#lx\n",
1774 *start, *len, *vstart);
1775 ret = 0;
1776 } else {
1777 up_read(&data->sem);
1778 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001779 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001780 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001781}
1782
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001783int get_pmem_file(unsigned int fd, unsigned long *start, unsigned long *vstart,
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001784 unsigned long *len, struct file **filp)
1785{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001786 int ret = -1;
1787 struct file *file = fget(fd);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001788
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001789 if (unlikely(file == NULL)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001790 pr_err("pmem: %s: requested data from file "
1791 "descriptor that doesn't exist.\n", __func__);
1792 } else {
1793#if PMEM_DEBUG_MSGS
1794 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
1795#endif
1796 DLOG("filp %p rdev %d pid %u(%s) file %p(%ld)"
1797 " dev %s(id: %d)\n", filp,
1798 file->f_dentry->d_inode->i_rdev,
1799 current->pid, get_task_comm(currtask_name, current),
1800 file, file_count(file), get_name(file), get_id(file));
1801
1802 if (!get_pmem_addr(file, start, vstart, len)) {
1803 if (filp)
1804 *filp = file;
1805 ret = 0;
1806 } else {
1807 fput(file);
1808 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001809 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001810 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001811}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001812EXPORT_SYMBOL(get_pmem_file);
1813
1814int get_pmem_fd(int fd, unsigned long *start, unsigned long *len)
1815{
1816 unsigned long vstart;
1817 return get_pmem_file(fd, start, &vstart, len, NULL);
1818}
1819EXPORT_SYMBOL(get_pmem_fd);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001820
1821void put_pmem_file(struct file *file)
1822{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001823#if PMEM_DEBUG_MSGS
1824 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001825#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001826 DLOG("rdev %d pid %u(%s) file %p(%ld)" " dev %s(id: %d)\n",
1827 file->f_dentry->d_inode->i_rdev, current->pid,
1828 get_task_comm(currtask_name, current), file,
1829 file_count(file), get_name(file), get_id(file));
1830 if (is_pmem_file(file)) {
1831#if PMEM_DEBUG
1832 struct pmem_data *data = file->private_data;
1833
1834 down_write(&data->sem);
1835 if (!data->ref--) {
1836 data->ref++;
1837 pr_alert("pmem: pmem_put > pmem_get %s "
1838 "(pid %d)\n",
1839 pmem[get_id(file)].dev.name, data->pid);
1840 BUG();
1841 }
1842 up_write(&data->sem);
1843#endif
1844 fput(file);
1845 }
1846}
1847EXPORT_SYMBOL(put_pmem_file);
1848
1849void put_pmem_fd(int fd)
1850{
1851 int put_needed;
1852 struct file *file = fget_light(fd, &put_needed);
1853
1854 if (file) {
1855 put_pmem_file(file);
1856 fput_light(file, put_needed);
1857 }
1858}
1859
1860void flush_pmem_fd(int fd, unsigned long offset, unsigned long len)
1861{
1862 int fput_needed;
1863 struct file *file = fget_light(fd, &fput_needed);
1864
1865 if (file) {
1866 flush_pmem_file(file, offset, len);
1867 fput_light(file, fput_needed);
1868 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001869}
1870
1871void flush_pmem_file(struct file *file, unsigned long offset, unsigned long len)
1872{
1873 struct pmem_data *data;
1874 int id;
1875 void *vaddr;
1876 struct pmem_region_node *region_node;
1877 struct list_head *elt;
1878 void *flush_start, *flush_end;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001879#ifdef CONFIG_OUTER_CACHE
1880 unsigned long phy_start, phy_end;
1881#endif
1882 if (!is_pmem_file(file))
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001883 return;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001884
1885 id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001886 if (!pmem[id].cached)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001887 return;
1888
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001889 /* is_pmem_file fails if !file */
1890 data = file->private_data;
1891
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001892 down_read(&data->sem);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001893 if (!has_allocation(file))
1894 goto end;
1895
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001896 vaddr = pmem_start_vaddr(id, data);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001897
1898 if (pmem[id].allocator_type == PMEM_ALLOCATORTYPE_SYSTEM) {
1899 dmac_flush_range(vaddr,
1900 (void *)((unsigned long)vaddr +
1901 ((struct alloc_list *)(data->index))->size));
1902#ifdef CONFIG_OUTER_CACHE
1903 phy_start = pmem_start_addr_system(id, data);
1904
1905 phy_end = phy_start +
1906 ((struct alloc_list *)(data->index))->size;
1907
1908 outer_flush_range(phy_start, phy_end);
1909#endif
1910 goto end;
1911 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001912 /* if this isn't a submmapped file, flush the whole thing */
1913 if (unlikely(!(data->flags & PMEM_FLAGS_CONNECTED))) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001914 dmac_flush_range(vaddr, vaddr + pmem[id].len(id, data));
1915#ifdef CONFIG_OUTER_CACHE
1916 phy_start = (unsigned long)vaddr -
1917 (unsigned long)pmem[id].vbase + pmem[id].base;
1918
1919 phy_end = phy_start + pmem[id].len(id, data);
1920
1921 outer_flush_range(phy_start, phy_end);
1922#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001923 goto end;
1924 }
1925 /* otherwise, flush the region of the file we are drawing */
1926 list_for_each(elt, &data->region_list) {
1927 region_node = list_entry(elt, struct pmem_region_node, list);
1928 if ((offset >= region_node->region.offset) &&
1929 ((offset + len) <= (region_node->region.offset +
1930 region_node->region.len))) {
1931 flush_start = vaddr + region_node->region.offset;
1932 flush_end = flush_start + region_node->region.len;
1933 dmac_flush_range(flush_start, flush_end);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001934#ifdef CONFIG_OUTER_CACHE
1935
1936 phy_start = (unsigned long)flush_start -
1937 (unsigned long)pmem[id].vbase + pmem[id].base;
1938
1939 phy_end = phy_start + region_node->region.len;
1940
1941 outer_flush_range(phy_start, phy_end);
1942#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07001943 break;
1944 }
1945 }
1946end:
1947 up_read(&data->sem);
1948}
1949
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001950int pmem_cache_maint(struct file *file, unsigned int cmd,
1951 struct pmem_addr *pmem_addr)
1952{
1953 struct pmem_data *data;
1954 int id;
1955 unsigned long vaddr, paddr, length, offset,
1956 pmem_len, pmem_start_addr;
1957
1958 /* Called from kernel-space so file may be NULL */
1959 if (!file)
1960 return -EBADF;
1961
1962 data = file->private_data;
1963 id = get_id(file);
1964
1965 if (!pmem[id].cached)
1966 return 0;
1967
1968 offset = pmem_addr->offset;
1969 length = pmem_addr->length;
1970
1971 down_read(&data->sem);
1972 if (!has_allocation(file)) {
1973 up_read(&data->sem);
1974 return -EINVAL;
1975 }
1976 pmem_len = pmem[id].len(id, data);
1977 pmem_start_addr = pmem[id].start_addr(id, data);
1978 up_read(&data->sem);
1979
1980 if (offset + length > pmem_len)
1981 return -EINVAL;
1982
1983 vaddr = pmem_addr->vaddr;
1984 paddr = pmem_start_addr + offset;
1985
1986 DLOG("pmem cache maint on dev %s(id: %d)"
1987 "(vaddr %lx paddr %lx len %lu bytes)\n",
1988 get_name(file), id, vaddr, paddr, length);
1989 if (cmd == PMEM_CLEAN_INV_CACHES)
1990 clean_and_invalidate_caches(vaddr,
1991 length, paddr);
1992 else if (cmd == PMEM_CLEAN_CACHES)
1993 clean_caches(vaddr, length, paddr);
1994 else if (cmd == PMEM_INV_CACHES)
1995 invalidate_caches(vaddr, length, paddr);
1996
1997 return 0;
1998}
1999EXPORT_SYMBOL(pmem_cache_maint);
2000
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002001static int pmem_connect(unsigned long connect, struct file *file)
2002{
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002003 int ret = 0, put_needed;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002004 struct file *src_file;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002005
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002006 if (!file) {
2007 pr_err("pmem: %s: NULL file pointer passed in, "
2008 "bailing out!\n", __func__);
2009 ret = -EINVAL;
2010 goto leave;
2011 }
2012
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002013 src_file = fget_light(connect, &put_needed);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002014
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002015 if (!src_file) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002016 pr_err("pmem: %s: src file not found!\n", __func__);
2017 ret = -EBADF;
2018 goto leave;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002019 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002020
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002021 if (src_file == file) { /* degenerative case, operator error */
2022 pr_err("pmem: %s: src_file and passed in file are "
2023 "the same; refusing to connect to self!\n", __func__);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002024 ret = -EINVAL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002025 goto put_src_file;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002026 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002027
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002028 if (unlikely(!is_pmem_file(src_file))) {
2029 pr_err("pmem: %s: src file is not a pmem file!\n",
2030 __func__);
2031 ret = -EINVAL;
2032 goto put_src_file;
2033 } else {
2034 struct pmem_data *src_data = src_file->private_data;
2035
2036 if (!src_data) {
2037 pr_err("pmem: %s: src file pointer has no"
2038 "private data, bailing out!\n", __func__);
2039 ret = -EINVAL;
2040 goto put_src_file;
2041 }
2042
2043 down_read(&src_data->sem);
2044
2045 if (unlikely(!has_allocation(src_file))) {
2046 up_read(&src_data->sem);
2047 pr_err("pmem: %s: src file has no allocation!\n",
2048 __func__);
2049 ret = -EINVAL;
2050 } else {
2051 struct pmem_data *data;
2052 int src_index = src_data->index;
2053
2054 up_read(&src_data->sem);
2055
2056 data = file->private_data;
2057 if (!data) {
2058 pr_err("pmem: %s: passed in file "
2059 "pointer has no private data, bailing"
2060 " out!\n", __func__);
2061 ret = -EINVAL;
2062 goto put_src_file;
2063 }
2064
2065 down_write(&data->sem);
2066 if (has_allocation(file) &&
2067 (data->index != src_index)) {
2068 up_write(&data->sem);
2069
2070 pr_err("pmem: %s: file is already "
2071 "mapped but doesn't match this "
2072 "src_file!\n", __func__);
2073 ret = -EINVAL;
2074 } else {
2075 data->index = src_index;
2076 data->flags |= PMEM_FLAGS_CONNECTED;
2077 data->master_fd = connect;
2078 data->master_file = src_file;
2079
2080 up_write(&data->sem);
2081
2082 DLOG("connect %p to %p\n", file, src_file);
2083 }
2084 }
2085 }
2086put_src_file:
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002087 fput_light(src_file, put_needed);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002088leave:
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002089 return ret;
2090}
2091
2092static void pmem_unlock_data_and_mm(struct pmem_data *data,
2093 struct mm_struct *mm)
2094{
2095 up_write(&data->sem);
2096 if (mm != NULL) {
2097 up_write(&mm->mmap_sem);
2098 mmput(mm);
2099 }
2100}
2101
2102static int pmem_lock_data_and_mm(struct file *file, struct pmem_data *data,
2103 struct mm_struct **locked_mm)
2104{
2105 int ret = 0;
2106 struct mm_struct *mm = NULL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002107#if PMEM_DEBUG_MSGS
2108 char currtask_name[FIELD_SIZEOF(struct task_struct, comm) + 1];
2109#endif
2110 DLOG("pid %u(%s) file %p(%ld)\n",
2111 current->pid, get_task_comm(currtask_name, current),
2112 file, file_count(file));
2113
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002114 *locked_mm = NULL;
2115lock_mm:
2116 down_read(&data->sem);
2117 if (PMEM_IS_SUBMAP(data)) {
2118 mm = get_task_mm(data->task);
2119 if (!mm) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002120 up_read(&data->sem);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002121#if PMEM_DEBUG
2122 pr_alert("pmem: can't remap - task is gone!\n");
2123#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002124 return -1;
2125 }
2126 }
2127 up_read(&data->sem);
2128
2129 if (mm)
2130 down_write(&mm->mmap_sem);
2131
2132 down_write(&data->sem);
2133 /* check that the file didn't get mmaped before we could take the
2134 * data sem, this should be safe b/c you can only submap each file
2135 * once */
2136 if (PMEM_IS_SUBMAP(data) && !mm) {
2137 pmem_unlock_data_and_mm(data, mm);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002138 DLOG("mapping contention, repeating mmap op\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002139 goto lock_mm;
2140 }
2141 /* now check that vma.mm is still there, it could have been
2142 * deleted by vma_close before we could get the data->sem */
2143 if ((data->flags & PMEM_FLAGS_UNSUBMAP) && (mm != NULL)) {
2144 /* might as well release this */
2145 if (data->flags & PMEM_FLAGS_SUBMAP) {
2146 put_task_struct(data->task);
2147 data->task = NULL;
2148 /* lower the submap flag to show the mm is gone */
2149 data->flags &= ~(PMEM_FLAGS_SUBMAP);
2150 }
2151 pmem_unlock_data_and_mm(data, mm);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002152#if PMEM_DEBUG
2153 pr_alert("pmem: vma.mm went away!\n");
2154#endif
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002155 return -1;
2156 }
2157 *locked_mm = mm;
2158 return ret;
2159}
2160
2161int pmem_remap(struct pmem_region *region, struct file *file,
2162 unsigned operation)
2163{
2164 int ret;
2165 struct pmem_region_node *region_node;
2166 struct mm_struct *mm = NULL;
2167 struct list_head *elt, *elt2;
2168 int id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002169 struct pmem_data *data;
2170
2171 DLOG("operation %#x, region offset %ld, region len %ld\n",
2172 operation, region->offset, region->len);
2173
2174 if (!is_pmem_file(file)) {
2175#if PMEM_DEBUG
2176 pr_err("pmem: remap request for non-pmem file descriptor\n");
2177#endif
2178 return -EINVAL;
2179 }
2180
2181 /* is_pmem_file fails if !file */
2182 data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002183
2184 /* pmem region must be aligned on a page boundry */
2185 if (unlikely(!PMEM_IS_PAGE_ALIGNED(region->offset) ||
2186 !PMEM_IS_PAGE_ALIGNED(region->len))) {
2187#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002188 pr_err("pmem: request for unaligned pmem"
2189 "suballocation %lx %lx\n",
2190 region->offset, region->len);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002191#endif
2192 return -EINVAL;
2193 }
2194
2195 /* if userspace requests a region of len 0, there's nothing to do */
2196 if (region->len == 0)
2197 return 0;
2198
2199 /* lock the mm and data */
2200 ret = pmem_lock_data_and_mm(file, data, &mm);
2201 if (ret)
2202 return 0;
2203
2204 /* only the owner of the master file can remap the client fds
2205 * that back in it */
2206 if (!is_master_owner(file)) {
2207#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002208 pr_err("pmem: remap requested from non-master process\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002209#endif
2210 ret = -EINVAL;
2211 goto err;
2212 }
2213
2214 /* check that the requested range is within the src allocation */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002215 if (unlikely((region->offset > pmem[id].len(id, data)) ||
2216 (region->len > pmem[id].len(id, data)) ||
2217 (region->offset + region->len > pmem[id].len(id, data)))) {
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002218#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002219 pr_err("pmem: suballoc doesn't fit in src_file!\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002220#endif
2221 ret = -EINVAL;
2222 goto err;
2223 }
2224
2225 if (operation == PMEM_MAP) {
2226 region_node = kmalloc(sizeof(struct pmem_region_node),
2227 GFP_KERNEL);
2228 if (!region_node) {
2229 ret = -ENOMEM;
2230#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002231 pr_alert("pmem: No space to allocate remap metadata!");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002232#endif
2233 goto err;
2234 }
2235 region_node->region = *region;
2236 list_add(&region_node->list, &data->region_list);
2237 } else if (operation == PMEM_UNMAP) {
2238 int found = 0;
2239 list_for_each_safe(elt, elt2, &data->region_list) {
2240 region_node = list_entry(elt, struct pmem_region_node,
2241 list);
2242 if (region->len == 0 ||
2243 (region_node->region.offset == region->offset &&
2244 region_node->region.len == region->len)) {
2245 list_del(elt);
2246 kfree(region_node);
2247 found = 1;
2248 }
2249 }
2250 if (!found) {
2251#if PMEM_DEBUG
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002252 pr_err("pmem: Unmap region does not map any"
2253 " mapped region!");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002254#endif
2255 ret = -EINVAL;
2256 goto err;
2257 }
2258 }
2259
2260 if (data->vma && PMEM_IS_SUBMAP(data)) {
2261 if (operation == PMEM_MAP)
2262 ret = pmem_remap_pfn_range(id, data->vma, data,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002263 region->offset, region->len);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002264 else if (operation == PMEM_UNMAP)
2265 ret = pmem_unmap_pfn_range(id, data->vma, data,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002266 region->offset, region->len);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002267 }
2268
2269err:
2270 pmem_unlock_data_and_mm(data, mm);
2271 return ret;
2272}
2273
2274static void pmem_revoke(struct file *file, struct pmem_data *data)
2275{
2276 struct pmem_region_node *region_node;
2277 struct list_head *elt, *elt2;
2278 struct mm_struct *mm = NULL;
2279 int id = get_id(file);
2280 int ret = 0;
2281
2282 data->master_file = NULL;
2283 ret = pmem_lock_data_and_mm(file, data, &mm);
2284 /* if lock_data_and_mm fails either the task that mapped the fd, or
2285 * the vma that mapped it have already gone away, nothing more
2286 * needs to be done */
2287 if (ret)
2288 return;
2289 /* unmap everything */
2290 /* delete the regions and region list nothing is mapped any more */
2291 if (data->vma)
2292 list_for_each_safe(elt, elt2, &data->region_list) {
2293 region_node = list_entry(elt, struct pmem_region_node,
2294 list);
2295 pmem_unmap_pfn_range(id, data->vma, data,
2296 region_node->region.offset,
2297 region_node->region.len);
2298 list_del(elt);
2299 kfree(region_node);
2300 }
2301 /* delete the master file */
2302 pmem_unlock_data_and_mm(data, mm);
2303}
2304
2305static void pmem_get_size(struct pmem_region *region, struct file *file)
2306{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002307 /* called via ioctl file op, so file guaranteed to be not NULL */
2308 struct pmem_data *data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002309 int id = get_id(file);
2310
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002311 down_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002312 if (!has_allocation(file)) {
2313 region->offset = 0;
2314 region->len = 0;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002315 } else {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002316 region->offset = pmem[id].start_addr(id, data);
2317 region->len = pmem[id].len(id, data);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002318 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002319 up_read(&data->sem);
2320 DLOG("offset 0x%lx len 0x%lx\n", region->offset, region->len);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002321}
2322
2323
2324static long pmem_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2325{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002326 /* called from user space as file op, so file guaranteed to be not
2327 * NULL
2328 */
2329 struct pmem_data *data = file->private_data;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002330 int id = get_id(file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002331#if PMEM_DEBUG_MSGS
2332 char currtask_name[
2333 FIELD_SIZEOF(struct task_struct, comm) + 1];
2334#endif
2335
2336 DLOG("pid %u(%s) file %p(%ld) cmd %#x, dev %s(id: %d)\n",
2337 current->pid, get_task_comm(currtask_name, current),
2338 file, file_count(file), cmd, get_name(file), id);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002339
2340 switch (cmd) {
2341 case PMEM_GET_PHYS:
2342 {
2343 struct pmem_region region;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002344
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002345 DLOG("get_phys\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002346 down_read(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002347 if (!has_allocation(file)) {
2348 region.offset = 0;
2349 region.len = 0;
2350 } else {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002351 region.offset = pmem[id].start_addr(id, data);
2352 region.len = pmem[id].len(id, data);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002353 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002354 up_read(&data->sem);
2355
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002356 if (copy_to_user((void __user *)arg, &region,
2357 sizeof(struct pmem_region)))
2358 return -EFAULT;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002359
2360 DLOG("pmem: successful request for "
2361 "physical address of pmem region id %d, "
2362 "offset 0x%lx, len 0x%lx\n",
2363 id, region.offset, region.len);
2364
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002365 break;
2366 }
2367 case PMEM_MAP:
2368 {
2369 struct pmem_region region;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002370 DLOG("map\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002371 if (copy_from_user(&region, (void __user *)arg,
2372 sizeof(struct pmem_region)))
2373 return -EFAULT;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002374 return pmem_remap(&region, file, PMEM_MAP);
2375 }
2376 break;
2377 case PMEM_UNMAP:
2378 {
2379 struct pmem_region region;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002380 DLOG("unmap\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002381 if (copy_from_user(&region, (void __user *)arg,
2382 sizeof(struct pmem_region)))
2383 return -EFAULT;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002384 return pmem_remap(&region, file, PMEM_UNMAP);
2385 break;
2386 }
2387 case PMEM_GET_SIZE:
2388 {
2389 struct pmem_region region;
2390 DLOG("get_size\n");
2391 pmem_get_size(&region, file);
2392 if (copy_to_user((void __user *)arg, &region,
2393 sizeof(struct pmem_region)))
2394 return -EFAULT;
2395 break;
2396 }
2397 case PMEM_GET_TOTAL_SIZE:
2398 {
2399 struct pmem_region region;
2400 DLOG("get total size\n");
2401 region.offset = 0;
2402 get_id(file);
2403 region.len = pmem[id].size;
2404 if (copy_to_user((void __user *)arg, &region,
2405 sizeof(struct pmem_region)))
2406 return -EFAULT;
2407 break;
2408 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002409 case PMEM_GET_FREE_SPACE:
2410 {
2411 struct pmem_freespace fs;
2412 DLOG("get freespace on %s(id: %d)\n",
2413 get_name(file), id);
2414
2415 mutex_lock(&pmem[id].arena_mutex);
2416 pmem[id].free_space(id, &fs);
2417 mutex_unlock(&pmem[id].arena_mutex);
2418
2419 DLOG("%s(id: %d) total free %lu, largest %lu\n",
2420 get_name(file), id, fs.total, fs.largest);
2421
2422 if (copy_to_user((void __user *)arg, &fs,
2423 sizeof(struct pmem_freespace)))
2424 return -EFAULT;
2425 break;
2426 }
2427
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002428 case PMEM_ALLOCATE:
2429 {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002430 int ret = 0;
2431 DLOG("allocate, id %d\n", id);
2432 down_write(&data->sem);
2433 if (has_allocation(file)) {
2434 pr_err("pmem: Existing allocation found on "
2435 "this file descrpitor\n");
2436 up_write(&data->sem);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002437 return -EINVAL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002438 }
2439
2440 mutex_lock(&pmem[id].arena_mutex);
Laura Abbott1e36a022011-06-22 17:08:13 -07002441 data->index = pmem_allocate_from_id(id,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002442 arg,
2443 SZ_4K);
2444 mutex_unlock(&pmem[id].arena_mutex);
2445 ret = data->index == -1 ? -ENOMEM :
2446 data->index;
2447 up_write(&data->sem);
2448 return ret;
2449 }
2450 case PMEM_ALLOCATE_ALIGNED:
2451 {
2452 struct pmem_allocation alloc;
2453 int ret = 0;
2454
2455 if (copy_from_user(&alloc, (void __user *)arg,
2456 sizeof(struct pmem_allocation)))
2457 return -EFAULT;
2458 DLOG("allocate id align %d %u\n", id, alloc.align);
2459 down_write(&data->sem);
2460 if (has_allocation(file)) {
2461 pr_err("pmem: Existing allocation found on "
2462 "this file descrpitor\n");
2463 up_write(&data->sem);
2464 return -EINVAL;
2465 }
2466
2467 if (alloc.align & (alloc.align - 1)) {
2468 pr_err("pmem: Alignment is not a power of 2\n");
2469 return -EINVAL;
2470 }
2471
2472 if (alloc.align != SZ_4K &&
2473 (pmem[id].allocator_type !=
2474 PMEM_ALLOCATORTYPE_BITMAP)) {
2475 pr_err("pmem: Non 4k alignment requires bitmap"
2476 " allocator on %s\n", pmem[id].name);
2477 return -EINVAL;
2478 }
2479
2480 if (alloc.align > SZ_1M ||
2481 alloc.align < SZ_4K) {
2482 pr_err("pmem: Invalid Alignment (%u) "
2483 "specified\n", alloc.align);
2484 return -EINVAL;
2485 }
2486
2487 mutex_lock(&pmem[id].arena_mutex);
Laura Abbott1e36a022011-06-22 17:08:13 -07002488 data->index = pmem_allocate_from_id(id,
2489 alloc.size,
2490 alloc.align);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002491 mutex_unlock(&pmem[id].arena_mutex);
2492 ret = data->index == -1 ? -ENOMEM :
2493 data->index;
2494 up_write(&data->sem);
2495 return ret;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002496 }
2497 case PMEM_CONNECT:
2498 DLOG("connect\n");
2499 return pmem_connect(arg, file);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002500 case PMEM_CLEAN_INV_CACHES:
2501 case PMEM_CLEAN_CACHES:
2502 case PMEM_INV_CACHES:
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002503 {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002504 struct pmem_addr pmem_addr;
2505
2506 if (copy_from_user(&pmem_addr, (void __user *)arg,
2507 sizeof(struct pmem_addr)))
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002508 return -EFAULT;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002509
2510 return pmem_cache_maint(file, cmd, &pmem_addr);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002511 }
2512 default:
2513 if (pmem[id].ioctl)
2514 return pmem[id].ioctl(file, cmd, arg);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002515
2516 DLOG("ioctl invalid (%#x)\n", cmd);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002517 return -EINVAL;
2518 }
2519 return 0;
2520}
2521
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002522static void ioremap_pmem(int id)
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002523{
Laura Abbott1e36a022011-06-22 17:08:13 -07002524 DLOG("PMEMDEBUG: ioremaping for %s\n", pmem[id].name);
2525
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002526 if (pmem[id].cached)
2527 pmem[id].vbase = ioremap_cached(pmem[id].base, pmem[id].size);
2528#ifdef ioremap_ext_buffered
2529 else if (pmem[id].buffered)
2530 pmem[id].vbase = ioremap_ext_buffered(pmem[id].base,
2531 pmem[id].size);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002532#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002533 else
2534 pmem[id].vbase = ioremap(pmem[id].base, pmem[id].size);
2535}
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002536
2537int pmem_setup(struct android_pmem_platform_data *pdata,
2538 long (*ioctl)(struct file *, unsigned int, unsigned long),
2539 int (*release)(struct inode *, struct file *))
2540{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002541 int i, index = 0, id;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002542
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002543 if (id_count >= PMEM_MAX_DEVICES) {
2544 pr_alert("pmem: %s: unable to register driver(%s) - no more "
2545 "devices available!\n", __func__, pdata->name);
2546 goto err_no_mem;
2547 }
2548
2549 if (!pdata->size) {
2550 pr_alert("pmem: %s: unable to register pmem driver(%s) - zero "
2551 "size passed in!\n", __func__, pdata->name);
2552 goto err_no_mem;
2553 }
2554
2555 id = id_count++;
2556
2557 pmem[id].id = id;
2558
2559 if (pmem[id].allocate) {
2560 pr_alert("pmem: %s: unable to register pmem driver - "
2561 "duplicate registration of %s!\n",
2562 __func__, pdata->name);
2563 goto err_no_mem;
2564 }
2565
2566 pmem[id].allocator_type = pdata->allocator_type;
2567
2568 /* 'quantum' is a "hidden" variable that defaults to 0 in the board
2569 * files */
2570 pmem[id].quantum = pdata->quantum ?: PMEM_MIN_ALLOC;
2571 if (pmem[id].quantum < PMEM_MIN_ALLOC ||
2572 !is_power_of_2(pmem[id].quantum)) {
2573 pr_alert("pmem: %s: unable to register pmem driver %s - "
2574 "invalid quantum value (%#x)!\n",
2575 __func__, pdata->name, pmem[id].quantum);
2576 goto err_reset_pmem_info;
2577 }
2578
2579 if (pdata->size % pmem[id].quantum) {
2580 /* bad alignment for size! */
2581 pr_alert("pmem: %s: Unable to register driver %s - "
2582 "memory region size (%#lx) is not a multiple of "
2583 "quantum size(%#x)!\n", __func__, pdata->name,
2584 pdata->size, pmem[id].quantum);
2585 goto err_reset_pmem_info;
2586 }
2587
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002588 pmem[id].cached = pdata->cached;
2589 pmem[id].buffered = pdata->buffered;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002590 pmem[id].size = pdata->size;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002591 pmem[id].memory_type = pdata->memory_type;
2592 strlcpy(pmem[id].name, pdata->name, PMEM_NAME_SIZE);
2593
2594 pmem[id].num_entries = pmem[id].size / pmem[id].quantum;
2595
2596 memset(&pmem[id].kobj, 0, sizeof(pmem[0].kobj));
2597 pmem[id].kobj.kset = pmem_kset;
2598
2599 switch (pmem[id].allocator_type) {
2600 case PMEM_ALLOCATORTYPE_ALLORNOTHING:
2601 pmem[id].allocate = pmem_allocator_all_or_nothing;
2602 pmem[id].free = pmem_free_all_or_nothing;
2603 pmem[id].free_space = pmem_free_space_all_or_nothing;
2604 pmem[id].len = pmem_len_all_or_nothing;
2605 pmem[id].start_addr = pmem_start_addr_all_or_nothing;
2606 pmem[id].num_entries = 1;
2607 pmem[id].quantum = pmem[id].size;
2608 pmem[id].allocator.all_or_nothing.allocated = 0;
2609
2610 if (kobject_init_and_add(&pmem[id].kobj,
2611 &pmem_allornothing_ktype, NULL,
2612 "%s", pdata->name))
2613 goto out_put_kobj;
2614
2615 break;
2616
2617 case PMEM_ALLOCATORTYPE_BUDDYBESTFIT:
2618 pmem[id].allocator.buddy_bestfit.buddy_bitmap = kmalloc(
2619 pmem[id].num_entries * sizeof(struct pmem_bits),
2620 GFP_KERNEL);
2621 if (!pmem[id].allocator.buddy_bestfit.buddy_bitmap)
2622 goto err_reset_pmem_info;
2623
2624 memset(pmem[id].allocator.buddy_bestfit.buddy_bitmap, 0,
2625 sizeof(struct pmem_bits) * pmem[id].num_entries);
2626
2627 for (i = sizeof(pmem[id].num_entries) * 8 - 1; i >= 0; i--)
2628 if ((pmem[id].num_entries) & 1<<i) {
2629 PMEM_BUDDY_ORDER(id, index) = i;
2630 index = PMEM_BUDDY_NEXT_INDEX(id, index);
2631 }
2632 pmem[id].allocate = pmem_allocator_buddy_bestfit;
2633 pmem[id].free = pmem_free_buddy_bestfit;
2634 pmem[id].free_space = pmem_free_space_buddy_bestfit;
2635 pmem[id].len = pmem_len_buddy_bestfit;
2636 pmem[id].start_addr = pmem_start_addr_buddy_bestfit;
2637 if (kobject_init_and_add(&pmem[id].kobj,
2638 &pmem_buddy_bestfit_ktype, NULL,
2639 "%s", pdata->name))
2640 goto out_put_kobj;
2641
2642 break;
2643
2644 case PMEM_ALLOCATORTYPE_BITMAP: /* 0, default if not explicit */
2645 pmem[id].allocator.bitmap.bitm_alloc = kmalloc(
2646 PMEM_INITIAL_NUM_BITMAP_ALLOCATIONS *
2647 sizeof(*pmem[id].allocator.bitmap.bitm_alloc),
2648 GFP_KERNEL);
2649 if (!pmem[id].allocator.bitmap.bitm_alloc) {
2650 pr_alert("pmem: %s: Unable to register pmem "
2651 "driver %s - can't allocate "
2652 "bitm_alloc!\n",
2653 __func__, pdata->name);
2654 goto err_reset_pmem_info;
2655 }
2656
2657 if (kobject_init_and_add(&pmem[id].kobj,
2658 &pmem_bitmap_ktype, NULL,
2659 "%s", pdata->name))
2660 goto out_put_kobj;
2661
2662 for (i = 0; i < PMEM_INITIAL_NUM_BITMAP_ALLOCATIONS; i++) {
2663 pmem[id].allocator.bitmap.bitm_alloc[i].bit = -1;
2664 pmem[id].allocator.bitmap.bitm_alloc[i].quanta = 0;
2665 }
2666
2667 pmem[id].allocator.bitmap.bitmap_allocs =
2668 PMEM_INITIAL_NUM_BITMAP_ALLOCATIONS;
2669
2670 pmem[id].allocator.bitmap.bitmap =
2671 kcalloc((pmem[id].num_entries + 31) / 32,
2672 sizeof(unsigned int), GFP_KERNEL);
2673 if (!pmem[id].allocator.bitmap.bitmap) {
2674 pr_alert("pmem: %s: Unable to register pmem "
2675 "driver - can't allocate bitmap!\n",
2676 __func__);
2677 goto err_cant_register_device;
2678 }
2679 pmem[id].allocator.bitmap.bitmap_free = pmem[id].num_entries;
2680
2681 pmem[id].allocate = pmem_allocator_bitmap;
2682 pmem[id].free = pmem_free_bitmap;
2683 pmem[id].free_space = pmem_free_space_bitmap;
2684 pmem[id].len = pmem_len_bitmap;
2685 pmem[id].start_addr = pmem_start_addr_bitmap;
2686
2687 DLOG("bitmap allocator id %d (%s), num_entries %u, raw size "
2688 "%lu, quanta size %u\n",
2689 id, pdata->name, pmem[id].allocator.bitmap.bitmap_free,
2690 pmem[id].size, pmem[id].quantum);
2691 break;
2692
2693 case PMEM_ALLOCATORTYPE_SYSTEM:
2694
2695 INIT_LIST_HEAD(&pmem[id].allocator.system_mem.alist);
2696
2697 pmem[id].allocator.system_mem.used = 0;
2698 pmem[id].vbase = NULL;
2699
2700 if (kobject_init_and_add(&pmem[id].kobj,
2701 &pmem_system_ktype, NULL,
2702 "%s", pdata->name))
2703 goto out_put_kobj;
2704
2705 pmem[id].allocate = pmem_allocator_system;
2706 pmem[id].free = pmem_free_system;
2707 pmem[id].free_space = pmem_free_space_system;
2708 pmem[id].len = pmem_len_system;
2709 pmem[id].start_addr = pmem_start_addr_system;
2710 pmem[id].num_entries = 0;
2711 pmem[id].quantum = PAGE_SIZE;
2712
2713 DLOG("system allocator id %d (%s), raw size %lu\n",
2714 id, pdata->name, pmem[id].size);
2715 break;
2716
2717 default:
2718 pr_alert("Invalid allocator type (%d) for pmem driver\n",
2719 pdata->allocator_type);
2720 goto err_reset_pmem_info;
2721 }
2722
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002723 pmem[id].ioctl = ioctl;
2724 pmem[id].release = release;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002725 mutex_init(&pmem[id].arena_mutex);
2726 mutex_init(&pmem[id].data_list_mutex);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002727 INIT_LIST_HEAD(&pmem[id].data_list);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002728
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002729 pmem[id].dev.name = pdata->name;
2730 pmem[id].dev.minor = id;
2731 pmem[id].dev.fops = &pmem_fops;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002732 pr_info("pmem: Initializing %s (user-space) as %s\n",
2733 pdata->name, pdata->cached ? "cached" : "non-cached");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002734
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002735 if (misc_register(&pmem[id].dev)) {
2736 pr_alert("Unable to register pmem driver!\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002737 goto err_cant_register_device;
2738 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002739
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002740 pmem[id].base = allocate_contiguous_memory_nomap(pmem[id].size,
2741 pmem[id].memory_type, PAGE_SIZE);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002742
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002743 pr_info("allocating %lu bytes at %p (%lx physical) for %s\n",
2744 pmem[id].size, pmem[id].vbase, pmem[id].base, pmem[id].name);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002745
2746 pmem[id].garbage_pfn = page_to_pfn(alloc_page(GFP_KERNEL));
Laura Abbott1e36a022011-06-22 17:08:13 -07002747 atomic_set(&pmem[id].allocation_cnt, 0);
2748 pmem[id].map_on_demand = pdata->map_on_demand;
2749
2750 if (pdata->setup_region)
2751 pmem[id].region_data = pdata->setup_region();
2752
2753 if (pdata->request_region)
2754 pmem[id].mem_request = pdata->request_region;
2755
2756 if (pdata->release_region)
2757 pmem[id].mem_release = pdata->release_region;
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002758
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002759 return 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002760
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002761err_cant_register_device:
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002762out_put_kobj:
2763 kobject_put(&pmem[id].kobj);
2764 if (pmem[id].allocator_type == PMEM_ALLOCATORTYPE_BUDDYBESTFIT)
2765 kfree(pmem[id].allocator.buddy_bestfit.buddy_bitmap);
2766 else if (pmem[id].allocator_type == PMEM_ALLOCATORTYPE_BITMAP) {
2767 kfree(pmem[id].allocator.bitmap.bitmap);
2768 kfree(pmem[id].allocator.bitmap.bitm_alloc);
2769 }
2770err_reset_pmem_info:
2771 pmem[id].allocate = 0;
2772 pmem[id].dev.minor = -1;
2773err_no_mem:
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002774 return -1;
2775}
2776
2777static int pmem_probe(struct platform_device *pdev)
2778{
2779 struct android_pmem_platform_data *pdata;
2780
2781 if (!pdev || !pdev->dev.platform_data) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002782 pr_alert("Unable to probe pmem!\n");
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002783 return -1;
2784 }
2785 pdata = pdev->dev.platform_data;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002786
2787 pm_runtime_set_active(&pdev->dev);
2788 pm_runtime_enable(&pdev->dev);
2789
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002790 return pmem_setup(pdata, NULL, NULL);
2791}
2792
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002793static int pmem_remove(struct platform_device *pdev)
2794{
2795 int id = pdev->id;
2796 __free_page(pfn_to_page(pmem[id].garbage_pfn));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002797 pm_runtime_disable(&pdev->dev);
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002798 misc_deregister(&pmem[id].dev);
2799 return 0;
2800}
2801
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002802static int pmem_runtime_suspend(struct device *dev)
2803{
2804 dev_dbg(dev, "pm_runtime: suspending...\n");
2805 return 0;
2806}
2807
2808static int pmem_runtime_resume(struct device *dev)
2809{
2810 dev_dbg(dev, "pm_runtime: resuming...\n");
2811 return 0;
2812}
2813
2814static const struct dev_pm_ops pmem_dev_pm_ops = {
2815 .runtime_suspend = pmem_runtime_suspend,
2816 .runtime_resume = pmem_runtime_resume,
2817};
2818
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002819static struct platform_driver pmem_driver = {
2820 .probe = pmem_probe,
2821 .remove = pmem_remove,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002822 .driver = { .name = "android_pmem",
2823 .pm = &pmem_dev_pm_ops,
2824 }
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002825};
2826
2827
2828static int __init pmem_init(void)
2829{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002830 /* create /sys/kernel/<PMEM_SYSFS_DIR_NAME> directory */
2831 pmem_kset = kset_create_and_add(PMEM_SYSFS_DIR_NAME,
2832 NULL, kernel_kobj);
2833 if (!pmem_kset) {
2834 pr_err("pmem(%s):kset_create_and_add fail\n", __func__);
2835 return -ENOMEM;
2836 }
2837
Rebecca Schultza4ff0e82008-07-24 11:22:53 -07002838 return platform_driver_register(&pmem_driver);
2839}
2840
2841static void __exit pmem_exit(void)
2842{
2843 platform_driver_unregister(&pmem_driver);
2844}
2845
2846module_init(pmem_init);
2847module_exit(pmem_exit);
2848