mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 20:26:55 +01:00
52 lines
961 B
C
52 lines
961 B
C
|
#ifndef __IPC_H__
|
||
|
#define __IPC_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#define IPC_FAST 0x01
|
||
|
#define IPC_SLOW 0x00
|
||
|
|
||
|
#define IPC_DEV_SYS 0x00
|
||
|
|
||
|
#define IPC_SYS_JUMP 0x0000
|
||
|
#define IPC_SYS_WRITE32 0x0100
|
||
|
#define IPC_SYS_WRITE16 0x0101
|
||
|
#define IPC_SYS_WRITE8 0x0102
|
||
|
#define IPC_SYS_READ32 0x0103
|
||
|
#define IPC_SYS_READ16 0x0104
|
||
|
#define IPC_SYS_READ8 0x0105
|
||
|
#define IPC_SYS_SET32 0x0106
|
||
|
#define IPC_SYS_SET16 0x0107
|
||
|
#define IPC_SYS_SET8 0x0108
|
||
|
#define IPC_SYS_CLEAR32 0x0109
|
||
|
#define IPC_SYS_CLEAR16 0x010a
|
||
|
#define IPC_SYS_CLEAR8 0x010b
|
||
|
#define IPC_SYS_MASK32 0x010c
|
||
|
#define IPC_SYS_MASK16 0x010d
|
||
|
#define IPC_SYS_MASK8 0x010e
|
||
|
|
||
|
|
||
|
#define IPC_CODE (f,d,r) (((f)<<24)|((d)<<16)|(r))
|
||
|
|
||
|
typedef struct {
|
||
|
union {
|
||
|
struct {
|
||
|
u8 flags;
|
||
|
u8 device;
|
||
|
u16 req;
|
||
|
};
|
||
|
u32 code;
|
||
|
};
|
||
|
u32 tag;
|
||
|
u32 args[6];
|
||
|
} ipc_request;
|
||
|
|
||
|
void ipc_irq(void);
|
||
|
|
||
|
void ipc_initialize(void);
|
||
|
void ipc_shutdown(void);
|
||
|
void ipc_post(u32 code, u32 tag, u32 num_args, ...);
|
||
|
void ipc_process_slow(void);
|
||
|
|
||
|
#endif
|