2010-09-13 22:07:22 +02:00
|
|
|
|
2010-09-29 13:59:24 +02:00
|
|
|
|
2010-09-13 22:07:22 +02:00
|
|
|
#ifndef __DDK_H__
|
|
|
|
#define __DDK_H__
|
|
|
|
|
2014-12-27 16:42:08 +01:00
|
|
|
#include <linux/kernel.h>
|
2012-11-12 22:22:52 +01:00
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/spinlock.h>
|
2014-12-27 16:42:08 +01:00
|
|
|
#include <linux/mutex.h>
|
2015-01-04 16:48:58 +01:00
|
|
|
#include <linux/rwsem.h>
|
2010-09-13 22:07:22 +02:00
|
|
|
|
|
|
|
#define OS_BASE 0x80000000
|
|
|
|
|
|
|
|
#define PG_SW 0x003
|
2013-02-23 10:41:48 +01:00
|
|
|
#define PG_UW 0x007
|
2016-01-20 05:19:53 +01:00
|
|
|
#define PG_WRITEC 0x008
|
2013-12-17 07:10:28 +01:00
|
|
|
#define PG_NOCACHE 0x018
|
2013-02-23 10:41:48 +01:00
|
|
|
#define PG_SHARED 0x200
|
|
|
|
|
2010-09-13 22:07:22 +02:00
|
|
|
#define MANUAL_DESTROY 0x80000000
|
|
|
|
|
2010-09-27 00:57:18 +02:00
|
|
|
#define ENTER() dbgprintf("enter %s\n",__FUNCTION__)
|
|
|
|
#define LEAVE() dbgprintf("leave %s\n",__FUNCTION__)
|
2012-12-16 20:05:06 +01:00
|
|
|
#define FAIL() dbgprintf("fail %s\n",__FUNCTION__)
|
2016-01-27 06:30:28 +01:00
|
|
|
#define LINE() dbgprintf("%s line %d\n", __FUNCTION__,__LINE__)
|
2010-09-13 22:07:22 +02:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2014-12-27 16:42:08 +01:00
|
|
|
u32 handle;
|
|
|
|
u32 io_code;
|
2010-09-13 22:07:22 +02:00
|
|
|
void *input;
|
|
|
|
int inp_size;
|
|
|
|
void *output;
|
|
|
|
int out_size;
|
|
|
|
}ioctl_t;
|
|
|
|
|
2013-04-24 22:04:21 +02:00
|
|
|
typedef int ( __stdcall *srv_proc_t)(ioctl_t *);
|
2010-09-13 22:07:22 +02:00
|
|
|
|
|
|
|
#define ERR_OK 0
|
|
|
|
#define ERR_PARAM -1
|
|
|
|
|
|
|
|
|
|
|
|
struct ddk_params;
|
|
|
|
|
|
|
|
int ddk_init(struct ddk_params *params);
|
|
|
|
|
2014-12-27 16:42:08 +01:00
|
|
|
u32 drvEntry(int, char *)__asm__("_drvEntry");
|
2010-09-13 22:07:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* DDK_H */
|