summaryrefslogtreecommitdiff
path: root/include/dolphin/sipriv.h
blob: 8c8508c8435298f3fb03d5f8d2a2fa24e20261a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef _DOLPHIN_SIPRIV
#define _DOLPHIN_SIPRIV

#include "dolphin/os.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef void (*SICallback)(s32 chan, u32 sr, OSContext* context);
typedef void (*SITypeAndStatusCallback)(s32 chan, u32 type);

typedef struct SIPacket {
  s32 chan;
  void* output;
  u32 outputBytes;
  void* input;
  u32 inputBytes;
  SICallback callback;
  OSTime fire;
} SIPacket;

void SIInit(void);
u32 SIGetStatus(s32 chan);

BOOL SIBusy(void);
BOOL SIIsChanBusy(s32 chan);

BOOL SITransfer(s32 chan, void* output, u32 outputBytes, void* input, u32 inputBytes,
                SICallback callback, OSTime delay);
u32 SISync(void);

void SISetCommand(s32 chan, u32 command);
u32 SIGetCommand(s32 chan);
void SITransferCommands(void);
u32 SISetXY(u32 x, u32 y);
u32 SIEnablePolling(u32 poll);
u32 SIDisablePolling(u32 poll);
BOOL SIGetResponse(s32 chan, void* data);

BOOL SIRegisterPollingHandler(__OSInterruptHandler handler);
BOOL SIUnregisterPollingHandler(__OSInterruptHandler handler);

u32 SIGetType(s32 chan);
u32 SIGetTypeAsync(s32 chan, SITypeAndStatusCallback callback);
u32 SIDecodeType(u32 type);

#ifdef __cplusplus
}
#endif

#endif // _DOLPHIN_SIPRIV