blob: 2e7f8e10bf87109083f43f73411327ae5223f724 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * contains various random system calls that have a non-standard
3 * calling sequence on the Linux/Blackfin platform.
Bryan Wu1394f032007-05-06 14:50:22 -07004 *
Robin Getz96f10502009-09-24 14:11:24 +00005 * Copyright 2004-2009 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07006 *
Robin Getz96f10502009-09-24 14:11:24 +00007 * Licensed under the GPL-2 or later
Bryan Wu1394f032007-05-06 14:50:22 -07008 */
9
Bryan Wu1394f032007-05-06 14:50:22 -070010#include <linux/spinlock.h>
11#include <linux/sem.h>
12#include <linux/msg.h>
13#include <linux/shm.h>
14#include <linux/syscalls.h>
15#include <linux/mman.h>
16#include <linux/file.h>
Bryan Wud31c5ab2007-08-10 13:00:42 -070017#include <linux/fs.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080018#include <linux/uaccess.h>
19#include <linux/ipc.h>
20#include <linux/unistd.h>
Bryan Wu1394f032007-05-06 14:50:22 -070021
22#include <asm/cacheflush.h>
Bryan Wu1394f032007-05-06 14:50:22 -070023#include <asm/dma.h>
Bryan Wu1394f032007-05-06 14:50:22 -070024
Bryan Wu1394f032007-05-06 14:50:22 -070025asmlinkage void *sys_sram_alloc(size_t size, unsigned long flags)
26{
27 return sram_alloc_with_lsl(size, flags);
28}
29
30asmlinkage int sys_sram_free(const void *addr)
31{
32 return sram_free_with_lsl(addr);
33}
34
35asmlinkage void *sys_dma_memcpy(void *dest, const void *src, size_t len)
36{
37 return safe_dma_memcpy(dest, src, len);
38}
Thomas Chou59bd00c2009-09-27 15:38:01 +080039
40#if defined(CONFIG_FB) || defined(CONFIG_FB_MODULE)
41#include <linux/fb.h>
42unsigned long get_fb_unmapped_area(struct file *filp, unsigned long orig_addr,
43 unsigned long len, unsigned long pgoff, unsigned long flags)
44{
45 struct fb_info *info = filp->private_data;
46 return (unsigned long)info->screen_base;
47}
48EXPORT_SYMBOL(get_fb_unmapped_area);
49#endif