2007-07-01 23:30:51 +02:00
|
|
|
/*********************************************
|
|
|
|
* Benjamin Krill <ben@codiert.org>
|
|
|
|
*********************************************/
|
2007-09-10 09:45:12 +02:00
|
|
|
#include <linux/pagemap.h>
|
2007-07-01 23:30:51 +02:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
2007-09-10 09:45:12 +02:00
|
|
|
#include <linux/mm.h>
|
2007-07-01 23:30:51 +02:00
|
|
|
#include "fpgafs.h"
|
|
|
|
|
|
|
|
#define FPGAFS_MAX_LLDRV 3
|
|
|
|
|
|
|
|
static struct fpgafs_lldrv *lldrv[FPGAFS_MAX_LLDRV];
|
|
|
|
static struct fpgafs_lldrv *lldrv_cur;
|
|
|
|
static int lldrv_count = 0x0;
|
|
|
|
static DEFINE_SPINLOCK(fpgafs_lldrv_lock);
|
|
|
|
|
2007-07-10 17:07:35 +02:00
|
|
|
struct fpga_context* alloc_fpga_context(void)
|
|
|
|
{
|
|
|
|
struct fpga_context *ctx;
|
|
|
|
ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
|
|
|
|
if (!ctx)
|
|
|
|
goto out;
|
|
|
|
|
2007-09-10 09:45:12 +02:00
|
|
|
/* initialize the struct*/
|
|
|
|
ctx->lldrv = -1;
|
2007-07-10 17:07:35 +02:00
|
|
|
|
|
|
|
out:
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_fpga_context(struct fpga_context *ctx)
|
|
|
|
{
|
|
|
|
if (ctx->load_buf)
|
|
|
|
kfree(ctx->load_buf);
|
|
|
|
|
|
|
|
kfree(ctx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-07-09 18:29:32 +02:00
|
|
|
ssize_t fpgafs_send_data(struct file *file, const char __user *buf,
|
2007-07-09 18:03:50 +02:00
|
|
|
size_t len, loff_t *pos)
|
2007-07-01 23:30:51 +02:00
|
|
|
{
|
2007-09-10 09:45:12 +02:00
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
return (fcur->lldrv > -1) ?
|
|
|
|
lldrv[fcur->lldrv]->send(fcur, buf, len)
|
2007-07-10 17:07:35 +02:00
|
|
|
: -EBUSY;
|
2007-07-01 23:30:51 +02:00
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_send_data);
|
2007-07-01 23:30:51 +02:00
|
|
|
|
2007-07-09 18:03:50 +02:00
|
|
|
ssize_t fpgafs_recv_data(struct file *file, char __user *buf,
|
|
|
|
size_t len, loff_t *pos)
|
2007-07-01 23:30:51 +02:00
|
|
|
{
|
2007-09-10 09:45:12 +02:00
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
return (fcur->lldrv > -1) ?
|
|
|
|
lldrv[fcur->lldrv]->recv(fcur, buf, len)
|
2007-07-10 17:07:35 +02:00
|
|
|
: -EBUSY;
|
2007-07-01 23:30:51 +02:00
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_recv_data);
|
2007-07-01 23:30:51 +02:00
|
|
|
|
2007-07-10 16:18:07 +02:00
|
|
|
ssize_t fpgafs_write_load(struct file *file, const char __user *buf,
|
|
|
|
size_t len, loff_t *pos)
|
2007-07-09 15:12:16 +02:00
|
|
|
{
|
2007-09-10 09:45:12 +02:00
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
return (fcur->lldrv > -1) ?
|
|
|
|
lldrv[fcur->lldrv]->write_load(fcur, buf, len)
|
2007-07-10 17:07:35 +02:00
|
|
|
: -EBUSY;
|
2007-07-09 15:12:16 +02:00
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_write_load);
|
2007-07-09 15:12:16 +02:00
|
|
|
|
2007-07-10 16:18:07 +02:00
|
|
|
ssize_t fpgafs_read_load(struct file *file, char __user *buf,
|
|
|
|
size_t len, loff_t *pos)
|
2007-07-09 15:12:16 +02:00
|
|
|
{
|
2007-09-10 09:45:12 +02:00
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
return (fcur->lldrv > -1) ?
|
|
|
|
lldrv[fcur->lldrv]->read_load(fcur, buf, len)
|
2007-07-10 17:07:35 +02:00
|
|
|
: -EBUSY;
|
2007-07-09 15:12:16 +02:00
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_read_load);
|
2007-07-09 15:12:16 +02:00
|
|
|
|
2007-09-10 09:45:12 +02:00
|
|
|
/* set/get current low level driver */
|
|
|
|
ssize_t fpgafs_read_lldrv(struct file *file, char __user *buf,
|
|
|
|
size_t len, loff_t *pos)
|
|
|
|
{
|
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
size_t l = (len > 5)?5:len;
|
|
|
|
if (fcur->lldrv > -1) {
|
|
|
|
if (copy_to_user(buf, lldrv[fcur->lldrv]->name, l))
|
|
|
|
return -EFAULT;
|
|
|
|
} else {
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_read_lldrv);
|
2007-09-10 09:45:12 +02:00
|
|
|
|
|
|
|
ssize_t fpgafs_write_lldrv(struct file *file, const char __user *buf,
|
|
|
|
size_t len, loff_t *pos)
|
|
|
|
{
|
|
|
|
struct fpga_context *fcur = (struct fpga_context*)file->private_data;
|
|
|
|
u32 cp = 0, i;
|
|
|
|
u8 __user *usr;
|
|
|
|
unsigned char tmp[5];
|
|
|
|
size_t l = (len > 5)?5:len;
|
|
|
|
|
|
|
|
/* get name */
|
|
|
|
while (cp < l) {
|
|
|
|
usr = (u8*)&buf[cp];
|
|
|
|
if (__get_user(tmp[cp], usr))
|
|
|
|
return -EFAULT;
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0; i < FPGAFS_MAX_LLDRV; i++)
|
|
|
|
if (lldrv[i] != NULL) {
|
|
|
|
for (cp = 0; cp < l; cp++) {
|
|
|
|
if (lldrv[i]->name[cp] != tmp[cp])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cp == l) {
|
|
|
|
fcur->lldrv = i;
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fcur->lldrv = -1;
|
|
|
|
return -1;
|
|
|
|
}
|
2007-09-10 10:09:16 +02:00
|
|
|
//EXPORT_SYMBOL_GPL(fpgafs_write_lldrv);
|
2007-09-10 09:45:12 +02:00
|
|
|
|
2007-07-09 15:12:16 +02:00
|
|
|
/* low level un-/register functions */
|
2007-07-01 23:30:51 +02:00
|
|
|
int fpgafs_register_lldrv(struct fpgafs_lldrv *drv)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&fpgafs_lldrv_lock, flags);
|
|
|
|
if (lldrv_count == FPGAFS_MAX_LLDRV)
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
/* find free space */
|
|
|
|
for(i=0; i < FPGAFS_MAX_LLDRV; i++)
|
2007-09-10 09:45:12 +02:00
|
|
|
if (lldrv[i] == NULL) {
|
|
|
|
lldrv[i] = drv;
|
2007-07-01 23:30:51 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-09-10 09:45:12 +02:00
|
|
|
if (lldrv[i]->init)
|
|
|
|
lldrv[i]->init();
|
2007-07-01 23:30:51 +02:00
|
|
|
|
2007-09-10 09:45:12 +02:00
|
|
|
lldrv_cur = lldrv[i];
|
2007-07-01 23:30:51 +02:00
|
|
|
|
|
|
|
lldrv_count++;
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&fpgafs_lldrv_lock, flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(fpgafs_register_lldrv);
|
|
|
|
|
|
|
|
int fpgafs_unregister_lldrv(struct fpgafs_lldrv *drv)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int i,k;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&fpgafs_lldrv_lock, flags);
|
|
|
|
|
|
|
|
for(i=0; i < FPGAFS_MAX_LLDRV; i++) {
|
|
|
|
if (lldrv[i] == drv) {
|
2007-07-06 09:37:25 +02:00
|
|
|
|
|
|
|
/* call the exit function */
|
2007-07-09 09:19:12 +02:00
|
|
|
if (lldrv[i]->exit)
|
|
|
|
lldrv[i]->exit();
|
2007-07-06 09:37:25 +02:00
|
|
|
|
2007-07-01 23:30:51 +02:00
|
|
|
lldrv[i] = NULL;
|
2007-07-06 09:37:25 +02:00
|
|
|
|
2007-07-01 23:30:51 +02:00
|
|
|
/* if current, search another low level driver */
|
|
|
|
if (lldrv_cur == drv) {
|
2007-07-09 09:19:12 +02:00
|
|
|
lldrv_cur = NULL;
|
2007-07-01 23:30:51 +02:00
|
|
|
for(k=0; k < FPGAFS_MAX_LLDRV; k++)
|
|
|
|
if (lldrv[k]) {
|
|
|
|
lldrv_cur = lldrv[k];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lldrv_count--;
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&fpgafs_lldrv_lock, flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(fpgafs_unregister_lldrv);
|