-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathahx_rpc.c
More file actions
223 lines (191 loc) · 4.57 KB
/
ahx_rpc.c
File metadata and controls
223 lines (191 loc) · 4.57 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*
# _____ ___ ____ ___ ____
# ____| | ____| | | |____|
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
#-----------------------------------------------------------------------
# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
# Licenced under Academic Free License version 2.0
# Review ps2sdk README & LICENSE files for further details.
*/
/**
* @file
* AHX EE-side RPC code.
*/
#include <tamtypes.h>
#include <kernel.h>
#include <sifrpc.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <loadfile.h>
#include "ahx_rpc.h"
static unsigned sbuff[64] __attribute__((aligned (64)));
static struct t_SifRpcClientData cd0;
/** EE mapped IOP mem */
#define IOP_MEM 0xbc000000
char* songbuffer_addr;
int ahx_init_done = 0;
/** Read/Write IOP Mem
*
* This is an internal function used to read and write
* directly to IOP memory (write songdata to iop etc)
*/
void iop_readwrite(void *addr, void *buf, u32 size, u32 read)
{
DI();
ee_kmode_enter();
if (read) memcpy(buf, (void *)((u8 *)addr + IOP_MEM), size); else memcpy((void *)((u8 *)addr + IOP_MEM), buf, size);
ee_kmode_exit();
EI();
}
int AHX_Init()
{
// struct t_SifDmaTransfer sdt;
// if already init'd, exit
if (ahx_init_done) return 0;
int bind_retry = 100;
// bind rpc
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1; // bind error
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
if (--bind_retry < 1) return -SCE_EBINDMISS;
}
SifCallRpc(&cd0,AHX_INIT,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
songbuffer_addr = (char*)sbuff[1];
// set flag, init done
ahx_init_done = 1;
return 0;
}
int AHX_Play()
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
SifCallRpc(&cd0,AHX_PLAY,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_Pause()
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
SifCallRpc(&cd0,AHX_PAUSE,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_SubSong(int songNo)
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
sbuff[0] = (unsigned)songNo;
SifCallRpc(&cd0,AHX_PAUSE,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_SetVolume(int volumePercentage)
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
sbuff[0] = (unsigned)volumePercentage;
SifCallRpc(&cd0,AHX_QUIT,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_SetBoost(int boostValue)
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
sbuff[0] = (unsigned)boostValue;
SifCallRpc(&cd0,AHX_SETBOOST,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_ToggleOversampling()
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
SifCallRpc(&cd0,AHX_OVERSAMPLING,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_Quit()
{
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
SifCallRpc(&cd0,AHX_QUIT,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
return 0;
}
int AHX_LoadSongBuffer(char* songdata, int songsize)
{
// write song data to IOP song buffer
iop_readwrite(songbuffer_addr, songdata, songsize, 0);
while(1){
int i;
if (SifBindRpc( &cd0, AHX_IRX, 0) < 0) return -1;
if (cd0.server != 0) break;
i = 0x10000;
while(i--);
}
// set oversample and boost
sbuff[0] = (unsigned)songsize;
// call rpc
SifCallRpc(&cd0,AHX_LOADSONG,0,(void*)(&sbuff[0]),64,(void*)(&sbuff[0]),64,NULL,NULL);
// return number of sub-songs
return (int)sbuff[1];
}
int AHX_LoadSong(char* filename)
{
int fd, fdSize;
char* buffer;
fd = open(filename, O_RDONLY);
if(fd < 0)
{
printf("ERROR LOADING SONG\n");
return -1;
}
fdSize = lseek(fd, 0, SEEK_END);
lseek(fd, 0, SEEK_SET);
buffer = malloc(fdSize);
if(!buffer)
{
printf("ERROR ALLOCATING SONG MEMORY SONG\n");
return -1;
}
read(fd, buffer, fdSize);
close(fd);
return AHX_LoadSongBuffer(buffer, fdSize);
}